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

18 lines 604 B
import { GetEncryptKeyResponse } from '../../entities'; import { RequestConfig } from '../Transactions'; import { Query } from './Query'; export type EncryptKeyQueryProps = { fioAddress: string; }; export type EncryptKeyQueryData = { fio_address: string; }; export declare class GetEncryptKey extends Query<EncryptKeyQueryData, GetEncryptKeyResponse> { props: EncryptKeyQueryProps; ENDPOINT: "chain/get_encrypt_key"; constructor(config: RequestConfig, props: EncryptKeyQueryProps); getData: () => { fio_address: string; }; } //# sourceMappingURL=GetEncryptKey.d.ts.map