chaingate
Version:
A complete TypeScript library for connecting to and making transactions on different blockchains
4 lines (3 loc) • 355 B
TypeScript
import { PrivateKey } from '../../../../Wallet/entities/Secret/implementations/PrivateKey';
export declare function signMessage(message: Uint8Array | string, privateKey: PrivateKey, prefix?: string): Promise<string>;
export declare function getSignedMessagePublicKey(message: Uint8Array | string, signature: string, prefix?: string): Promise<Uint8Array>;