UNPKG

@hyperledger/cactus-test-tooling

Version:

Swiss army knife for test development. Main goal is to make pulling up test/dummy ledgers on the fly for tests easy, especially for test cases that are about simulating clean ledger state or wiped ledger state, etc.

6 lines (5 loc) 167 B
export interface IKeyPair { publicKey: string; privateKey: string; } export declare function isIKeyPair(allegedKeyPair: IKeyPair): allegedKeyPair is IKeyPair;