etherscan-api-cn

10.0.6 • Public • Published

Etherscan API 中国镜像

目前只有主网的Etherscan中国镜像,还没找到Ropsten、Rinkeby测试网浏览器的镜像,如果你知道,希望你能告诉我,加微信:cuijin

Development of a NEXTGEN Version has started - please stand by

npm license GitHub tag Travis GitHub issues

A way to access the etherscan.io api using promises. Fetch a diverse set of information about the blockchain.

Mainnet

var api = require('etherscan-api-cn').init('YourApiKey');
var balance = api.account.balance('0xde0b295669a9fd93d5f28d9ec85e40f4cb697bae');
balance.then(function(balanceData){
  console.log(balanceData);
});

Example in the wild

For testnet usage

Supported:

  • morden
  • ropsten
  • rinkeby

Latest

// apikey, network, timeout
var api = require('etherscan-api-cn').init('YourApiKey','rinkeby'. '3000');

Install

yarn add etherscan-api-cn

API Documentation

Full Api Docs

Development workflow

  • npm test - runs tests
    • npm run posttest - starts the linter
  • npm run lint - preconfigured linter
  • npm run docs - generates the apidocs
  • npm run bundle - builds a new bundle
  • npm run preversion - Steps before we create a new Tag
    • lint
    • changelog
  • npm run pages - pushes generated apidocs to the server
  • postversion - after generating a new version, push the tag to the server
  • npm run changelog - generates a changelog and pushes it

Package Sidebar

Install

npm i etherscan-api-cn

Weekly Downloads

1

Version

10.0.6

License

ISC

Unpacked Size

163 kB

Total Files

32

Last publish

Collaborators

  • novaviva