UNPKG

o3-dapi-ont

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