feat: add support for Opt Sepolia in the Alchemy client

This commit is contained in:
Dario Gabriel Lipicar 2023-12-04 10:37:41 -03:00 committed by dlipicar
parent 485c1d8742
commit f08e6f7137
1 changed files with 2 additions and 0 deletions

View File

@ -35,6 +35,8 @@ func getBaseURL(chainID walletCommon.ChainID) (string, error) {
return "https://opt-mainnet.g.alchemy.com", nil
case walletCommon.OptimismGoerli:
return "https://opt-goerli.g.alchemy.com", nil
case walletCommon.OptimismSepolia:
return "https://opt-sepolia.g.alchemy.com", nil
case walletCommon.ArbitrumMainnet:
return "https://arb-mainnet.g.alchemy.com", nil
case walletCommon.ArbitrumGoerli: