import { sendMessage } from '../../messaging'; import { Command } from '../../constants'; export interface Account { address: string; label: string; } export function pickAddress(): Promise { return sendMessage({ command: Command.pickAddress, }); }