UNPKG

o3-dapi-ont

Version:
19 lines (15 loc) 352 B
import { sendMessage } from '../../messaging'; import { Command } from '../../constants'; interface GetGasPriceInput { network: string; } interface GasPrice { gasPrice: number; height: number; } export function getGasPrice(data: GetGasPriceInput): Promise<GasPrice> { return sendMessage({ command: Command.getGasPrice, data, }); }