mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-07-03 14:37:24 +00:00
a5542fdd87
- Fixed internal @polkadot references to @pezkuwi - Updated hw-ledger and hw-ledger-transports packages - Updated keyring and networks packages - Version 14.0.7
19 lines
465 B
TypeScript
19 lines
465 B
TypeScript
// Copyright 2017-2025 @pezkuwi/util-crypto authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import { isReady, waitReady } from '@pezkuwi/wasm-crypto';
|
|
|
|
export const cryptoIsReady = isReady;
|
|
|
|
export function cryptoWaitReady (): Promise<boolean> {
|
|
return waitReady()
|
|
.then((): boolean => {
|
|
if (!isReady()) {
|
|
throw new Error('Unable to initialize @pezkuwi/util-crypto');
|
|
}
|
|
|
|
return true;
|
|
})
|
|
.catch(() => false);
|
|
}
|