Dates 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 StoryIn this video, I will show you what is the basic workflow when you test Solidity smart contracts with the…
Read StoryIn this video, I will introduce you Truffle-Contract, a library that is used by Truffle to communicate with smart contracts.…
Read StoryBefore we are able to understand how tests work in Truffle, we need to first understand what are contract artifacts…
Read StoryIn this video, I am going to introduce the testing features of the Truffle framework. You will learn: which language…
Read Story