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.
9 lines (8 loc) • 316 B
TypeScript
import { ManagedObj } from './managedObj';
export declare class SubAddrId extends ManagedObj {
constructor(obj: any);
static generate(account: number, address: number): SubAddrId;
value(): any;
serialize(): string;
static deserialize(this: new (obj: any) => SubAddrId, hex: string): SubAddrId;
}