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) • 356 B
TypeScript
import { BlindingKey } from './childKeyDesc/blindingKey';
import { Scalar } from '../scalar';
import { TokenKey } from './childKeyDesc/tokenKey';
import { TxKey } from './childKeyDesc/txKey';
export declare class ChildKey extends Scalar {
constructor(obj?: Scalar);
toBlindingKey(): BlindingKey;
toTokenKey(): TokenKey;
toTxKey(): TxKey;
}