Rumors are flying online that Binance may be offloading huge amounts of XRP. There are speculations that the exchange could also be influencing XRP’s price through wash trading, by shifting tokens between wallets at high speed to make trading activity look bigger than it really is.
How Did The Claim Start?
In a recent post on X, an account with the name Pumpius claimed that Binance may be purposely keeping pressure on XRP’s price. According to the thread, the exchange is driving the token lower to discourage retail investors, while bigger players and insiders quietly stock up at cheaper levels.
However, platforms like Arkham, Santiment, Nansen, and CryptoQuant have not observed any transactions yet to back up the rumor. At this point, it’s safe to say the claim has not been verified.
XRP supporters also suspected a coordinated war, saying this is part of a broader battle between exchanges, regulators, and key crypto assets. But the claim proved to be false. This was an important statement to verify because if it were true, XRP could have faced a price decline and impacted investors’ confidence in the coin.
Why Are These Rumours Spreading?
The talk of Binance dumping XRP picked up weeks after news broke that Ripple co-founder Chris Larsen moved around 50 million XRP ($175M at the time) between July 17 and July 24, with $140M going directly to exchanges. In total, Larsen has shifted about 166 million XRP in 2025, sparking fears of a possible sell-off and raising concerns about price volatility.
At the same time, XRP’s price has slipped under $3 and is now testing lower support zones. The coin began September in the $2.80–$2.73 range and is currently trading around $2.81. While XRP’s moves are closely linked to the broader crypto market rather than being driven solely by Binance, overall market sentiment also plays a big role in shaping its price direction.
Summary Table: Coinpedia’s Evidence
Claim
Coinpedia’s Evidence & Facts
Binance dumping XRP
False— no verified data found
Binance is manipulating XRP’s price
False— the company has not made any transactions to affect the XRP price
Is this a war between Binance and XRP?
False— none of the false allegations indicate a war between the entities.
Conclusion
Claim
Binance is dumping XRP
Verdict
False
Fact Check by Coinpedia
As Per Coinpedia’s research and review of the official source, no heavy transactions of XRP made by Binance have been found. No selling pressure on XRP.
function subscribed_popupmodal(template_id) {
var templateId = ‘6’;
getAllSubscriberCategoryList([templateId]);
var subcribemodal = window.parent.document.getElementById(‘subscribe-modal-design’);
if (subcribemodal) {
var modalContent = `
Never Miss a Beat in the Crypto World!
Stay informed and gain the edge you need to navigate the crypto world. Select your subscription now
if (storeCheckedId.length === 0) {
var unsubcribedPopUpmodal =
`
You’ve Unsubscribed Successfully
We’re sorry to see you go! Your subscription has been canceled. If you change your mind, you can re-subscribe anytime. Thank you for being part of our community!
Thank you for subscribing to our crypto and blockchain newsletter! You’ll now receive the latest news, insights, and updates straight to your inbox. Welcome to our community!
`;
let selectedSubscriptionsArray = selectedSubscriptionsString.split(‘,’);
let subscribedCategories = selectedSubscriptionsArray.map(subscription => subscription.split(‘_’)[0]);
let subscribedCategoriesString = subscribedCategories.join(‘, ‘);
subscribedmodal.innerHTML = subscribedPopupModal;
if (document.getElementById(‘selectidname’)) {
document.getElementById(‘selectidname’).textContent = subscribedCategoriesString;
}
function closeModal(template_id) {
var modalId = template_id;
var modal = document.querySelector(‘#’ + modalId); // Using querySelector to find the modal
// Function to get cookies
function getCookie(name) {
let value = “; ” + document.cookie;
let parts = value.split(“; ” + name + “=”);
if (parts.length == 2) return parts.pop().split(“;”).shift();
}
// Get user token from cookies
const userToken = getCookie(‘user_token’);
if (subscribewithoutData === ‘true’ && userToken) {
// Call the modal function with the category ID
subscribed_popupmodal(subscribe_clicked_cat_id);
// Remove the flag and category ID from localStorage
localStorage.removeItem(‘subscribe_without_Login’);
localStorage.removeItem(‘subscribe_clicked_id’);
}
});
var listItems = document.querySelectorAll(‘.subscription-options li’);
if (listItems.length === 0) return;
var anyActive = false;
listItems.forEach(function(item) {
var checkbox = item.querySelector(‘input[type=”checkbox”]’);
if (checkbox) {
if (checkbox.checked) {
item.classList.add(‘active’);
anyActive = true; // Set anyActive to true
} else {
item.classList.remove(‘active’); // Remove ‘active’ class if checkbox is unchecked
}
}
});
}
function updateButtonText(anyActive) {
var subscribeButtonSpan = document.querySelector(‘.subscribe-submit .changeBtnText’);
if (subscribeButtonSpan) {
if (anyActive) {
subscribeButtonSpan.textContent=”Subscribe Now”;
} else {
subscribeButtonSpan.textContent=”Unsubscribe”;
}
}
}
function updateSubscriptionButton() {
var listItems = document.querySelectorAll(‘.subscription-options li’);
if (listItems.length === 0) return;
var anyActive = false;
listItems.forEach(function(item) {
var checkbox = item.querySelector(‘input[type=”checkbox”]’);
if (checkbox) {
if (checkbox.checked) {
item.classList.add(‘active’);
anyActive = true; // Set anyActive to true
} else {
item.classList.remove(‘active’); // Remove ‘active’ class if checkbox is unchecked
}
}
});
// Update the button text based on whether any list item has the ‘active’ class
updateButtonText(anyActive);
}
document.addEventListener(‘click’, function(event) {
var clickedItem = event.target.closest(‘.subscription-options li’);
if (clickedItem) {
var checkbox = clickedItem.querySelector(‘input[type=”checkbox”]’);
if (checkbox) {
checkbox.checked = !checkbox.checked;
updateSubscriptionButton();
}
}
});