Skip to content

Commit

Permalink
Use Secure endpoints for BNB on Etherscan (#4525).
Browse files Browse the repository at this point in the history
  • Loading branch information
ricmoo committed Jan 31, 2024
1 parent 561f7a0 commit 1f6e188
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src.ts/providers/provider-etherscan.ts
Original file line number Diff line number Diff line change
Expand Up @@ -171,9 +171,9 @@ export class EtherscanProvider extends AbstractProvider {
case "arbitrum-goerli":
return "https:/\/api-goerli.arbiscan.io";
case "bnb":
return "http:/\/api.bscscan.com";
return "https:/\/api.bscscan.com";
case "bnbt":
return "http:/\/api-testnet.bscscan.com";
return "https:/\/api-testnet.bscscan.com";
case "matic":
return "https:/\/api.polygonscan.com";
case "matic-mumbai":
Expand Down

0 comments on commit 1f6e188

Please sign in to comment.