@quirks/core
Version:
11 lines (10 loc) • 322 B
TypeScript
export interface Key {
readonly name: string;
readonly algo: string;
readonly pubKey: Uint8Array | null;
readonly address: Uint8Array | null;
readonly bech32Address: string;
readonly ethereumHexAddress?: string;
readonly isNanoLedger: boolean | null;
readonly isKeystone: boolean | null;
}