代币示例
本节内容将展示如何编译、部署、调用ERC20代币合约。
如果您对如何基于Seele开发和部署合约尚不熟悉,建议先阅读[基于Seele开发部署合约流程.md],尝试基础的合约部署成功后, 再开发和部署ERC20代币合约。
一个ERC20代币合约示例
这里我们使用一个LKBT代币合约作为示例,该合约包含了一个library的调用。
pragma solidity ^0.4.24;
library IterableMapping {
struct itmap
{
mapping(address => IndexValue) data;
KeyFlag[] keys;
uint size;
}
struct IndexValue { uint keyIndex; uint value; }
struct KeyFlag { address key; bool deleted; }
function insert(itmap storage self, address key, uint value) public returns (bool replaced)
{
uint keyIndex = self.data[key].keyIndex;
self.data[key].value = value;
if (keyIndex > 0)
return true;
else
{
keyIndex = self.keys.length++;
self.data[key].keyIndex = keyIndex + 1;
self.keys[keyIndex].key = key;
self.size++;
return false;
}
}
function iterate_start(itmap storage self) public view returns (uint keyIndex)
{
return iterate_next(self, uint(-1));
}
function iterate_valid(itmap storage self, uint keyIndex) public view returns (bool)
{
return keyIndex < self.keys.length;
}
function iterate_next(itmap storage self, uint keyIndex) public view returns (uint)
{
uint _tmpKeyIndex = keyIndex;
_tmpKeyIndex++;
while (_tmpKeyIndex < self.keys.length && self.keys[_tmpKeyIndex].deleted)
_tmpKeyIndex++;
return _tmpKeyIndex;
}
function iterate_get(itmap storage self, uint keyIndex) public view returns (address key, uint value)
{
key = self.keys[keyIndex].key;
value = self.data[key].value;
}
function iterate_getValue(itmap storage self, address key) public view returns (uint value) {
return self.data[key].value;
}
}
// File: zeppelin-solidity/contracts/ownership/Ownable.sol
/**
* @title Ownable
* @dev The Ownable contract has an owner address, and provides basic authorization control
* functions, this simplifies the implementation of "user permissions".
*/
contract Ownable {
address public owner;
event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);
/**
* @dev The Ownable constructor sets the original `owner` of the contract to the sender
* account.
*/
constructor () public {
owner = msg.sender;
}
/**
* @dev Throws if called by any account other than the owner.
*/
modifier onlyOwner() {
require(msg.sender == owner,"called by any account other than the owner");
_;
}
/**
* @dev Allows the current owner to transfer control of the contract to a newOwner.
* @param newOwner The address to transfer ownership to.
*/
function transferOwnership(address newOwner) public onlyOwner {
require(newOwner != address(0),"owner address should not 0");
emit OwnershipTransferred(owner, newOwner);
owner = newOwner;
}
}
// File: zeppelin-solidity/contracts/lifecycle/Pausable.sol
/**
* @title Pausable
* @dev Base contract which allows children to implement an emergency stop mechanism.
*/
contract Pausable is Ownable {
event Pause();
event Unpause();
bool public paused = false;
/**
* @dev Modifier to make a function callable only when the contract is not paused.
*/
modifier whenNotPaused() {
require(!paused,"callable when the contract is not paused");
_;
}
/**
* @dev Modifier to make a function callable only when the contract is paused.
*/
modifier whenPaused() {
require(paused,"callable when the contract is paused");
_;
}
/**
* @dev called by the owner to pause, triggers stopped state
*/
function pause() public onlyOwner whenNotPaused {
paused = true;
emit Pause();
}
/**
* @dev called by the owner to unpause, returns to normal state
*/
function unpause() public onlyOwner whenPaused {
paused = false;
emit Unpause();
}
}
/**
* @title SafeMath
* @dev Math operations with safety checks that throw on error
*/
library SafeMath {
/**
* @dev Multiplies two numbers, throws on overflow.
*/
function mul(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
// Gas optimization: this is cheaper than asserting 'a' not being zero, but the
// benefit is lost if 'b' is also tested.
// See: https://github.com/OpenZeppelin/openzeppelin-solidity/pull/522
if (_a == 0) {
return 0;
}
c = _a * _b;
assert(c / _a == _b);
return c;
}
/**
* @dev Integer division of two numbers, truncating the quotient.
*/
function div(uint256 _a, uint256 _b) internal pure returns (uint256) {
assert(_b > 0); // Solidity automatically throws when dividing by 0
uint256 c = _a / _b;
assert(_a == _b * c + _a % _b); // There is no case in which this doesn't hold
return _a / _b;
}
/**
* @dev Subtracts two numbers, throws on overflow (i.e. if subtrahend is greater than minuend).
*/
function sub(uint256 _a, uint256 _b) internal pure returns (uint256) {
assert(_b <= _a);
return _a - _b;
}
/**
* @dev Adds two numbers, throws on overflow.
*/
function add(uint256 _a, uint256 _b) internal pure returns (uint256 c) {
c = _a + _b;
assert(c >= _a);
return c;
}
}
/**
* @title ERC20Basic
* @dev Simpler version of ERC20 interface
* See https://github.com/ethereum/EIPs/issues/179
*/
contract ERC20Basic {
function totalSupply() public view returns (uint256);
function balanceOf(address _who) public view returns (uint256);
function transfer(address _to, uint256 _value) public returns (bool);
event Transfer(address indexed from, address indexed to, uint256 value);
}
/**
* @title Basic token
* @dev Basic version of StandardToken, with no allowances.
*/
contract BasicToken is ERC20Basic {
using SafeMath for uint256;
IterableMapping.itmap balances;
uint256 internal totalSupply_;
/**
* @dev Total number of tokens in existence
*/
function totalSupply() public view returns (uint256) {
return totalSupply_;
}
/**
* @dev Transfer token for a specified address
* @param _to The address to transfer to.
* @param _value The amount to be transferred.
*/
function transfer(address _to, uint256 _value) public returns (bool) {
require(_value <= IterableMapping.iterate_getValue(balances, msg.sender),"not enough balances");
require(_to != address(0),"0 address not allow");
IterableMapping.insert(balances, msg.sender, IterableMapping.iterate_getValue(balances, msg.sender).sub(_value));
IterableMapping.insert(balances, _to, IterableMapping.iterate_getValue(balances, _to).add(_value));
emit Transfer(msg.sender, _to, _value);
return true;
}
/**
* @dev Gets the balance of the specified address.
* @param _owner The address to query the the balance of.
* @return An uint256 representing the amount owned by the passed address.
*/
function balanceOf(address _owner) public view returns (uint256) {
return IterableMapping.iterate_getValue(balances, _owner);
}
}
/**
* @title ERC20 interface
* @dev see https://github.com/ethereum/EIPs/issues/20
*/
contract ERC20 is ERC20Basic {
function allowance(address _owner, address _spender)
public view returns (uint256);
function transferFrom(address _from, address _to, uint256 _value)
public returns (bool);
function approve(address _spender, uint256 _value) public returns (bool);
event Approval(
address indexed owner,
address indexed spender,
uint256 value
);
}
/**
* @title Standard ERC20 token
*
* @dev Implementation of the basic standard token.
* https://github.com/ethereum/EIPs/issues/20
* Based on code by FirstBlood: https://github.com/Firstbloodio/token/blob/master/smart_contract/FirstBloodToken.sol
*/
contract StandardToken is ERC20, BasicToken {
mapping (address => mapping (address => uint256)) internal allowed;
/**
* @dev Transfer tokens from one address to another
* @param _from address The address which you want to send tokens from
* @param _to address The address which you want to transfer to
* @param _value uint256 the amount of tokens to be transferred
*/
function transferFrom(
address _from,
address _to,
uint256 _value
)
public
returns (bool)
{
require(_value <= IterableMapping.iterate_getValue(balances, _from),"balance not enough");
require(_value <= allowed[_from][msg.sender],"balance not enough");
require(_to != address(0),"0 address not allow");
IterableMapping.insert(balances, _from, IterableMapping.iterate_getValue(balances, _from).sub(_value));
IterableMapping.insert(balances, _to, IterableMapping.iterate_getValue(balances, _to).add(_value));
allowed[_from][msg.sender] = allowed[_from][msg.sender].sub(_value);
emit Transfer(_from, _to, _value);
return true;
}
/**
* @dev Approve the passed address to spend the specified amount of tokens on behalf of msg.sender.
* Beware that changing an allowance with this method brings the risk that someone may use both the old
* and the new allowance by unfortunate transaction ordering. One possible solution to mitigate this
* race condition is to first reduce the spender's allowance to 0 and set the desired value afterwards:
* https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
* @param _spender The address which will spend the funds.
* @param _value The amount of tokens to be spent.
*/
function approve(address _spender, uint256 _value) public returns (bool) {
allowed[msg.sender][_spender] = _value;
emit Approval(msg.sender, _spender, _value);
return true;
}
/**
* @dev Function to check the amount of tokens that an owner allowed to a spender.
* @param _owner address The address which owns the funds.
* @param _spender address The address which will spend the funds.
* @return A uint256 specifying the amount of tokens still available for the spender.
*/
function allowance(
address _owner,
address _spender
)
public
view
returns (uint256)
{
return allowed[_owner][_spender];
}
/**
* @dev Increase the amount of tokens that an owner allowed to a spender.
* approve should be called when allowed[_spender] == 0. To increment
* allowed value is better to use this function to avoid 2 calls (and wait until
* the first transaction is mined)
* From MonolithDAO Token.sol
* @param _spender The address which will spend the funds.
* @param _addedValue The amount of tokens to increase the allowance by.
*/
function increaseApproval(
address _spender,
uint256 _addedValue
)
public
returns (bool)
{
allowed[msg.sender][_spender] = (
allowed[msg.sender][_spender].add(_addedValue));
emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
return true;
}
/**
* @dev Decrease the amount of tokens that an owner allowed to a spender.
* approve should be called when allowed[_spender] == 0. To decrement
* allowed value is better to use this function to avoid 2 calls (and wait until
* the first transaction is mined)
* From MonolithDAO Token.sol
* @param _spender The address which will spend the funds.
* @param _subtractedValue The amount of tokens to decrease the allowance by.
*/
function decreaseApproval(
address _spender,
uint256 _subtractedValue
)
public
returns (bool)
{
uint256 oldValue = allowed[msg.sender][_spender];
if (_subtractedValue >= oldValue) {
allowed[msg.sender][_spender] = 0;
} else {
allowed[msg.sender][_spender] = oldValue.sub(_subtractedValue);
}
emit Approval(msg.sender, _spender, allowed[msg.sender][_spender]);
return true;
}
}
/**
* @title Pausable token
*
* @dev StandardToken modified with pausable transfers.
**/
contract PausableToken is StandardToken, Pausable {
function transfer(address _to, uint256 _value) public whenNotPaused returns (bool) {
return super.transfer(_to, _value);
}
function transferFrom(address _from, address _to, uint256 _value) public whenNotPaused returns (bool) {
return super.transferFrom(_from, _to, _value);
}
function approve(address _spender, uint256 _value) public whenNotPaused returns (bool) {
return super.approve(_spender, _value);
}
function increaseApproval(address _spender, uint _addedValue) public whenNotPaused returns (bool success) {
return super.increaseApproval(_spender, _addedValue);
}
function decreaseApproval(address _spender, uint _subtractedValue) public whenNotPaused returns (bool success) {
return super.decreaseApproval(_spender, _subtractedValue);
}
}
contract LKBT is PausableToken {
string public name = "LKBT Token";
string public symbol = "LKBT";
uint8 public decimals = 18;
uint256 public INITIAL_SUPPLY = 10000000000;
constructor () public {
totalSupply_ = INITIAL_SUPPLY;
IterableMapping.insert(balances, msg.sender, INITIAL_SUPPLY);
}
function balancesStart() public view returns(uint256) {
return IterableMapping.iterate_start(balances);
}
function balancesGetBool(uint256 num) public view returns(bool){
return IterableMapping.iterate_valid(balances, num);
}
function balancesGetNext(uint256 num) public view returns(uint256) {
return IterableMapping.iterate_next(balances, num);
}
function balancesGetValue(uint256 num) public view returns(address, uint256) {
address key;
uint256 value;
(key, value) = IterableMapping.iterate_get(balances, num);
return (key, value);
}
}编辑和编译合约
使用remix在线编辑器 编辑以及编译上述合约。注意选择相应的编译器版本与合约一致。
【注意:使用Seele部署合约,建议使用的solidity版本为0.4.24-0.4.26。】
获得IterableMapping的字节码
点击remix右侧的run,选择合约IterableMapping,点击Deploy,
可以看到日志窗口的部署详情,复制input内容,即为IterableMapping的字节码。
同时日志中还显示了部署后该合约地址0x5e72914535f202659083db3a02c984188fa26e9f
获得LKBT合约字节码
在remix右侧回到compile窗口,选择LKBT合约,点击bytecode将复制该合约编译后信息,将该内容粘贴在一个文本编辑器内。
这是一个JSON格式的数据,其中object字段值即为合约的字节码。
【图:LKBT byteCode.png】
这里字节码内容中,包含了一部分特殊内容_browser/LKBTCoin.sol:IterableMapping_\,这是因为该合约引用了IterableMapping。 将该部分内容替换为IterableMapping合约的地址,即是该合约最终部署的字节码内容。
部署合约
部署合约前提须知
在部署合约之前,请先确保你正确的运行了Seele node全节点,并同步到当前最新区块高度。
请确认你希望将合约部署到哪个分片(分片1 - 分片4)
请确认你在该分片拥有一个账户,并且该账户内有足够的余额用于合约部署
本示例将使用一个分片4的账户,将合约部署到分片4。
示例合约部署步骤
部署IterableMapping合约
执行结果:
查询receipt结果:
failed为false,说明合约部署成功,合约地址0xbab79f5f0d136db78e5df967a48006f1d5360032。 可在Seele Scan查询到该合约
部署LKBT合约
将编译步骤中得到的LKBT合约的字节码中_browser/LKBTCoin.sol:IterableMapping_\,替换为上一步骤中的合约地址bab79f5f0d136db78e5df967a48006f1d5360032。
执行结果如下:
查询receipt:
查询结果:
可以看到查询结果failed为false,表明合约部署成功,合约地址0x8e7e21c581652b6522bd855b9e9471e237370012。
Last updated
Was this helpful?