Skip to content

Commit 7d5d6eb

Browse files
authored
Merge pull request #836 from 0xMuse/master
cli: Fix Aurora Etherscan API URLs
2 parents 743765f + 0213e5e commit 7d5d6eb

File tree

1 file changed

+2
-0
lines changed

1 file changed

+2
-0
lines changed

src/commands/init.js

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -283,6 +283,8 @@ const getEtherscanLikeAPIUrl = (network) => {
283283
case "bsc": return `https://api.bscscan.com/api`;
284284
case "matic": return `https://api.polygonscan.com/api`;
285285
case "mumbai": return `https://api-testnet.polygonscan.com/api`;
286+
case "aurora": return `https://api.aurorascan.dev/api`;
287+
case "aurora-testnet": return `https://api-testnet.aurorascan.dev/api`;
286288
default: return `https://api-${network}.etherscan.io/api`;
287289
}
288290
}

0 commit comments

Comments
 (0)