https://github.com/etherspot/etherspot-popular-tokens-tokenlist
Etherspot popular tokens tokenlist
https://github.com/etherspot/etherspot-popular-tokens-tokenlist
Last synced: 12 months ago
JSON representation
Etherspot popular tokens tokenlist
- Host: GitHub
- URL: https://github.com/etherspot/etherspot-popular-tokens-tokenlist
- Owner: etherspot
- License: mit
- Created: 2023-01-13T11:40:06.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2024-12-18T11:16:25.000Z (over 1 year ago)
- Last Synced: 2025-02-20T01:18:57.580Z (over 1 year ago)
- Size: 220 KB
- Stars: 2
- Watchers: 7
- Forks: 2
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## etherspot-popular-tokens-tokenlist
*Disclaimer:
The list is from the Popular tokenlist filtered by Volume (24H) on explorers listed below:*
https://polygonscan.com/tokens
https://gnosisscan.io/tokens
https://etherscan.io/tokens
https://bscsscan.com/tokens
**Date of snapshot: Jan 16, 2023**
Etherspot SDK PopularTokens token list
Web: [https://etherspot.io](https://etherspot.io)
Docs: [https://docs.etherspot.dev/](https://docs.etherspot.dev/)
Use Etherspot SDK to fetch popular token list
```
import { Sdk, NetworkNames, randomPrivateKey } from 'etherspot';
const privateKey = randomPrivateKey();
let sdk: Sdk
sdk = new Sdk({
privateKey,
}, {
networkName: 'mainnet' as NetworkNames,
});
async function main() {
const output = await sdk.getTokenListTokens({
name: 'EtherspotPopularTokens',
});
console.log('token list tokens', output);
}
main().catch(console.error);