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

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

sebs/etherscan-api

Folders and files

NameName
Last commit message
Last commit date
Jan 7, 2023
Jan 7, 2023
Oct 8, 2016
Jul 3, 2022
Nov 15, 2018
Oct 3, 2016
Jan 7, 2023
Apr 4, 2017
Jan 7, 2023
Jul 3, 2022
Oct 13, 2016
Jan 23, 2023
Jan 23, 2023
Jan 18, 2017

Repository files navigation

Etherscan API

Development of a NEXTGEN Version has started - please stand by

npm license GitHub tag 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('YourApiKey');
var balance = api.account.balance('0xde0b295669a9fd93d5f28d9ec85e40f4cb697bae');
balance.then(function(balanceData){
  console.log(balanceData);
});

Example in the wild

use a own instance of axios

const axios = require('axios');
const {
  init,
  pickChainUrl
} = require('..');


const chain = pickChainUrl(null);
const client = axios.create({
  baseURL: chain,
  timeout: 10000
});

var api = init('apikey', null, 10000, client);

For testnet and L2s usage

Supported Chain Explorers

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