@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
28 lines • 1.01 kB
TypeScript
import { Account, Action, RemoveAllPublicAddressesResponse } from '../../entities';
import { RequestConfig } from '../Request';
import { SignedRequest } from './SignedRequest';
export type RemoveAllPublicAddressesRequestProps = {
fioAddress: string;
maxFee: number;
technologyProviderId: string;
};
export type RemoveAllPublicAddressesRequestData = {
fio_address: string;
actor: string;
tpid: string;
max_fee: number;
};
export declare class RemoveAllPublicAddressesRequest extends SignedRequest<RemoveAllPublicAddressesRequestData, RemoveAllPublicAddressesResponse> {
props: RemoveAllPublicAddressesRequestProps;
ENDPOINT: "chain/remove_all_pub_addresses";
ACTION: Action;
ACCOUNT: Account;
constructor(config: RequestConfig, props: RemoveAllPublicAddressesRequestProps);
getData: () => {
actor: string;
fio_address: string;
max_fee: number;
tpid: string;
};
}
//# sourceMappingURL=RemoveAllPublicAddressesRequest.d.ts.map