UNPKG

o3-dapi-ont

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