UNPKG

@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.06 kB
import { Account, Action, TransferFioAddressResponse } from '../../entities'; import { RequestConfig } from '../Transactions'; import { SignedTransaction } from './SignedTransaction'; export type TransferFioAddressRequestProps = { fioAddress: string; newOwnerKey: string; maxFee: number; technologyProviderId: string; }; export type TransferFioAddressRequestData = { fio_address: string; new_owner_fio_public_key: string; actor: string; tpid: string; max_fee: number; }; export declare class TransferFioAddress extends SignedTransaction<TransferFioAddressRequestData, TransferFioAddressResponse> { props: TransferFioAddressRequestProps; ENDPOINT: "chain/transfer_fio_address"; ACTION: Action; ACCOUNT: Account; constructor(config: RequestConfig, props: TransferFioAddressRequestProps); getData: () => { actor: string; fio_address: string; max_fee: number; new_owner_fio_public_key: string; tpid: string; }; } //# sourceMappingURL=TransferFioAddress.d.ts.map