@effectai/sdk
Version:
Effect Network Javscript/Typescript SDK (for [https://effect.network](https://effect.network))
18 lines (17 loc) • 552 B
TypeScript
import type { NameType } from "@wharfkit/antelope";
import type { Client } from "../../client";
export type getAccountAssetsArgs = {
client: Client;
account: NameType;
};
export interface IAssetRow {
asset_id: string;
collection_name: string;
schema_name: string;
template_id: number;
ram_payer: string;
backed_tokens: string[];
immutable_serialized_data: number[];
mutable_serialized_data: number[];
}
export declare const getAccountAssets: ({ client, account, }: getAccountAssetsArgs) => Promise<IAssetRow[]>;