Skip to content

Commit be0656b

Browse files
authored
Merge pull request #131 from helius-labs/feat/update-default-sender-endpoint
feat(optimized_transaction): Update Default Sender Endpoint
2 parents 5ba4f0a + 5a7d8e9 commit be0656b

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

src/optimized_transaction.rs

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,8 @@ const SENDER_TIP_ACCOUNTS: [&str; 10] = [
5757
];
5858

5959
pub static SENDER_ENDPOINTS: phf::Map<&'static str, &'static str> = phf_map! {
60-
"Default" => "http://slc-sender.helius-rpc.com",
60+
"Default" => "http://sender.helius-rpc.com",
61+
"US_SLC" => "http://slc-sender.helius-rpc.com",
6162
"US_EAST" => "http://ewr-sender.helius-rpc.com",
6263
"EU_WEST" => "http://lon-sender.helius-rpc.com",
6364
"EU_CENTRAL" => "http://fra-sender.helius-rpc.com",
@@ -68,6 +69,7 @@ pub static SENDER_ENDPOINTS: phf::Map<&'static str, &'static str> = phf_map! {
6869

6970
pub static SENDER_REGION_ALIASES: phf::Map<&'static str, &'static str> = phf_map! {
7071
"US-EAST" => "US_EAST",
72+
"US-SLC" => "US_SLC",
7173
"EU-WEST" => "EU_WEST",
7274
"EU-CENTRAL" => "EU_CENTRAL",
7375
"EU-NORTH" => "EU_NORTH",

0 commit comments

Comments
 (0)