mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-05 20:07:44 +00:00
58b8509b41
Banano support
89 lines
3 KiB
Dart
89 lines
3 KiB
Dart
/*
|
|
* This file is part of Stack Wallet.
|
|
*
|
|
* Copyright (c) 2023 Cypher Stack
|
|
* All Rights Reserved.
|
|
* The code is distributed under GPLv3 license, see LICENSE file for details.
|
|
* Generated by Cypher Stack on 2023-05-26
|
|
*
|
|
*/
|
|
|
|
import 'package:stackwallet/db/isar/main_db.dart';
|
|
import 'package:stackwallet/models/isar/models/block_explorer.dart';
|
|
import 'package:stackwallet/utilities/enums/coin_enum.dart';
|
|
|
|
// Returns the default block explorer URL for the given coin and txid
|
|
Uri getDefaultBlockExplorerUrlFor({
|
|
required Coin coin,
|
|
required String txid,
|
|
}) {
|
|
switch (coin) {
|
|
case Coin.bitcoin:
|
|
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://mempool.space/testnet/tx/$txid");
|
|
case Coin.dogecoin:
|
|
return Uri.parse("https://chain.so/tx/DOGE/$txid");
|
|
case Coin.eCash:
|
|
return Uri.parse("https://explorer.bitcoinabc.org/tx/$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.ethereum:
|
|
return Uri.parse("https://etherscan.io/tx/$txid");
|
|
case Coin.monero:
|
|
return Uri.parse("https://xmrchain.net/tx/$txid");
|
|
case Coin.wownero:
|
|
return Uri.parse("https://explore.wownero.com/search?value=$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");
|
|
case Coin.bitcoincash:
|
|
return Uri.parse("https://blockchair.com/bitcoin-cash/transaction/$txid");
|
|
case Coin.bitcoincashTestnet:
|
|
return Uri.parse(
|
|
"https://blockexplorer.one/bitcoin-cash/testnet/tx/$txid");
|
|
case Coin.namecoin:
|
|
return Uri.parse("https://chainz.cryptoid.info/nmc/tx.dws?$txid.htm");
|
|
case Coin.particl:
|
|
return Uri.parse("https://chainz.cryptoid.info/part/tx.dws?$txid.htm");
|
|
case Coin.nano:
|
|
return Uri.parse("https://www.nanolooker.com/block/$txid");
|
|
case Coin.banano:
|
|
return Uri.parse("https://www.bananolooker.com/block/$txid");
|
|
}
|
|
}
|
|
|
|
// Returns internal Isar ID for the inserted object/record
|
|
Future<int> setBlockExplorerForCoin({
|
|
required Coin coin,
|
|
required Uri url,
|
|
}) async {
|
|
return await MainDB.instance.putTransactionBlockExplorer(
|
|
TransactionBlockExplorer(
|
|
ticker: coin.ticker,
|
|
url: url.toString(),
|
|
),
|
|
);
|
|
}
|
|
|
|
// Returns the block explorer URL for the given coin and txid
|
|
Uri getBlockExplorerTransactionUrlFor({
|
|
required Coin coin,
|
|
required String txid,
|
|
}) {
|
|
String? url = MainDB.instance.getTransactionBlockExplorer(coin: coin)?.url;
|
|
if (url == null) {
|
|
return getDefaultBlockExplorerUrlFor(coin: coin, txid: txid);
|
|
} else {
|
|
url = url.replaceAll("%5BTXID%5D", txid);
|
|
return Uri.parse(url);
|
|
}
|
|
}
|