fix: Tx url using cymon

This commit is contained in:
Nathan Woodburn 2024-06-04 14:26:35 +10:00
parent f472db8e00
commit eaff0ee299
Signed by: nathanwoodburn
GPG Key ID: 203B000478AD0EF1

View File

@ -135,7 +135,7 @@ class _TransactionsPageState extends State<TransactionsPage> {
Future<void> openTX(String hash) async { Future<void> openTX(String hash) async {
// Open the transaction in the browser // Open the transaction in the browser
final Uri url = Uri.parse('https://flutter.dev'); final Uri url = Uri.parse('https://hns.cymon.de/tx/$hash');
if (!await launchUrl(url)) { if (!await launchUrl(url)) {
throw Exception('Could not launch $url'); throw Exception('Could not launch $url');
} }