UNPKG

@effectai/sdk

Version:

Effect Network Javscript/Typescript SDK (for [https://effect.network](https://effect.network))

13 lines 418 B
// TODO:: Implement Pagination export const getAccountAssets = async ({ client, account, }) => { const { atomic } = client.network.config; const { provider } = client; const { rows } = (await provider.v1.chain.get_table_rows({ code: atomic.atomicContract, scope: account, table: "assets", limit: 100, })); return rows; }; //# sourceMappingURL=getAccountAssets.js.map