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

24 lines 779 B
import { PublicAddressResponse } from '../../entities'; import { RequestConfig } from '../Transactions'; import { Query } from './Query'; export type PublicAddressQueryProps = { fioAddress: string; chainCode: string; tokenCode: string; }; export type PublicAddressQueryData = { fio_address: string; chain_code: string; token_code: string; }; export declare class PublicAddressQuery extends Query<PublicAddressQueryData, PublicAddressResponse> { props: PublicAddressQueryProps; ENDPOINT: "chain/get_pub_address"; constructor(config: RequestConfig, props: PublicAddressQueryProps); getData: () => { chain_code: string; fio_address: string; token_code: string; }; } //# sourceMappingURL=PublicAddressQuery.d.ts.map