TransactionEffects constructor

TransactionEffects(
  1. ExecutionStatus status,
  2. GasCostSummary gasUsed,
  3. List<SuiObjectRef>? sharedObjects,
  4. TransactionDigest transactionDigest,
  5. List<OwnedObjectRef>? created,
  6. List<OwnedObjectRef> mutated,
  7. List<OwnedObjectRef>? unwrapped,
  8. List<SuiObjectRef>? deleted,
  9. List<SuiObjectRef>? wrapped,
  10. OwnedObjectRef gasObject,
  11. List? events,
  12. List<TransactionDigest> dependencies,
  13. Map<String, dynamic> json,
)

Implementation

TransactionEffects(
  this.status,
  this.gasUsed,
  this.sharedObjects,
  this.transactionDigest,
  this.created,
  this.mutated,
  this.unwrapped,
  this.deleted,
  this.wrapped,
  this.gasObject,
  this.events,
  this.dependencies,
  this.json,
);