UNPKG

@fioprotocol/fiosdk

Version:

The Foundation for Interwallet Operability (FIO) is a consortium of leading blockchain wallets, exchanges and payments providers that seeks to accelerate blockchain adoption by reducing the risk, complexity, and inconvenience of sending and receiving cryp

30 lines 946 B
import { NftsResponse } from '../../entities'; import { RequestConfig } from '../Transactions'; import { Query } from './Query'; export type NftsByContractQueryProps = { chainCode: string; contractAddress: string; tokenId?: string; limit?: number; offset?: number; }; export type NftsByContractQueryData = { chain_code: string; contract_address: string; token_id?: string; limit?: number; offset?: number; }; export declare class NftsByContractQuery extends Query<NftsByContractQueryData, NftsResponse> { props: NftsByContractQueryProps; ENDPOINT: "chain/get_nfts_contract"; constructor(config: RequestConfig, props: NftsByContractQueryProps); getData: () => { chain_code: string; contract_address: string; limit: number | undefined; offset: number | undefined; token_id: string | undefined; }; } //# sourceMappingURL=NftsByContractQuery.d.ts.map