Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
etherscan-api
Advanced tools
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);
});
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);
Supported Chain Explorers
Latest
// apikey, network, timeout
var api = require('etherscan-api').init('YourApiKey','rinkeby'. '3000');
npm install etherscan-api --save
FAQs
API to etherscan with a simple interface
The npm package etherscan-api receives a total of 14,791 weekly downloads. As such, etherscan-api popularity was classified as popular.
We found that etherscan-api demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.