0.0.8 • Published 2 years ago

etherscan-label-scraper v0.0.8

Weekly downloads
-
License
MIT
Repository
github
Last release
2 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

2 years ago

0.0.7

2 years ago

0.0.6

2 years ago

0.0.5

2 years ago

0.0.4

2 years ago

0.0.3

2 years ago

0.0.2

2 years ago

0.0.1

2 years ago