UNPKG

@gateway.fm/gtw-dvf-client-js

Version:

DVF client js lib with gateway.fm rpc endpoints

15 lines (13 loc) 352 B
/** * Provides a gas price */ const recommendedGasPrice = (dvf) => { return dvf.recommendedGasPrices ? parseFloat(dvf.recommendedGasPrices.fast) * 1.02 : false } module.exports = async (dvf) => { return dvf.config.gasStationApiKey ? await dvf.eth.getGasStationPrice() : recommendedGasPrice(dvf) || dvf.config.defaultGasPrice }