@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
25 lines • 758 B
TypeScript
import { FioFeeResponse } from '../../entities';
import { RequestConfig } from '../Transactions';
import { Query } from './Query';
export type FioFeeQueryProps = {
endPoint: string;
fioAddress?: string;
};
export type FioFeeQueryData = {
end_point: string;
fio_address?: string;
};
export declare class GetFee extends Query<FioFeeQueryData, FioFeeResponse> {
ENDPOINT: "chain/get_fee";
props: ReturnType<GetFee['getResolvedProps']>;
constructor(config: RequestConfig, props: FioFeeQueryProps);
getData: () => {
end_point: string;
fio_address: string;
};
getResolvedProps: (props: FioFeeQueryProps) => {
fioAddress: string;
endPoint: string;
};
}
//# sourceMappingURL=GetFee.d.ts.map