@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 • 773 B
TypeScript
import { FioAddressesResponse } from '../../entities';
import { RequestConfig } from '../Transactions';
import { Query } from './Query';
export type FioAddressesQueryProps = {
fioPublicKey: string;
limit?: number;
offset?: number;
};
export type FioAddressesQueryData = {
fio_public_key: string;
limit?: number;
offset?: number;
};
export declare class GetAddresses extends Query<FioAddressesQueryData, FioAddressesResponse> {
props: FioAddressesQueryProps;
ENDPOINT: "chain/get_fio_addresses";
constructor(config: RequestConfig, props: FioAddressesQueryProps);
getData: () => {
fio_public_key: string;
limit: number | undefined;
offset: number | undefined;
};
}
//# sourceMappingURL=GetAddresses.d.ts.map