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.
Fetch paginated user transaction history
const history = await sdk.getTransactions({ page: 1, limit: 10, // Optional filters // type: 'deposit', // status: 'completed' }); console.log(`Found ${history.meta.totalItems} transactions.`); console.table(history.data);