书栈网 · BookStack 本次搜索耗时 0.018 秒,为您找到 452 个相关结果.
  • 相关工具

    相关工具 客户端和开发库 Geth 以太坊钱包 IDE 网站资源 相关工具 客户端和开发库 以太坊客户端可用于接入以太坊网络,进行账户管理、交易、挖矿、智能合约等各方面操作。 以太坊社区现在提供了多种语言实现的客户端和开发库,支持标准的 JSON-RPC 协议。用户可根据自己熟悉的开发语言进行选择。 go-ethereum :Go 语...
  • 部署智能合约

    部署智能合约 完整代码 概述: 用Go部署智能合约的教程。 部署智能合约 如果你还没看之前的章节,请先学习编译智能合约的章节 因为这节内容,需要先了解如何将智能合约编译为Go文件。 假设你已经导入从abigen 生成的新创建的Go包文件,并设置ethclient,加载您的私钥,下一步是创建一个有配置密匙的交易发送器(tansactor)。 ...
  • Transferring Tokens (ERC-20)

    Transferring Tokens (ERC-20) Creating a Token for testing ETH value and destination address Forming the data field Set gas limit Create transaction Full code description: ...
  • Connecting Whisper Client

    Connecting Whisper Client Full code description: Tutorial on whisper with Go. Connecting Whisper Client To use whisper, we must first connect to an Ethereum node running wh...
  • 生成新钱包

    生成新钱包 完整代码 概述: 用Go生成以太坊钱包的教程。 生成新钱包 要首先生成一个新的钱包,我们需要导入go-ethereumcrypto 包,该包提供用于生成随机私钥的GenerateKey 方法。 privateKey , err := crypto . GenerateKey () if err != nil ...
  • Cryptographic Hash Functions

    671 2021-02-11 《Mastering Ethereum》
    Cryptographic Hash Functions Ethereum’s Cryptographic Hash Function: Keccak-256 Which Hash Function Am I Using? Cryptographic Hash Functions Cryptographic hash functions are ...
  • 运行以太坊客户端

    运行以太坊客户端 完整节点的硬件要求 构建和运行客户端(节点)的软件要求 Parity 安装 Parity Go-Ethereum (Geth) 版本库链接 克隆存储库 从源代码构建Geth 运行以太坊客户端 如果你有时间和资源,你应该尝试运行一个完整的节点,即使只是为了更多地了解这个过程。在接下来的几节中,我们将下载,编译和运行以太...
  • ETH转账

    转账以太币ETH 完整代码 概述: 用Go来向另外一个钱包地址或者合约转账以太币的教程。 转账以太币ETH 在本课程中,您将学习如何将ETH从一个帐户转移到另一个帐户。如果您已熟悉以太坊,那么您就知道如何交易包括您打算转账的以太币数量量,燃气限额,燃气价格,一个随机数(nonce),接收地址以及可选择性的添加的数据。 在广告发送到网络之前,必...
  • 参考

    参考 参考 [[[1]]] https://www.economist.com/news/finance-and-economics/21699159-new-automated-investment-fund-has-attracted-stacks-digital-money-dao [[[2]]] http://vessenes.com...
  • Private Keys

    1073 2021-02-11 《Mastering Ethereum》
    Private Keys Generating a Private Key from a Random Number Private Keys A private key is simply a number, picked at random. Ownership and control of the private key is the roo...