From 16fde03738b3e37c33f27a98f408b465dc97d4d7 Mon Sep 17 00:00:00 2001 From: cgewecke Date: Thu, 14 Mar 2024 00:00:12 -0700 Subject: [PATCH] Clarify L1/L2 data sources in config example --- docs/advanced.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/advanced.md b/docs/advanced.md index 2977abd..02d81db 100644 --- a/docs/advanced.md +++ b/docs/advanced.md @@ -126,8 +126,8 @@ const config: HardhatUserConfig = { gasReporter: { coinmarketcap: "abc...", L2: "optimism", - gasPriceApi: "https://custom.api/latest_gas_price...", - getBlockApi: "https://custom.api/latest_block_header..." + gasPriceApi: "https://custom.L2.api/latest_L2_gas_price...", + getBlockApi: "https://custom.L1.api/latest_L1_block_header..." } } ```