UNPKG

aa-schnorr-multisig-sdk

Version:

Account Abstraction Schnorr Multi-Signatures SDK

13 lines (12 loc) 310 B
/// <reference types="node" /> 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; }