fetchAccountCoins
Fetching fungible asset balances for a specific account, with support for pagination.
Usage
import { AptosJSProClient } from "@aptos-labs/js-pro";
const client = new AptosJSProClient({
/* ... */
});
const { nextCursor, prevCursor, balances } = await client.fetchAccountCoins({
address: "0x926ff619e85bdb5b02680f27bea5ea3302c71f86be4b16fa0d63df213add927a",
});
Parameters
Return Type
Last updated on