UNPKG

o3-dapi-ont

Version:
16 lines (13 loc) 331 B
import { sendMessage } from '../../../messaging'; import { Oep8Command } from '../constants'; interface BalanceOfInput { network: string; scriptHash: string; address: string; } export function balancesOf(data: BalanceOfInput): Promise<string> { return sendMessage({ command: Oep8Command.balancesOf, data, }); }