This is a tool to find accounts for a token and amount range on Solana.
- helium api key
- mint address
- amount range
- create your .env file with
//your .env file must look like this
HELIUS_API_KEY="a0e29f77-9dab-....."
mintAddress="..."
- set your amount range
// in line: this example is for amount between 1 and 100 tokens in a token with 6 Decimals
...
holders, err := findTokenHolders(mintAddress, apiKey, 1000000, 100000000)
...
- go run main.go