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

    Generating a Signature Full code description: Tutorial on generating signatures with Go. Generating a Signature The components for generating a signature are: the signers p...
  • Querying an ERC20 Token Smart Contract

    Querying an ERC20 Token Smart Contract Full code description: Tutorial on how to query an ERC20 token smart contract with Go. Querying an ERC20 Token Smart Contract First c...
  • 读取智能合约二进制码

    读取智能合约的字节码 完整代码 概述: 用Go来读取已经部署的智能合约的字节码的教程。 读取智能合约的字节码 有时您需要读取已部署的智能合约的字节码。 由于所有智能合约字节码都存在于区块链中,因此我们可以轻松获取它。 首先设置客户端和要读取的字节码的智能合约地址。 client , err := ethclient . Dial (...
  • Loading a Smart Contract

    Loading a Smart Contract Full code description: Tutorial on how to load an initialize a smart contract with Go. Loading a Smart Contract These section requires knowledge of...
  • 创建裸交易

    构建原始交易(Raw Transaction) 完整代码 概述: 用Go构建以太坊原始交易的教程。 构建原始交易(Raw Transaction) 如果你看过上个章节 , 那么你知道如何加载你的私钥来签名交易。 我们现在假设你知道如何做到这一点,现在你想让原始交易数据能够在以后广播它。 首先构造事务对象并对其进行签名,例如: tx :=...
  • 智能合约 & ABI

    智能合约的编译与ABI 完整代码 概述: 用Go编译智能合约并读取ABI的教程。 智能合约的编译与ABI 与智能合约交互,我们要先生成相应智能合约的应用二进制接口ABI(application binary interface),并把ABI编译成我们可以在Go应用中调用的格式。 第一步是安装 Solidity编译器 (solc ). S...
  • 生成签名

    生成一个签名 完整代码 概述: 用Go生成签名的教程。 生成一个签名 用于生成签名的组件是:签名者私钥,以及将要签名的数据的哈希。 只要输出为32字节,就可以使用任何哈希算法。 我们将使用Keccak-256作为哈希算法,这是以太坊常常使用的算法。 首先,我们将加载私钥。 privateKey , err := crypto . H...
  • Tokens and ICOs

    534 2021-02-11 《Mastering Ethereum》
    Tokens and ICOs Tokens and ICOs Tokens have been an explosive development in the Ethereum ecosystem. It is likely that they will become a very important component of all smart ...
  • 安装客户端

    安装客户端 从 PPA 直接安装 从源码编译 安装 Go 语言环境 下载和编译 Geth 安装客户端 本节将介绍如何安装 Geth,即 Go 语言实现的以太坊客户端。这里以 Ubuntu 16.04 操作系统为例,介绍从 PPA 仓库和从源码编译这两种方式来进行安装。 从 PPA 直接安装 首先安装必要的工具包。 $ apt - get ...
  • Deploying a Smart Contract

    Deploying a Smart Contract Full code description: Tutorial on how to deploy a smart contract with Go. Deploying a Smart Contract If you haven’t already, check out the secti...