UNPKG

dvf-client-js

Version:

<img src="https://avatars1.githubusercontent.com/u/56512535?s=200&v=4" align="right" />

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 }