From 5f672fc8193ad6a5545659fa370393e60e00b15d Mon Sep 17 00:00:00 2001 From: Gosuto Inzasheru Date: Wed, 11 Feb 2026 03:41:27 -0500 Subject: [PATCH 1/2] fix: support core pools for monad and xlayer --- bal_tools/pools_gauges.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/bal_tools/pools_gauges.py b/bal_tools/pools_gauges.py index b39a4c3..3cc4a1d 100644 --- a/bal_tools/pools_gauges.py +++ b/bal_tools/pools_gauges.py @@ -305,6 +305,8 @@ def build_core_pools( "hyperevm": {}, "optimism": {}, "plasma": {}, + "monad": {}, + "xlayer": {}, } # summarise extended core pools dict into core_pools dict From 9d0343baee3af5ea95b7331ce40840ae07d0d498 Mon Sep 17 00:00:00 2001 From: Gosuto Inzasheru Date: Wed, 11 Feb 2026 04:26:00 -0500 Subject: [PATCH 2/2] fix: zkevm ded --- tests/test_subgraph.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/test_subgraph.py b/tests/test_subgraph.py index 6c21261..c29b6fb 100644 --- a/tests/test_subgraph.py +++ b/tests/test_subgraph.py @@ -195,7 +195,7 @@ def test_get_first_block_after_utc_timestamp_with_etherscan( if not os.getenv("ETHERSCAN_API_KEY"): pytest.skip("ETHERSCAN_API_KEY not set") - if chain not in chains_prod or chain in ["fantom", "sonic", "mode"]: + if chain not in chains_prod or chain in ["fantom", "sonic", "mode", "zkevm"]: pytest.skip(f"Skipping {chain}") test_timestamp = int((datetime.now() - timedelta(days=1)).timestamp())