XRP正经历过去三个月以来最糟糕的时期,但数据并未印证这一点

cryptonews.ruОпубліковано о 2026-08-15Востаннє оновлено о 2026-08-15

Анотація

过去三个月,XRP经历了其历史上最负面的时期,但数据并未证实这一情况。根据Santiment的数据,由于价格未如预期复苏,投资者对XRP的情绪已跌至三个月来的最低点。Reddit、Telegram等加密货币社区的评论显示,散户投资者对XRP的看法正变得显著悲观。 Santiment指出,若XRP价格跌破1美元,可能会加剧散户投资者的压力。考虑到当前价格前景,短期内社交媒体上的负面情绪持续并不意外。 然而,XRP Ledger区块链的活跃度描绘了与价格和情绪不同的景象。过去24小时内,XRP网络记录了49,929个活跃地址,这是两个多月以来的最高水平。Santiment提到,7月初XRP Ledger的活跃度曾接近2026年以来的最低点,而近期的激增可能是市场的重要反向信号。 该平台认为,区块链高活跃度与投资者极度负面情绪同时存在,为XRP多头创造了值得关注的场景。Santiment声称,若XRP能保持当前技术结构且需求复苏,目前的悲观情绪未来可能被加密货币用户视为“折扣买入机会”。 *本文不构成投资建议。

根据Santiment的数据,由于价格未显示出预期的复苏,投资者对$XRP的情绪已跌至过去三个月以来的最低点。Reddit、Telegram和其他加密社区中的评论表明,散户投资者对$XRP的看法正变得显著悲观。

Santiment公司指出,$XRP价格跌破1美元可能会加剧散户投资者的压力。该公司认为,考虑到当前的价格前景,社交媒体上的负面情绪在短期内持续并不令人意外。

然而,$XRP Ledger区块链上的活动描绘了一幅与价格和情绪不同的图景。在过去24小时内,$XRP网络记录了49,929个活跃地址。这个数字代表了两个多月以来网络中最大的活跃地址数量。

Santiment公司指出,在7月初,$XRP Ledger的活动接近自2026年以来的最低水平,并表示近期的飙升可能对市场而言是一个重要的反向信号。

根据该平台的观点,同时存在高链上活动和极度负面的投资者情绪,创造了一个$XRP多头愿意跟随的情境。Santiment声称,如果$XRP能保持其当前的技术结构,并且需求恢复,那么当前的悲观情绪未来可能会被加密货币用户视为“逢低买入的机会”。

*本文不构成投资建议。

end-content

Трендові криптовалюти

Пов'язані питання

Q根据文章,XRP投资者情绪在过去三个月发生了什么变化?

A根据Santiment的数据,XRP投资者情绪在过去三个月跌至最负面水平,因为价格未能出现预期的复苏。Reddit、Telegram等加密货币社区的评论表明,散户投资者对XRP的看法变得明显更加悲观。

Q文章提到,尽管投资者情绪悲观,但XRP Ledger的哪项数据呈现了不同的情况?

A尽管投资者情绪悲观,但XRP Ledger的链上活动呈现了不同情况。在过去24小时内,XRP网络记录了49,929个活跃地址,这是两个多月以来网络活跃地址数量的最高值。

QSantiment公司如何看待XRP价格跌破1美元的影响?

ASantiment公司指出,XRP价格跌破1美元可能会加剧对散户投资者的压力。考虑到当前的价格前景,如果社交媒体上的负面情绪在短期内持续下去,并不令人意外。

Q文章中提到,XRP Ledger的活跃度在七月初曾接近什么水平?

A文章中提到,XRP Ledger的活跃度在七月初曾接近自2026年以来的最低水平。而近期的激增可能对市场是一个重要的反向信号。

QSantiment认为,当前XRP的高链上活跃度和负面投资者情绪并存,可能为哪一类投资者创造什么机会?

ASantiment认为,当前XRP的高链上活跃度和极端负面的投资者情绪并存,创造了一个看涨XRP的投资者(多头)可能会追随的场景。如果XRP能保持当前的技术结构并且需求复苏,那么当前的悲观情绪未来可能会被加密货币用户视为一次“折价买入的机会”。

Пов'язані матеріали

Programmers Worldwide Are Wasting Money on Anthropic! The Company Can't Stand It Anymore

Anthropic recently published guidelines to help developers using Claude Code reduce unnecessary token costs. The key recommendations include: 1) Clear (/clear) conversations after completing a task to avoid carrying irrelevant file reads and command outputs into the next task. 2) Set the model and reasoning effort level at the start of a session, as switching mid-session invalidates the prompt cache, requiring a full-price recalculation of the entire dialog history. 3) Attach files using @ references instead of typing paths manually to avoid extra tool calls and searches that bloat the context. 4) Add quiet flags to verbose commands (e.g., in CLAUDE.md) to minimize lengthy output in the dialog history. 5) Use /compact while the session cache is still warm (before breaks) to compress the dialog at one-tenth the cost. 6) Offload large-output tasks to a sub-agent, which runs in an isolated context and only returns conclusions, preventing intermediate outputs from polluting the main dialog. The article explains token pricing: input tokens (prefill) are processed in parallel, while output tokens (decode) are generated serially, making output tokens five times more expensive. Caching is crucial for savings—if a request's prefix (system prompt, CLAUDE.md, dialog history) matches the previous one byte-for-byte, reading it costs only 10% of the standard input price. However, cache invalidation occurs when changing models, effort levels, fast mode, compressing dialogs, after cache expiration, or when resuming old sessions. Dialog history also grows quadratically (O(n²)) as file contents and command outputs accumulate, increasing costs per round. Proactive context management—like isolating noisy tasks, using /rewind to trim unproductive turns, and task-based session clearing—is becoming an essential skill for cost-effective AI-assisted development.

marsbit1 год тому

Programmers Worldwide Are Wasting Money on Anthropic! The Company Can't Stand It Anymore

marsbit1 год тому

Pax Silica vs. WAICO: The US Wants to Prohibit Europe from Using Chinese Artificial Intelligence

The United States is preparing to demand that European and other partners abandon Chinese artificial intelligence initiatives, threatening exclusion from the American-led "Pax Silica" coalition, according to a leaked U.S. State Department document. This ultimatum forces signatories of the "AI Opportunity Statement" to choose between the Western technological ecosystem and alternative frameworks, with China not explicitly named but clearly targeted. Pax Silica is a U.S. strategy for AI and semiconductor hegemony, launched in late 2025. Its European presence expanded significantly in mid-2026. Concurrently, China, Russia, and 27 other nations established the World AI Cooperation Organization (WAICO) in July 2026 as an independent intergovernmental platform promoting AI governance based on UN principles. This situation creates a difficult choice, especially for European nations balancing strategic autonomy with dependence on U.S. tech and security. It also pressures Global South countries with pragmatic ties to both Washington and Beijing. The formation of competing blocks risks fragmenting the global tech landscape, forcing companies to split supply chains, increasing costs, and potentially leading to incompatible standards and protocols. The era of open globalization in AI may be ending, replaced by geopolitical confrontation where technological sovereignty trumps economic efficiency. The decisions made will shape the global digital economy for decades.

cryptonews.ru3 год тому

Pax Silica vs. WAICO: The US Wants to Prohibit Europe from Using Chinese Artificial Intelligence

cryptonews.ru3 год тому

Robert Kiyosaki Shares His Mentor's Predictions About the Emergence of Bitcoin and AI

American entrepreneur and author of "Rich Dad Poor Dad," Robert Kiyosaki, discussed the influence of futurist R. Buckminster Fuller on his worldview, linking Fuller's past technological predictions to the emergence of Bitcoin and the development of artificial intelligence. In an X post, Kiyosaki also reflected on personal purpose, sharing his journey from the music business—where he worked with bands like The Police and Iron Maiden—to creating the "Cashflow" board game and writing his famous book. He described feeling an inner emptiness despite his success, a turning point that came after meeting Fuller, whom he studied with for three summers. Kiyosaki described Fuller as a "friendly genius" who foresaw world-changing developments like Bitcoin and AI. However, the core of his post focused on Fuller's philosophical impact, particularly a quote about belonging to the universe and finding purpose by dedicating one's life to the maximum benefit of others. The entrepreneur remains a vocal advocate for cryptocurrencies. He regularly advises buying Bitcoin during market panics, viewing it and assets like Ethereum, gold, and silver as hedges against traditional financial system failures. Kiyosaki has predicted a major market crash by 2026, seeing it as an opportunity for prepared investors, with long-term price targets including $750,000 for Bitcoin and $95,000 for Ethereum.

cryptonews.ru5 год тому

Robert Kiyosaki Shares His Mentor's Predictions About the Emergence of Bitcoin and AI

cryptonews.ru5 год тому

Etherealize CEO Calls Wall Street's Private Blockchains a 'Race to the Bottom'

Etherealize co-founder and CEO Vivek Raman criticized Wall Street's growing interest in private, permissioned blockchains, calling them a "race to the bottom." In an interview with CoinDesk, Raman argued that consortium networks fragment liquidity and return the industry to the siloed systems that blockchain technology was meant to overcome. He stated that closed networks do not interoperate, undermining two key advantages of the technology: system compatibility and liquidity concentration. Etherealize promotes Ethereum as an open, foundational layer for institutional players. Raman insists that privacy and access restrictions should be built on top of public infrastructure—at the application or L2 level—rather than creating separate, closed networks. He compared Ethereum to HTTP as a base layer, with additional permissioned and private layers akin to HTTPS. Examples of this new wave of "closed" solutions mentioned include Canton Network from Digital Asset, Circle's Arc project, and Stripe's Tempo. Raman termed this trend "consortium chains 2.0," recalling earlier initiatives like the R3 interbank consortium and the Hyperledger corporate ecosystem from 2016 that failed to gain significant traction. He reiterated his firm belief that a global, open, permissionless infrastructure is necessary as a foundational base layer. Raman previously noted in June that traditional financial institutions had begun implementing Ethereum-based solutions into real business processes.

cryptonews.ru5 год тому

Etherealize CEO Calls Wall Street's Private Blockchains a 'Race to the Bottom'

cryptonews.ru5 год тому

Торгівля

Спот

Популярні статті

Як купити DATA

Ласкаво просимо до HTX.com! Ми зробили покупку DATA Network (DATA) простою та зручною. Дотримуйтесь нашої покрокової інструкції, щоб розпочати свою криптовалютну подорож.Крок 1: Створіть обліковий запис на HTXВикористовуйте свою електронну пошту або номер телефону, щоб зареєструвати обліковий запис на HTX безплатно. Пройдіть безпроблемну реєстрацію й отримайте доступ до всіх функцій.ЗареєструватисьКрок 2: Перейдіть до розділу Купити крипту і виберіть спосіб оплатиКредитна/дебетова картка: використовуйте вашу картку Visa або Mastercard, щоб миттєво купити DATA Network (DATA).Баланс: використовуйте кошти з балансу вашого рахунку HTX для безперешкодної торгівлі.Треті особи: ми додали популярні способи оплати, такі як Google Pay та Apple Pay, щоб підвищити зручність.P2P: Торгуйте безпосередньо з іншими користувачами на HTX.Позабіржова торгівля (OTC): ми пропонуємо індивідуальні послуги та конкурентні обмінні курси для трейдерів.Крок 3: Зберігайте свої DATA Network (DATA)Після придбання DATA Network (DATA) збережіть його у своєму обліковому записі на HTX. Крім того, ви можете відправити його в інше місце за допомогою блокчейн-переказу або використовувати його для торгівлі іншими криптовалютами.Крок 4: Торгівля DATA Network (DATA)Легко торгуйте DATA Network (DATA) на спотовому ринку HTX. Просто увійдіть до свого облікового запису, виберіть торгову пару, укладайте угоди та спостерігайте за ними в режимі реального часу. Ми пропонуємо зручний досвід як для початківців, так і для досвідчених трейдерів.

542 переглядів усьогоОпубліковано 2026.07.01Оновлено 2026.07.01

Як купити DATA

Обговорення

Ласкаво просимо до спільноти HTX. Тут ви можете бути в курсі останніх подій розвитку платформи та отримати доступ до професійної ринкової інформації. Нижче представлені думки користувачів щодо ціни DATA (DATA).

活动图片