UNPKG

@ledgerhq/coin-hedera

Version:
8 lines (6 loc) 286 B
export type HederaSignature = Uint8Array | undefined; // NOTE: check if undefined is possible export interface HederaSigner { getPublicKey(path: string): Promise<string>; signTransaction(transaction: Uint8Array): Promise<Uint8Array>; } export type HederaSignatureSdk = Uint8Array;