UNPKG

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) 275 B
import { Scalar } from '../../scalar'; import { SpendingKey } from './txKeyDesc/spendingKey'; import { ViewKey } from './txKeyDesc/viewKey'; export declare class TxKey extends Scalar { constructor(obj?: any); toSpendingKey(): SpendingKey; toViewKey(): ViewKey; }