You probably have heard or used Truffle, the leading framework for Solidity smart contracts. But are you aware of all…
Read StoryI have 3 questions for you. Question 1: Do you know Drizzle, the framework for building Dapp frontend? That can…
Read StoryThe documentation of the Truffle framework is pretty good, but it can be a bit overwhelming for a beginner. This…
Read StoryIn this episode I am going to introduce you Drizzle, a frontend framework for Ethereum Dapps. We will also build…
Read StoryDates are a bit weird in Solidity. Solidity does have some keywords for working with dates, like now, or 1…
Read StoryIn the last video of the smart contract testing series I showed you the basic usage of the Big Number…
Read StoryIn Solidity smart contract, you might have to deal with huge numbers, especially when doing financial transfers. Don't forget that…
Read StoryIn Truffle tests, we have a mysterious contract() function: contract('my test', () => { if('it should ...', () => {…
Read StoryIn Truffle, when you write tests, you can use 'artifacts' and 'web3' objects, without defining these names: const MyContract =…
Read StoryIn this video, we will go through the whole process of test-driven-development (TDD) for Solidity smart contracts: writing the tests…
Read Story