以太坊合约开发精要
最近只是为了研究下如何实现ERC-20 token代币的转账transfer,废了老大劲,查了无数资料。若学会了调用合约转账,也就把很多以太坊相关技术也搞明白了。为了少走弯路,遂作下记录备用之。(一件简单的事情其实有很多前提作为基础)
创建私链http://blog.csdn.net/weixin_40401264/article/details/78095222
参考文档:
http://ethdocs.org/en/latest/network/test-networks.html?highlight=private%20chain
https://github.com/ethereum/go-ethereum/wiki/Private-network
https://github.com/ethereum/go-ethereum/wiki/Setting-up-private-network-or-local-cluster
http://chainskills.com/2017/03/10/part-3-setup-the-private-chain-miners/
发布合约http://blog.csdn.net/weixin_40401264/article/details/78135785
安装solc https://solidity.readthedocs.io/en/latest/installing-solidity.html
使用solc https://solidity.readthedocs.io/en/latest/using-the-compiler.html
solcjs在线版(不完全兼容solc)https://ethereum.github.io/browser-solidity/
智能合约实战 https://ethereum.iethpay.com/smart-contract-battle1.html
Truffle 项目实战,Solidity IDE, 智能合约部署http://www.cnblogs.com/zl03jsj/p/7074435.html
开发模式:geth --datadir "/tmp/ethereum_dev_mode/geth/" --fast --dev console
我正在「区块链金融」和朋友们讨论有趣的话题,你一起来吧?
https://t.xiaomiquan.com/nqZfmQv
![](https://img.haomeiwen.com/i7637/709292114054283d.jpg)
以太坊合约开发精要