setWalletFees method

void setWalletFees(
  1. BigInt fee
)

Sets the maximum fee per gas and priority fee per gas for the wallet.

fee is the fee amount to be set.

Implementation

void setWalletFees(BigInt fee) {
  wallet.setMaxFeePerGas(fee);
  wallet.setMaxPriorityFeePerGas(fee);
}