feat: enable support for Arbitrum Sepolia in Alchemy

This commit is contained in:
Dario Gabriel Lipicar 2023-11-16 17:46:19 -03:00 committed by dlipicar
parent 14a8df8948
commit 00f412e4ac

View file

@ -39,6 +39,8 @@ func getBaseURL(chainID walletCommon.ChainID) (string, error) {
return "https://arb-mainnet.g.alchemy.com", nil
case walletCommon.ArbitrumGoerli:
return "https://arb-goerli.g.alchemy.com", nil
case walletCommon.ArbitrumSepolia:
return "https://arb-sepolia.g.alchemy.com", nil
}
return "", thirdparty.ErrChainIDNotSupported