咸鱼

咸鱼是以盐腌渍后,晒干的鱼

0%

4、基于Ropsten测试网络用Remix发布Token(代币)

参考《以太坊发token教程》
本文只记录操作流程,在Ropsten Test Net下操作(非私有链),用MetaMask和Remix-ide来完成发行部署。

准备工作

  1. 安装MetaMask钱包,在Ropsten网络创建和登录账号( 0xBCdc478c31Bb569AFc9ed986E869f62A117a4Cae ),这个账号将会是我们的智能合约的所有者,token发行数量都是存入到这个账号.
  2. 在MetaMask的Buy按钮,去领一些以太坊测试币(request 1 eth from faucet 按钮点一次领一个币),用于部署合约。

编写Token的合约代码

接口(ERC20标准)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
pragma solidity ^0.4.4;

contract Token {

/// @return 返回token的发行量
function totalSupply() constant returns (uint256 supply) {}

/// @param _owner 查询以太坊地址token余额
/// @return 返回余额
function balanceOf(address _owner) constant returns (uint256 balance) {}

/// @notice msg.sender(交易发送者)发送 _value(一定数量)的 token 到 _to(接受者)
/// @param _to 接收者的地址
/// @param _value 发送token的数量
/// @return 是否成功
function transfer(address _to, uint256 _value) returns (bool success) {}

/// @notice 发送者 发送 _value(一定数量)的 token 到 _to(接受者)
/// @param _from 发送者的地址
/// @param _to 接收者的地址
/// @param _value 发送的数量
/// @return 是否成功
function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {}

/// @notice 发行方 批准 一个地址发送一定数量的token
/// @param _spender 需要发送token的地址
/// @param _value 发送token的数量
/// @return 是否成功
function approve(address _spender, uint256 _value) returns (bool success) {}

/// @param _owner 拥有token的地址
/// @param _spender 可以发送token的地址
/// @return 还允许发送的token的数量
function allowance(address _owner, address _spender) constant returns (uint256 remaining) {}

/// 发送Token事件
event Transfer(address indexed _from, address indexed _to, uint256 _value);
/// 批准事件
event Approval(address indexed _owner, address indexed _spender, uint256 _value);
}

实现ERC20标准

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
pragma solidity ^0.4.4;

import "./Token.sol";

contract StandardToken is Token {

function transfer(address _to, uint256 _value) returns (bool success) {
//默认token发行量不能超过(2^256 - 1)
//如果你不设置发行量,并且随着时间的发型更多的token,需要确保没有超过最大值,使用下面的 if 语句
//Replace the if with this one instead.
//if (balances[msg.sender] >= _value && balances[_to] + _value > balances[_to]) {
if (balances[msg.sender] >= _value && _value > 0) {
balances[msg.sender] -= _value;
balances[_to] += _value;
Transfer(msg.sender, _to, _value);
return true;
} else { return false; }
}

function transferFrom(address _from, address _to, uint256 _value) returns (bool success) {

//向上面的方法一样,如果你想确保发行量不超过最大值
//if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && balances[_to] + _value > balances[_to]) {
if (balances[_from] >= _value && allowed[_from][msg.sender] >= _value && _value > 0) {
balances[_to] += _value;
balances[_from] -= _value;
allowed[_from][msg.sender] -= _value;
Transfer(_from, _to, _value);
return true;
} else { return false; }
}

function balanceOf(address _owner) constant returns (uint256 balance) {
return balances[_owner];
}

function approve(address _spender, uint256 _value) returns (bool success) {
allowed[msg.sender][_spender] = _value;
Approval(msg.sender, _spender, _value);
return true;
}

function allowance(address _owner, address _spender) constant returns (uint256 remaining) {
return allowed[_owner][_spender];
}

mapping (address => uint256) balances;
mapping (address => mapping (address => uint256)) allowed;
uint256 public totalSupply;
}

实现自己的Token(代币)

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
pragma solidity ^0.4.4;

import "./StandardToken.sol";

contract TeaToken is StandardToken {

function () {
//if ether is sent to this address, send it back.
throw;
}

/* Public variables of the token */

/*
NOTE:
The following variables are OPTIONAL vanities. One does not have to include them.
They allow one to customise the token contract & in no way influences the core functionality.
Some wallets/interfaces might not even bother to look at this information.
*/
string public name; //token名称: TeaCoin
uint8 public decimals; //小数位How many decimals to show. ie. There could 1000 base units with 3 decimals. Meaning 0.980 SBX = 980 base units. It's like comparing 1 wei to 1 ether.
string public symbol; //标识An identifier: eg SBX
string public version = 'H0.1'; //版本号human 0.1 standard. Just an arbitrary versioning scheme.

function TeaToken(
uint256 _initialAmount,
string _tokenName,
uint8 _decimalUnits,
string _tokenSymbol
) {
balances[msg.sender] = _initialAmount; // Give the creator all initial tokens
totalSupply = _initialAmount; // Update total supply
name = _tokenName; // Set the name for display purposes
decimals = _decimalUnits; // Amount of decimals for display purposes
symbol = _tokenSymbol; // Set the symbol for display purposes
}

/* 批准然后调用接收合约 Approves and then calls the receiving contract */
function approveAndCall(address _spender, uint256 _value, bytes _extraData) returns (bool success) {
allowed[msg.sender][_spender] = _value;
Approval(msg.sender, _spender, _value);

//调用你想要通知合约的 receiveApprovalcall 方法 ,这个方法是可以不需要包含在这个合约里的。 //receiveApproval(address _from, uint256 _value, address _tokenContract, bytes _extraData) //假设这么做是可以成功,不然应该调用vanilla approve。

if(!_spender.call(bytes4(bytes32(sha3("receiveApproval(address,uint256,address,bytes)"))), msg.sender, _value, this, _extraData)) { throw; }
return true;
}
}

编译合约代码

我们用在线编译器Solidity Remix Compiler

导入我们三个sol文件,一一选中,分别编译。

编译合约.png

发行(部署)Token的合约代码

JavaScript VM:JS虚拟机,通过JS模拟的钱包环境。
Injected Web3:使用MetaMask之类的Chrome插件钱包作为调试环境。
Web3 Provider:使用eth钱包作为测试环境,如geth。

Injected Web3,选中Run,可以看到Accout显示的是当前登录在MetaMask 登录的账号,选中我们要发行的TeaToken

我们要发行的Token如下:

名称: TeaCoin
标识: TMC
小数位: 18
发行量: 10000

在Deploy的编辑框输入:

1
"10000000000000000000000","TeaCoin",18,"TMC"

点击Deploy就开始部署了,MetaMask 会有确认框弹出,部署成功的话,会有一个合约地址。

部署合约.png

etherscan 可以查看账号,如 oxbc

合约截图.png

1
Contract 0x3814e6421417c354c090898ad4ae63c85ffef039

etherscan 也可以查看合约,如 TeaCoin

查看合约.png

MetaMask 添加我们的 TeaToken,填入合约地址就可以了,其他两项会自动填充。
成功的话,可以看到账号的TMC币的余额就是我们的发行数量。

添加token.png

流通我们的代币

流通就是将代币从一个账号转移给另一个账号,所以我们通过 MetaMask 再次创建一个账号(0x51A7Da564a85CCaae01822af00330E7A5AEAac6d)。

接下来我们将从账号 oxbc1 个TMC币到账号 ox51

依然是在Remix的Run中,把合约地址加入进到At Address

transfer 就是对应我们合约上的transfer函数,可以进行交易。

输入账号ox51的地址和交易的数量:

1
"0x51A7Da564a85CCaae01822af00330E7A5AEAac6d","1000000000000000000"

点击transfer,等待交易确认。

流通.png

交易确认之后,就能在账号0x51看到有一个TMC币了。

账号TMC余额.png