@hanchon/evmosjs
Version:
Evmosjs javascript lib for the evmos blockchain
25 lines (24 loc) • 570 B
TypeScript
import { RestInstance } from './client';
export interface Account {
address: string;
pubkey: string;
pubkeyType: string;
accountNumber: number;
sequence: number;
error: string;
}
export declare function getAccount(client: RestInstance, address: string): Promise<{
address: any;
pubkey: any;
pubkeyType: any;
accountNumber: any;
sequence: any;
error: string;
} | {
address: string;
pubkey: string;
pubkeyType: string;
accountNumber: number;
sequence: number;
error: any;
}>;