1 | import type { HexString } from '@polkadot/util/types';
|
2 | import type { KeypairType } from '@polkadot/util-crypto/types';
|
3 | import type { KeyringInstance, KeyringOptions } from './types.js';
|
4 | interface PairDef {
|
5 | name?: string;
|
6 | p: HexString;
|
7 | s: HexString;
|
8 | seed?: string;
|
9 | type: KeypairType;
|
10 | }
|
11 | export declare const PAIRSSR25519: PairDef[];
|
12 | export declare const PAIRSETHEREUM: PairDef[];
|
13 |
|
14 |
|
15 |
|
16 |
|
17 |
|
18 |
|
19 | export declare function createTestKeyring(options?: KeyringOptions, isDerived?: boolean): KeyringInstance;
|
20 | export {};
|