水龙头合约创建发布
创建发布水龙头合约。
重要网站:
合约代码
1 2 3 4 5 6 7 8 9
| pragma solidity ^0.4.17;
contract Faucet{ function withdraw(uint amount) public{ require (amount <= 1000000000000000000); msg.sender.transfer(1000000000000000000); } function() public payable {} }
|
第一步:编译
第二步:部署
第三步:查看合约地址,并给地址转账
第四步:调用水龙头函数
第五步:查看转账
最后更新时间: