UNPKG

@runonflux/aa-schnorr-multisig-sdk

Version:

Account Abstraction Schnorr Multi-Signatures SDK

12 lines (11 loc) 279 B
import { Key } from "./key"; export declare class KeyPair { privateKey: Key; publicKey: Key; constructor({ publicKey, privateKey }: { publicKey: Buffer; privateKey: Buffer; }); static fromJson(params: string): KeyPair; toJson(): string; }