UNPKG

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