UNPKG

o3-dapi-ont

Version:
16 lines (13 loc) 334 B
import { sendMessage } from '../../messaging'; import { Command } from '../../constants'; interface VerifyMessageInput { message: string; publicKey: string; data: string; } export function verifyMessage(data: VerifyMessageInput): Promise<boolean> { return sendMessage({ command: Command.verifyMessage, data, }); }