Close Menu

    Subscribe to Updates

    Get the latest creative news from FooBar about art, design and business.

    What's Hot

    The math behind MicroStrategy’s bitcoin bet

    August 7, 2025

    Why investors choose Quid Miner’s cloud mining platform

    August 7, 2025

    World Network wants $100 deposit from users to work its orbs

    August 7, 2025
    Facebook X (Twitter) Instagram
    Ai Crypto TimesAi Crypto Times
    • Altcoins
      • Bitcoin
      • Coinbase
      • Litecoin
    • Blockchain
    • Crypto
    • Ethereum
    • Lithosphere News Releases
    X (Twitter) Instagram YouTube LinkedIn
    Ai Crypto TimesAi Crypto Times
    Home » Final Steps | Ethereum Foundation Blog

    Final Steps | Ethereum Foundation Blog

    Michael JohnsonBy Michael JohnsonJuly 27, 2025No Comments7 Mins Read
    Facebook Twitter Pinterest LinkedIn Tumblr Reddit Telegram Email
    Share
    Facebook Twitter LinkedIn Pinterest Email


    An update as promised: all systems are now ‘Go’ on the technical side (pun intended) and we intend to release Frontier this week.

    Thank you to everyone who provided feedback on my previous blog post. What became apparent is that prior to the big day, many of you wanted to know more about what the sequence of events would exactly be, and how to prepare your machine for the release.

    A transparent and open release

    Frontier users will need to first generate, then load the Genesis block into their Ethereum client. The Genesis block is pretty much a database file: it contains all the transactions from the Ether sale, and when a user inputs it into the client, it represents their decision to join the network under its terms: it is the first step to consensus.

    Because the ether pre-sale took place entirely on the bitcoin blockchain, its contents are public, and anyone can generate and verify the Genesis block. In the interest of decentralization and transparency, Ethereum will not provide the Genesis block as a download, but instead has created an open source script that anyone can use to generate the file, a link to which can be found later on in this article.

    Since the script is already available and the release needs to be coordinated, an argument to the script has to be provided in order to ‘kick off’ Frontier in unison. But how can we do this and stay decentralized?

    The argument needs to be a random parameter that no one, not even us, can predict. As you can imagine, there aren’t too many parameters in the world that match this criteria, but a good one is the hash of a future block on the Ethereum testnet. We had to pick a block number, but which one? 1,028,201 turns out to be both prime and palindromic, just the way we like it. So #1028201 is it.

    Sequence of steps to the release:

    • Final steps to the release revealed: You are reading this now.
    • Block #1028201 is formed on the Ethereum tesnet, and is given a hash.
    • The hash is used by users around the world as a unique parameter to the Genesis block generation script.

    What you can do today

    First, you’ll need the client installed, I’ll use Geth as an example, but the same can be achieved with Eth (the C++ implementation of Ethereum). Geth installation instructions for Windows, Linux and OSX can be found on our wiki.

    Once you have installed a client, you need to download the python script that generates the Genesis file. It’s called ‘mk_genesis_block.py’, and can be downloaded here.

    Depending on your platform, you can also download it from the console by installing curl and running;

    curl -O https://raw.githubusercontent.com/ethereum/genesis_block_generator/master/mk_genesis_block.py
    

    This will create the file in the same folder where you invoked the command. You now need to install the pybitcointools created by our very own Vitalik Buterin. You can obtain this through the python package manager pip, so we’ll install pip first, then the tools right afterwards.

    The following instructions should work on OSX and Linux. Windows users, good news, pip ships with the standard Python installer.

    curl -O https://bootstrap.pypa.io/get-pip.py
    sudo python get-pip.py
    


    or (if you had it installed already),

    sudo pip install --upgrade bitcoin
    

    One last step, if you are using Eth, we recently to support the new Genesis block parameter, so you’ll need to pick up the correct release of the software to be ready for the big day:

    cd ~/go-ethereum/
    git checkout release/1.0.0
    git pull
    make geth
    

    Those who would like to be ‘as ready as possible’ can follow instructions up to this point, that said, a git pull just before the fateful block is probably recommended to operate the newest version of any software.

    If you have been running the clients before:

    • Back up your keys (maybe some of them are eligible for Olympic rewards) – they are located in ./ethereum/keystore
    • Delete your old chain please (it’s located in ./ethereum, delete the following 3 folders only: ./extra, ./state, ./blockchain)
    • You can safely leave your ./ethereum/nodes, ./ethereum/history and ./ethereum/nodekey in place
    • Having DAGs pregenerated in ./ethash will not hurt, but feel free to delete them if you need the space

    For a complete breakdown as to where the config files are located, please check out this page on our forums.

    Then, it’s a matter of waiting for block #1028201, which at the current block resolution time, should be formed approximately Thursday evening GMT+0.

    Once 1028201 has formed, its hash will be accessible by querying a node running the testnet using web3.eth.getBlock(1028201).hash, however we will also make that value available on this blog as well as all our social media channels.

    You will then be able to generate the Genesis block by running:

    python mk_genesis_block.py --extradata hash_for_#1028201_goes_here > genesis_block.json
    

    By default, the script uses Blockr and Blockchain.info to fetch the Genesis pre-sale results. You can also add the –insight switch if you’d instead prefer to use the private Ethereum server to obtain this information. If you are facing issues with the script, please raise an issue on its github.

    While we will not provide the Genesis block as a file, we will still provide the Genesis block hash (shortly after we generate it ourselves) in order to insure that third party invalid or malicious files are easily discarded by the community.

    Once you are satisfied with the generation of the Genesis block, you can load it into the clients using this command:

    ./build/bin/geth --genesis genesis_block.json
    

    or:

    ./build/eth/eth --genesis genesis_block.json
    

    From there, instructions on creating an account, importing your pre-sale wallet, transacting, etc., can be found on the ‘Getting Started’ Frontier guide at http://guide.ethereum.org/

    Note that if you’ve used Ethereum before, you should generate new keys using a recent (RC) client, and not reuse testnet keys.

    A couple more things…

    We also would like to give you a bit of heads up on the ‘thawing’ phase — the period during which the gas limit per block will be set very low to allow the network to grow slowly before transactions can take place. You should expect network instability at the very beginning of the release, including forks, potential abnormal display of information on our http://stats.ethdev.com page, and various Peer to Peer connectivity issues. Just like during the Olympic phase, we expect this instability to settle after a few hours/days.

    We would also like to remind everyone that while we intend to provide a safe platform in the long term, Frontier is a technical release directed at a developer audience, and not a general public release. Please keep in mind that early software is often affected by bugs, issues with instability and complex user interfaces. If you would prefer a more user friendly experience, we encourage you to wait for the future Homestead or Metropolis Ethereum releases.

    Please be especially wary of third party websites and software of unknown origin — Ethereum will only ever publish software through its github platform at https://github.com/ethereum/.

    Finally, for clarity, it’s important to note that the Olympic program ended at block 1M this morning, however, the bug bounty is still on — and will continue until further notice. Security vulnerabilities, if found, should continue to be reported to https://bounty.ethdev.com/.

    —

    Updates

    27/07/15: added instructions for users upgrading from previous installations
    28/07/15: minor edits, added link to script github
    29/07/15: added recommendation to create new keys and not reuse testnet ones





    Source link

    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email
    Michael Johnson

    Related Posts

    Fear & Greed Index hits 63 as Bitcoin, ETH, and SOL rebound

    August 7, 2025

    SEC staff statement on liquid staking may pave way for staking in spot Ether ETFs

    August 6, 2025

    Protocol Update 001 – Scale L1

    August 5, 2025
    Leave A Reply Cancel Reply

    Don't Miss

    The math behind MicroStrategy’s bitcoin bet

    Coinbase August 7, 2025

    Bitcoin and MicroStrategy are both rallying with win-win math for bondholders and shareholders. Of course,…

    Why investors choose Quid Miner’s cloud mining platform

    August 7, 2025

    World Network wants $100 deposit from users to work its orbs

    August 7, 2025

    Wall Street analyst predicts XYZVerse to surpass ONDO, PI

    August 7, 2025
    Stay In Touch
    • Facebook
    • Twitter
    • Pinterest
    • Instagram
    • YouTube
    • Vimeo
    Our Picks

    Imagen Network Builds Adaptive Content Filters Using Grok to Boost Engagement Quality

    August 7, 2025

    Imagen Network Integrates Grok Tools to Optimize Discovery Within Decentralized Networks

    August 6, 2025

    AGII Expands Adaptive Risk Detection Models for Safer Web3 Infrastructure

    August 6, 2025

    Imagen Network (IMAGE) Introduces Smart Community Hubs for Decentralized Social Collaboration

    August 5, 2025

    Subscribe to Updates

    Get the latest creative news from SmartMag about art & design.

    Demo
    • Popular
    • Recent
    • Top Reviews

    Atua AI Expands XRP Cryptocurrency Capabilities to Accelerate Decentralized Financial Automation

    June 8, 2025

    Atua AI Expands XRP Cryptocurrency Capabilities to Accelerate Decentralized Financial Automation

    June 8, 2025

    Ethereum Foundation Treasury Policy | Ethereum Foundation Blog

    June 8, 2025

    The math behind MicroStrategy’s bitcoin bet

    August 7, 2025

    Why investors choose Quid Miner’s cloud mining platform

    August 7, 2025

    World Network wants $100 deposit from users to work its orbs

    August 7, 2025
    Latest Galleries
    [latest_gallery cat="all" number="5" type="slider"]
    Latest Reviews
    Demo
    Top Posts

    Imagen Network Builds Adaptive Content Filters Using Grok to Boost Engagement Quality

    August 7, 20250 Views

    Imagen Network Integrates Grok Tools to Optimize Discovery Within Decentralized Networks

    August 6, 20250 Views

    AGII Expands Adaptive Risk Detection Models for Safer Web3 Infrastructure

    August 6, 20250 Views

    Imagen Network (IMAGE) Introduces Smart Community Hubs for Decentralized Social Collaboration

    August 5, 20250 Views
    Don't Miss

    The math behind MicroStrategy’s bitcoin bet

    Coinbase August 7, 2025

    Bitcoin and MicroStrategy are both rallying with win-win math for bondholders and shareholders. Of course,…

    Why investors choose Quid Miner’s cloud mining platform

    August 7, 2025

    World Network wants $100 deposit from users to work its orbs

    August 7, 2025

    Wall Street analyst predicts XYZVerse to surpass ONDO, PI

    August 7, 2025
    Stay In Touch
    • Facebook
    • Twitter
    • Pinterest
    • Instagram
    • YouTube
    • Vimeo

    Subscribe to Updates

    Get the latest creative news from SmartMag about art & design.

    Demo
    Top Posts

    ProfitFarmers Review – Is it Legit? July 2025

    July 7, 20251 Views

    The math behind MicroStrategy’s bitcoin bet

    August 7, 20250 Views

    Why investors choose Quid Miner’s cloud mining platform

    August 7, 20250 Views

    World Network wants $100 deposit from users to work its orbs

    August 7, 20250 Views
    Don't Miss

    The math behind MicroStrategy’s bitcoin bet

    Coinbase August 7, 2025

    Bitcoin and MicroStrategy are both rallying with win-win math for bondholders and shareholders. Of course,…

    Why investors choose Quid Miner’s cloud mining platform

    August 7, 2025

    World Network wants $100 deposit from users to work its orbs

    August 7, 2025

    Wall Street analyst predicts XYZVerse to surpass ONDO, PI

    August 7, 2025
    Stay In Touch
    • Facebook
    • Twitter
    • Pinterest
    • Instagram
    • YouTube
    • Vimeo

    Subscribe to Updates

    Get the latest creative news from SmartMag about art & design.

    X (Twitter) Instagram YouTube LinkedIn
    Our Picks

    The math behind MicroStrategy’s bitcoin bet

    August 7, 2025

    Why investors choose Quid Miner’s cloud mining platform

    August 7, 2025

    World Network wants $100 deposit from users to work its orbs

    August 7, 2025
    Recent Posts
    • The math behind MicroStrategy’s bitcoin bet
    • Why investors choose Quid Miner’s cloud mining platform
    • World Network wants $100 deposit from users to work its orbs
    • Wall Street analyst predicts XYZVerse to surpass ONDO, PI
    • Bitcoin devs warn of fork risk to miners as fees crash
    © 2025 - 2026

    Type above and press Enter to search. Press Esc to cancel.