Skip to content

Commit

Permalink
feat(cli): update default mainnet RPC
Browse files Browse the repository at this point in the history
  • Loading branch information
mempirate committed Jan 23, 2025
1 parent 14c0441 commit 4a16a76
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion bolt-cli/src/cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -529,7 +529,7 @@ impl Chain {
/// Returns None if bolt RPC is not deployed for the chain.
pub fn bolt_rpc(&self) -> Option<Url> {
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,
}
Expand Down

0 comments on commit 4a16a76

Please sign in to comment.