UNPKG

@kiloscribe/inscription-sdk

Version:
14 lines (13 loc) 393 B
import { Network } from '../types'; export interface MirrorNodeAccountKey { _type: string; key: string; } export interface MirrorNodeAccountResponse { key?: MirrorNodeAccountKey; } export declare class HederaMirrorNode { private readonly baseUrl; constructor(network: Network, baseUrl?: string); requestAccount(accountId: string): Promise<MirrorNodeAccountResponse>; }