BTCC / BTCC Square / Cryptonews /
February 2025 Crypto Recap: Trump’s Crypto Reserve, Investor Exodus,  Macro Pressures, and Whale Sell-offs

February 2025 Crypto Recap: Trump’s Crypto Reserve, Investor Exodus,  Macro Pressures, and Whale Sell-offs

Cryptonews
Author:
Cryptonews
Release Time:
2025-03-05 15:03:23
0

  • February saw sharp declines across major cryptocurrencies, with Bitcoin (-9%), Ether (-32%), and Solana (-36%) facing heavy losses amid macroeconomic uncertainty and investor caution.
  • US spot Bitcoin ETFs saw record outflows of $3.56 billion (-177%), while US spot Ether ETFs also dropped by 41%, reflecting investor caution amid global economic uncertainty.
  • Bitcoin mining revenue fell by 11.5%, and miners’ shares suffered significant losses due to the reduced demand for Bitcoin following economic uncertainty.
  • On-chain activity for Bitcoin, Ethereum, and Solana all showed significant declines, reflecting weakened user engagement across all three networks.
Table of Contents
  • In This Article
  • Bitcoin Faces Setback: February Slump Sees Nearly 9% Drop & Record ETF Outflows Bitcoin ETFs in January 2025
  • Bitcoin News – February 2025 Highlights
  • Texas Lawmakers Refile Bitcoin Reserve Bill, Expanding Scope to Include Other Cryptos
  • Strategy Buys $2 Billion More Worth Of Bitcoin
  • Crypto Prices Spike as Trump Declares Bitcoin, Ether, and Major Altcoins as Reserve Assets
  • Ethereum Report: Ether Crashes to 16-Month Low as Whales Sell Off and On-Chain Activity Slumps Ethereum Top Gainers and Losers in February
  • Ethereum News – February 2025 Highlights
  • Major Ethereum Upgrade Pectra Goes Live on Holesky Testnet
  • Ethereum Foundation Allocates $120 Million of ETH to DeFi Protocols
  • Brazil’s B3 Stock Exchange to Launch Bitcoin Options and Futures for ETH and SOL
  • Ethereum ETFs in January 2025 Solana’s February Slump: Declining Activity & Capital Exodus Solana Top Gainers and Losers in January
  • Solana News – February 2025 Highlights
  • Coinbase Expands US Crypto Futures Market with CFTC-Regulated Solana Contracts
  • Solana Proposal to Slash Inflation by 80% Heads to Community Vote
  • Sol Strategies Increases SOL Holdings by CAD $7.3M, Now Holds 214,342 SOL
  • What to Look for in March’s Key Events
  • In This Article
  • Bitcoin Faces Setback: February Slump Sees Nearly 9% Drop & Record ETF Outflows
  • Bitcoin ETFs in January 2025
  • Bitcoin News – February 2025 Highlights
  • Texas Lawmakers Refile Bitcoin Reserve Bill, Expanding Scope to Include Other Cryptos
  • Strategy Buys $2 Billion More Worth Of Bitcoin
  • Crypto Prices Spike as Trump Declares Bitcoin, Ether, and Major Altcoins as Reserve Assets
  • Show Full Guide
  • Ethereum Report: Ether Crashes to 16-Month Low as Whales Sell Off and On-Chain Activity Slumps
  • Ethereum Top Gainers and Losers in February
  • Ethereum News – February 2025 Highlights
  • Major Ethereum Upgrade Pectra Goes Live on Holesky Testnet
  • Ethereum Foundation Allocates $120 Million of ETH to DeFi Protocols
  • Brazil’s B3 Stock Exchange to Launch Bitcoin Options and Futures for ETH and SOL
  • Ethereum ETFs in January 2025
  • Solana’s February Slump: Declining Activity & Capital Exodus
  • Solana Top Gainers and Losers in January
  • Solana News – February 2025 Highlights
  • Coinbase Expands US Crypto Futures Market with CFTC-Regulated Solana Contracts
  • Solana Proposal to Slash Inflation by 80% Heads to Community Vote
  • Sol Strategies Increases SOL Holdings by CAD $7.3M, Now Holds 214,342 SOL
  • What to Look for in March’s Key Events
  • window.addEventListener("DOMContentLoaded", () => { const header = document.querySelector(".header_wrapper"); const pageLegend = document.querySelector(’#multiCollapse1’); const pageLegendList = document.querySelector(’#multiCollapse2’); const pageLegendCollapse = new bootstrap.Collapse(pageLegend, {toggle: document.querySelector(".toc-sticky").classList.contains(’sticky’)}); /** * Changing current title */ (function (pageLegend) { const titleNodes = pageLegend.querySelectorAll(’.StepProgress-item__link’); if (!titleNodes.length) return; const titles = [...titleNodes].map((itm, i) => ({ id: itm.getAttribute(’data-id’), text: itm.textContent, level: itm.getAttribute(’data-level’), linkNode: itm, titleNode: document.getElementById(itm.getAttribute(’data-id’)), index: i, })); /** * Source: https://www.sitepoint.com/throttle-scroll-events/ * @param {Function} fn * @param {number} wait * @returns {(function(): void)|*} */ const throttle = (fn, wait) => { let time = Date.now(); return function () { if ((time + wait - Date.now()) { const documentScrollTop = window.pageYOffset || document.documentElement.scrollTop || document.body.scrollTop || 0; let current = 0; // Title titles.forEach((itm, i) => { //console.log(itm) const itmOffsetTop = itm.titleNode ? itm.titleNode.offsetTop - 100 : 0; if (documentScrollTop >= itmOffsetTop) { document.getElementById(’toc-current-title’).innerHTML = itm.text; document.getElementById(’toc-current-title’).setAttribute(’data-current-id’, itm.id); document.getElementById(’toc-current-title’).setAttribute(’data-current-level’, itm.level); current = i; } }) // close all list and open sub list if needed if (document.querySelector(".toc-sticky").classList.contains(’sticky’)) { document.querySelectorAll(’.subList-in-progress’).forEach((el) => { el.children[1].classList.remove(’show’); el.getElementsByClassName(’icon-chevron-down’)[0].classList.remove(’up’); }); const currentEl = titles[current]; currentEl.linkNode.classList.add(’show’); } titles.forEach((itm, i) => { itm.linkNode.parentNode.parentNode.classList.remove(’current’, ’is-done’); if (current > i) { itm.linkNode.parentNode.parentNode.classList.add(’is-done’) }; if (current === i) { itm.linkNode.parentNode.parentNode.classList.add(’current’); }; }) } changeCurrentTitle(); document.addEventListener(’scroll’, throttle(changeCurrentTitle, 50)); })(pageLegend); /** * Collapse */ (function (pageLegend, header) { const icon = pageLegend.parentNode.querySelector(".collapse-action-btn i"); const collapseToggle = (status) => (e) => { if (!e.target.isEqualNode(pageLegend)) return; icon.classList.toggle("up"); const containerHeight = pageLegend.getBoundingClientRect().height; const showSubtitleContent = () => { const currentId = document.getElementById(’toc-current-title’).getAttribute(’data-current-id’); const currentLevel = document.getElementById(’toc-current-title’).getAttribute(’data-current-level’); const currentSubTitle = currentLevel == 3 ? document.querySelector(`a[data-id="${currentId}"]`).parentNode.parentNode.parentNode : false; if (!currentSubTitle) return; new bootstrap.Collapse(currentSubTitle, {toggle: false}).show(); } showSubtitleContent(); console.log(status + ’fdsfsd’ + containerHeight); if (status === ’shown’ && document.querySelector(".toc-sticky").classList.contains(’sticky’)) { document.querySelector(’html’).classList.remove(’overflow-hidden’); pageLegend.classList.add(’overflow-auto’); pageLegend.style.height = `calc(100vh - ${header.getBoundingClientRect().height + document.querySelector(’.toc-sticky__open’).getBoundingClientRect().height + 16}px)`; } else if (status === ’hide’) { document.querySelector(’html’).removeClass(’overflow-hidden’); pageLegend.classList.remove(’overflow-auto’); pageLegend.style.height = ’auto’; } } pageLegend.addEventListener(’shown.bs.collapse’, collapseToggle(’shown’)); pageLegend.addEventListener(’hide.bs.collapse’, collapseToggle(’hide’)); })(pageLegend, header); /** * Collapse sub-titles */ (function (pageLegend) { const collapseEls = pageLegend.querySelectorAll(’.collapse’); collapseEls.forEach(function (el) { const toggleArrowDirection = function (e) { if (!e.target.isEqualNode(el)) return; const id = this.getAttribute(’id’); document.querySelector(`.collapse-action-btn[data-bs-target="#${id}"] .icon-chevron-down`).classList.toggle(’up’); } el.addEventListener(’shown.bs.collapse’, toggleArrowDirection); el.addEventListener(’hide.bs.collapse’, toggleArrowDirection); }) })(pageLegend); /** * Collapse main title */ (function (pageLegendList) { const icon = pageLegendList.parentNode.querySelector(".collapse-action-btn i"); const collapseToggle = () => (e) => { if (!e.target.isEqualNode(pageLegendList)) return; icon.classList.toggle("up"); } pageLegendList.addEventListener(’shown.bs.collapse’, collapseToggle()); pageLegendList.addEventListener(’hide.bs.collapse’, collapseToggle()); })(pageLegendList); (function (pageLegendList) { const collapseEls = pageLegendList.querySelectorAll(’.collapse’); collapseEls.forEach(function (el) { const toggleArrowDirection = function (e) { if (!e.target.isEqualNode(el)) return; const id = this.getAttribute(’id’); document.querySelector(`.toc-sticky-list .collapse-action-btn[data-bs-target="#${id}"] .icon-chevron-down`).classList.toggle(’up’); } el.addEventListener(’shown.bs.collapse’, toggleArrowDirection); el.addEventListener(’hide.bs.collapse’, toggleArrowDirection); }) })(pageLegendList); /** * Sticky functionality * Source: https://stackoverflow.com/questions/17893771/javascript-sticky-div-after-scroll */ (function (header, pageLegendCollapse) { // set everything outside the onscroll event (less work per scroll) const target = document.querySelector(".toc-sticky"); const targetListStatic = document.querySelector(".toc-sticky-list"); if (!target || !header) return; const headerHeight = header.getBoundingClientRect().height; const targetHeight = targetListStatic.getBoundingClientRect().height; // -headerHeight so it won’t be jumpy const stop = targetListStatic.offsetTop + headerHeight + targetHeight; const docBody = document.documentElement || document.body.parentNode || document.body; const hasOffset = window.pageYOffset !== undefined; const applySticky = function () { // cross-browser compatible scrollTop. const scrollTop = hasOffset ? window.pageYOffset : docBody.scrollTop; // if user scrolls to headerHeight from the top of the target div if (scrollTop >= stop) { pageLegendCollapse.hide(); // stick the div target.classList.add("sticky"); //target.style.marginTop = `${headerHeight}px`; } else { pageLegendCollapse.show(); // release the div target.classList.remove("sticky"); target.style.marginTop = ""; } } applySticky(); window.addEventListener(’scroll’, applySticky); })(header, pageLegendCollapse); jQuery(’span.show_moretoc’).click(function () { jQuery(’span.show_moretoc’).hide(); jQuery(’.ms_hidetoc’).show(); }); });

    !function(e,n,i,s){var d=”InfogramEmbeds”;var o=e.getElementsByTagName(n)[0];if(window[d]&&window[d].initialized)window[d].process&&window[d].process();else if(!e.getElementById(i)){var r=e.createElement(n);r.async=1,r.id=i,r.src=s,o.parentNode.insertBefore(r,o)}}(document,”script”,”infogram-async”,”https://e.infogram.com/js/dist/embed-loader-min.js”);!function(e,n,i,s){var d=”InfogramEmbeds”;var o=e.getElementsByTagName(n)[0];if(window[d]&&window[d].initialized)window[d].process&&window[d].process();else if(!e.getElementById(i)){var r=e.createElement(n);r.async=1,r.id=i,r.src=s,o.parentNode.insertBefore(r,o)}}(document,”script”,”infogram-async”,”https://e.infogram.com/js/dist/embed-loader-min.js”);

    Bitcoin Faces Setback: February Slump Sees Nearly 9% Drop & Record ETF Outflows

    Bitcoin dropped nearly 9% in February, mirroring a broader risk-off market.

    On-chain activity weakened, with active wallets down 14%, new wallets down 15%, and transactions dipping 1%.

    The decline in price and user activity was fueled by economic uncertainty, as US trade tariffs imposed by President Trump on Mexico, Canada, and China rattled investors.

    Signaling increasing investor demand for the safest assets, yields on the 10-year US Treasury fell to their lowest level in three months. The US dollar also weakened against a basket of global currencies, as reflected in the DXY Index, which fell to 106.38 at the end of February, also a three-month low.

    Bitcoin mining revenue fell 11.5% to $1.24 billion in February, while transaction fees dropped 19%, signaling lower network demand. Despite this, mining difficulty ROSE by 2%, pushing smaller miners to the edge.

    !function(e,n,i,s){var d=”InfogramEmbeds”;var o=e.getElementsByTagName(n)[0];if(window[d]&&window[d].initialized)window[d].process&&window[d].process();else if(!e.getElementById(i)){var r=e.createElement(n);r.async=1,r.id=i,r.src=s,o.parentNode.insertBefore(r,o)}}(document,”script”,”infogram-async”,”https://e.infogram.com/js/dist/embed-loader-min.js”);

    Miners’ shares took a hit, with Bitdeer falling 25% and Cipher Mining down 17% after reporting widening losses. Bitdeer blamed its weak performance on Bitcoin’s 2024 halving, which slashed mining rewards.

    Bitcoin ETFs in January 2025

    US spot Bitcoin ETFs saw record net outflows of $3.56 billion, a 177% drop from January, marking their worst month since they launched in January 2024.

    !function(e,n,i,s){var d=”InfogramEmbeds”;var o=e.getElementsByTagName(n)[0];if(window[d]&&window[d].initialized)window[d].process&&window[d].process();else if(!e.getElementById(i)){var r=e.createElement(n);r.async=1,r.id=i,r.src=s,o.parentNode.insertBefore(r,o)}}(document,”script”,”infogram-async”,”https://e.infogram.com/js/dist/embed-loader-min.js”);

    Bitcoin News – February 2025 Highlights

    Texas Lawmakers Refile Bitcoin Reserve Bill, Expanding Scope to Include Other Cryptos

    The new legislation, Senate Bill 21 (SB 21), replaces a previous version and introduces more flexible investment strategies.

    Strategy Buys $2 Billion More Worth Of Bitcoin

    Strategy has been buying up Bitcoin since 2020.

    Crypto Prices Spike as Trump Declares Bitcoin, Ether, and Major Altcoins as Reserve Assets

    Trump said that Bitcoin and Ether would serve at the heart of the reserve, in a strong endorsement for both assets.

    !function(e,n,i,s){var d=”InfogramEmbeds”;var o=e.getElementsByTagName(n)[0];if(window[d]&&window[d].initialized)window[d].process&&window[d].process();else if(!e.getElementById(i)){var r=e.createElement(n);r.async=1,r.id=i,r.src=s,o.parentNode.insertBefore(r,o)}}(document,”script”,”infogram-async”,”https://e.infogram.com/js/dist/embed-loader-min.js”);

    Ethereum Report: Ether Crashes to 16-Month Low as Whales Sell Off and On-Chain Activity Slumps

    In February, Ether’s price dropped by over 32%, driven by market volatility, macroeconomic pressures, and large whale liquidations.

    The entire cryptocurrency market faced turbulence, with ETH falling to around $2,000 in early March, its lowest price in 16 months.

    Another key factor in Ether’s decline was the sudden emergence of two dormant whales who deposited 135,548 ETH – worth nearly $400 million – into Bitfinex after six years of inactivity. This massive influx of supply exerted downward pressure on Ether’s price, as increased selling by large holders typically leads to weaker market demand.

    Ethereum on-chain activity also reflected the overall downturn. The number of transactions fell by 6%, dropping to 35.6 million in February. Active wallets declined by 10%, reaching 14.1 million, while new wallet growth provided a rare positive metric, increasing by 36% to 5.3 million. This suggests that while experienced users may have reduced their engagement, new participants continue to enter the network, possibly attracted by the current low prices.

    !function(e,n,i,s){var d=”InfogramEmbeds”;var o=e.getElementsByTagName(n)[0];if(window[d]&&window[d].initialized)window[d].process&&window[d].process();else if(!e.getElementById(i)){var r=e.createElement(n);r.async=1,r.id=i,r.src=s,o.parentNode.insertBefore(r,o)}}(document,”script”,”infogram-async”,”https://e.infogram.com/js/dist/embed-loader-min.js”);

    Staker revenue suffered a sharp decline, falling 37% to $172.52 million compared to January. This drop was largely due to lower transaction fees, which fell 41% to $20.59 million. The decrease in fees suggests reduced network demand, as fewer transactions resulted in less revenue for Ethereum validators. As on-chain activity slowed, staking yields declined, making Ethereum staking less attractive for participants seeking passive income.

    Ethereum Top Gainers and Losers in February

    !function(e,n,i,s){var d=”InfogramEmbeds”;var o=e.getElementsByTagName(n)[0];if(window[d]&&window[d].initialized)window[d].process&&window[d].process();else if(!e.getElementById(i)){var r=e.createElement(n);r.async=1,r.id=i,r.src=s,o.parentNode.insertBefore(r,o)}}(document,”script”,”infogram-async”,”https://e.infogram.com/js/dist/embed-loader-min.js”);

    Ethereum News – February 2025 Highlights

    Major Ethereum Upgrade Pectra Goes Live on Holesky Testnet

    Activated at epoch 115,968, the upgrade aims to stress-test new features in a controlled environment.

    Ethereum Foundation Allocates $120 Million of ETH to DeFi Protocols

    The Ethereum Foundation’s $120 million ETH injection into AAVE and Spark reflects a shift in treasury strategy amid inflation concerns.

    Brazil’s B3 Stock Exchange to Launch Bitcoin Options and Futures for ETH and SOL

    Bitcoin futures, which were introduced in April 2023, have been generating approximately R$5 billion ($860 million) in monthly trading volume.

    Ethereum ETFs in January 2025

    US spot Ether ETFs also saw reduced interest from institutional investors. Monthly inflows shrank to $60.1 million, marking a 41% drop from January’s $101.15 million. The declining appetite for Ethereum-based investment products mirrored the broader market correction, as investors pulled back amid economic concerns and waning confidence in risk assets.

    !function(e,n,i,s){var d=”InfogramEmbeds”;var o=e.getElementsByTagName(n)[0];if(window[d]&&window[d].initialized)window[d].process&&window[d].process();else if(!e.getElementById(i)){var r=e.createElement(n);r.async=1,r.id=i,r.src=s,o.parentNode.insertBefore(r,o)}}(document,”script”,”infogram-async”,”https://e.infogram.com/js/dist/embed-loader-min.js”);

    !function(e,n,i,s){var d=”InfogramEmbeds”;var o=e.getElementsByTagName(n)[0];if(window[d]&&window[d].initialized)window[d].process&&window[d].process();else if(!e.getElementById(i)){var r=e.createElement(n);r.async=1,r.id=i,r.src=s,o.parentNode.insertBefore(r,o)}}(document,”script”,”infogram-async”,”https://e.infogram.com/js/dist/embed-loader-min.js”);

    Solana’s February Slump: Declining Activity & Capital Exodus

    Solana‘s price plunged 36% in February, outpacing Ether (-32%) and Bitcoin (-9%).

    User activity also declined, with active and new addresses dropping 34% and 17%, respectively, while transactions fell 14% to 3 billion.

    The downturn is tied to disappointment in Solana-based meme coins, especially the Libra token, supported by Argentina’s President Javier Milei.

    As confidence in the blockchain wanes, nearly $136.8 million in crypto flowed from Solana to Ethereum and over $125 million to Arbitrum in February, signaling a potential capital exodus.

    !function(e,n,i,s){var d=”InfogramEmbeds”;var o=e.getElementsByTagName(n)[0];if(window[d]&&window[d].initialized)window[d].process&&window[d].process();else if(!e.getElementById(i)){var r=e.createElement(n);r.async=1,r.id=i,r.src=s,o.parentNode.insertBefore(r,o)}}(document,”script”,”infogram-async”,”https://e.infogram.com/js/dist/embed-loader-min.js”);

    Solana‘s advanced technology has attracted its fair share of bad actors, even though the technology itself is neutral. However, despite setbacks, this future shakeout of bad actors could strengthen Solana in the long run by raising high industry standards and increasing trust in its ecosystem.

    Solana Top Gainers and Losers in January

    !function(e,n,i,s){var d=”InfogramEmbeds”;var o=e.getElementsByTagName(n)[0];if(window[d]&&window[d].initialized)window[d].process&&window[d].process();else if(!e.getElementById(i)){var r=e.createElement(n);r.async=1,r.id=i,r.src=s,o.parentNode.insertBefore(r,o)}}(document,”script”,”infogram-async”,”https://e.infogram.com/js/dist/embed-loader-min.js”);

    Solana News – February 2025 Highlights

    Coinbase Expands US Crypto Futures Market with CFTC-Regulated Solana Contracts

    Coinbase now offers 19 futures contracts, including Bitcoin (BTC), Ether (ETH), and Dogecoin (DOGE).

    Solana Proposal to Slash Inflation by 80% Heads to Community Vote

    Solana’s proposed shift to a dynamic inflation model is raising debate over network sustainability and decentralization.

    Sol Strategies Increases SOL Holdings by CAD $7.3M, Now Holds 214,342 SOL

    Sol Strategies increases SOL holdings to 214,342, valued at $41.2M, signaling an increased confidence and a way of supporting the Solana ecosystem.

    What to Look for in March’s Key Events

    In March 2025, several macroeconomic events and major conferences could have an impact on the cryptocurrency market.

    • Trade Tariffs: Donald Trump’s imposition of significant tariffs on imports from Mexico, Canada, and China in March is fueling economic uncertainty and impacting investor sentiment toward high-risk assets like cryptocurrencies.
    • Employment and Inflation Data: Upcoming releases of US employment figures and inflation statistics may affect market dynamics, as strong labor market data could influence interest rate decisions, subsequently impacting cryptocurrency investments.
    • European Central Bank (ECB) Interest Rate Decision (March 7): The ECB’s anticipated interest rate cut, amid concerns over economic stimulus and inflation control, could influence global liquidity and cryptocurrency valuations.

    • White House Crypto Summit: Donald Trump will host the inaugural White House Crypto Summit on March 7, bringing together crypto founders, CEOs, and investors to discuss regulatory policies and the role of cryptocurrencies in the US financial system.
    • Crypto Assets Regulation and Compliance Conference: On March 12-13 in Gauteng, South Africa, this conference will address regulatory governance, compliance, and risk in the crypto asset ecosystem, involving banks, service providers, and government entities
    • Web3 Amsterdam: Taking place on March 13-14, 2025, in Amsterdam, Netherlands, this conference focuses on the evolution of decentralized technologies and their impact on various sectors.
    • Digital Asset Summit: Taking place from March 18-20 in New York City, this summit focuses on the intersection of traditional finance (TradFi) and digital assets, featuring discussions on regulatory developments, market infrastructure, and institutional adoption.
    • Next Block Expo: Set for March 19-20, 2025, in Warsaw, Poland, this expo aims to connect blockchain enthusiasts and professionals to explore emerging opportunities in the crypto industry.
    • Crypto Assets Conference (CAC25A): Scheduled for March 26 in Frankfurt, Germany, this conference will convene over 500 industry experts to explore topics like tokenized securities, digital assets, and artificial intelligence in finance.

    Several concrete developments in the coming months could significantly influence the cryptocurrency market.

    Firstly, potential US and state-level crypto reserves, featuring assets like Bitcoin, Ether, and other altcoins, could accelerate global institutional adoption.

    Secondly, further altcoin ETF approvals – Solana, XRP, Litecoin (LTC), and others – would broaden investor access, potentially increasing market liquidity.

    Thirdly, the growth of real-world asset (RWA) tokenization offers new investment opportunities by linking traditional assets with blockchain. Tokenizing physical assets, such as real estate or commodities, could attract both institutional and retail investors seeking broader exposure to tangible assets.

    Finally, the EU’s Markets in Crypto-Assets (MiCA) regulation currently implements a comprehensive regulatory framework that could attract new business to Europe, while increasing compliance requirements and costs that will be particularly difficult for smaller firms to manage.

    Articles on this site are sourced from public networks or curated by AI for informational purposes only and do not represent BTCC’s views. Original rights belong to the respective authors. For copyright concerns, please contact [email protected]. BTCC assumes no liability for the accuracy, timeliness, or completeness of this information, and disclaims all liability arising from reliance on such content. This content is for reference only and should not be taken as investment, legal, or commercial advice.

    |Square

    Get the BTCC app to start your crypto journey

    Get started today Scan to join our 100M+ users