ShelleyTransactionBody constructor

ShelleyTransactionBody({
  1. required List<ShelleyTransactionInput> inputs,
  2. required List<ShelleyTransactionOutput> outputs,
  3. required int fee,
  4. int? ttl,
  5. List<int>? metadataHash,
  6. int validityStartInterval = 0,
  7. List<ShelleyMultiAsset> mint = const [],
})

Implementation

ShelleyTransactionBody({
  required this.inputs,
  required this.outputs,
  required this.fee,
  this.ttl,
  this.metadataHash,
  this.validityStartInterval = 0,
  this.mint = const [],
});