Skip to content

A node.js wrapper for the etherscan api to fetch data and metadata from the ethereum blockchain

License

Notifications You must be signed in to change notification settings

anymos/etherscan-api

This branch is 235 commits behind sebs/etherscan-api:master.

Folders and files

NameName
Last commit message
Last commit date

Latest commit

Jul 5, 2017
1e86840 · Jul 5, 2017
Jan 27, 2017
Jul 5, 2017
Jul 5, 2017
Oct 8, 2016
Jun 21, 2017
Oct 3, 2016
Oct 3, 2016
May 22, 2017
Jun 2, 2017
Apr 4, 2017
Apr 24, 2017
Oct 6, 2016
Oct 13, 2016
Jul 5, 2017
Jan 18, 2017

Repository files navigation

Etherscan API

npm version Build Status npm

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

Livenet

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

For testnet usage

Supported:

  • morden
  • ropsten
  • rinkeby

Latest

var api = require('etherscan-api').init('YourApiKey','rinkeby');

Old Default

var api = require('etherscan-api').init('YourApiKey','testnet');

Install

npm install etherscan-api --save

Api

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

About

A node.js wrapper for the etherscan api to fetch data and metadata from the ethereum blockchain

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • JavaScript 100.0%