为了让你的Ðapp运行上以太坊,一种选择是使用web3.js library提供的web3。对象。底层实现上,它通过RPC 调用与本地节点通信。web3.js可以与任何暴露了RPC接口的以太坊节点连接。web3中有eth对象 - web3.eth 具体来表示与以太坊区块链之间的交互。shh对象 - web3.shh表示Whisper协议的相关交互。后续我们会继续介绍其它一些web3协议中的对象。可用的example can be found here如果你想找一些更复杂的示例,可以看看这里useful Ðapp patterns.入门添加web3首先你需要将web3引入到你的工程中,通过如下步骤:npm: npm install web3bower: bower install web3metor: meteor add ethereum:web3vanilla: dist./web3.min.js然后你需要创建一个web3的实例,设置一个provider。为了保证你不会覆盖一...