In this video, I will show you what is the basic workflow when you test Solidity smart contracts with the Truffle framework. We are going to learn: files / test folder organization how to import smart contract into tests how to implement the arrange / test / assert pattern in…
Read StoryIn this video, I will introduce you Truffle-Contract, a library that is used by Truffle to communicate with smart contracts. When you use test smart contract with Truffle, that's the library that is used by default by Truffle for your interactions with smart contracts (deployment, transaction and call). You can…
Read StoryBefore we are able to understand how tests work in Truffle, we need to first understand what are contract artifacts and contract abstractions in Truffle, and how they are used to manage smart contract deployments. That's what I will explain you in this video.
Read StoryBefore we can continue in our course on Solidity smart contract testing, we need to install Truffle 5.0, so that we can benefit from all the new fancy features like support for ES6 async / await in our test files. In this video I am going to show you how…
Read StoryIn this video, I am going to introduce the testing features of the Truffle framework. You will learn: which language are supported for tests the folder organization
Read StoryThis tutorial is part of the series ToDo List Ethereum Dapp. This is the Step 7. Tutorials already published: (more…)
Read StoryThis tutorial is part of the series ToDo List Ethereum Dapp. This is the Step 6. Tutorials already published: (more…)
Read StoryThis tutorial is part of the series ToDo List Ethereum Dapp. It is the Step 5. Tutorials already published: (more…)
Read Storyhttps://www.youtube.com/watch?v=aRJA1r1Gwu0&t=1s Ganache CLI is an Ethereum client used for developing smart contracts and dapps. It is a command-line tool but it also comes with a user interface called Ganache GUI. In the last video we learned how to install GUI, and in this video we will learn how to use…
Read Storyhttps://youtu.be/FwsVS9BzXzM What is Ganache? Ganache is a tool for ethereum dapp developers, supported by the Truffle team. It has 2 components: The Ganache CLI The Ganache GUI Ganache CLI allows you to run a local ethereum blockchain on your computer. This blockchain is only local and not connected to any…
Read Story