Skip to content

Commit

Permalink
fix: add forward slash in url
Browse files Browse the repository at this point in the history
  • Loading branch information
thisisjoshford committed Nov 21, 2024
1 parent 919c41c commit 0e29f5c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/config/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ impl Default for Config {
network_name: "mainnet".to_string(),
rpc_url: "https://archival-rpc.mainnet.near.org".parse().unwrap(),
wallet_url: "https://app.mynearwallet.com/".parse().unwrap(),
explorer_transaction_url: "https://nearblocks.io/txns"
explorer_transaction_url: "https://nearblocks.io/txns/"
.parse()
.unwrap(),
rpc_api_key: None,
Expand All @@ -44,7 +44,7 @@ impl Default for Config {
network_name: "testnet".to_string(),
rpc_url: "https://archival-rpc.testnet.near.org".parse().unwrap(),
wallet_url: "https://testnet.mynearwallet.com/".parse().unwrap(),
explorer_transaction_url: "https://testnet.nearblocks.io/txns"
explorer_transaction_url: "https://testnet.nearblocks.io/txns/"
.parse()
.unwrap(),
rpc_api_key: None,
Expand Down

0 comments on commit 0e29f5c

Please sign in to comment.