mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-06-17 02:01:02 +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
10 lines
348 B
TypeScript
10 lines
348 B
TypeScript
// Copyright 2017-2025 @pezkuwi/util-crypto authors & contributors
|
|
// SPDX-License-Identifier: Apache-2.0
|
|
|
|
import * as sr25519 from '@scure/sr25519';
|
|
|
|
import { createDeriveFn } from './derive.js';
|
|
|
|
// eslint-disable-next-line @typescript-eslint/unbound-method
|
|
export const sr25519DeriveHard = /*#__PURE__*/ createDeriveFn(sr25519.HDKD.secretHard);
|