import { sendMessage } from '../../messaging'; import { Command } from '../../constants'; interface GetUnboundOngInput { address: string; network: string; } export function getUnboundOng(data: GetUnboundOngInput): Promise { return sendMessage({ command: Command.getUnboundOng, data, }); }