UNPKG

o3-dapi-ont

Version:
14 lines (11 loc) 287 B
import { sendMessage } from '../../messaging'; import { Command } from '../../constants'; interface PublicKeyOutput { publicKey: string; address: string; } export function getPublicKey(): Promise<PublicKeyOutput> { return sendMessage({ command: Command.getPublicKey, }); }