@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
24 lines • 721 B
TypeScript
import { NftsResponse } from '../../entities';
import { RequestConfig } from '../Transactions';
import { Query } from './Query';
export type NftsByHashQueryProps = {
hash: string;
limit?: number;
offset?: number;
};
export type NftsByHashQueryData = {
hash: string;
limit?: number;
offset?: number;
};
export declare class NftsByHashQuery extends Query<NftsByHashQueryData, NftsResponse> {
props: NftsByHashQueryProps;
ENDPOINT: "chain/get_nfts_hash";
constructor(config: RequestConfig, props: NftsByHashQueryProps);
getData: () => {
hash: string;
limit: number | undefined;
offset: number | undefined;
};
}
//# sourceMappingURL=NftsByHashQuery.d.ts.map