UNPKG

solana-mpc-tss-lib

Version:

A comprehensive TypeScript library for Solana Multi-Party Computation (MPC) and Threshold Signature Schemes (TSS) - Compatible with ZenGo-X/solana-tss

11 lines (10 loc) 273 B
/* tslint:disable */ /* eslint-disable */ export function sign(message: Uint8Array, secret_key: Uint8Array): Uint8Array; export class Keypair { private constructor(); free(): void; static generate(): Keypair; public_key(): Uint8Array; secret_key(): Uint8Array; }