maxPriorityFeePerGas
MaxPriorityFeePerGas is a parameter of Ethereum transactions introduced with EIP-1559. It represents the maximum amount of tip per unit of gas that a sender is willing to pay to miners to prioritize their transaction. The value is expressed in gwei and works in conjunction with maxFeePerGas to govern transaction fees under the base fee/tip model.
In the EIP-1559 fee model, each transaction specifies both maxFeePerGas and maxPriorityFeePerGas. The baseFeePerGas is determined
The practical effect is that increasing maxPriorityFeePerGas can make a transaction more attractive to miners, potentially
Compatibility considerations: on networks or nodes that do not support EIP-1559, maxPriorityFeePerGas is ignored and legacy
---