UNPKG

airgap-coin-lib

Version:

The airgap-coin-lib is a protocol agnostic library to prepare, sign and broadcast cryptocurrency transactions.

10 lines (9 loc) 355 B
/// <reference types="node" /> import { CryptoClient } from '../CryptoClient'; export declare class AeternityCryptoClient extends CryptoClient { constructor(); signMessage(message: string, keypair: { privateKey: Buffer; }): Promise<string>; verifyMessage(message: string, signature: string, publicKey: string): Promise<boolean>; }