@kiloscribe/inscription-sdk
Version:
SDK for inscribing files on Hedera
14 lines (13 loc) • 393 B
TypeScript
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>;
}