From 4d04d49ad8291815394b594a6d1840ff17864a80 Mon Sep 17 00:00:00 2001 From: agnusmor <100322135+agnusmor@users.noreply.github.com> Date: Thu, 7 Mar 2024 15:32:34 +0100 Subject: [PATCH] keep empty RPC.SequencerNodeURI config parameter to get node URI from the SC (#3430) --- config/environments/cardona/node.config.toml | 2 +- config/environments/mainnet/node.config.toml | 2 +- config/environments/testnet/node.config.toml | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/config/environments/cardona/node.config.toml b/config/environments/cardona/node.config.toml index c48295cb4f..1945415179 100644 --- a/config/environments/cardona/node.config.toml +++ b/config/environments/cardona/node.config.toml @@ -45,7 +45,7 @@ Port = 8545 ReadTimeout = "60s" WriteTimeout = "60s" MaxRequestsPerIPAndSecond = 5000 -SequencerNodeURI = "https://rpc.devnet.zkevm-rpc.com" +SequencerNodeURI = "" EnableL2SuggestedGasPricePolling = false [RPC.WebSockets] Enabled = true diff --git a/config/environments/mainnet/node.config.toml b/config/environments/mainnet/node.config.toml index 29a05d4243..383b75a1e8 100644 --- a/config/environments/mainnet/node.config.toml +++ b/config/environments/mainnet/node.config.toml @@ -43,7 +43,7 @@ Port = 8545 ReadTimeout = "60s" WriteTimeout = "60s" MaxRequestsPerIPAndSecond = 5000 -SequencerNodeURI = "https://zkevm-rpc.com" +SequencerNodeURI = "" EnableL2SuggestedGasPricePolling = false [RPC.WebSockets] Enabled = true diff --git a/config/environments/testnet/node.config.toml b/config/environments/testnet/node.config.toml index 45e8b50b93..1945415179 100644 --- a/config/environments/testnet/node.config.toml +++ b/config/environments/testnet/node.config.toml @@ -45,7 +45,7 @@ Port = 8545 ReadTimeout = "60s" WriteTimeout = "60s" MaxRequestsPerIPAndSecond = 5000 -SequencerNodeURI = "https://rpc.public.zkevm-test.net/" +SequencerNodeURI = "" EnableL2SuggestedGasPricePolling = false [RPC.WebSockets] Enabled = true