What's Hot

    Your Favorite Restaurant Is Becoming a Tech Company | Invesloan.com

    March 7, 2026

    New Era of Drone Warfare Creates Higher Risks for Civilians | Invesloan.com

    March 7, 2026

    Subscribe to learn | Invesloan.com

    March 6, 2026
    Facebook Twitter Instagram
    Finance Pro
    Facebook Twitter Instagram
    invesloan.cominvesloan.com
    Subscribe for Alerts
    • Home
    • News
    • Politics
    • Money
    • Personal Finance
    • Business
    • Economy
    • Investing
    • Markets
      • Stocks
      • Futures & Commodities
      • Crypto
      • Forex
    • Technology
    invesloan.cominvesloan.com
    Home » ETH vs TRUMP: What Whales Bought After the October 10 Crypto Crash | Research | Invesloan.com
    Crypto

    ETH vs TRUMP: What Whales Bought After the October 10 Crypto Crash | Research | Invesloan.com

    November 12, 2025
    Share
    Facebook Twitter LinkedIn Pinterest Email

    Key Takeaways:

    • Official Trump became the most bought token among whales after the Oct. 10 crash.
    • Ethereum is still led by buy volume and investor participation.
    • Net buy data shows whales taking profits on major assets while accumulating Official Trump and Virtuals Protocol.
    • Whale activity around the Trump meme coin points to possible insider accumulation.
    • During the second correction, whales shifted from meme coins to older, more stable projects.

    When the market went into turmoil, whales picked their side. Not Ethereum, not Solana — but the meme coin became their top choice.

    Cryptonews analyzed the top 100 tokens by market capitalization, based on CoinGecko data, excluding Bitcoin (BTC), stablecoins, and tokens linked to staking or restaking. The study covered the period from Oct. 11 to Nov. 7 and focused on whale transactions worth more than $50,000 to identify which assets attracted the most capital during the recovery phase. The data is sourced from Flipside and is based on decentralized exchange (DEX) activity.


    Table of Contents
    1. In This Article
    2. TRUMP Becomes the Top Whale Pick
      Ethereum Keeps Attracting Retail and Institutional Investors
      Where Capital Flows After the Crypto Crash
      Whale Concentration in TRUMP Suggests Insider Accumulation
      From Meme Coins to Blue Chips: How Whale Behavior Evolved
      Conclusion

    1. In This Article
    2. TRUMP Becomes the Top Whale Pick
    3. Ethereum Keeps Attracting Retail and Institutional Investors
    4. Where Capital Flows After the Crypto Crash
    5. Show Full Guide

    6. Whale Concentration in TRUMP Suggests Insider Accumulation
    7. From Meme Coins to Blue Chips: How Whale Behavior Evolved
    8. Conclusion

    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();
    });
    });

    TRUMP Becomes the Top Whale Pick

    According to Cryptonews data, Official Trump (TRUMP) ranked first by the number of large transactions (each worth over $50,000), outperforming even Ethereum (ETH) — the asset long seen as the “main” altcoin. Rounding out the top five were Tron (TRX), Chainlink (LINK), and Aerodrome (AERO).

    Interestingly, all projects in the top five belong to different sectors: meme coins, DeFi, smart contracts, infrastructure, and DEXs. Yet the meme coin took the lead.

    Beyond the tokens shown in the chart, whales were also actively buying several others. Among them were Aave (AAVE) with 214 large transactions, PancakeSwap (CAKE) with 93, Ethena (ENA) with 76, and Solana (SOL) with 57. The list also included Virtuals Protocol (VIRTUAL) – 53, Pump.Fun (PUMP) – 28, Jupiter (JUP) – 20, Uniswap (UNI) – 27, Aptos (APT) – 20, Pepe (PEPE) – 16, Pudgy Penguins (PENGU) – 11, Arbitrum (ARB) – 15, Mantle (MNT) – 17, Ondo (ONDO) – 15, and Floki (FLOKI) – 13.

    Overall, the distribution of whale purchases shows that their interest isn’t limited to top altcoins. They continue to explore higher-risk assets, including meme coins and emerging infrastructure projects. Still, TRUMP stands far ahead of the rest.

    Ethereum Keeps Attracting Retail and Institutional Investors

    While Official Trump led by the number of whale purchases, Ethereum dominated in volume buy with about $2.97 billion compared to $1.81 billion for TRUMP. This shows that despite the growing whale interest in the meme coin, ETH attracted a much broader base of investors, including retail. After the Oct. 10 crash, it once again became one of the main bets for both large and small players.

    Another standout was Virtuals Protocol with around $1.05 billion in total buys, likely driven by the hype around the artificial intelligence sector. PancakeSwap (CAKE) also performed well, with total buys of around $540 million. This shows that the BNB Chain ecosystem is still in focus as activity grows around Aster (ASTER) and new Binance-based meme coins.

    Zcash (ZEC) also made it into the top 10 with $323 million, followed closely by Arbitrum (ARB) and Chainlink. All three have been around for several years, suggesting that some investors may be moving back toward more reliable and established assets amid recent market instability.

    Among meme coins, PUMP recorded $224 million, while Dogecoin (DOGE) came in with $48 million. The first one, Pump.Fun, likely stays attractive because of its payback system and ongoing airdrop expectations. Interest in DOGE shows a steady trend, with traders returning to older meme coins and speculating about a possible ETF.

    Overall, the list is highly diverse. It includes tokens across multiple sectors, from DeFi and infrastructure projects to meme coins and AI protocols. Investor attention appears scattered, with capital flowing in many directions at once. ETH, TRUMP, and VIRTUAL remain clear leaders in overall activity.

    Where Capital Flows After the Crypto Crash

    Another side of the picture emerges when looking at net buy volume, which shows how much capital actually stayed or left across different tokens. The net buy volume metric shows the difference between total buys and total sells, revealing the net inflow or outflow of capital.

    Starting with the most sold-off assets, ETH leads the top five most sold-off tokens list with a net outflow of about $14.6 million. Some long-term investors probably took profits or just stepped out positions. Those who bought ETH during the crash, mainly whales, are still holding. On the market, this pattern is often called “shaking out weak hands”, meaning that cautious holders exit while risk-tolerant ones accumulate.

    At the same time, buy volume for ETH remains much higher, which signals demand, but weak. However, there is still no clear dominance from either buyers or sellers.

    The rest of the top five includes LINK with $7.8 million in net outflows, AAVE with $6.3 million, CAKE with $5.8 million, and APT with $3 million. All of these remain highly liquid and actively traded, which makes them natural candidates for partial profit-taking during volatile periods.

    On the opposite side of the chart are tokens that investors continue to accumulate. In the top five most accumulated tokens, TRUMP leads with a net inflow of around $57 million, confirming steady interest even after its price rally. VIRTUAL comes next with $7.9 million, followed by JUP, MORPHO, and ZEC.

    Interest in JUP may be linked to the launch of Jupiter Lend, a program that allows users to earn passive income. According to DeFiLlama, Jupiter also remains the largest DEX on Solana by Total Value Locked (TVL). Right after JUP is MORPHO, another lending platform, which highlights the growing investor focus on projects that offer stable, if modest, yields. This suggests that amid volatility, some participants are turning to more predictable income sources and see potential in these platforms.

    Such dynamics in ETH and other major tokens may indicate that investors are taking profits on small price moves, reflecting broader uncertainty in both the market and the global economic outlook.

    Whale Concentration in TRUMP Suggests Insider Accumulation

    A closer look at whale activity reveals that, by the number of unique buyers, TRUMP lags far behind other top tokens. Despite its high buy volume of around $1.81 billion, only 48 large wallets took part in those transactions.

    In comparison, ETH saw a buy volume of $2.97 billion, but with 687 unique whales involved. This suggests that TRUMP may be accumulating in the hands of a relatively small group of investors or insiders. A previous Cryptonews report highlighted one such participant.

    Some traders even call this meme coin a “family-controlled” asset linked to Trump’s circle, which makes it potentially risky. At the same time, such a high level of capital concentration could mean that the token is nearing a significant event.

    For other assets, the distribution appears more balanced.

    From Meme Coins to Blue Chips: How Whale Behavior Evolved

    Comparing whale activity during the two market corrections on Oct. 10 and Nov. 4 shows how their strategy changed. During the first crash, whales were more active in meme coins, while also buying larger and more stable assets such as Ethereum, Aave, and Chainlink. The average trade size was over $130,000, and the biggest purchases reached $3 million.

    Many investors likely saw the dip as a chance to enter proven projects and waited for a gradual recovery.

    The second correction on Nov. 4 told a different story. Whales became more cautious. TRUMP led the charts with about $55 million in total buys and became the main focus of accumulation. This activity may have come from a small circle of investors or insiders rather than the broader market. ETH and LINK stayed in the top holdings, but their share of total volumes went down.

    In November, whales were less aggressive with meme coins and DeFi tokens like AAVE, UNI, and CAKE. Instead, they turned back to older and more established assets. While meme coins still draw attention overall, the latest correction showed that in times of market stress, whales prefer safer bets (except for TRUMP).

    Conclusion

    The data shows how whales reacted to one of the most volatile periods of the year. Their behavior mixed caution and speculation. TRUMP led by the number of large buys, but most activity came from a small group of wallets. This could point to insider accumulation or coordinated moves.

    ETH remained the most traded token by buy volume. It attracted both retail and institutional investors, showing that confidence in large-cap assets stays strong. LINK and AAVE also saw steady inflows, suggesting that whales prefer familiar projects when the market turns unstable.

    VIRTUAL highlights another trend. The token’s rise came as AI-related assets started to grow fast. It shows that whales can quickly shift between narratives.

    Overall, whales move between risk and safety depending on market sentiment. Meme coins draw attention during sharp moves, but blue-chip assets still form the base of their portfolios.

    The post ETH vs TRUMP: What Whales Bought After the October 10 Crypto Crash | Research appeared first on Cryptonews.

    Share. Facebook Twitter Pinterest LinkedIn Tumblr Email

    Keep Reading

    Bitcoin Price Prediction: Major Miner Just Expanded in Texas: Is a Massive BTC Production Surge Coming? | Invesloan.com

    Crypto Price Prediction Today 25 February: XRP, Solana, Bitcoin | Invesloan.com

    Hong Kong to Link New Digital Bond Platform With Regional Crypto Tokenization Hubs | Invesloan.com

    An AI Crypto Agent Sent a ‘Beggar’ Six Figures, Then He Lost It All This Way | Invesloan.com

    Ethereum Locks In FOCIL for 2026 as Foundation Moves $6.8M ETH to Staking | Invesloan.com

    Bitcoin Price Prediction: $400 Million Suddenly Pulled From ETFs — Is Smart Money Quietly Exiting BTC? | Invesloan.com

    Crypto Price Prediction Today 24 February – XRP, Bitcoin, Ethereum | Invesloan.com

    XRP Price Prediction: Arizona Just Named XRP in a State Crypto Reserve Bill — Is Government Adoption Beginning? | Invesloan.com

    Bitpanda Offers €15 in Silver to New Users Trading €50 in Metals | Invesloan.com

    LATEST NEWS

    Your Favorite Restaurant Is Becoming a Tech Company | Invesloan.com

    March 7, 2026

    New Era of Drone Warfare Creates Higher Risks for Civilians | Invesloan.com

    March 7, 2026

    Subscribe to learn | Invesloan.com

    March 6, 2026

    Alphabet CEO’s New $692M Pay Package Tied to Waymo, Wing Performance | Invesloan.com

    March 6, 2026
    POPULAR

    China’s first passenger jet completes maiden commercial flight

    May 28, 2023

    Numbers taking US accountancy exams drop to lowest level in 17 years

    May 29, 2023

    Toyota chair faces removal vote over governance issues

    May 29, 2023
    Advertisement
    Load WordPress Sites in as fast as 37ms!
    Facebook Twitter Pinterest WhatsApp Instagram
    © 2007-2023 Invesloan.com All Rights Reserved.
    • Privacy
    • Terms
    • Press Release
    • Advertise
    • Contact

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

    invesloan.com
    Manage Cookie Consent
    To provide the best experiences, we use technologies like cookies to store and/or access device information. Consenting to these technologies will allow us to process data such as browsing behavior or unique IDs on this site. Not consenting or withdrawing consent, may adversely affect certain features and functions.
    Functional Always active
    The technical storage or access is strictly necessary for the legitimate purpose of enabling the use of a specific service explicitly requested by the subscriber or user, or for the sole purpose of carrying out the transmission of a communication over an electronic communications network.
    Preferences
    The technical storage or access is necessary for the legitimate purpose of storing preferences that are not requested by the subscriber or user.
    Statistics
    The technical storage or access that is used exclusively for statistical purposes. The technical storage or access that is used exclusively for anonymous statistical purposes. Without a subpoena, voluntary compliance on the part of your Internet Service Provider, or additional records from a third party, information stored or retrieved for this purpose alone cannot usually be used to identify you.
    Marketing
    The technical storage or access is required to create user profiles to send advertising, or to track the user on a website or across several websites for similar marketing purposes.
    • Manage options
    • Manage services
    • Manage {vendor_count} vendors
    • Read more about these purposes
    View preferences
    • {title}
    • {title}
    • {title}