From eda061018e53676af7a9b26b15808104efccf974 Mon Sep 17 00:00:00 2001 From: NikitaKent <57263011+nikitakent@users.noreply.github.com> Date: Fri, 25 Apr 2025 13:27:05 +0900 Subject: [PATCH] Updated Priority Fee section for accuracy. - Validators still have indirect economic incentive to include transactions in block due to the deflationary effects of burning base fees, thus the sentence "Without tips, validators would find it economically viable to mine empty blocks, as they would receive the same block reward." was not technically accurate. Block rewards also outdated terminology. --- public/content/developers/docs/gas/index.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/content/developers/docs/gas/index.md b/public/content/developers/docs/gas/index.md index ac91fbaaaca..30176d08c8b 100644 --- a/public/content/developers/docs/gas/index.md +++ b/public/content/developers/docs/gas/index.md @@ -81,7 +81,7 @@ It's also important to note it is unlikely we will see extended spikes of full b ### Priority fee (tips) {#priority-fee} -The priority fee (tip) incentivizes validators to include a transaction in the block. Without tips, validators would find it economically viable to mine empty blocks, as they would receive the same block reward. Small tips give validators a minimal incentive to include a transaction. For transactions to be preferentially executed ahead of other transactions in the same block, a higher tip can be added to try to outbid competing transactions. +The priority fee (tip) incentivizes validators to maximise the number of transactions in a block, constrained only by the block gas limit. Without tips, a rational validator could include fewer - or even zero - transactions without any direct execution-layer or consensus-layer penalty, as staking rewards are independent of how many transactions are in a block. Additionally, tips allow users to outbid others for priority within the same block, effectively signalling urgency. ### Max fee {#maxfee}