setMaxPriorityFeePerGas method

  1. @override
IUserOperationBuilder setMaxPriorityFeePerGas(
  1. BigInt fee
)
override

Sets the max priority fee per gas of the operation.

Implementation

@override
IUserOperationBuilder setMaxPriorityFeePerGas(BigInt fee) {
  _currentOp.maxPriorityFeePerGas = fee;
  return this;
}