From 6e046030cbd408e7378c4d4e0d3e10390c43327d Mon Sep 17 00:00:00 2001 From: pragmaxim Date: Wed, 1 Jul 2026 12:39:21 +0000 Subject: [PATCH] fix(grafana): correct stale instant-tier claim in EIP-1559 max-fee panel a2ec3b3d remapped 1inch's four fee tiers onto low/medium/high (discarding the low tier and folding instant into high), so 1inch no longer surfaces a separate instant tier. The panel description still claimed 1inch was a "provider that return[s] four tiers", which is no longer true and would send an on-call engineer chasing a phantom instant-tier discrepancy. Co-Authored-By: Claude Sonnet 5 --- configs/grafana/panels.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configs/grafana/panels.yaml b/configs/grafana/panels.yaml index a3aae3f2b4..403ddeb1d0 100644 --- a/configs/grafana/panels.yaml +++ b/configs/grafana/panels.yaml @@ -665,7 +665,7 @@ panels: legend: '{{instance}} - {{provider}} - {{status}}' fees.eip1559_max_fee: title: EIP-1559 maxFeePerGas by tier (Gwei) - description: The maxFeePerGas the pull path (estimateFee) serves per tier, in Gwei (raw wei / 1e9). This is what wallets such as Trezor Suite spend as the fee cap, so it is the headline panel for "fees too high". On provider-backed coins (e.g. Infura, 1inch) these are the provider's suggestions; on on-chain coins they are 2x baseFee + tip. The instant tier exists only on the on-chain path and on providers that return four tiers (1inch), so an instant line appearing on a provider that does not return it means the provider cache was stale and the on-chain fallback served the estimate. Compare with the base fee and the buffer-ratio panel to tell a busy chain from an estimator regression. + description: The maxFeePerGas the pull path (estimateFee) serves per tier, in Gwei (raw wei / 1e9). This is what wallets such as Trezor Suite spend as the fee cap, so it is the headline panel for "fees too high". On provider-backed coins (e.g. Infura, 1inch) these are the provider's suggestions, remapped per-provider onto low/medium/high for comparable aggressiveness across providers; on on-chain coins they are 2x baseFee + tip. The instant tier exists only on the on-chain path, so an instant line on a provider-backed coin means the provider cache was stale and the on-chain fallback served the estimate. Compare with the base fee and the buffer-ratio panel to tell a busy chain from an estimator regression. queries: by_tier: promql: ({{name:eth_eip1559_fee}}{job="blockbook", coin="$coin", kind="max_fee"} / 1e9)