Read balances

An API key is required to use the infrastructure to power gasless transactions. Visit https://app.rallyprotocol.com/ to generate both Amoy and Mainnet Polygon API keys.

Check balances with RLY token

//get amoy config
var amoy = NetworkProvider.RlyAmoy;

//add your API Key (can also be chained)
amoy.WithApiKey(env.API_KEY);

//claim 10 test RLY tokens gaslessly for testing
await amoy.ClaimRly();

// get balance of RLY token
await amoy.GetBalance()

//get exact balance of RLY token on Amoy testnet for transfer purposes
await amoy.GetExactBalance();

Check balances with your chosen ERC-20 token

Use the following code to check the chosen token balance of wallets.

//get amoy config
var amoy = NetworkProvider.RlyAmoy;

//add your API Key (can also be chained)
amoy.WithApiKey(env.API_KEY);

//hex address of token contract.
var tokenAddress = "0x...." 

// get balance of specified token
await amoy.GetBalance(tokenAddress)

//get exact balance of specified token on Amoy testnet for transfer purposes
await amoy.GetExactBalance(tokenAddress);

Last updated