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.
11 lines (10 loc) • 325 B
TypeScript
import { Point } from './point';
import { RangeProof } from './rangeProof';
export declare class AmountRecoveryReq {
rangeProof: RangeProof;
nonce: Point;
constructor(rangeProof: RangeProof, nonce: Point);
toString(): string;
serialize(): string;
static deserialize(hex: string): AmountRecoveryReq;
}