stack_wallet/lib/services/coins/tezos/api/tezos_transaction.dart

45 lines
887 B
Dart
Raw Normal View History

2023-08-24 19:13:51 +00:00
class TezosOperation {
int? id;
String hash;
String? type;
int height;
int timestamp;
int? cycle;
int? counter;
int? op_n;
int? op_p;
String? status;
bool? is_success;
int? gas_limit;
int? gas_used;
int? storage_limit;
int amountInMicroTez;
int feeInMicroTez;
int? burnedAmountInMicroTez;
String senderAddress;
String receiverAddress;
int? confirmations;
2023-08-24 17:51:48 +00:00
2023-08-24 19:13:51 +00:00
TezosOperation({
this.id,
2023-08-24 17:51:48 +00:00
required this.hash,
2023-08-24 19:13:51 +00:00
this.type,
2023-08-24 17:51:48 +00:00
required this.height,
required this.timestamp,
2023-08-24 19:13:51 +00:00
this.cycle,
this.counter,
this.op_n,
this.op_p,
this.status,
this.is_success,
this.gas_limit,
this.gas_used,
this.storage_limit,
2023-08-24 17:51:48 +00:00
required this.amountInMicroTez,
required this.feeInMicroTez,
2023-08-24 19:13:51 +00:00
this.burnedAmountInMicroTez,
2023-08-24 17:51:48 +00:00
required this.senderAddress,
required this.receiverAddress,
2023-08-24 19:13:51 +00:00
this.confirmations
2023-08-24 17:51:48 +00:00
});
}