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.
Get pending inbound transfers for a Spark address.
async getPendingTransfers(sparkAddress: string): Promise<Transfer[]>
const pending = await client.getPendingTransfers("sp1..."); console.log(`${pending.length} pending transfers`); for (const transfer of pending) { console.log(transfer.id, transfer.totalValue); }