UNPKG

o3-dapi-ont

Version:
15 lines (12 loc) 335 B
import { sendMessage } from '../../messaging'; import { Command } from '../../constants'; interface GetSmartCodeEventInput { value: string | number; network: string; } export function getSmartCodeEvent(data: GetSmartCodeEventInput): Promise<any> { return sendMessage({ command: Command.getSmartCodeEvent, data, }); }