XRP Has Undergone the Most Negative Period in Its History Over the Last Three Months, But Data Doesn't Show It

cryptonews.ru發佈於 2026-08-15更新於 2026-08-15

文章摘要

XRP has experienced its most negative investor sentiment in three months as the price failed to recover as expected, according to data from Santiment. Comments across social media platforms show retail investors growing significantly more pessimistic, a trend likely to persist in the short term with the price below $1. However, blockchain activity on the XRP Ledger tells a different story. In the last 24 hours, the network recorded 49,929 active addresses, the highest figure in over two months. This recent surge in activity, following a period of historically low engagement earlier in July, presents a key contrarian signal. Santiment suggests that the combination of high on-chain activity and extreme negative sentiment creates a scenario that could appeal to XRP bulls. The platform indicates that if XRP maintains its current technical structure and demand recovers, the present pessimism may later be viewed by cryptocurrency users as a discount buying opportunity.

According to Santiment data, investor sentiment towards $XRP has fallen to its most negative level in the last three months, as the price has not shown the expected recovery. Comments on Reddit, Telegram, and other crypto communities indicate that retail investors are becoming significantly more pessimistic about $XRP.

Santiment noted that a fall in the price of $XRP below the $1 level could increase pressure on individual investors. In the company's view, given the current price outlook, it's unsurprising if negative social media sentiment persists in the short term.

However, activity on the $XRP Ledger blockchain paints a different picture than the price and sentiment. Over the last 24 hours, 49,929 active addresses were registered on the $XRP network. This figure represents the highest number of active addresses on the network in over two months.

Santiment pointed out that in early July, $XRP Ledger activity approached its lowest level since 2026, and stated that the recent spike could be an important counter-signal for the market.

According to the platform, the simultaneous occurrence of high blockchain activity and extremely negative investor sentiment creates a scenario that $XRP bulls will want to follow. Santiment claims that if $XRP maintains its current technical structure and demand recovers, the current pessimism could be viewed by crypto users in the future as a "discounted buying opportunity."

*This is not investment advice.

end-content

熱門幣種推薦

相關問答

QAccording to Santiment, what has happened to investor sentiment towards XRP over the last three months?

AInvestor sentiment towards XRP has fallen to its most negative level in the last three months.

QWhat recent data point about the XRP Ledger network activity contrasts with the negative price sentiment?

AOver the last 24 hours, the XRP Ledger network registered 49,929 active addresses, which is the highest number in over two months.

QWhat scenario does Santiment suggest is created by the combination of high blockchain activity and extremely negative investor sentiment?

ASantiment suggests that the combination creates a scenario that XRP bulls will want to follow, potentially viewing the current pessimism as a 'discounted buying opportunity' in the future.

QWhat could intensify the pressure on individual investors according to Santiment's analysis?

ASantiment noted that the price of XRP falling below the $1 level could intensify pressure on individual investors.

QWhat did Santiment state about the activity level of the XRP Ledger at the beginning of July?

ASantiment stated that the XRP Ledger activity in early July neared its lowest level since 2026.

你可能也喜歡

八年投入急转弯,以太坊为何突然放弃Poseidon?

以太坊基金会研究员Justin Drake近日宣布,以太坊将在Layer 1层放弃已研发八年的SNARK友好型哈希算法Poseidon,转而采用SHA2或BLAKE2等传统哈希函数。这一重大转向源于后量子密码学研究的突破性进展。 Poseidon自2019年起因其在零知识证明电路中的高效性,被广泛用于zkRollup等应用。但其算法历史较短,密码学分析时间不足。而随着后量子安全成为硬性要求,其局限性显现。最新的SNARK设计,特别是基于“二进制域”的证明系统(如Binius和Flock),已能高效处理传统哈希函数的布尔运算,使得SHA2等成熟算法在证明性能上可媲美甚至超越Poseidon,消除了采用后者的主要优势。 另一关键因素是应对量子计算威胁的时间表正在加速。报告预测“量子破译日”可能在本世纪30年代初到来,将对区块链资产构成巨大风险。以太坊因此需要尽快采用经过长期密码分析验证的、抗量子攻击能力更强的哈希方案。其后续量子路线图计划于2027年推出核心构件leanVM,并在2028年完成共识层、执行层和数据层的部署。 与此同时,其他公链如Solana已选定后量子签名方案Falcon,而StarkNet也计划采用BLAKE2等算法。以太坊此次转向,标志着技术重点从“设计SNARK友好型哈希”转变为“设计哈希友好型SNARK”,是在后量子时代选择更成熟、更稳健的密码学基元的战略调整。

marsbit41 分鐘前

八年投入急转弯,以太坊为何突然放弃Poseidon?

marsbit41 分鐘前

全球程序员都在给Anthropic白送钱!官方终于看不下去了

Anthropic官方发布博客,针对开发者使用Claude Code时可能产生的不必要高额费用,总结了六条核心省钱建议: 1. 任务完成后及时使用 `/clear` 清理对话,避免无关历史占用上下文。 2. 对话开始时固定好模型和推理强度,中途切换会导致提示缓存失效,需全价重新计算历史。 3. 使用 `@` 引用文件,而非手动输入路径,可避免Claude进行工具调用和试探性读取,减少上下文累积。 4. 为输出冗长的命令(如运行测试)添加静默参数,减少输出内容对上下文的占用。 5. 在会话缓存仍有效时(如休息前)进行 `/compact` 压缩对话,成本仅为十分之一。 6. 将产生大量输出的任务交由子Agent处理,其独立上下文不会污染主对话。 文章解释了费用产生的机制:输入token(预填充)成本较低,输出token(解码)成本约为其5倍。模型(Opus/Sonnet/Haiku)和推理强度直接影响单价和token数量。 **提示缓存是关键的省钱杠杆**:若请求前缀与之前完全相同,服务器可加载缓存结果,读取成本仅为正常输入价的10%。但切换模型、改变推理强度、执行压缩、缓存过期等操作都会导致缓存失效。 此外,对话历史会因不断追加文件内容和命令输出而“变胖”,导致后续每轮对话成本呈接近平方级(O(n²))增长。除了上述建议,还可使用 `/rewind` 回退无效轮次以保住前面缓存。 文章指出,管理token开销正成为AI时代开发者的新技能,关系到使用效率和成本控制。Anthropic自身大量使用AI编写代码,精细的成本管理至关重要。

marsbit2 小時前

全球程序员都在给Anthropic白送钱!官方终于看不下去了

marsbit2 小時前

交易

現貨

熱門文章

如何購買DATA

歡迎來到HTX.com!在這裡,購買DATA Network (DATA)變得簡單而便捷。跟隨我們的逐步指南,放心開始您的加密貨幣之旅。第一步:創建您的HTX帳戶使用您的 Email、手機號碼在HTX註冊一個免費帳戶。體驗無憂的註冊過程並解鎖所有平台功能。立即註冊第二步:前往買幣頁面,選擇您的支付方式信用卡/金融卡購買:使用您的Visa或Mastercard即時購買DATA Network (DATA)。餘額購買:使用您HTX帳戶餘額中的資金進行無縫交易。第三方購買:探索諸如Google Pay或Apple Pay等流行支付方式以增加便利性。C2C購買:在HTX平台上直接與其他用戶交易。HTX 場外交易 (OTC) 購買:為大量交易者提供個性化服務和競爭性匯率。第三步:存儲您的DATA Network (DATA)購買DATA Network (DATA)後,將其存儲在您的HTX帳戶中。您也可以透過區塊鏈轉帳將其發送到其他地址或者用於交易其他加密貨幣。第四步:交易DATA Network (DATA)在HTX的現貨市場輕鬆交易DATA Network (DATA)。前往您的帳戶,選擇交易對,執行交易,並即時監控。HTX為初學者和經驗豐富的交易者提供了友好的用戶體驗。

743 人學過發佈於 2026.07.01更新於 2026.07.01

如何購買DATA

相關討論

歡迎來到 HTX 社群。在這裡,您可以了解最新的平台發展動態並獲得專業的市場意見。 以下是用戶對 DATA (DATA)幣價的意見。

活动图片