set Base Fee
Sets the base fee per operation.
The total fee will be calculated as:
maxFee = (baseFee × (numInnerOperations + 1)) + sorobanResourceFeeContent copied to clipboard
The "+1" accounts for the fee bump operation itself.
Validation
Must be at least AbstractTransaction.MIN_BASE_FEE (100 stroops)
Must be higher than or equal to the inner transaction's base fee
Cannot be set if setFee was already called
Return
This builder for method chaining
Parameters
base Fee
The base fee per operation in stroops
Throws
if setFee was already called