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.
function listSpendPermissions(options: ListSpendPermissionsOptions): Promise<ListSpendPermissionsResult>;
options
ListSpendPermissionsOptions
Promise
ListSpendPermissionsResult
const result = await listSpendPermissions({ evmSmartAccount: "0x1234...", network: "base-sepolia", pageSize: 10 }); console.log("Found", result.spendPermissions.length, "spend permissions"); for (const permission of result.spendPermissions) { console.log("Permission:", permission.permissionHash, "Revoked:", permission.revoked); }
Was this page helpful?