Title: Priority Fee Sharing for Delegators
Author: Just Hopmans
Description: Extend PIP-65 priority fee distribution to include delegators.
Status: Draft
Type: Contracts
Date: 2026-03-11
Table of Contents
- Definitions
- Abstract
- Motivation
- Specification
- Rationale
- Backwards Compatibility
- Security Considerations
- References
Definitions
- Priority fees: The tip portion of transaction fees on Polygon PoS, paid above the base fee. Base fees are burned. Priority fees are distributed to block producers and validators under PIP-65.
- Delegator: A POL holder who stakes through a validator without running validator infrastructure.
- Validator share token: An ERC-20 token on Ethereum representing a delegator’s proportional share of a specific validator’s total delegated stake.
- Claim contract: A smart contract to be deployed on Ethereum that reads on-chain staking data and distributes priority fees to delegators.
- Commission rate: The percentage a validator charges on rewards distributed to their delegators.
- StakeManager: The core staking contract on Ethereum mainnet that records validator stakes, commission rates, and validator share token addresses.
Abstract
This proposal extends PIP-65’s priority fee distribution model to include delegators. Priority fees are accumulated on Polygon PoS, bridged monthly to Ethereum via the native PoS bridge, and distributed trustlessly by a claim contract that reads validator share token balances (PIP-69) and commission rates (StakeManager) directly on-chain. No off-chain computation is required. The validator retains their commission and self-stake share. The remainder flows to delegators proportionally. No existing contracts are modified.
Motivation
Polygon’s founding documentation states:
“These rewards are primarily meant to jump-start the network, while the protocol in the long run is intended to sustain itself based on transaction fees.” — Polygon Staking Economics.
If transaction fees are intended to sustain the protocol, then the participants who provide the capital securing those fees should share in them. Today, they do not.
Following the Rio hardfork (PIP-65), Polygon PoS introduced a new economic model for priority fee distribution. The model allocates collected priority fees to block producers (26%) and validators (74%). Delegators are excluded from this revenue stream entirely. PIP-65 originally specified an automated smart contract for fee distribution. This was replaced by a manual multisig process two days before mainnet launch due to technical limitations (see PIP-65 forum update, October 6, 2025).
This creates a structural misalignment between economic contribution and economic reward. Approximately 105 permissioned validators collectively provide roughly 0.34% of total staked capital. The remaining 99.66% — representing approximately 33,796 delegators — secures the network through delegated stake but receives no share of priority fees.
- Delegators fund the revenue they are excluded from. Delegated capital directly increases a validator’s fee allocation under PIP-65, which distributes 74% of fees to validators weighted by total stake (including delegation). The delegators providing that capital receive none of the resulting priority fees. Their only yield is emission-based checkpoint rewards — the same rewards Polygon’s own documentation describes as temporary.
- The commission system does not function as intended. Large validators offer 0% commission because it costs them nothing — their real income is priority fees, which exist outside the commission system entirely. Smaller validators need commission revenue to cover infrastructure costs (~$929/month per PIP-65 forum discussion), but cannot compete when delegators default to 0%. For the largest validators, ROI on infrastructure cost exceeds 8,000%. Commission was designed to let validators price their service. When the dominant revenue stream sits outside it, that mechanism breaks.
- The gap grows over time. POL supply decreases through the EIP-1559 burn mechanism (~28.2M POL burned in February 2026 alone). Validators compound on both emission rewards and priority fees. Delegators compound on emission rewards only, which continue to decrease. Approximately 24.11M POL was allocated to validators in the 30 days preceding this proposal. As priority fees grow and emission shrinks, delegators have diminishing economic incentive to stake — directly threatening the network’s long-term security budget. This is precisely the scenario Polygon’s founding documentation warned against.
- The permissioned validator set prevents market correction. Delegators dissatisfied with the fee distribution cannot start competing validators. In an open validator set, market dynamics would pressure validators to share fees. In a closed set of ~105 permissioned slots (PIP-39), the only correction mechanism is exit — which reduces network security rather than improving it.
- Protocol spending amplifies the imbalance. PIP-82 redirects base fees — which would otherwise be burned — to subsidize gas for agent-to-agent transactions. This reduces the burn benefiting all POL holders, while the resulting transaction activity generates priority fees that flow exclusively to validators.
Precedent
This is not a novel design. Major proof-of-stake networks enforce fee sharing at the protocol level:
- Cosmos Hub: All transaction fees and inflation rewards are pooled. A single validator commission rate applies to the combined total. Enforced by the x/distribution module. Major staking providers operating on Polygon — including Coinbase, Figment, Everstake, and P2P — already operate under this model on Cosmos.
- Cardano: Transaction fees and reserve rewards are pooled per epoch. The stake pool operator’s margin applies to the total. Enforced by protocol.
Specification
This proposal does not modify PIP-65’s fee allocation model. How priority fees are divided among block producers and validators remains unchanged.
What changes
- Priority fees are accumulated on Polygon PoS and bridged monthly to Ethereum via the native PoS bridge in a single transaction.
- A claim contract on Ethereum receives the bridged fees and distributes them trustlessly. The contract reads validator stake weights from StakeManager to calculate the per-validator allocation per PIP-65 — the same formula already used for current multisig payouts. For each validator’s allocation, the contract reads the commission rate from StakeManager, deducts commission, and distributes the remainder to delegators in proportion to their validator share token balance (PIP-69). All inputs are on-chain. No off-chain computation is required.
- Delegators claim on Ethereum from the same address they use for staking. They choose whether to restake or withdraw. Gas costs are paid by the delegator, consistent with all existing staking operations.
Why this is fully trustless
The per-validator allocation uses validator stake weights from StakeManager on Ethereum and the PIP-65 formula — the same calculation already performed for current multisig payouts. The per-delegator distribution uses two additional on-chain reads:
balanceOf(delegator)/totalSupply()on the validator share token (PIP-69, full ERC-20)- Commission rate from StakeManager.
No Merkle tree, no off-chain computation, no trusted operator. The claim contract performs the same calculation that anyone can verify on a dashboard — because it reads the same on-chain data.
Data availability
Delegation data is publicly available on Ethereum mainnet. PIP-69 upgraded validator share tokens to full ERC-20, enabling standard balance queries for proportional distribution. Commission rates and stake amounts are recorded in the StakeManager contract. Validator allocations follow from PIP-65’s existing formula. No new data sources or oracles are required.
What does not change
- PIP-65’s allocation formula between block producers and validators.
- The StakeManager contract on Ethereum mainnet.
- The validator share token contracts (PIP-69).
- Checkpoint reward distribution.
- The delegation and staking workflow for delegators.
Commission rate impact
Validators set their commission rate once. This rate applies to both checkpoint rewards (as it does today) and priority fees (new). No additional configuration is required. This changes what commission means. Today, 0% commission costs a validator nothing — their real income is priority fees outside the commission system. Validators compete on who can give away the most. That is a scale game only large validators can afford. Under this proposal, 0% commission means distributing the full fee allocation to delegators. Commission becomes a meaningful economic decision. Validators compete on value — uptime, service, transparency, and fair commission rates. Small validators can win that competition.
Rationale
Why bridge to Ethereum rather than distribute on Polygon PoS?
Staking happens on Ethereum. Delegators claim checkpoint rewards on Ethereum.
Distributing priority fees on Ethereum preserves this workflow and enables the claim
contract to read PIP-69 share tokens and StakeManager commission rates directly — no cross-chain data bridging required. Delegators can restake immediately. The alternative — distributing on Polygon PoS — would require each delegator to bridge individually to restake, shifting costs to 33,796 delegators instead of one protocol-level bridge transaction.
Why mandatory rather than optional?
In a permissioned validator set, optional fee sharing cannot be corrected by market dynamics. Delegators cannot start competing validators. Making fee sharing optional in a closed system preserves the structural advantage of incumbents. Protocol-level enforcement is the standard approach in Cosmos Hub and Cardano — and the validators operating on Polygon already comply with mandatory fee sharing on those networks.
Why extend the existing commission system?
Delegators already understand commission rates when selecting validators. Extending this rate to cover all revenue creates a single transparent metric. Today, validators compete on who can give away the most — a scale game that favors incumbents. This proposal shifts competition to value: uptime, service, and fair commission rates. Small validators can win that competition. This mirrors Cosmos Hub’s design, where a single commission rate applies to both inflation and transaction fees.
Backwards Compatibility
No existing contracts are modified. Two new contracts are deployed: one on Polygon PoS (fee accumulation) and one on Ethereum mainnet (trustless claim distribution). The only change to existing infrastructure is redirecting priority fees from the current multisig to the new fee accumulation contract. Checkpoint rewards continue to function as they do today. Validators’ existing commission rates apply automatically.
Security Considerations
Claim contract correctness. The claim contract reads on-chain data (PIP-69 share tokens, StakeManager commission rates) and performs arithmetic. The logic is deterministic and verifiable. Standard smart contract auditing practices apply.
Snapshot manipulation. A time-weighted average balance over the distribution period prevents gaming around snapshot blocks.
Commission rate frontrunning. A timelock on commission rate changes (one distribution period delay) prevents validators from raising rates immediately before a distribution.
Bridge security. The proposal uses the existing Polygon PoS native bridge, inheriting its security model. No additional trust assumptions are introduced. Future implementations may use AggLayer infrastructure for trustless, higher-frequency distribution and inclusion of Heimdall performance scores once Polygon PoS is connected.
References
- Polygon Staking Economics — Rewards and staking incentives
- PIP-65: Economic Model for VEBloP Architecture
- PIP-69: Full ERC-20 Functionality for Validator Share Tokens
- PIP-82: Agentic Commerce Gas Program
- PIP-39: Validator Admissions into PoS Network
- Cosmos SDK x/distribution module
- Cardano monetary policy
Copyright
All copyrights and related rights in this work are waived under CC0 1.0 Universal.