mirror of
https://github.com/pezkuwichain/pezkuwi-common.git
synced 2026-04-22 02:07:56 +00:00
13 lines
439 B
TypeScript
13 lines
439 B
TypeScript
import { BN } from '@pezkuwi/util';
|
|
export declare class DeriveJunction {
|
|
#private;
|
|
static from(value: string): DeriveJunction;
|
|
get chainCode(): Uint8Array;
|
|
get isHard(): boolean;
|
|
get isSoft(): boolean;
|
|
hard(value: number | string | bigint | BN | Uint8Array): DeriveJunction;
|
|
harden(): DeriveJunction;
|
|
soft(value: number | string | bigint | BN | Uint8Array): DeriveJunction;
|
|
soften(): DeriveJunction;
|
|
}
|