TransactionBuilder constructor

TransactionBuilder({Network network, int maximumFeeRate })

Creates an empty transaction builder

Implementation

TransactionBuilder({Network network, int maximumFeeRate}) :
  this._network = network ?? Network.bitcoinCash(),
  this._maximumFeeRate = maximumFeeRate ?? 2500,
  this._inputs = [],
  this._tx = new Transaction();