import { sendMessage } from '../../../messaging'; import { Oep4Command } from '../constants'; interface DecimalsInput { network: string; scriptHash: string; } export function getDecimals(data: DecimalsInput): Promise { return sendMessage({ command: Oep4Command.getDecimals, data, }); }