UNPKG

551 BTypeScriptView Raw
1/// <reference types="bn.js" />
2import type { HexString } from '@polkadot/util/types';
3import { BN } from '@polkadot/util';
4export declare class DeriveJunction {
5 #private;
6 static from(value: string): DeriveJunction;
7 get chainCode(): Uint8Array;
8 get isHard(): boolean;
9 get isSoft(): boolean;
10 hard(value: HexString | number | string | bigint | BN | Uint8Array): DeriveJunction;
11 harden(): DeriveJunction;
12 soft(value: HexString | number | string | bigint | BN | Uint8Array): DeriveJunction;
13 soften(): DeriveJunction;
14}