From 4a16a7641e886cfc7f78b1ded7fa5650a87d7bb4 Mon Sep 17 00:00:00 2001 From: Jonas Bostoen Date: Thu, 23 Jan 2025 20:30:37 +0100 Subject: [PATCH] feat(cli): update default mainnet RPC --- bolt-cli/src/cli.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bolt-cli/src/cli.rs b/bolt-cli/src/cli.rs index fb728267..09e29b29 100644 --- a/bolt-cli/src/cli.rs +++ b/bolt-cli/src/cli.rs @@ -529,7 +529,7 @@ impl Chain { /// Returns None if bolt RPC is not deployed for the chain. pub fn bolt_rpc(&self) -> Option { match self { - Self::Mainnet => Some(Url::parse("https://rpc-mainnet.bolt.chainbound.io").unwrap()), + Self::Mainnet => Some(Url::parse("https://rpc.boltprotocol.xyz").unwrap()), Self::Holesky => Some(Url::parse("https://rpc-holesky.bolt.chainbound.io").unwrap()), _ => None, }