UNPKG

@airgap/coinlib-core

Version:

The @airgap/coinlib-core is a protocol agnostic library to prepare, sign and broadcast cryptocurrency transactions.

9 lines (8 loc) 337 B
import { CryptoClient } from './CryptoClient'; export declare abstract class Ed25519CryptoClient extends CryptoClient { encryptAsymmetric(payload: string, publicKey: string): Promise<string>; decryptAsymmetric(encryptedPayload: string, keypair: { publicKey: string; privateKey: string; }): Promise<string>; }