Pectra Upgrade: What's New and How to Track It on Etherscan
Ethereum’s Pectra upgrade went live smoothly on 7 May 2025 at 10:05 UTC (epoch 364,032). It activates eleven Ethereum Improvement Proposals, the largest set ever deployed in a single upgrade. Long-time Ethereum contributor Pooja Ranjan counts Pectra as the network’s 19th upgrade since 2015 and the 3rd hard fork since The Merge.
Pectra is live on Ethereum mainnet!
— Ethereum.org (@ethereum) May 7, 2025
- Smart account wallet UX features now active
- L2 scaling data storage blobs increased by 2x
- Validator UX improvements live
Community members will continue to monitor for any issues over the next 24 hours.
Pectra combines the separate “Prague” execution-layer changes with the “Electra” consensus-layer changes so that both halves of the protocol move forward together.
The path to mainnet wasn't smooth sailing. Early activations on the Sepolia and Holešky testnets revealed critical issues. To make absolutely sure the code was ready, core developers spun up a purpose-built Hoodi testnet, where Pectra finalized cleanly, paving the way for the mainnet slot.

The 11 EIPs fall into 3 major categories to improve user experience, streamline staking experience, and support L2 scaling. The rest of the article looks at the headline EIPs in each category and shows where Etherscan surfaces the new data.
1) EIP-7702 Set Code for EOAs
This upgrade allows you to sign an authorization message that enables your EOA to temporarily adopt the capabilities of a chosen smart contract, opening the door to better user experience via batched transactions, sponsored gas payments, and permission management.
Where to see it on Etherscan
Pectra introduces a new Type 4
transaction that carries an Authorization List
, used when you sign an authorization message. On Etherscan, you can find a list of EIP-7702 Authorizations at etherscan.io/txnauthlist.

Open any one of the transactions in the list to view details of an authorization in a transaction under the Authorization List
tab.

Here, you'll find:
- Authority: The EOA that signed the authorization message
- Delegated Address: The contract whose code the EOA will run
- Nonce: The EOA's last used nonce
- yParity, r, s: These are components of cryptographic signature that are used to verify the EOA's consent to delegate execution

The EOA's address page shows you:
- The address it is currently delegated to (if any), and
- All the past authorizations signed by this EOA
To remove a previous delegation, the wallet simply signs a fresh authorisation whose delegated address is the zero-address (0x0000000000000000000000000000000000000000
).

Important to Note:
- While this new feature makes it much easier for users to transact on Ethereum, it also makes phishing scams easier if users are not careful. As a rule of thumb:
- Delegate only to trusted contracts that have been verified and audited by the community
- Avoid reusing delegations across different chains, as the same contract address can point to completely different code on each network
- Regularly review and revoke outdated delegations to retain control over your address
- Wallet providers like MetaMask and others will be slowly rolling out features that support EIP-7702. Keep an eye out for them!
- Read more about EIP-7702:
2) EIP-7251 Increase Max Effective Balance
Pectra raises the validator balance ceiling from 32 ETH to 2,048 ETH, allowing large operators to merge many small validators into a handful of “super-validators” and reducing network overhead. Read more on staking-related improvements covered in the previous article.
This EIP introduces the Consolidation Request Contract
that processes stake consolidation requests from validators. The request requires a 96
byte input with:
source_address
:Bytes20
source_pubkey
:Bytes48
target_pubkey
:Bytes48
Up to two consolidation requests are processed per block. The source
validator exits, and its full balance is credited to the target
validator after the standard withdrawal delay.
Where to see it on Etherscan
On Etherscan, simply navigate to the Consolidation Request Contract to inspect any one of the transaction. We'll use this consolidation request transaction as an example:

- This is the execution layer (EL) address that submits and pays for the consolidation request
- This is the validator key whose balance is being withdrawn. The screenshot below shows its balance dropped to 0 after the exit

- This is the validator key that receives the transferred stake. The screenshot below confirms the higher effective balance once the consolidation is credited.

To see how many consolidation requests an EL address has made, use Advanced Filter with the AND
operator. In this example, the address submitted 8 consolidation requests, resulting in a total effective balance of 256 ETH.

You can monitor validator consolidations via this dashboard:

Fun fact:
🧐PECTRA/MAXEB TIDBIT🧐
— Jrag.eth (@Jrag0x) May 7, 2025
Consolidating all Ethereum validators into max-size 2048 ETH validators would take at least 19 months due to the 256 ETH per epoch consolidation churn limit.
- Read more about EIP-7251:
3) EIP-7691 Blob Throughput Increase
This change doubles the target blobs per block so that rollups have more cheap space for data availability:
- Target blobs per block: 3 → 6
- Maximum blobs per block: 6 → 9
More blobs mean L2s can publish twice the data without competing for calldata, keeping transaction fees low even as activity grows.
Where to see it on Etherscan
On Etherscan, visit etherscan.io/txsBlobs to view blobs posted to Ethereum in real time. Alternatively, you can browse etherscan.io/blocks to view the number of blobs in each block.

Open any blob-containing block page to see 2 key changes:
- Target blob count has increased from 3 to 6

- Maximum blob count per block has increased from 6 to 9

The upcoming Fusaka upgrade will introduce PeerDAS, expanding blobspace to support even more rollup data.
For 2025 we need Fusaka on L1 with PeerDAS, ideally with 48/72 blob target/limit
— vitalik.eth (@VitalikButerin) March 1, 2025
Let's aim to get a Fusaka testnet with these blob parameters running the day after Pectra goes live.
Closing Thoughts
The improvements introduced in Pectra are promising, aligning with the Ethereum Foundation’s new objectives to scale L1, expand blob capacity, and enhance user experience.
7/ Ensuring Ethereum lives up to those values requires constant progress. Our objectives for the next 12 months are clear:
— Ethereum Foundation (@ethereumfndn) April 28, 2025
- Scaling Ethereum L1
- Scaling blobs
- Improving UX
That said, it’s still early days, there’s much more to build on Etherscan to support emerging community use cases introduced by this upgrade. Got Pectra-related feedback or ideas? Tag us on X @etherscan!
