UNPKG

o3-dapi-ont

Version:
15 lines (12 loc) 324 B
import { sendMessage } from '../../../messaging'; import { Oep4Command } from '../constants'; interface TotalSupplyInput { network: string; scriptHash: string; } export function getTotalSupply(data: TotalSupplyInput): Promise<number> { return sendMessage({ command: Oep4Command.getTotalSupply, data, }); }