Skip to content

Commit 6dd68d3

Browse files
authored
fix: Fixed testnet-lava RPC URL (#542)
1 parent 515cc30 commit 6dd68d3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/config/mod.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ impl Default for Config {
6565
"mainnet-lava".to_string(),
6666
NetworkConfig {
6767
network_name: "mainnet".to_string(),
68-
rpc_url: "https://near.lava.build:443/".parse().unwrap(),
68+
rpc_url: "https://near.lava.build/".parse().unwrap(),
6969
rpc_api_key: None,
7070
wallet_url: "https://app.mynearwallet.com/".parse().unwrap(),
7171
explorer_transaction_url: "https://explorer.near.org/transactions/"
@@ -128,7 +128,7 @@ impl Default for Config {
128128
"testnet-lava".to_string(),
129129
NetworkConfig {
130130
network_name: "testnet".to_string(),
131-
rpc_url: "https://near-testnet.lava.build:433/".parse().unwrap(),
131+
rpc_url: "https://neart.lava.build/".parse().unwrap(),
132132
rpc_api_key: None,
133133
wallet_url: "https://testnet.mynearwallet.com/".parse().unwrap(),
134134
explorer_transaction_url: "https://explorer.testnet.near.org/transactions/"

0 commit comments

Comments
 (0)