Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/cgrade/erc-20-indexer
it query the blockchain and returns all the ERC-20 tokens associated with your address and their respective balance
https://github.com/cgrade/erc-20-indexer
alchemy alchemy-university chakra-ui erc-20 web3
Last synced: 4 days ago
JSON representation
it query the blockchain and returns all the ERC-20 tokens associated with your address and their respective balance
- Host: GitHub
- URL: https://github.com/cgrade/erc-20-indexer
- Owner: cgrade
- Created: 2024-02-12T22:30:26.000Z (9 months ago)
- Default Branch: main
- Last Pushed: 2024-02-13T11:28:38.000Z (9 months ago)
- Last Synced: 2024-02-14T10:32:47.179Z (9 months ago)
- Topics: alchemy, alchemy-university, chakra-ui, erc-20, web3
- Language: JavaScript
- Homepage:
- Size: 12.7 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Simple ERC-20 Indexer
This is a simple react app that uses the Alchemy SDK rigged to Alchemy's Enhanced APIs in order to display all of an address's ERC-20 token balances.
## Set Up
1. Install dependencies by running `npm install`
2. Start application by running `npm run dev`
3. Get your Alchemy API from [Alchemy](https://alchemy.com/?a=eth-bootcamp)
4. Create a js file in the project directory called 'apikey.js'
5. Paste this into the file:
`const API = "<-- COPY-PASTE YOUR ALCHEMY API KEY HERE -->";
export default API;`
6. Run `npm run dev` to start the local development server.