setMaxFeePerGas method

  1. @override
IUserOperationBuilder setMaxFeePerGas(
  1. BigInt val
)
override

Sets the max fee per gas of the operation.

Implementation

@override
IUserOperationBuilder setMaxFeePerGas(BigInt val) {
  _currentOp.maxFeePerGas = val;
  return this;
}