Documentation IndexFetch the complete documentation index at: /llms.txtUse this file to discover all available pages before exploring further.
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Look up specific transfers by their IDs.
async getTransfersByIds(transferIds: string[]): Promise<Transfer[]>
const transfers = await client.getTransfersByIds([ "transfer-id-1", "transfer-id-2", ]); for (const transfer of transfers) { console.log(transfer.id, transfer.status); }