Understanding dynamic fee pricing and the EIP-1559 mechanism in Cosmos EVM chains
baseFee
: Protocol-determined minimum price per gas unitpriorityTip
: Optional fee for transaction prioritizationgasLimit
is gasWanted
in Cosmos. You’ll encounter both terms in the Cosmos EVM as it bridges Ethereum and Cosmos SDK concepts.gasUsed > gasTarget
(congested)gasUsed < gasTarget
(underutilized)gasUsed == gasTarget
(optimal)ElasticityMultiplier = 2
: 50% target (Ethereum standard)ElasticityMultiplier = 4
: 25% target (aggressive pricing)ElasticityMultiplier = 1
: 100% target (maximum throughput)max_priority_fee_per_gas
(tip) serves as an incentive for validators to include transactions faster. However, in Cosmos SDK implementations:
maxFeePerGas
: Maximum total they’re willing to paymaxPriorityFeePerGas
: Maximum tip for validatorsMinGasPrice
parameter via governance