From eaff0ee29979b382442bd8d7337f50a4bf1d0bfc Mon Sep 17 00:00:00 2001 From: Nathan Woodburn Date: Tue, 4 Jun 2024 14:26:35 +1000 Subject: [PATCH] fix: Tx url using cymon --- lib/transactions.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/transactions.dart b/lib/transactions.dart index bde9a60..b07fbc6 100644 --- a/lib/transactions.dart +++ b/lib/transactions.dart @@ -135,7 +135,7 @@ class _TransactionsPageState extends State { Future openTX(String hash) async { // 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)) { throw Exception('Could not launch $url'); }