Skip to content

Commit

Permalink
chore: change ethers version
Browse files Browse the repository at this point in the history
  • Loading branch information
SGiaccobasso committed Sep 24, 2024
1 parent 99c6d25 commit 6787e0d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions scripts/validate-token-configs.js
Original file line number Diff line number Diff line change
Expand Up @@ -98,6 +98,8 @@ async function getProvider(axelarChainId) {
const rpcUrl = await getRpcUrl(axelarChainId, attempt);
provider = new ethers.JsonRpcProvider(rpcUrl);

console.log("network -", network);
console.log("retry -", attempt);
// Test the provider with a simple call
const network = await provider.getNetwork();
console.log("network", network);
Expand Down Expand Up @@ -203,6 +205,7 @@ async function validateChains(info) {
console.log(`Validating for ${chain.axelarChainId}...`);

const provider = getProvider(chain.axelarChainId);
console.log("provider", provider);

await validateTokenAddress(chain, provider);
await validateTokenDetails(chain, info, provider);
Expand Down

0 comments on commit 6787e0d

Please sign in to comment.