2022-08-26 08:11:35 +00:00
|
|
|
import 'package:stackwallet/utilities/enums/coin_enum.dart';
|
|
|
|
|
|
|
|
Uri getBlockExplorerTransactionUrlFor({
|
|
|
|
required Coin coin,
|
|
|
|
required String txid,
|
|
|
|
}) {
|
|
|
|
switch (coin) {
|
|
|
|
case Coin.bitcoin:
|
|
|
|
return Uri.parse("https://chain.so/tx/BTC/$txid");
|
|
|
|
case Coin.bitcoinTestNet:
|
|
|
|
return Uri.parse("https://chain.so/tx/BTCTEST/$txid");
|
|
|
|
case Coin.dogecoin:
|
|
|
|
return Uri.parse("https://chain.so/tx/DOGE/$txid");
|
|
|
|
case Coin.dogecoinTestNet:
|
|
|
|
return Uri.parse("https://chain.so/tx/DOGETEST/$txid");
|
|
|
|
case Coin.epicCash:
|
|
|
|
// TODO: Handle this case.
|
|
|
|
throw UnimplementedError("missing block explorer for epic cash");
|
|
|
|
case Coin.monero:
|
|
|
|
return Uri.parse("https://xmrchain.net/tx/$txid");
|
|
|
|
case Coin.firo:
|
|
|
|
return Uri.parse("https://explorer.firo.org/tx/$txid");
|
|
|
|
case Coin.firoTestNet:
|
|
|
|
return Uri.parse("https://testexplorer.firo.org/tx/$txid");
|
2022-09-06 14:17:45 +00:00
|
|
|
case Coin.bitcoincash:
|
2022-09-07 15:43:39 +00:00
|
|
|
return Uri.parse("https://blockchair.com/bitcoin-cash/transaction/$txid");
|
2022-08-26 08:11:35 +00:00
|
|
|
}
|
|
|
|
}
|