UNPKG

blocklock-js

Version:

A library for encrypting and decrypting data for the future

11 lines (10 loc) 280 B
export type BigIntPair = { c0: bigint; c1: bigint; }; export type BlocklockPublicKey = { x: BigIntPair; y: BigIntPair; }; export declare const BLOCKLOCK_TESTNET_PUBLIC_KEY: BlocklockPublicKey; export declare const BLOCKLOCK_MAINNET_PUBLIC_KEY: BlocklockPublicKey;