@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 • 926 B
TypeScript
import { Account, Action, RenewFioAddressResponse } from '../../entities';
import { RequestConfig } from '../Transactions';
import { SignedTransaction } from './SignedTransaction';
export type RenewFioAddressRequestProps = {
fioAddress: string;
maxFee: number;
technologyProviderId: string;
};
export type RenewFioAddressRequestData = {
fio_address: string;
max_fee: number;
tpid: string;
actor: string;
};
export declare class RenewFioAddress extends SignedTransaction<RenewFioAddressRequestData, RenewFioAddressResponse> {
props: RenewFioAddressRequestProps;
ENDPOINT: "chain/renew_fio_address";
ACTION: Action;
ACCOUNT: Account;
constructor(config: RequestConfig, props: RenewFioAddressRequestProps);
getData: () => {
actor: string;
fio_address: string;
max_fee: number;
tpid: string;
};
}
//# sourceMappingURL=RenewFioAddress.d.ts.map