diff --git a/src/api/web3/index.ts b/src/api/web3/index.ts index b00edb381..4bd1b3ea7 100644 --- a/src/api/web3/index.ts +++ b/src/api/web3/index.ts @@ -90,7 +90,7 @@ export function getProviderByNetwork(networkId: Network | null): string | undefi case Network.RINKEBY: return infuraProvider(networkId) case Network.GNOSIS_CHAIN: - return 'https://dai.poa.network' + return 'https://rpc.gnosischain.com/' default: return undefined } diff --git a/src/utils/walletconnectOptions.ts b/src/utils/walletconnectOptions.ts index 948d5b545..e201ccb2b 100644 --- a/src/utils/walletconnectOptions.ts +++ b/src/utils/walletconnectOptions.ts @@ -13,7 +13,7 @@ export interface WCOptions { } const defaultRPC = { - [Network.GNOSIS_CHAIN]: 'https://rpc.xdaichain.com/', + [Network.GNOSIS_CHAIN]: 'https://rpc.gnosischain.com/', } export const setCustomWCOptions = (options: WCOptions): boolean => {