From b652db6142b5d31feca37f2855bb78d06acfe10d Mon Sep 17 00:00:00 2001 From: Niclas Blomberg Date: Thu, 28 Sep 2023 12:56:37 +0300 Subject: [PATCH] =?UTF-8?q?feat:=20remove=20blocknative=20from=20relays=20?= =?UTF-8?q?=F0=9F=AB=A1?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/censorship/relay.rs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/censorship/relay.rs b/src/censorship/relay.rs index eca8246..6cd6821 100644 --- a/src/censorship/relay.rs +++ b/src/censorship/relay.rs @@ -32,7 +32,6 @@ pub enum RelayId { Flashbots, BlxrMaxProfit, BlxrRegulated, - Blocknative, Eden, Aestus, Manifold, @@ -46,7 +45,6 @@ impl fmt::Display for RelayId { RelayId::Flashbots => write!(f, "flashbots"), RelayId::BlxrMaxProfit => write!(f, "blxr-max-profit"), RelayId::BlxrRegulated => write!(f, "blxr-regulated"), - RelayId::Blocknative => write!(f, "blocknative"), RelayId::Eden => write!(f, "eden"), RelayId::Aestus => write!(f, "aestus"), RelayId::Manifold => write!(f, "manifold"), @@ -66,9 +64,6 @@ impl From for Url { RelayId::BlxrRegulated => { Url::parse("https://bloxroute.regulated.blxrbdn.com").unwrap() } - RelayId::Blocknative => { - Url::parse("https://builder-relay-mainnet.blocknative.com").unwrap() - } RelayId::Eden => Url::parse("https://relay.edennetwork.io").unwrap(), RelayId::Aestus => Url::parse("https://mainnet.aestus.live").unwrap(), RelayId::Manifold => Url::parse("https://mainnet-relay.securerpc.com").unwrap(),