UNPKG

bitmart-api

Version:

Complete & robust Node.js SDK for BitMart's REST APIs and WebSockets, with TypeScript declarations.

6 lines (5 loc) 240 B
/** * Sign a message, with a secret, using the Web Crypto API */ export declare function signMessage(message: string, secret: string, method: 'hex' | 'base64'): Promise<string>; export declare function checkWebCryptoAPISupported(): void;