Business Insights
  • Home
  • Crypto
  • Finance Expert
  • Business
  • Invest News
  • Investing
  • Trading
  • Forex
  • Videos
  • Economy
  • Tech
  • Contact

Archives

  • February 2026
  • January 2026
  • December 2025
  • November 2025
  • October 2025
  • September 2025
  • August 2025
  • July 2025
  • June 2025
  • May 2025
  • April 2025
  • March 2025
  • February 2025
  • January 2025
  • December 2024
  • November 2024
  • October 2024
  • September 2024
  • August 2024
  • July 2024
  • June 2024
  • May 2024
  • April 2024
  • March 2024
  • February 2024
  • August 2023
  • January 2023
  • December 2021
  • July 2021
  • November 2019
  • October 2019
  • September 2019
  • August 2019
  • July 2019
  • June 2019
  • May 2019
  • April 2019
  • March 2019
  • February 2019
  • January 2019

Categories

  • Business
  • Crypto
  • Economy
  • Finance Expert
  • Forex
  • Invest News
  • Investing
  • Tech
  • Trading
  • Uncategorized
  • Videos
Apply Loan
Money Visa
Advertise Us
Money Visa
  • Home
  • Crypto
  • Finance Expert
  • Business
  • Invest News
  • Investing
  • Trading
  • Forex
  • Videos
  • Economy
  • Tech
  • Contact
Announcing the Trillion Dollar Security Initiative
  • Forex

Ethereum Constantinople Upgrade Announcement | Ethereum Foundation Blog

  • August 25, 2025
  • Roubens Andy King
Total
0
Shares
0
0
0
Total
0
Shares
Share 0
Tweet 0
Pin it 0

NOTE: DUE TO A SECURITY VULNERABILITY WE ARE POSTPONING CONSTANTINOPLE. PLEASE DISREGARD THE INSTRUCTIONS IN THIS BLOG POST. CLICK HERE FOR MORE INFORMATION.

The Ethereum network will be undergoing a scheduled upgrade at block number 7,080,000, which is predicted to occur on Wednesday, January 16, 2019. The exact date is subject to change depending on block times between now and then and could be activated 1-2 days before or after. A countdown timer can be seen at https://amberdata.io/blocks/7080000. You can monitor the network upgrade in real time at http://forkmon.ethdevops.io/.

What is Constantinople?

Constantinople is the name given to this network upgrade. Previous network upgrades have been given other names such as Spurious Dragon and Byzantium.

As an Ethereum user or ether holder is there anything I need to do?

If you use an exchange (such as Coinbase, Kraken, or Binance), a web wallet service (such as Metamask, MyCrypto, or MyEtherWallet), a mobile wallet service (such as Coinbase Wallet, Status.im, or Trust Wallet), or a hardware wallet (such as Ledger, Trezor, or KeepKey) you do not need to do anything unless you are informed to take additional steps by your exchange or wallet service.

As a node operator or miner, what do I need to do?

Download the latest version of your Ethereum client:


What happens if I am a miner or node operator and I do not participate in the upgrade?

If you are using an Ethereum client that is not updated to the latest version (listed above), your client will sync to the pre-fork blockchain once the upgrade occurs. You will be stuck on an incompatible chain following the old rules and you will be unable to send ether or operate on the post-upgrade Ethereum network.

What is a network upgrade in Ethereum-land?

A network upgrade is a change to the underlying Ethereum protocol, creating new rules to improve the system. The decentralized nature of blockchain systems makes a network upgrade more difficult. Network upgrades in a blockchain require cooperation and communication with the community, as well as with the developers of the various Ethereum clients in order for the transition to go smoothly.

What happens during a network upgrade?

After the community comes to an agreement concerning which changes should be included in the upgrade, changes to the protocol are written into the various Ethereum clients, such as geth, Parity, and Harmony. The protocol changes are activated at a specific block number. Any nodes that have not been upgraded to the new ruleset will be abandoned on the old chain where the previous rules continue to exist.

What changes are going into Constantinople?

Changes that are implemented in Constantinople are defined using EIPs. Ethereum Improvement Proposals (EIPs) describe standards for the Ethereum platform, including core protocol specifications, client APIs, and contract standards. The following EIPs will be implemented in Constantinople.

EIP 145: Bitwise shifting instructions in EVM

  • Provides native bitwise shifting with cost on par with other arithmetic operations.

  • EVM is lacking bitwise shifting operators, but supports other logical and arithmetic operators. Shift operations can be implemented via arithmetic operators, but that has a higher cost and requires more processing time. Implementing SHL and SHR using arithmetics cost each 35 gas, while these proposed instructions take 3 gas.

  • In short: This EIP adds native functionality to protocol so that it is cheaper & easier to do certain things on chain.

EIP 1014: Skinny CREATE2

  • Adds a new opcode at 0xf5, which takes 4 stack arguments: endowment, memory_start, memory_length, salt. Behaves identically to CREATE, except using keccak256( 0xff ++ sender_address ++ salt ++ keccak256(init_code)))[12:] instead of keccak256(RLP(sender_address, nonce))[12:] as the address where the contract is initialized at.

  • This allows interactions to be made with addresses that do not exist yet on-chain but can be relied on to only possibly contain code eventually that has been created by a particular piece of init code.

  • Important for state-channel use cases that involve counterfactual interactions with contracts.

  • In short: This EIP makes it so you can interact with addresses that have yet to be created.

EIP 1052: EXTCODEHASH opcode

  • This EIP specifies a new opcode, which returns the keccak256 hash of a contract's code.

  • Many contracts need to perform checks on a contract's bytecode, but do not necessarily need the bytecode itself. For instance, a contract may want to check if another contract's bytecode is one of a set of permitted implementations, or it may perform analyses on code and whitelist any contract with matching bytecode if the analysis passes.

  • Contracts can presently do this using the EXTCODECOPY opcode, but this is expensive, especially for large contracts, in cases where only the hash is required. As a result, a new opcode is being implemented called EXTCODEHASH which returns the keccak256 hash of a contract's bytecode.

  • In short: This EIP makes it cheaper (less gas is needed) to do certain things on chain.

EIP 1283: Net gas metering for SSTORE without dirty maps

  • This EIP proposes net gas metering changes for SSTORE opcode, enabling new usages for contract storage, and reducing excessive gas costs where it doesn't match how most implementation works.

  • In short: This EIP makes it cheaper (less gas is needed) to do certain things on chain, especially things that are currently “excessively” expensive.

EIP 1234: Constantinople Difficulty Bomb Delay and Block Reward Adjustment

  • The average block times are increasing due to the difficulty bomb (also known as the “ice age”) slowly accelerating. This EIP proposes to delay the difficulty bomb for approximately 12 months and to reduce the block rewards to adjust for the ice age delay.

  • In short: This EIP make sure we don’t freeze the blockchain before proof of stake is ready & implemented.

Thank You!

A big thanks to the Ethereum community, and to all Ethereum developers across all clients and platforms who came together to provide input, thoughts, and contribution. Special thanks to Reddit user cartercarlson who let us use his Reddit post and the MyCrypto team who let us use their “Ethereum Constantinople: Everything You Need To Know” Medium post.

DISCLAIMER: This is an emergent and evolving highly technical space. If you choose to implement the recommendations in this post and continue to participate, you should make sure you understand how it impacts you. You should understand that there are risks involved including but not limited to risks like unexpected bugs. By choosing to implement these recommendations, you alone assume the risks of the consequences. This post and recommendations are not a sale of any kind and do not create any warranties of any kind including but not limited to any relating to the Ethereum network or the Ethereum clients referred to herein.

Total
0
Shares
Share 0
Tweet 0
Pin it 0
Roubens Andy King

Previous Article
Copper, potash added to Interior Department’s proposed list of U.S. critical minerals (FCX:NYSE)
  • Finance Expert

Copper, potash added to Interior Department’s proposed list of U.S. critical minerals (FCX:NYSE)

  • August 25, 2025
  • Roubens Andy King
Read More
Next Article
Bitcoin consolidates as liquidity flows shift to Ethereum and broader altcoin markets
  • Crypto

Bitcoin consolidates as liquidity flows shift to Ethereum and broader altcoin markets

  • August 25, 2025
  • Roubens Andy King
Read More
You May Also Like
Vitalik Buterin Slams EU’s ‘Chat Control’ Bill, Warns of Privacy Threat
Read More
  • Forex

Vitalik Buterin Slams EU’s ‘Chat Control’ Bill, Warns of Privacy Threat

  • Roubens Andy King
  • September 27, 2025
Advanced Contract Programming Example: SchellingCoin
Read More
  • Forex

Advanced Contract Programming Example: SchellingCoin

  • Roubens Andy King
  • September 27, 2025
8 Years In Hiding—Now  Billion In Ether Comes Alive
Read More
  • Forex

8 Years In Hiding—Now $3 Billion In Ether Comes Alive

  • Roubens Andy King
  • September 27, 2025
BTC Drops Under 0K But October Trend May Revive Bulls
Read More
  • Forex

BTC Drops Under $110K But October Trend May Revive Bulls

  • Roubens Andy King
  • September 27, 2025
Demand For XRP On CME Explodes As Reports Show Over  Billion
Read More
  • Forex

Demand For XRP On CME Explodes As Reports Show Over $18 Billion

  • Roubens Andy King
  • September 27, 2025
Spot Ether ETFs Post Straight Week Of Outflows
Read More
  • Forex

Spot Ether ETFs Post Straight Week Of Outflows

  • Roubens Andy King
  • September 27, 2025
Background on the mechanics of the ether pre-sale
Read More
  • Forex

Background on the mechanics of the ether pre-sale

  • Roubens Andy King
  • September 27, 2025
70% Decline In Corporate Crypto Treasury Buying: What’s Going On?
Read More
  • Forex

70% Decline In Corporate Crypto Treasury Buying: What’s Going On?

  • Roubens Andy King
  • September 27, 2025

Recent Posts

  • Laziest Way To Make Money With AI ($373/day+)
  • Financial Maths Grade 10 | Simple Interest Introduction
  • Federal Reserve Board – Minutes of the Board’s discount rate meetings on January 20 and 28, 2026
  • Moby Now Calls Eminem ‘Very Progressive’ and ‘Very Smart’ 25 Years After Harsh Accusations
  • Federal Reserve Board – Federal Reserve Board issues enforcement action with former employee of First Financial Bank
Featured Posts
  • Laziest Way To Make Money With AI (3/day+) 1
    Laziest Way To Make Money With AI ($373/day+)
    • February 25, 2026
  • Financial Maths Grade 10 | Simple Interest Introduction 2
    Financial Maths Grade 10 | Simple Interest Introduction
    • February 24, 2026
  • Federal Reserve Board – Minutes of the Board’s discount rate meetings on January 20 and 28, 2026 3
    Federal Reserve Board – Minutes of the Board’s discount rate meetings on January 20 and 28, 2026
    • February 24, 2026
  • Moby Now Calls Eminem ‘Very Progressive’ and ‘Very Smart’ 25 Years After Harsh Accusations 4
    Moby Now Calls Eminem ‘Very Progressive’ and ‘Very Smart’ 25 Years After Harsh Accusations
    • February 24, 2026
  • Federal Reserve Board – Federal Reserve Board issues enforcement action with former employee of First Financial Bank 5
    Federal Reserve Board – Federal Reserve Board issues enforcement action with former employee of First Financial Bank
    • February 24, 2026
Recent Posts
  • Federal Reserve Board – Following earlier actions to remove reputation risk from its supervision of banks, Federal Reserve Board requests comment on proposal to codify that removal
    Federal Reserve Board – Following earlier actions to remove reputation risk from its supervision of banks, Federal Reserve Board requests comment on proposal to codify that removal
    • February 23, 2026
  • How to Invest in Silver in 2025 #silver #investing
    How to Invest in Silver in 2025 #silver #investing
    • February 23, 2026
  • Rhinestone decorating business idea 💡 #trending #businessidea
    Rhinestone decorating business idea 💡 #trending #businessidea
    • February 22, 2026
Categories
  • Business (2,057)
  • Crypto (2,023)
  • Economy (220)
  • Finance Expert (1,687)
  • Forex (2,016)
  • Invest News (2,439)
  • Investing (2,040)
  • Tech (2,056)
  • Trading (2,024)
  • Uncategorized (2)
  • Videos (983)

Subscribe

Subscribe now to our newsletter

Money Visa
  • Privacy Policy
  • DMCA
  • Terms of Use
Money & Invest Advices

Input your search keywords and press Enter.