Token
Getting Started
We are going to deploy an ERC20 token on the ethereum blockchain.
Vyper
Why Vyper? Vyper is closer to the langauge Python, which I find to be a lot closer to my intuitive way of thinking.
What are we going to construct.
We will make an ERC20 token, which we can call whatever we like, here we will call it bcbooktoken
and give it the ticker BCBT.
Really simple smart contract
Before we start making tokens, we are not limited to anything. We are going to look at two different kinds of token. The first is a storage token, that simply stores and retrieves whatever
- A stroage contract. Anyone can give it a value, and anyone can red what that value is.
- A puzzle contract, where there is an embedded puzzle that must be solved.
- A randomness contract, that randomly retruns an integer value between, and including 1 and 5
code
sudo