Cryptocurrency Creation Services Episode 6

Cryptocurrency Creation Services Episode 6

Cryptocurrency Creation Services

Episode 6

cryptocurrency development services
cryptocurrency services
create your own cryptocurrency online
how to make your own blockchain coin
cryptocurrency app development
cryptocurrency developers
cryptocurrency exchange development services
cryptocurrency software developers

We talk about Blockchain technology and how the business world is adopting blockchain.

web3talks is brought to you by web3devs.com

web3devs connects businesses to the blockchain.
web3devs provides blockchain development services and blockchain consulting.

On this Episode:
Brian Wentzloff
Aaron Anderson
Scott Finney

Becoming a Blockchain Developer in under a year David Bruno’s story ep5

Becoming a Blockchain Developer in under a year David Bruno’s story ep5

Becoming a Blockchain Developer

Hear David’s story of becoming a blockchain developer in under a year.
episode 5

We talk about Blockchain technology and how the business world is adopting blockchain.

web3talks is brought to you by web3devs.com

web3devs connects businesses to the blockchain.
web3devs provides blockchain development services and blockchain consulting.

On this Episode:
Brian Wentzloff
Aaron Anderson
Scott Finney

Learn Blockchain Development | Where to start

Learn Blockchain Development | Where to start

Learn Blockchain Development | Where to start web3talks ep2

On this episode we cover how to Learn blockchain Development. We get asked “where to start learning blockchain development” on a regular basis.

We talk about Blockchain technology and how the business world is adopting blockchain.

web3talks is brought to you by web3devs.com

web3devs connects businesses to the blockchain.
web3devs provides blockchain development services and blockchain consulting.

On this Episode:
Brian Wentzloff
Aaron Anderson
Scott Finney

Connect to the web3talks show here

web3talks show – Blockchain Technology in the business world

Connect to web3devs at

Web3devs | Blockchain Development | Custom WordPress Plugins | Consulting | Training

web3talks – Introduction Episode 1

web3talks – Introduction Episode 1

Introduction to web3talks show

We talk about Blockchain technology and how the business world is adopting blockchain.

This is our first introduction episode.

web3talks is brought to you by web3devs.com

web3devs connects businesses to the blockchain.
web3devs provides blockchain development services and blockchain consulting.

On this Episode:
Brian Wentzloff
Aaron Anderson
Scott Finney

Connect to the web3talks show here

web3talks show – Blockchain Technology in the business world

Status Hackathon – Aaron Anderson from web3devs gets 2nd place

Status Hackathon – Aaron Anderson from web3devs gets 2nd place

The Status hackathon in Prague last week was one of the most anticipated events in the blockchain world this fall. Hundreds of coders from all over the world formed 32 teams and worked all weekend to build blockchain tools in the Status ecosystem.

Aaron Anderson’s team created DaiPOS, a point of sale solution using the DAI stablecoin. It has an interface similar to SnapChat, creates QR codes that hold the transaction data for purchases, and keeps track of sales and inventory. Purchasers do not need to have the app, any Ether wallet that can scan QR codes can complete the transaction.

The judges awarded them 2nd place in the Marketplaces Track and received the bounty from the DAI prize.

Since we’ve been cleaning up at these hackathons, we’ve decided to go all in and head out as a team to San Francisco next week to compete in the EOS Global Hackathon. Let us know if you’ll be there!

Status Hackathon – Aaron Anderson from web3devs gets 2nd place

EthAtlanta hackathon web3devs win again in Atlanta

Following the big win at WyoHackathon in Wyoming, the web3devs team attended the EthAtlanta hackathon and won there, as well. James Ruffer and Brian Wentzloff created a suite of development tools to interact with the provide.services blockchain acceleration platform. They then used those development tools to create a suite of WordPress plugins that can interact with the provide.services infrastructure. Out of the 12 submissions, they were chosen as the overall winner by a panel of judges.

Web3devs pride themselves on building tools to help people and businesses interact with blockchain technologies. That’s why we don’t only specialize in blockchain technology, we also have a team of WordPress experts since close to 20% of websites are built on this content management platform. If you have a project you need built to connect WordPress and blockchain, let us know.

Also, keep an eye out for a couple of us at the Status.im hackathon in Prague.

web3devs win big at WyoHackathon

web3devs win big at WyoHackathon

The WyoHackathon was a highly anticipated hackathon where participants were tasked with building a fully functional blockchain-related product in one weekend. More than 300 software developers from all over the world formed 30 teams to compete for a number of prizes. Wyoming has been incredibly innovative in the past year regarding blockchain technology, and their state government has led the way in proactive forward-thinking blockchain and cryptocurrency regulation, hence the anticipation from blockchain enthusiasts for this hackathon.

A team of developers from web3devs made the trek to the Cowboy State to participate. Aaron Anderson, David Bruno, Scott Finney, and Sam Steele created the Electronic Corporate Formation Portal to help blockchain businesses legally incorporate in the state of Wyoming and to help those companies comply with the new regulations Wyoming has enacted — and they did it in less than 48 hours.

The Electronic Corporate Formation Portal takes advantage of new Wyoming services that allow companies to incorporate an LLC with the state electronically instead of filling out paperwork manually. The web3devs team’s ECFP integrates with Wyoming’s new system and also allows companies to then create and associate cryptocurrency wallet addresses with the new LLCs, thereby complying with the state’s new financial regulations regarding blockchain LLCs.

The product they created was a hit, winning four awards including the final “Best for Wyoming” award. The judges included all 3 gubernatorial candidates in Wyoming as well as tech leaders in the Wyoming community and blockchain experts from around the country including Joseph Lubin, the co-founder of Ethereum and founder of ConsenSys.

The WyoHackathon was lots of fun and we had the opportunity to meet a lot of great people. Next stop is Atlanta! Check us out at EthAtlanta September 21-23 and check out what we’re going to build next.

Smart Contract Audit: An Auditor’s Story

What to Expect when your Smart Contract is Audited:
The Auditor’s Story

Considering a Smart Contract Audit?As a smart contract auditor, I’m trying to make sure your contract is secure against Ethereum Virtual Machine (EVM) level attacks. Those are the kinds of attacks that leverage the nuances of the EVM’s logic in order to hack your smart contract. What I am not looking at is your business logic. That job falls to your test writers. I can do that, DApp developers are polymaths by definition, but that requires a lot more hours and should be scoped out separately.

Specifically, I’m targeting the list of known attacks published by Consensys and the Ethereum Foundation.

  • Race Conditions (Reentrancy and Cross-function Race Conditions)
  • Transaction-Ordering Dependence (TOD) / Front Running
  • Timestamp Dependence
  • Integer Overflow and Underflow (including Storage Manipulation)
  • Denial of Service with Unexpected Revert
  • Denial of Service with Block Gas Limit
  • Forcibly Sending Ether to a Contract

(A full description of these attacks can be found at https://consensys.github.io/smart-contract-best-practices/known_attacks/ and the definitive lecture of 2018 on this subject by Bernhard Mueller can be found at https://youtu.be/iqf6epACgds)

Compile and expose contract API

Now the first thing I am going to do is test your smart contract, ideally, with the test scripts you have already written. If I don’t have access to those I’ll compile your contracts in either Truffle or Remix in order to make sure the contract compiles and exposes the functions that have been detailed in the contract specification.

Ensure dependencies are accessible

Once I know I’m working with a functioning smart contract, there are a few steps I need to take in order to make sure my auditing application will recognize every dependency that your contract imports. I need to go grab the code of any dependency that is already deployed and then link it locally. If the framework your code is working in has any issues with pathing, I’ll copy your dependencies into the same folder as your contract and redirect the import statements to this copy. And then I’ll need to do the same for every dependency that I copied, because they will often times also have dependencies that I need to expose locally.

Explore every possible interaction

At this time in the smart contract audit, I’ll spin up Docker and run a local instance of my auditing application and give it the command to run a whole bunch of simulated interactions with your contract using symbolic execution. What this does is explore every possible interaction an actor can perform with your contract using an abstraction of any given input. So instead of testing every possible value that can be passed to every function, which would take longer than the heat death of the universe, it passes a symbol that stands for every possible input. This frees up time for the software to test all possible recursion in your contract’s flow control. The standard depth of recursion that I test for is 8 levels of recursion, but if we will be conducting a formal audit, I’ll run much deeper in an attempt to falsify any mathematical proofs required by a formal audit.

Trivial and non-trivial vulnerabilities

Once the smart contract audit application has finished exploring all the possibilities it will return a report that I will then convert to an appropriate file format; usually markdown, but some projects require JSON reports in order to be parsed by 3rd party applications. This report will contain both trivial and non-trivial vulnerabilities. The trivial ones are technically vulnerabilities, but are generally not exploitable. For example, if your contract is built atop OpenZeppelin smart contracts they could theoretically have malicious business logic, but if we check and see that OpenZeppelin is an accepted standard and does not have any delegate calls that will alter the behavior of the source contracts, we know that we are safe.

Non-trivial vulnerabilities are usually exposed by your business logic. A common one I see is Integer Overflow arising from a for loop that works with arrays. In this case, the business logic may be sound in that controls are in place that no combinations of array lengths or iterations through the for loop will result in an array length exceeding 2**256. But I would advise the client to request or perform a formal audit on that particular function in order to mathematically prove that there is no intersection between control logic boundaries and statistical vulnerability frontiers… or at least that the probability of their intersecting within a given timeframe is within the client’s risk tolerance.

Formal Auditing Recommendation

Finally, I’ll write up my “Formal Auditing Recommendation” in which I identify those functions that expose non-trivial vulnerabilities and suggest that they either be formally audited or rewritten in order to preclude those vulnerabilities. Only the client and their development team can determine which option is most appropriate. As a general rule, though, you want your smart contract to require as few proofs as possible so it’s usually wise to go for the rewrite first and follow that with a second smart contract audit.

Auditing and testing are the pillars of good contract security. If you are handling money in your contracts you should definitely seek out those services from experts. And, if you are looking for some experts in blockchain solutions, you’re always welcome to reach out to my team at web3devs!