@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
31 lines • 1.12 kB
TypeScript
import { Account, Action, PublicAddress, RemovePublicAddressesResponse } from '../../entities';
import { RequestConfig } from '../Transactions';
import { SignedTransaction } from './SignedTransaction';
export type RemovePublicAddressesRequestProps = {
fioAddress: string;
publicAddresses: PublicAddress[];
maxFee: number;
technologyProviderId: string;
};
export type RemovePublicAddressesRequestData = {
actor: string;
fio_address: string;
max_fee: number;
public_addresses: PublicAddress[];
tpid: string;
};
export declare class RemovePublicAddresses extends SignedTransaction<RemovePublicAddressesRequestData, RemovePublicAddressesResponse> {
props: RemovePublicAddressesRequestProps;
ENDPOINT: "chain/remove_pub_address";
ACTION: Action;
ACCOUNT: Account;
constructor(config: RequestConfig, props: RemovePublicAddressesRequestProps);
getData: () => {
actor: string;
fio_address: string;
max_fee: number;
public_addresses: PublicAddress[];
tpid: string;
};
}
//# sourceMappingURL=RemovePublicAddresses.d.ts.map