UNPKG

clvm_tools

Version:

Javascript implementation of clvm_tools

17 lines (16 loc) 520 B
export declare function compose_paths(path_0: bigint, path_1: bigint): bigint; export declare class NodePath { private _index; as_path: () => import("clvm").Bytes; get index(): bigint; constructor(index?: bigint); as_short_path(): import("clvm").Bytes; add(other_node: NodePath): NodePath; first(): NodePath; rest(): NodePath; toString(): string; __repl__(): string; } export declare const TOP: NodePath; export declare const LEFT: NodePath; export declare const RIGHT: NodePath;