我写过这个函数: // Function to get an owned token's id by referencing the index of the user's owned tokens. // ex: us…
标签:ethereum
比特币 – 在不删除换行符的情况下编译智能合约
我很想和以太坊签一份智能合约. 根据官方文档,编译智能合约需要删除合同源代码中的所有换行符: var greeterSource = 'contract mortal { address owner; function …
以太坊 – 如何使用以太网创建和部署合同?
如何使用web3.js中附加的ether创建和部署合同? 确切地说,我知道它可以像这样写: D newD = (new D).value(amount)(arg); 但是如何在web3.js中编写它来测试合同.真诚的谢谢…
以太坊 – ethminer未能提交哈希值
刚刚安装了geth和ethminer.在第一次试用时,我收到了这个错误.任何的想法? ethminer -G -F http://yolo.ethclassic.faith:9999/0x<my-wallet>…
区块链 – 内部/外部和公共/私人功能之间的区别是什么?
目前阅读可靠性文档: https://solidity.readthedocs.io/en/develop/types.html#function-types By default, function types are…