UNPKG

bitmart-api

Version:

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

5 lines (4 loc) 180 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>;