mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
jrosendo
7a960f7d00
|
2 years ago | |
---|---|---|
.. | ||
README.md | 2 years ago |
README.md
Usable Token
Instructions
- Create a Smart Contract named
UsableToken
- Like MinimalToken, its constructor takes as parameter an amount that is given initially to the deployer.
- Create a function
approve(address,uint)
that allows the owner of the token to approve a spender to spend a certain amount of tokens. - Create a function
allowance(address,uint)
that returns the amount of tokens that a spender can spend on behalf of the owner.