1. 首页
  2. 数据库
  3. 其它
  4. eth json rpc:以太坊JSON RPC之上的轻量级包装库 源码

eth json rpc:以太坊JSON RPC之上的轻量级包装库 源码

上传者: 2021-04-06 06:41:21上传 ZIP文件 60KB 热度 21次
ETH RPC 之上的轻量级包装库。 快速开始 npm install eth-json-rpc const ethRpc = require ( 'eth-json-rpc' ) ( 'https://mainnet.infura.io' ) ; ( async ( ) => { // Get block number. const blockNumber = await ethRpc . eth . blockNumber ( ) ; console . log ( blockNumber ) ; // 7280000 // Call contract method. const totalSupply = await ethRpc . eth . call ( { methodSignature : 'totalSupply()' , to
用户评论