Skip to main content
const balances = await client.getBalances();
In read-only mode:
await client.getBalances('0xTraderAddress');
The response contains:
  • usdc
  • eth
  • allowance

Response schema

interface Response {
  usdc: string;
  eth: string;
  allowance: string;
}