1.0.4 • Published 2 days ago

multichain-gas-price-comparator v1.0.4

Weekly downloads
-
License
MIT
Repository
github
Last release
2 days ago

A utility for comparing gas prices across multiple Ethereum networks

const MultiChainGasPriceComparator = require('multichain-gas-price-comparator');

const comparator = new MultiChainGasPriceComparator([
  'https://mainnet.infura.io/v3/YOUR-PROJECT-ID',  // main
  'https://ropsten.infura.io/v3/YOUR-PROJECT-ID',  // Ropsten 
  'https://rinkeby.infura.io/v3/YOUR-PROJECT-ID',  // Rinkeby 
]);

comparator.getGasPrices().then(gasPrices => {
  console.log(gasPrices); 
});