From 727756dc07066b90b3c4d87f6128a1685623cf37 Mon Sep 17 00:00:00 2001 From: SGiaccobasso Date: Tue, 24 Sep 2024 00:36:10 -0300 Subject: [PATCH] chore: change ethers version --- scripts/validate-token-configs.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/validate-token-configs.js b/scripts/validate-token-configs.js index 024f69e..36a67a0 100644 --- a/scripts/validate-token-configs.js +++ b/scripts/validate-token-configs.js @@ -98,7 +98,9 @@ async function getProvider(axelarChainId) { const provider = new ethers.JsonRpcProvider(rpcUrl); // Test the provider with a simple call - await provider.getNetwork(); + const network = await provider.getNetwork(); + console.log("network", network); + console.log("retry", attempt); return provider; } catch (error) {