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

45 lines
925 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-27 14:43:12 +00:00
TezosOperation(
{this.id,
required this.hash,
this.type,
required this.height,
required this.timestamp,
this.cycle,
this.counter,
this.op_n,
this.op_p,
this.status,
this.is_success,
this.gas_limit,
this.gas_used,
this.storage_limit,
required this.amountInMicroTez,
required this.feeInMicroTez,
this.burnedAmountInMicroTez,
required this.senderAddress,
required this.receiverAddress,
this.confirmations});
}