fix: remove _incoming and _outgoing tags from tx Ids, fixes blockchain links too. (#3323)
David Adegoke committed
Jun 10, 2026 at 18:10 UTC
67b043319d407a2d2a7cdc8b8a1781d0bac991ed
1 file changed
+3
cw_solana/lib/solana_transaction_info.dart
+3
@@ -28,6 +28,9 @@ class SolanaTransactionInfo extends TransactionInfo {
28
29
String? _fiatAmount;
30
31
+ @override
32
+ String get txHash => id.replaceFirst(RegExp(r'_(outgoing|incoming)$'), '');
33
+
34
@override
35
DateTime get date => blockTime;
36