Skip to content
This repository was archived by the owner on Dec 26, 2024. It is now read-only.

sebs/etherscan-api

 
 

Repository files navigation

Etherscan API

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').init('TRU5Z5MNWIEYP4F6DPH2T53IJWZIZ5GT1W');
var balance = api.account.balance('0xFD829f296242663f2D4c29D5D99384E2ac0B79bB');
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').init('YourApiKey','rinkeby'. '3000');

Install

npm install etherscan-api --save

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

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

Contributors 21