navio-blsct
Version:
TypeScript bindings for the `libblsct` library used by the [Navio](https://nav.io/) blockchain to construct confidential transactions based on the BLS12-381 curve.
10 lines (9 loc) • 343 B
TypeScript
import { ManagedObj } from './managedObj';
import { CTxId } from './ctxId';
export declare class OutPoint extends ManagedObj {
constructor(obj: any);
static generate(ctxId: CTxId, outIndex: number): OutPoint;
value(): any;
serialize(): string;
static deserialize(this: new (obj: any) => OutPoint, hex: string): OutPoint;
}