松露插件验证 这个松露插件可让您直接从Truffle CLI在Etherscan上自动验证智能合约的源代码。 我在我的网站上写了一个教程,该教程了安装和使用此插件的整个过程:。 注意:此版本的插件使用多文件验证。 如果出于任何原因要使用源代码拼合,请使用该插件的 。 安装/准备 使用npm或yarn安装插件npm install -D truffle-plugin-verify yarn add -D truffle-plugin-verify 将插件添加到您的truffle-config.js文件module . exports = { /* ... rest of truffl
2022-05-30 21:03:20 195KB ethereum truffle solidity web3
1
py-etherscan-api模块 EtherScan.io API python绑定 描述 编写此模块是为了提供与EtherScan.io API的python绑定,可以在以下找到: ://etherscan.io/apis。 如果您正在Ropsten Testnet上与合同进行交互,请使用 。 为了使用它,您必须获得一个Etherscan用户帐户,并生成一个API密钥。 为了使用API​​,您必须在运行时提供一个API密钥,该密钥可以在Etherscan.io API网站上找到。 如果您想使用提供的示例而不更改它们,则JSON文件api_key.json必须存储在基本目录中。 其格
2021-10-29 15:57:18 133KB ethereum python-bindings etherscan Ethereum
1
etherscan API 绑定到Etherscan.io API,具有几乎完整的实现(帐户,交易,令牌,合同,块,统计信息),完整的网络支持(主网,Ropsten,Kovan,Rinkby,Tobalaba),并且仅取决于标准库。 :winking_face: 用法 创建一个API实例,然后就可以使用了。 :rocket: import ( "github.com/nanmu42/etherscan-api" "fmt" ) func main () { // create a API client for specified ethereum net // there are many pre-defined ne
2021-02-05 11:05:37 22KB go golang ethereum eth
1