mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-17 17:57:40 +00:00
Updated bitcoin block explorers to use mempool.space
This commit is contained in:
parent
17463c4a4c
commit
906f84047c
1 changed files with 2 additions and 2 deletions
|
@ -6,13 +6,13 @@ Uri getBlockExplorerTransactionUrlFor({
|
|||
}) {
|
||||
switch (coin) {
|
||||
case Coin.bitcoin:
|
||||
return Uri.parse("https://chain.so/tx/BTC/$txid");
|
||||
return Uri.parse("https://mempool.space/tx/$txid");
|
||||
case Coin.litecoin:
|
||||
return Uri.parse("https://chain.so/tx/LTC/$txid");
|
||||
case Coin.litecoinTestNet:
|
||||
return Uri.parse("https://chain.so/tx/LTCTEST/$txid");
|
||||
case Coin.bitcoinTestNet:
|
||||
return Uri.parse("https://chain.so/tx/BTCTEST/$txid");
|
||||
return Uri.parse("https://mempool.space/testnet/tx/$txid");
|
||||
case Coin.dogecoin:
|
||||
return Uri.parse("https://chain.so/tx/DOGE/$txid");
|
||||
case Coin.dogecoinTestNet:
|
||||
|
|
Loading…
Reference in a new issue