@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 • 568 B
TypeScript
import { AccountResponse } from '../../entities';
import { RequestConfig } from '../Transactions';
import { Query } from './Query';
export type AccountQueryProps = {
actor: string;
};
export type AccountQueryData = {
account_name: string;
};
export declare class AccountQuery extends Query<AccountQueryData, AccountResponse> {
props: AccountQueryProps;
ENDPOINT: "chain/get_account";
constructor(config: RequestConfig, props: AccountQueryProps);
getData: () => {
account_name: string;
};
}
//# sourceMappingURL=AccountQuery.d.ts.map