
Decentralized Programmer: My first Erc20 token on Ethereum blockchain!
I just deployed my first ERC20 token to Ethereum blockchain.
| Property | Value |
|---|---|
| Symbol | IZX |
| Name | IZOTX |
| Total supply | 100,000.000000000000000000 |
| Decimals | 18 |
| Token address | https://etherscan.io/token/0xc22dd4af2b43e05523c725db59e9c3917c1b9a82 |
ERC20 is the most common used interface for creating tokens on Ethereum blockchain. It gives you base token functionality like transferring tokens, checking balance and etc. The full list of methods that needs to be implemented by ERC20 is listed below:
contract ERC20Interface {
function totalSupply() public constant returns (uint);
function balanceOf(address tokenOwner) public constant returns (uint balance);
function allowance(address tokenOwner, address spender) public constant returns (uint remaining);
function transfer(address to, uint tokens) public returns (bool success);
function approve(address spender, uint tokens) public returns (bool success);
function transferFrom(address from, address to, uint tokens) public returns (bool success);
event Transfer(address indexed from, address indexed to, uint tokens);
event Approval(address indexed tokenOwner, address indexed spender, uint tokens);
}
Deployment
Deployment was done using RemixIDE connected to Ethereum blockchain via Metamask extension.
I described those tools with more details in my previous blog posts:
RemixIDE
https://steemit.com/ethereum/@cryptoizotx/decentralized-programmer-part-3-remix-ide-ganache-cli
GanacheCLI and Metamask
https://steemit.com/ethereum/@cryptoizotx/decentralized-programmer-part-1-environment-metamask-and-ganache
Leave Decentralized Programmer: My first Erc20 token on Ethereum blockchain! to:
Read more #ethereum posts
Best Posts From cryptoizotx
We have not curated any of cryptoizotx's posts yet. But you can encourage our curation team to review posts by visiting them regularly and by referring other readers. Because we give priority to frequently read content.
More Posts From cryptoizotx
- Keyframe animations with Swift
- One algorithm a day: Keeping track of the largest element in a stack
- One algorithm a day. Write a function that returns best profit you could made from trading.
- One algorithm a day: floor of the square root of the input
- iOS Interview: Delegation Pattern in Swift
- Delegation Pattern in Objective-C
- Swift Interview Questions Recursion: Print numbers from 0 to n without using for loop.
- Bitwise Operators in Swift
- S O L I D Principle Rules in iOS
- Decentralized Programmer: Solidity 101