UNPKG

@effectai/sdk

Version:

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

8 lines (7 loc) 319 B
import type { ICollectionRow } from "atomicassets/build/API/Rpc/RpcCache"; import type { Client } from "../../client"; export type getCollectionArgs = { client: Client; collectionName: string; }; export declare const getCollection: ({ client, collectionName, }: getCollectionArgs) => Promise<ICollectionRow[]>;