UNPKG

o3-dapi-ont

Version:
15 lines (12 loc) 315 B
import { sendMessage } from '../../messaging'; import { Command } from '../../constants'; interface GetUnboundOngInput { address: string; network: string; } export function getUnboundOng(data: GetUnboundOngInput): Promise<string> { return sendMessage({ command: Command.getUnboundOng, data, }); }