SpendableUtxo constructor

const SpendableUtxo({
  1. required Outpoint outpoint,
  2. required BigInt value,
  3. required Uint8List scriptPubKey,
  4. String? derivationPath,
  5. Uint8List? ownerPubKey,
  6. ChainParams? chainParams,
  7. int? blockHeight,
  8. bool isCoinbase = false,
})

Implementation

const SpendableUtxo({
  required this.outpoint,
  required this.value,
  required this.scriptPubKey,
  this.derivationPath,
  this.ownerPubKey,
  this.chainParams,
  this.blockHeight,
  this.isCoinbase = false,
});