Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.ostium.com/llms.txt

Use this file to discover all available pages before exploring further.

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;
}