New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

etherscan-api-cn

Package Overview
Dependencies
Maintainers
1
Versions
2
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

etherscan-api-cn

API to cn.etherscan with a simple interface中国镜像

latest
Source
npmnpm
Version
10.0.6
Version published
Maintainers
1
Created
Source

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

Keywords

ethereum

FAQs

Package last updated on 03 Feb 2020

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts