TransactionCreate constructor

const TransactionCreate({
  1. required BigInt gasPrice,
  2. required BigInt gasLimit,
  3. required int maturity,
  4. required int bytecodeLength,
  5. required int bytecodeWitnessIndex,
  6. required String salt,
  7. required List<StorageSlot> storageSlots,
  8. required List<Input> inputs,
  9. required List<Output> outputs,
  10. required List<Witness> witnesses,
})

Implementation

const TransactionCreate(
    {required this.gasPrice,
    required this.gasLimit,
    required this.maturity,
    required this.bytecodeLength,
    required this.bytecodeWitnessIndex,
    required this.salt,
    required this.storageSlots,
    required this.inputs,
    required this.outputs,
    required this.witnesses});