ERC20标准
在以太坊开发中,IOC发币是很重要的一部分(基本都是)。而发币总是有一些共>同的有规律的东西。
例如你要发的币的名称、总个数,从一个地址转到另一个地址等等。
然后ERC20就出来了,成为以太坊代币的标准:ERC20标准。
大家开发代币都遵循这个标准开发,这样有利于大家去核查代码。
如果你写的Token的智能合约符合以上这些函数的标准,
你的Token则被称之为标准的ERC20代币。
// ----------------------------------------------------------------------------
// ERC Token Standard #20 Interface
// https://github.com/ethereum/EIPs/blob/master/EIPS/eip-20-token-standard.md
// ----------------------------------------------------------------------------
contract ERC20Interface {
//发行代币的数量
function totalSupply() public constant returns (uint);
//该地址的代币余额
function balanceOf(address tokenOwner) public constant returns (uint balance);
//tokenOwner地址允许spender地址使用的的代币余额
function allowance(address tokenOwner, address spender) public constant returns (uint remaining);
//tokenOwner地址允许spender地址使用的的代币余额
function transfer(address to, uint tokens) public returns (bool success);
//tokenOwner地址允许spender地址使用的的代币余额
function approve(address spender, uint tokens) public returns (bool success);
//从 from地址提取 tokens数量的代币到to地址
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);
}
网友评论