Skip to content

Commit c7d41d6

Browse files
Merge pull request #1160 from Verycutecat/main
Block explorer update for Banano and Nano
2 parents e2014df + f5432ab commit c7d41d6

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

lib/wallets/crypto_currency/coins/banano.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@ class Banano extends NanoCurrency {
9090
Uri defaultBlockExplorer(String txid) {
9191
switch (network) {
9292
case CryptoCurrencyNetwork.main:
93-
return Uri.parse("https://www.bananolooker.com/block/$txid");
93+
return Uri.parse("https://creeper.banano.cc/hash/$txid");
9494
default:
9595
throw Exception(
9696
"Unsupported network for defaultBlockExplorer(): $network",

lib/wallets/crypto_currency/coins/nano.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -95,7 +95,7 @@ class Nano extends NanoCurrency {
9595
Uri defaultBlockExplorer(String txid) {
9696
switch (network) {
9797
case CryptoCurrencyNetwork.main:
98-
return Uri.parse("https://www.nanolooker.com/block/$txid");
98+
return Uri.parse("https://nanexplorer.com/nano/blocks/$txid");
9999
default:
100100
throw Exception(
101101
"Unsupported network for defaultBlockExplorer(): $network",

0 commit comments

Comments
 (0)