UNPKG

@solace-fi/sdk-nightly

Version:

Note - Unstable nightly build, documentation not up-to-date for nightly build

5 lines (4 loc) 331 B
import { BigNumber, Contract } from "ethers"; export declare const listTokens: (contract: Contract) => Promise<BigNumber[]>; export declare const listTokensOfOwner: (token: Contract, account: string) => Promise<BigNumber[]>; export declare const listERC721OfOwners: (ERC721: Contract, account: string) => Promise<BigNumber[]>;