diff --git a/upgrade.html b/upgrade.html
index e4ffddb..bf375cb 100644
--- a/upgrade.html
+++ b/upgrade.html
@@ -1,46 +1,46 @@
 ---
 layout: base
 title: Network Upgrade
 ---
 
 {% assign oldVersion = "0.29.13" %}
 
 <!-- Use the next minor in instructions even if it's not released yet -->
 {% assign latestVersion = site.data.github-releases[0].name %}
 {% assign latestMinorVersion = site.data.github-releases[0].name | slice: 0, 4 %}
 {% if latestMinorVersion != "0.30" %}
   {% assign latestVersion = "0.30.0" %}
 {% endif %}
 
 <div class="flex-content">
   <div id="upgradepage">
     <div class="ecash-section">
       <img src="/img/Upgrade-2024-11-15.jpg" alt="Nov 15, 2024 Upgrade">
+      <h2>What happened?</h2>
+      <p>The planned upgrade of the eCash network has successfully been completed. The first post-upgrade block is block number <a href="https://explorer.e.cash/block/0000000000000000232d2ec92c9a2dd3a6e887dabc254c85f10e804239ff7274">871168</a>.</p>
       <h2>Who needs to upgrade?</h2>
       <p>All operators of a Bitcoin ABC full node must upgrade to the latest major version ({{ latestVersion }}). This includes node operators, Avalanche staking nodes, Miners and Exchanges. The up-to-date node version is available at our <a href="/releases/">Releases</a> page.</p>
-      <h2>Exactly when will the upgrade activate?</h2>
-      <p>In order to activate reliably at a predictable time, the network upgrade uses the "Median Time Past" mechanism. The upgrade activates when the median of the last 11 blocks reaches timestamp 1731672000 (12:00:00 UTC on November 15th, 2024). This means that the upgrade doesn't actually activate exactly at that time, but typically about one hour later, when 6 blocks with timestamps greater than the activation time have been produced.</p>
       <h2>What features are included in the Network Upgrade?</h2>
-      <p>The Heartbeat feature, also known as Real Time Targeting, will activate with this upgrade. This is a block policy that makes it more difficult to mine blocks faster than the expected 10 minutes average, preventing large bumps in difficulty that can lead to inconsistent block intervals.</p>
+      <p>The Heartbeat feature, also known as Real Time Targeting, activated with this upgrade. This is a block policy that makes it more difficult to mine blocks faster than the expected 10 minutes average, preventing large bumps in difficulty that can lead to inconsistent block intervals.</p>
       <p>Miners need to update their setup according to the instructions on the <a href="https://e.cash/mining">eCash Mining page</a>.</p>
       <h2>How do I upgrade?</h2>
       <p>The process of upgrading your node is straightforward: simply stop the currently running node, download the new version, and start the new version. Here are some example instructions for upgrading from version {{ oldVersion }} to the {% if latestVersion == site.data.github-releases[0].name %}latest{% else %}upcoming{% endif %} version ({{ latestVersion }}) on Linux:
         <ul>
           <li>Shut down the node: <code>./bitcoin-abc-{{ oldVersion }}/bin/bitcoin-cli stop</code></li>
           <li>Download the new version archive from the website: <code>wget https://download.bitcoinabc.org/{{ latestVersion }}/linux/bitcoin-abc-{{ latestVersion }}-x86_64-linux-gnu.tar.gz</code></li>
           <li>Extract the archive: <code>tar xzf bitcoin-abc-{{ latestVersion }}-x86_64-linux-gnu.tar.gz</code></li>
           <li>Restart the node with the new version: <code>./bitcoin-abc-{{ latestVersion }}/bin/bitcoind -daemon</code></li>
           <li>Clean up old version and archives (optional):
             <ul>
               <li><code>rm -rf bitcoin-abc-{{ oldVersion }}</code></li>
               <li><code>rm -f bitcoin-abc-{{ oldVersion }}-x86_64-linux-gnu.tar.gz</code></li>
               <li><code>rm -f bitcoin-abc-{{ latestVersion }}-x86_64-linux-gnu.tar.gz</code></li>
             </ul>
           </li>
         </ul>
       </p>
       <h2>Do I need to upgrade my wallet?</h2>
       <p>The network upgrade only affects full nodes. Other eCash software, including wallets such as <a href="/electrum/">Electrum ABC</a> are not affected by the network upgrade.</p>
     </div>
   </div>
 </div>