cake_wallet/cw_zano/lib/model/pending_zano_transaction.dart

78 lines
2.3 KiB
Dart
Raw Normal View History

import 'dart:convert';
2024-03-16 10:55:03 +00:00
import 'package:cw_core/pending_transaction.dart';
2023-12-16 12:19:11 +00:00
import 'package:cw_zano/api/exceptions/transfer_exception.dart';
import 'package:cw_zano/api/model/destination.dart';
import 'package:cw_zano/api/model/transfer_params.dart';
import 'package:cw_zano/api/model/transfer_result.dart';
2024-03-16 10:55:03 +00:00
import 'package:cw_zano/zano_formatter.dart';
import 'package:cw_zano/zano_wallet.dart';
2023-10-02 14:17:35 +00:00
class PendingZanoTransaction with PendingTransaction {
PendingZanoTransaction({
required this.zanoWallet,
required this.destinations,
required this.fee,
required this.comment,
2024-03-16 10:55:03 +00:00
required this.assetId,
required this.ticker,
this.decimalPoint = ZanoFormatter.defaultDecimalPoint,
2024-03-16 10:55:03 +00:00
required this.amount,
});
2023-10-02 14:17:35 +00:00
2023-12-16 12:19:11 +00:00
final ZanoWalletBase zanoWallet;
final List<Destination> destinations;
2024-03-16 10:55:03 +00:00
final BigInt fee;
final String comment;
2024-03-16 10:55:03 +00:00
final String assetId;
final String ticker;
final int decimalPoint;
final BigInt amount;
2023-10-02 14:17:35 +00:00
@override
String get id => transferResult?.txHash ?? '';
2023-10-02 14:17:35 +00:00
@override
String get hex => '';
@override
2024-03-16 10:55:03 +00:00
String get amountFormatted => '${ZanoFormatter.bigIntAmountToString(amount, decimalPoint)} $ticker';
2023-10-02 14:17:35 +00:00
@override
2024-03-16 10:55:03 +00:00
String get feeFormatted => '${ZanoFormatter.bigIntAmountToString(fee)} ZANO';
TransferResult? transferResult;
2023-10-02 14:17:35 +00:00
@override
Future<void> commit() async {
2024-03-06 06:48:59 +00:00
final params = TransferParams(
destinations: destinations,
2024-03-06 06:48:59 +00:00
fee: fee,
2024-03-15 12:42:27 +00:00
mixin: zanoMixinValue,
2024-03-06 06:48:59 +00:00
paymentId: '',
comment: comment,
pushPayer: false,
hideReceiver: true,
2024-03-06 06:48:59 +00:00
);
final result = await zanoWallet.invokeMethod('transfer', params);
final map = jsonDecode(result);
final resultMap = map['result'] as Map<String, dynamic>?;
if (resultMap != null) {
final transferResultMap = resultMap['result'] as Map<String, dynamic>?;
if (transferResultMap != null) {
transferResult = TransferResult.fromJson(transferResultMap);
print('transfer success hash ${transferResult!.txHash}');
await zanoWallet.fetchTransactions();
2023-12-16 12:19:11 +00:00
} else {
final errorCode = resultMap['error']['code'];
final code = errorCode is int ? errorCode.toString() : errorCode as String? ?? '';
final message = resultMap['error']['message'] as String? ?? '';
print('transfer error $code $message');
throw TransferException(code, message);
2023-12-16 12:19:11 +00:00
}
}
2023-10-02 14:17:35 +00:00
}
2024-03-16 10:55:03 +00:00
2023-10-02 14:17:35 +00:00
}