Token
Token lists, balances, and available lending assets
📄️ Get token list for a chain
Fetches the complete token list for a given chain, including metadata such as symbol, name, decimals, and asset group.
📄️ Token balances
Fetches token balances for a given account on a specific chain, including USD values.
📄️ Token balance RPC calls
Prepares a raw JSON-RPC `eth_call` for fetching token balances using a batched balance-fetcher contract. Returns an `rpcCallId` and an array of `rpcCalls` that the integrator executes against their own RPC provider. The raw hex response is then submitted to `/token/balances/parse` together with the `rpcCallId`.
📄️ Parse token balances
Accepts the raw hex RPC response obtained by executing the call from `/token/balances/rpc-call` and decodes it into structured token balance data with USD values.
📄️ Get available lending assets
Returns the list of assets available for lending on a given chain. Proxied from origin with a long-lived cache (1 hour).
📄️ Lending token balances
Fetches token balances for all available lending assets on a chain for a given account. Combines the available-assets lookup with balance fetching in a single call.