UNPKG

o3-dapi-ont

Version:
17 lines (14 loc) 332 B
import { sendMessage } from '../../messaging'; import { Command, Asset } from '../../constants'; interface Allowance { asset: Asset; from: string; to: string; network: string; } export function getAllowance(data: Allowance): Promise<Allowance> { return sendMessage({ command: Command.getAllowance, data, }); }