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