@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 • 790 B
TypeScript
import { NftsResponse } from '../../entities';
import { RequestConfig } from '../Transactions';
import { Query } from './Query';
export type NftsByFioAddressQueryProps = {
fioAddress: string;
limit?: number;
offset?: number;
};
export type NftsByFioAddressQueryData = {
fio_address: string;
limit?: number;
offset?: number;
};
export declare class NftsByFioAddressQuery extends Query<NftsByFioAddressQueryData, NftsResponse> {
props: NftsByFioAddressQueryProps;
ENDPOINT: "chain/get_nfts_fio_address";
constructor(config: RequestConfig, props: NftsByFioAddressQueryProps);
getData: () => {
fio_address: string;
limit: number | undefined;
offset: number | undefined;
};
}
//# sourceMappingURL=NftsByFioAddressQuery.d.ts.map