chore: update to version 14.0.11 and align website URLs

This commit is contained in:
2026-01-11 11:34:13 +03:00
parent ef74383349
commit 19c8d69bd8
1499 changed files with 53633 additions and 89 deletions
+20
View File
@@ -0,0 +1,20 @@
import type { HexString } from '@pezkuwi/util/types';
import type { KeypairType } from '@pezkuwi/util-crypto/types';
import type { KeyringInstance, KeyringOptions } from './types.js';
interface PairDef {
name?: string;
p: HexString;
s: HexString;
seed?: string;
type: KeypairType;
}
export declare const PAIRSSR25519: PairDef[];
export declare const PAIRSETHEREUM: PairDef[];
/**
* @name testKeyring
* @summary Create an instance of Keyring pre-populated with locked test accounts
* @description The test accounts (i.e. alice, bob, dave, eve, ferdie)
* are available on the dev chain and each test account is initialized with DOT funds.
*/
export declare function createTestKeyring(options?: KeyringOptions, isDerived?: boolean): KeyringInstance;
export {};