Skip to content

Latest commit

 

History

History
24 lines (21 loc) · 1.66 KB

README.md

File metadata and controls

24 lines (21 loc) · 1.66 KB

Create a token smart contract from scratch using Python's Contracting package. The simple smart contract will mint an initial supply to a user of our choice and then define a tansfer method for our users to use. To finish it off we create unit test to validate our new smart contact does exactly what we want it to do.
Code Reference

Expanding on the smart contract from Part 1 we create a python dev server that allows us to make mock transactions against our smart contract and query the state. This part also covers the basis of how smart contract information is stored on the blockchain.
Code Reference

We add some interactivity to our smart contract by installing Sapper to create a dApp that allows us to interact with the smart contract for login and displaying token balances.
Code Reference

We continue to build out our dApp by creating a transfer from to allow our users to send tokens to each other.
Code Reference