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.
8 lines (7 loc) • 383 B
TypeScript
import { Scalar } from '../scalar';
import { PublicKey } from './publicKey';
import { SpendingKey } from './childKeyDesc/txKeyDesc/spendingKey';
import { ViewKey } from './childKeyDesc/txKeyDesc/viewKey';
export declare class PrivSpendingKey extends Scalar {
constructor(blindingPubKey: PublicKey, viewKey: ViewKey, spendingKey: SpendingKey, account: number, address: number);
}