Key Takeaways:
- Bitcoin ended Q1 2025 down nearly 12%, but analysts remain optimistic about long-term growth, with some forecasts pointing to $120K by mid-year.
- Ethereum posted one of its worst Q1 performances, down 45.5%, as falling fees and shifting user behavior raise questions about ETH’s evolving role in the ecosystem.
- Solana outperformed Ethereum in DeFi volume and revenue during Q1, but upcoming token unlocks and market dynamics could test its short-term momentum.
Table of Contents
- In This Article
- In This Article
-
Bitcoin Price Predictions Suggest a Breakout Soon
-
‘Ethereum Is Winning on Infrastructure’, But When Will the Price Recover?
-
Solana vs. Ethereum: Who’s the Boss in DEX?
-
What to Expect in May: Key Catalysts for BTC, ETH, and SOL
-
Key Crypto Events to Watch in May 2025
Show Full Guide
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();
});
});
The crypto market will remember the first quarter of 2025 for its sharp corrections, driven by the introduction of new U.S. tariffs and a wave of high-profile crypto scams. However, April brought a partial recovery.
Bitcoin (BTC) climbed back to the $90,000 level, helping many altcoins move out of the red. Solana (SOL) outperformed Ethereum (ETH), although analysts remain confident in Ethereum’s long-term potential.
In this Q1 2025 report, we look at how some of the market’s key players performed — and what might come next for Bitcoin, Ethereum, and Solana in Q2.
Bitcoin Price Predictions Suggest a Breakout Soon
Abbas Abdul Sater, Head of Sales at Capital.com, told Cryptonews that the current neutral environment could be setting the stage for a major move in Bitcoin’s price. Growing institutional interest and increasingly bullish forecasts may indicate that a breakout is near, potentially toward Standard Chartered’s $120,000 target.
“A neutral market environment often creates the perfect conditions for a big move,” Abdul Sater said. He added that ongoing tariff pressure and global trade tensions may further support broader BTC adoption in the medium term.
Historically, Q1 tends to be a strong period for Bitcoin. In 2024, it closed the first quarter up by nearly 69%, and in 2023, the figure was 72%. This year, however, Bitcoin fell by around 12% — a result that still looks modest compared to broader market losses. For reference, a similar correction happened in Q1 2020, when BTC dropped by about 11%.
Despite this, Bitcoin managed to bounce back by the end of April. On April 7, it dropped to $74,773 — the lowest point of the month and of the entire first quarter. However, by the end of the month, it had recovered above the $90,000 level.

According to Abdul Sater, the long-term outlook for Bitcoin remains positive, thanks to continued interest from institutional players:
Major financial institutions are bullish on Bitcoin’s future. Standard Chartered, for example, predicts the cryptocurrency could reach $120K by mid-2025. Meanwhile, BlackRock’s Bitcoin ETF saw nearly a billion dollars flow in just one day, and U.S.-based ETFs are now experiencing fresh inflows exceeding $590 million daily.
Still, he emphasized that the short-term picture is more complex:
Some ETFs are seeing new investments, whereas others are experiencing withdrawals — Grayscale’s GBTC, for example, has pulled out about $42.7 million. Investors seem to be exercising caution, opting to accumulate stablecoins. They’re waiting for clearer macroeconomic signals.
‘Ethereum Is Winning on Infrastructure’, But When Will the Price Recover?
Jonathan Inglis, Managing Director at Protocol Theory, told Cryptonews that Ethereum’s price no longer reflects the pace of its infrastructure development. However, the long-term outlook depends on whether ETH remains central to core functions. Whether that’s a short-term mispricing or a sign of a more fundamental decoupling will depend on “how ETH’s role evolves from here”:
It remains central to collateral, staking, and settlement across rollups, demand should follow usage over time. But if alternative assets begin to take on those roles, ETH’s long-term value proposition may need to be reassessed.
Inglis noted that the ecosystem is evolving rapidly, especially on Layer-2 networks such as Base, Arbitrum, and Optimism. These networks have seen a rise in consumer-facing activity in recent months.
He added that while usage metrics are growing, the price of ETH tells a more complicated story.
Unlike Bitcoin, Ethereum experienced one of its worst first quarters in 2025. ETH fell by nearly 45.5%. A similar outcome was seen in 2018, when the price dropped by almost 46%.
In all other cases, Ethereum has either shown growth or minor losses during the first quarter.
According to Inglis, one of the reasons for Ethereum’s price decline is the reduction in Layer-1 fees:
At the same time, staking rewards continue at a steady pace. As a result, net ETH issuance is positive for the first extended period since the Merge. That’s not inherently problematic—but it does shift expectations away from the deflationary narrative that once anchored bullish sentiment.
He also emphasized that Ethereum is becoming less visible in the user experience. Many consumer-facing apps now allow interaction with the ecosystem without directly holding ETH:
On most Layer-2s, users can transact using stablecoins or application tokens. ETH still plays a critical role behind the scenes—securing rollups, paying for data availability, and underpinning staking economics—but its presence at the UX layer is fading.
Eneko Knörr, founder of Stabolut, added that Ethereum continues to face negative sentiment. Its price remains well below previous highs. At the same time, its position as the leading Layer-1 network is being challenged.
Solana vs. Ethereum: Who’s the Boss in DEX?
According to Knörr, projects like Solana are regaining momentum. He believes that Solana is advancing not only through technology but also through effective branding and community engagement. In his words, “Solana nails branding, community, and events in a way Ethereum hasn’t matched,” and is now often referred to as “the Apple of crypto.”
The rivalry between Solana and Ethereum intensified in the first quarter of 2025. In January, Solana surged ahead of Ethereum in decentralized exchange (DEX) volume, largely driven by a wave of meme coin activity on its network.
However, in the following months, Solana’s DeFi volume dropped by more than 50%. Despite this, it managed to retain its lead over Ethereum, with the exception of March. At the same time, Ethereum’s own DEX volume declined as well, though less sharply.
Eneko Knörr believes part of Solana’s rise is due to Ethereum’s slower pace:
Part of Solana’s rise is simply that Ethereum hasn’t stepped up. Hopefully, upcoming upgrades will turn the tide. Personally, I’m still bullish on ETH—there’s so much doubt that it feels like one of those classic “buy when others are fearful” setups.
In terms of network revenue, Solana outperformed Ethereum in Q1. While Solana’s revenue fell by almost 20% compared to Q4 2024, Ethereum saw a decline of nearly 65%. For Solana, this performance helped solidify its position in the DEX space.
Kelghe D’Cruz, CEO of Pairs, explained to Cryptonews that Solana’s advantage stems in part from how market makers are using the network:
A lot of the volume we’re seeing on Solana right now is market makers taking advantage of cheaper costs. That’s always been part of the game—inflate volume, make the charts look good, and win retail attention. It’s not new, but it works. And with Ethereum bloated and slower to move, people are betting SOL can 2x quicker.
Although the market absorbed the supply with minimal disruption, D’Cruz warned that additional token unlocks may create short-term volatility.
“Two smaller scheduled unlocks are coming in May,” D’Cruz continued:
While they’re modest in size, they could still shift market dynamics. Overall outlook remains short-term bullish, but we’re monitoring those unlocks closely.
What to Expect in May: Key Catalysts for BTC, ETH, and SOL
After a volatile first quarter, Bitcoin is entering May with cautious optimism. The upcoming U.S. interest rate decision on May 7 could be a key catalyst for price movement. While BTC held above $90,000 at the end of April, analysts remain divided on whether a breakout or deeper correction comes next.
All eyes are on the Pectra upgrade, scheduled for May 7. While Ethereum continues to lead on infrastructure, the price has lagged behind network growth. The upgrade could reignite momentum — or highlight deeper questions about ETH’s role in a changing ecosystem.
Solana’s strong DeFi performance in Q1 may face a new test in May. Two scheduled token unlocks could introduce short-term selling pressure. Still, Solana continues to attract attention with fast execution, rising usage, and community momentum. Analysts remain short-term bullish, but watch market reactions closely.
Key Crypto Events to Watch in May 2025
- May 7: U.S. Interest Rate Decision
A key macro event that could impact crypto and traditional markets alike. - May 7: Ethereum’s Pectra Upgrade
A major update focused on improving validator experience and network efficiency. - Expected in May: Texas Bitcoin Reserve Legislation
If approved by the state House, Texas could become one of the first U.S. states to officially hold Bitcoin in its treasury.
The post Bitcoin, Ethereum, and Solana: Q1 Results and Q2 Market Outlook appeared first on Cryptonews.
https://cryptonews.com/reports/q1-2025-results-q2-outlook/