0.0.8 • Published 3 years ago

etherscan-label-scraper v0.0.8

Weekly downloads
-
License
MIT
Repository
github
Last release
3 years ago

etherscan-label-scraper

Build Status

Retrieve the etherscan label for a specific ethereum address. No API keys required! Its unfortunate that Etherscan won't provide API access to this information.

Installation

npm install etherscan-label-scraper

Usage

async function f() {
    let addressScraper = await import('etherscan-label-scraper');
    addressScraper = addressScraper.default();
    const address = '0x829bd824b016326a401d083b33d092293333a830';
    console.log(await addressScraper.requestEtherscan(address));
    // { fullLabel: 'F2Pool Old' }
}
f();

Running the tests

npm test

License

MIT

0.0.8

3 years ago

0.0.7

3 years ago

0.0.6

3 years ago

0.0.5

3 years ago

0.0.4

3 years ago

0.0.3

3 years ago

0.0.2

3 years ago

0.0.1

3 years ago