From 4db4eaa2d7cd30092341e8d8a2226e1c87556521 Mon Sep 17 00:00:00 2001 From: William Hua Date: Mon, 30 Oct 2023 23:16:14 -0400 Subject: [PATCH] ethgas: fix gas paid for arbitrum goerli, sepolia, xdai --- ethgas/readers.go | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/ethgas/readers.go b/ethgas/readers.go index 94fe11ca..ab8ad891 100644 --- a/ethgas/readers.go +++ b/ethgas/readers.go @@ -14,7 +14,10 @@ var CustomGasPriceBidReaders = map[uint64]GasPriceReader{} var CustomGasPricePaidReaders = map[uint64]GasPriceReader{ 42161: arbitrumGasPricePaidReader, // arbitrum one 42170: arbitrumGasPricePaidReader, // arbitrum nova - 421611: arbitrumGasPricePaidReader, // arbitrum one testnet + 421611: arbitrumGasPricePaidReader, // arbitrum rinkeby + 421613: arbitrumGasPricePaidReader, // arbitrum goerli + 421614: arbitrumGasPricePaidReader, // arbitrum sepolia + 200: arbitrumGasPricePaidReader, // arbitrum xdai } func DefaultGasPriceBidReader(block *ethmonitor.Block) []*big.Int {