Creating your token - skanakakorn/eth-nonode GitHub Wiki
If you create a contract that follows this ERC: Token standard https://github.com/ethereum/EIPs/issues/20 your contract can be recognized as a token. The standard will allow dapps and wallets to handle tokens across multiple interfaces/dapps.
The most important functions are transfer, balanceOf, and the Transfer event. Here is a simple implementation of that standard
Other versions of tokens are in "token" directory of the source code repository.
Exercise
- Deploy simple_token.sol contract on ropsten network.
- Add the new token to your MetaMask wallet.
- Add the new token to your MyCrypto wallet.
- Ask the person next to you for a wallet address and his token address.
- Give some tokens to the person next to you.
- Mint token of belongs to someone else. Does it work or not? Can you tell why?