Blockscout
SupportWebsiteGithubDiscord
  • Blockscout Open-Source Explorer
  • 💡About BlockScout
    • Features
      • Ethereum Bytecode Database Microservice
      • Blockscout Redesign
    • Chains Using Blockscout
    • Partners & Integrations
      • RaaS Providers
      • Vera: Verifier Alliance
        • Adding your chain to the Vera database
        • Programmatic verification via the API
    • News & Media
      • Newsletter & Blog
    • Funding
      • L2 Funding Proposal
        • Aux Funding Images
    • Roadmap
  • 🙎Using Blockscout
    • Getting Started
      • Glossary of Terms
      • Main Menu
      • Blocks
      • Transaction Types
      • Beacon Chain Withdrawal Views
    • My Account
      • Watch list
      • Private tags
      • Public tags
      • API keys
      • Custom ABI
      • Verified addresses
        • Copy and Sign Message
      • For developers
    • Dappscout Apps Marketplace
      • DApp Integration
    • Swapscout
      • Earn Merits when using Swapscout
    • Revokescout
    • Autoscout Explorer Launchpad
    • CSV Exports
    • Token Support
      • ERC-1155 Support
    • Merits
      • Streak rewards
      • Activity Pass
      • Leaderboard
      • Badges
      • FAQs
  • 👩‍💻Developer Support
    • For Web3 Developers
    • Link to Blockscout
    • Blockscout APIs
      • Requests & Limits
      • REST API Endpoints
        • Stats API
        • Interpreter API
      • JSON RPC & ETH Compatible RPC Endpoints
        • Account
        • Block
        • Contract
        • Logs
        • Stats
        • Token
        • Transaction
        • ETH RPC API
      • GraphQL in Blockscout
    • Smart Contract Verification
      • Blockscout UI
      • Blockscout smart-contract verification API
      • Hardhat Verification Plugin
        • Sourcify Plugin for Hardhat
      • Foundry Verification
      • Sourcify Verification
      • OpenZeppelin Contract Verification
      • Automate verifications with Catapulta
      • Verification via thirdweb
      • Interacting with Smart Contracts
    • Blockscout SDK
    • Integrate Merits
    • Chainscout chains list
  • 🏃‍♂️Setup and Run Blockscout
    • General Overview
      • Separate Indexer, Web App, and API
      • Umbrella Project Organization
      • Indexer Architecture Overview
      • ShareLock
      • EVM Version Information
    • Requirements
      • General Backend Requirements / Blockscout Backend Prerequisites
      • Backend/Frontend Compatibility Matrix
      • Hardware & Hosting Requirements
      • Database Storage Requirements
      • Client Setting Requirements
      • Node Tracing / JSON RPC Requirements
      • L2 -> L1 JSON-RPC Method Requests
    • ☑️ENV Variables
      • Backend ENVs: Common
      • Backend ENVs: Chain-Specific
      • Backend ENVs: Integrations
      • Frontend ENVs: Common
        • ENVs
        • Deprecated ENVs
      • Deprecated Backend ENVs
        • Previous ENV Variable Home Page
    • Deployment
      • ⭐Manual Deployment Guide
        • Ubuntu Setup
        • MacOS setup
      • ⭐Docker-compose Deployment
      • ⭐Kubernetes Deployment
      • Rollup Deployment
      • 🌟Cosmos-based chains
      • 🍀Upgrade Guide (v7.0 & v8.0)
      • Frontend Migration
        • All-In-One Container
        • Separate Frontend
        • Customized Backend
        • Proxy Setup
        • FAQs
      • Manual Deployment (backend + old UI)
        • Manual cleaning an instance from the previous deployment
      • Terraform Deployment
      • Ansible Deployment (AWS Cloud)
        • Overview
        • Prerequisites
        • AWS Permissions & Settings
          • Creating a Secret Key Pair
          • Login with AWS CLI
          • Creating an AWS certificate for SSL
          • Manually Cleaning Terraform Related Instances
        • Variables
        • Deploying the Blockscout Infrastructure
        • Deploying Blockscout
        • Destroying Provisioned Infrastructure
        • Common Additional Tasks
        • Common Errors and Questions
        • AWS Marketplace (deprecated)
          • Overview
          • CloudFormation Template
          • Prerequisites & Install Parameters
          • Install from AWS Marketplace
          • AWS EC2 archive node setup with OpenEthereum (formerly Parity)
          • Updating & Redeploying in AWS
          • Customizing CSS
    • Microservices
      • Blockscout ENS (BENS) Name Service Integration
      • Smart Contract Verification
    • Configuration Options
      • Admin Panel Usage
      • Automating Restarts
      • Branding Configs
      • Circle CI Updates
      • Charts and Stats
      • CSS Configuration & Presets
      • Exchange Rates
      • Front-end Config Files
      • haproxy Settings for Blockscout.com
      • Internationalization
      • Logger Configs
      • Memory Usage
      • Metrics
      • My Account Settings
      • reCAPTCHA
      • Reown (previously WalletConnect) Project ID for contract Read/Write
      • Sorting and Pagination
      • Tracing
    • Indexing
      • How do I fix indexer timeouts?
      • How do I update memory consumption to fix indexer memory errors?
    • Testing
    • DB schema
  • FAQs
    • User FAQs
    • Developer FAQs
  • 🧩Resources
    • EaaS: Hosting with Blockscout
    • Contributing to Blockscout
    • Bug Bounty Program
    • Media kit
    • Release Notes
      • v5.3.0: 10/23/23
      • v5.2.0: 6/20/23
      • v5.1.0: 2/13/23
      • v5.0.0: 1/11/23
    • Discord Channel
    • Discussion
    • GitHub Repo
Powered by GitBook
LogoLogo

Privacy and Terms

  • Privacy Notice
  • Terms and Conditions

Copyright © Blockscout Limited 2023-2024

On this page
  • UI display examples
  • Block page example
  • Address page example

Was this helpful?

Export as PDF
  1. Using Blockscout
  2. Getting Started

Beacon Chain Withdrawal Views

Coming Soon

Last updated 10 months ago

Was this helpful?

Validator withdrawals will soon be activated on the Ethereum mainnet with the Shanghai/Capella hardfork (), and Blockscout will provide views for partial and full withdrawals.

Withdrawals are akin to simple transactions (though they are actually 0 gas balance increases) included in the block structure. Coins are transferred from a validator to a preset withdrawal address (either EOA or contract). Each withdrawal also includes a unique integer index starting from 0 and incrementing by 1 with each withdrawal.

The unique index, assigned validatorIndex, withdrawal receiving address, and amount are all included in the withdrawals structure and will be displayed on Blockscout on the block and addresses pages.

 "withdrawals": [
            {
                "index": "0xbd8d0",
                "validatorIndex": "0x81e",
                "address": "0xe7c180eada8f60d63e9671867b2e0ca2649207a8",
                "amount": "0x6dcf0a644000"
            },
            {
                "index": "0xbd8d1",
                "validatorIndex": "0x81f",
                "address": "0xe7c180eada8f60d63e9671867b2e0ca2649207a8",
                "amount": "0x6dcf0a644000"
            },
        ],
Example block with withdrawal struct
{
    "jsonrpc": "2.0",
    "id": 1,
    "result": {
        "baseFeePerGas": "0x7",
        "difficulty": "0x0",
        "extraData": "0x",
        "gasLimit": "0x1c9c380",
        "gasUsed": "0x0",
        "hash": "0x5262de0c24b0cab3fdc32fadda1904f4698ab0b12d505bf733cf47cb3e60f7f7",
        "logsBloom": "0x00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000",
        "miner": "0xf97e180c050e5ab072211ad2c213eb5aee4df134",
        "mixHash": "0x08471cc3dbac65574f049af479631af782cf31c841710640ed615dc50670b378",
        "nonce": "0x0000000000000000",
        "number": "0xd62f",
        "parentHash": "0xdabf9e7ebfad879ad44270c2a7a5ff8e848e72316def4d5b0305f2a1216089f7",
        "receiptsRoot": "0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421",
        "sha3Uncles": "0x1dcc4de8dec75d7aab85b567b6ccd41ad312451b948a7413f0a142fd40d49347",
        "size": "0x465",
        "stateRoot": "0x9f2a690353b6d8cfa75cb12347104f42d38463471cda1293696a6c3b685aa839",
        "timestamp": "0x63af29e4",
        "totalDifficulty": "0x1",
        "transactions": [],
        "transactionsRoot": "0x56e81f171bcc55a6ff8345e692c0f86e5b48e01b996cadc001622fb5e363b421",
        "uncles": [],
        "withdrawals": [
            {
                "index": "0xbd8d0",
                "validatorIndex": "0x81e",
                "address": "0xe7c180eada8f60d63e9671867b2e0ca2649207a8",
                "amount": "0x6dcf0a644000"
            },
            {
                "index": "0xbd8d1",
                "validatorIndex": "0x81f",
                "address": "0xe7c180eada8f60d63e9671867b2e0ca2649207a8",
                "amount": "0x6dcf0a644000"
            },
            {
                "index": "0xbd8d2",
                "validatorIndex": "0x820",
                "address": "0xe7c180eada8f60d63e9671867b2e0ca2649207a8",
                "amount": "0x6dcf0a644000"
            },
            {
                "index": "0xbd8d3",
                "validatorIndex": "0x821",
                "address": "0xe7c180eada8f60d63e9671867b2e0ca2649207a8",
                "amount": "0x6dcf0a644000"
            },
            {
                "index": "0xbd8d4",
                "validatorIndex": "0x822",
                "address": "0xe7c180eada8f60d63e9671867b2e0ca2649207a8",
                "amount": "0x6dcf0a644000"
            },
            {
                "index": "0xbd8d5",
                "validatorIndex": "0x823",
                "address": "0xe7c180eada8f60d63e9671867b2e0ca2649207a8",
                "amount": "0x6dcf0a644000"
            },
            {
                "index": "0xbd8d6",
                "validatorIndex": "0x824",
                "address": "0xe7c180eada8f60d63e9671867b2e0ca2649207a8",
                "amount": "0x651c03f6de00"
            },
            {
                "index": "0xbd8d7",
                "validatorIndex": "0x825",
                "address": "0xe7c180eada8f60d63e9671867b2e0ca2649207a8",
                "amount": "0x6dcf0a644000"
            },
            {
                "index": "0xbd8d8",
                "validatorIndex": "0x826",
                "address": "0xe7c180eada8f60d63e9671867b2e0ca2649207a8",
                "amount": "0x6dcf0a644000"
            },
            {
                "index": "0xbd8d9",
                "validatorIndex": "0x827",
                "address": "0xe7c180eada8f60d63e9671867b2e0ca2649207a8",
                "amount": "0x6dcf0a644000"
            },
            {
                "index": "0xbd8da",
                "validatorIndex": "0x828",
                "address": "0xe7c180eada8f60d63e9671867b2e0ca2649207a8",
                "amount": "0x1a2950b4af800"
            },
            {
                "index": "0xbd8db",
                "validatorIndex": "0x829",
                "address": "0xe7c180eada8f60d63e9671867b2e0ca2649207a8",
                "amount": "0x6dcf0a644000"
            },
            {
                "index": "0xbd8dc",
                "validatorIndex": "0x82a",
                "address": "0xe7c180eada8f60d63e9671867b2e0ca2649207a8",
                "amount": "0x6dcf0a644000"
            },
            {
                "index": "0xbd8dd",
                "validatorIndex": "0x82b",
                "address": "0xe7c180eada8f60d63e9671867b2e0ca2649207a8",
                "amount": "0x6dcf0a644000"
            },
            {
                "index": "0xbd8de",
                "validatorIndex": "0x82c",
                "address": "0xe7c180eada8f60d63e9671867b2e0ca2649207a8",
                "amount": "0x6dcf0a644000"
            },
            {
                "index": "0xbd8df",
                "validatorIndex": "0x82d",
                "address": "0xe7c180eada8f60d63e9671867b2e0ca2649207a8",
                "amount": "0x6dcf0a644000"
            }
        ],
        "withdrawalsRoot": "0xb28f757020474ee478a03be8ca4a2efaa7ebddbf565129bb08202ce9a8670d44"
    }
}

UI display examples

Block page example

Address page example

🙎
EIP-4895