China's No.1, Closing in on OpenAI, Mysterious "Sweeping Monk" Rises to Top Seven Globally

marsbitОпубликовано 2026-06-30Обновлено 2026-06-30

Введение

A mysterious Chinese AI project named "MopMonk" (meaning "Sweeping Monk") has achieved a top-ranking result on the globally recognized CyberGym cybersecurity benchmark. With a 73.1% success rate, it ranks seventh worldwide and first among Chinese entries, performing closely behind OpenAI. The significance lies in the benchmark itself. CyberGym, created by UC Berkeley, is considered a premier "Olympics" for AI security. It tests models on over 1500 real-world software vulnerabilities, requiring them to not just identify but actually generate working exploits (PoCs) in a complex, offline environment. This moves beyond simple knowledge to testing an AI's practical "execution" capabilities. MopMonk's approach is notable. It uses the open-source MiniMax M3 model from Shanghai as its powerful reasoning "brain," leveraging its strong coding skills and long context window. However, the key to its performance is a custom-built, multi-agent security framework—its "Harness." This system uses structured "vulnerability memory" to efficiently guide the search for exploits, allowing multiple agents to explore in parallel while sharing lessons learned from failures. This engineering layer effectively translates the model's intelligence into actionable, iterative testing steps. The project remains highly secretive, with no official website or team information, embodying the "dark horse" spirit of its literary namesake. Its success highlights a potential industry shift: beyond simply scalin...

It's insane! A mysterious Chinese AI "Sweeping Monk" without even an official website, stormed into the CyberGym global top seven with a 73.1% win rate, hot on OpenAI's heels. The whole internet is going crazy trying to figure out, whose master is this?

These past few days, on a leaderboard where global AI giants are fiercely competing, a name no one has ever heard of suddenly appeared.

It's called MopMonk (Sweeping Monk).

No grand launch event, no official blog post, no cheerleading on social media.

It just emerged out of thin air and charged straight into the CyberGym global top ten.

With a 73.1% success rate, it closely trailed OpenAI by a narrow margin, setting a new record for the highest historical score by a Chinese team on this leaderboard.

The most surreal part of the whole thing is that, to this day, no one knows its true identity.

Just how significant is the CyberGym leaderboard?

How explosive is MopMonk's achievement this time? Look at the arena it stepped onto.

CyberGym, meticulously crafted by a UC Berkeley team, had its core paper accepted at the ICLR 2026 top conference.

Portal: https://arxiv.org/pdf/2506.02548

As one of the most authoritative public benchmarks in AI cybersecurity capability assessment, this place is essentially a "battleground of the gods" for large models—

Even top-tier heavyweights like GPT-5.5-Cyber and Claude Mythos have been in close combat on this leaderboard.

The entire benchmark focuses on "live-fire exercises":

1507 vulnerability instances, 188 major open-source projects. All test questions are sourced from real historical vulnerabilities accumulated in Google's OSS-Fuzz.

From an evaluation dimension perspective, this represents a breakthrough across scales.

Its scale is a full 7.5 times that of the previous largest public benchmark (NYU CTF, ~200 questions), and it leaves predecessors like CVE-Bench an order of magnitude behind.

Even more daunting is the difficulty. CyberGym doesn't offer multiple-choice questions.

It requires AI to perform deep reasoning within real-world projects involving thousands of files and millions of lines of code.

Precisely because it is large enough, real enough, and difficult enough, CyberGym has "differentiating power"—

It can slice out, bit by bit, the genuine capability gaps between different models and different Agent frameworks.

No wonder the security community directly crowned it the "Olympics of AI security."

This is also why almost all major global players are present: Microsoft, OpenAI, Anthropic, Google, Meta, Zhipu AI......

The CyberGym leaderboard itself is witnessing a crucial shift in AI competition:

From comparing who has more parameters, to comparing whose Agent can actually get the job done.

A mysterious Eastern codename suddenly appears among Silicon Valley AI giants

Who would have thought that on this very arena where "hard skills" speak the loudest, a "ghost player" would emerge as a dark horse?

Piercing through the fog, we currently only have three pieces of known information:

Mysterious Codename: MopMonk (Sweeping Monk)

Base Model: MiniMax M3

Leaderboard Record: Broke into CyberGym global top seven, China's number one

Normally, a team achieving such results should have already flooded the scene with technical reports and press conferences.

Yet, on this leaderboard teeming with masters, MopMonk is precisely that ultimate "outsider": It only tossed out a technical report, with its team, company, and location remaining complete unknowns.

This collision of "top-tier capability, information nakedness" itself is filled with a dramatic flair reminiscent of Eastern martial arts novels.

Those familiar with Jin Yong understand the weight carried by the three characters "Sweeping Monk" in "Demi-Gods and Semi-Devils"—

That old monk who swept floors for decades in the Shaolin Library, whose name no one remembered, yet with one move subdued the two great masters, Xiao Yuanshan and Murong Bo.

The most inconspicuous character, harboring the deepest skills.

Daring to challenge the arena under the banner of "Sweeping Monk," this team clearly has extremely cold confidence in its own strength!

A more crucial clue is hidden in its technical foundation—the base chosen by MopMonk is MiniMax M3.

As an open-source base originating from Shanghai, M3 can be called an all-round warrior, directly integrating three core capabilities: cutting-edge programming ability, a 1M ultra-long context window, and native multimodality.

On one side, an "Eastern cultural symbol" full of flavor; on the other, a technological base bearing a purely domestic label.

Placing these two clues on the table narrows the circle considerably. All the traces are frantically hinting at the same conclusion:

This is most likely a Chinese team.

The Deciding Factor Lies in the Harness

Putting aside the identity mystery, as those who have been long tracking AI technology, we want to figure out one question even more:

Why did MopMonk win?

To answer this, we must first return to CyberGym's hardest core—it doesn't test "whether you know," but "whether you can do."

Judging whether a piece of code has a vulnerability isn't too difficult for today's large models.

But CyberGym tests the next step, the deadliest step: generating an input that can trigger the vulnerability, i.e., a PoC.

It must trigger on the "vulnerable version," fail on the "patched version," and pass the execution verification in the benchmark environment.

This hurdle is far more tricky than imagined.

The trigger conditions for a vulnerability are often scattered among code paths, parsing logic, build environments, test harnesses, and input formats, requiring piece-by-piece assembly.

Even more troublesome, even if the PoC crashes the program locally, it might not count. As long as it doesn't satisfy the differential judgment of "triggers on vulnerable version, does not trigger on patched version," it's all wasted effort.

This step pulls the task completely from "understanding" into "execution." And a very specific kind of execution—

The entire exam takes place in a closed, offline environment.

No external search for help, no "outside resources" whatsoever. The AI can rely only on its understanding of the codebase before it and the memories it has accumulated step by step.

To "reproduce" a vulnerability under such conditions depends on a whole set of interlocking abilities:

Tool-calling planning: When to read files, when to run tests, when to go back and revise the plan;

Multi-round reasoning: The last attempt didn't trigger, what exactly was the problem, how to adjust next time;

Memory management: Structurally storing read code, tried inputs, and encountered pitfalls, rather than rereading everything from scratch each round;

Iterative verification: Repeatedly approaching that critical point until the vulnerability is truly reproduced.

In other words, the core of CyberGym competition is the Agent's "execution capability"; the model's "intelligence" is just the entry ticket.

And the key link that transforms "smartness" into "execution capability" is today's most underestimated term in the entire Agent field—Harness.

Harness is the "coordination layer" between the model and external tools, the execution environment.

It is responsible for tool orchestration, context state management, collection and re-feeding of execution feedback.

Simply put, the model is the brain, responsible for thinking "where the vulnerability might be, how to dig next."

The Harness is the limbs plus nervous system, responsible for turning the brain's thoughts into a series of real actions—

Which file to open, which command to run, how to adjust after getting an error, how to change the approach after a failed round.

On tasks like CyberGym, which require running dozens or hundreds of rounds and repeatedly trial-and-error within millions of lines of code, the quality of the Harness directly determines how much of the model's intelligence can be converted into combat effectiveness.

A smart model + a mediocre Harness often results in "can think of it, but can't do it";

A capable model + a strong Harness tailored for vulnerability mining is what can potentially achieve results in such long-range tasks.

An Agent "Tailor-Made" for Vulnerability Mining

Now, through the GitHub technical report, MopMonk's technical outline has become clear:

A security multi-Agent system newly designed specifically for vulnerability mining, powered by the thinking base MiniMax M3.

GitHub Address: https://github.com/MopMonkAI/MopMonkAgent

As mentioned, M3 is a rare open-source model today that integrates top-tier coding capability, a million-token context window, and native multimodality within a single architecture.

A glance at its benchmarks makes it clear: SWE-Bench Pro achieved 59.0%, Terminal-Bench 2.1 reached 66.0%, MCP Atlas scored 74.2%—

These impressive numbers precisely meet the most hardcore capability needs for Agent deployment in real-world scenarios.

Not only that, it can also autonomously iterate and self-correct over tasks lasting more than ten hours.

In other words, M3 plays the role of a "super brain" combining top-tier code parsing ability, ultra-long memory, and proficient tool-calling skills.

For tasks like CyberGym that often require swallowing an entire codebase and running dozens of rounds, a 1M context window is almost a necessity.

What MopMonk's security Agent framework does is amplify M3's brainpower into execution capability for vulnerability mining.

Its "core techniques," as seen from the technical details publicly available on GitHub, revolve around three key moves—

First move, structured "Vulnerability Memory."

It's not simply stacking chat history, nor is it dumping the ultra-long context wholesale into the model. Instead, it organizes a continuously updatable "Task Fact Memory" around the most critical types of objects in vulnerability mining:

Vulnerability target, code paths, input formats, candidate PoCs, failure evidence, verification status, and "Next Step Constraint" memory.

The last category especially shows skill: It doesn't generate vague abstract plans but directly extracts hard constraints that the next experiment must satisfy from the current evidence.

For example, "This time must cover that branch," "Which field to adjust," "Which type of failure cause to exclude."

This memory design transforms vulnerability mining from "repeated trial-and-error from scratch" into "an evidence-based convergence process."

Each code read, each execution result, each failed submission is converted into reusable constraints for the next PoC generation.

Second move, Memory-driven "Vulnerability Mining."

In vulnerability mining tasks, the system first initializes the vulnerability memory by scanning the codebase and using candidate trigger paths and directory information as planning starting points.

Then, it advances step by step, attempting to converge on the specific code location that triggers the crash.

Afterward, each exploration attempt reads the current memory, tests a specific hypothesis, and writes the results back into memory.

Thus, the model doesn't have to reread the entire task from the beginning each round. Instead, it precisely retrieves the most relevant piece of evidence from this structured memory—

This drastically reduces the burden of long context while allowing each mutation of a candidate PoC to inherit the previously accumulated knowledge of code paths and input formats, making the search increasingly accurate.

Within strict exploration budgets, time is therefore spent as much as possible on "new hypotheses," dramatically increasing the density of effective trials.

Third move, "Multi-Agent Parallel Exploration" under Shared Memory.

Multiple exploration attempts share the same vulnerability memory. They can advance simultaneously from multiple directions such as patch clues, harness entry points, file format fields, sanitizer types, boundary conditions, etc., inheriting each other's failure experiences and verification results.

This expands coverage while avoiding repetitive, ineffective exploration.

From this, it's evident that MopMonk has rewritten vulnerability reproduction from an open-ended trial-and-error process into a "accumulable, constrainable, verifiable" memory update process.

Combining all three moves, relying entirely on "internal skills" that precipitate, refine, and reuse bit by bit within the task, it forcefully dispatches a powerful open-source base into a special forces soldier on the vulnerability mining battlefield.

Ultimately, it achieved a 73.1% success rate.

The base is responsible for "thinking deeply," the Harness is responsible for "remembering solidly, tuning accurately, striking steadily."

The deep coupling of both ultimately forged that eye-catching breakthrough achievement on the leaderboard.

A Judgment More Valuable Than "Stacking Parameters"

The real inspiration of this matter lies in—

In recent years, the industry's inertia has been "stacking parameters": the larger the parameters, the stronger the model, the higher the leaderboard ranking.

But real-world attack/defense tasks like CyberGym offer another answer: increasingly, the deciding factor is the Agent's execution capability, the engineering depth of the Harness layer.

According to the GitHub technical report, the value of this approach lies in three points:

Powerful base model capabilities provide the foundation for the search;

Structured vulnerability memory provides the mechanism for convergence;

Multi-agent exploration with shared memory improves cost-effectiveness within limited budgets.

The base determines the upper limit of capability, while this memory-centric Harness determines how much of that capability can be actualized.

More critically is its compounding nature:

Model bases will be swapped generation after generation; using M3 today, possibly newer open-source models tomorrow.

But a Harness repeatedly tempered on real battlefields, accumulating attack/defense experience, is an asset that can compound continuously, transcending base model iterations.

In short, the long-term value of the MopMonk Harness might be greater than "stacking another doubling of parameters."

This is precisely the fundamental reason the industry is starting to seriously examine this mysterious "Sweeping Monk":

What people want to see isn't just its score, but that it demonstrates a path to maximizing open-source base models.

So, who exactly is the "Sweeping Monk"?

After circling around, we return to that initial, most tantalizing question.

MopMonk, who are you?!

Piecing the clues together: an Eastern martial arts-flavored codename + a base from Shanghai's MiniMax + a body of "internal skills" in the security field.

Almost all arrows point to the same judgment: This is an AI security company from China, most likely based in Shanghai.

Some, considering the two-way adaptation between the base model and the Agent, blindly speculate that its background is inseparable from the native AI large model team.

Various versions of guesses are circulating wildly, but no one has been able to produce hard evidence so far.

Who do you think MopMonk is? The master of which house? The comment section awaits your inside scoop.

This article is from the WeChat public account "New Zhiyuan", author: ASI Apocalypse

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

Связанные с этим вопросы

QWhat is MopMonk's rank on the CyberGym leaderboard, and what is its success rate?

AMopMonk (Sweeping Monk) is ranked seventh globally and first among Chinese teams on the CyberGym leaderboard, achieving a success rate of 73.1%.

QWhat is the key focus of the CyberGym benchmark that makes it particularly challenging?

ACyberGym focuses on evaluating an AI's practical 'execution' capability, specifically the ability to generate a working Proof-of-Concept (PoC) that can trigger a historical vulnerability in a real codebase, rather than just identifying vulnerabilities.

QWhat base model does MopMonk's Agent system utilize?

AMopMonk's Agent system utilizes MiniMax M3 as its foundational base model.

QWhat is a 'Harness' in the context of AI Agents, and why is it crucial for tasks like CyberGym?

AA Harness is the 'coordination layer' between the AI model and the external execution environment. It manages tool orchestration, context state, and feedback loops. It's crucial for converting a model's analytical intelligence into actionable, multi-step execution capability required in complex, long-running tasks like vulnerability exploitation in CyberGym.

QAccording to the article, what are the three core techniques of MopMonk's architecture for vulnerability mining?

AThe three core techniques of MopMonk's architecture are: 1. Structured 'vulnerability memory' that organizes key information about the exploit task. 2. Memory-driven 'vulnerability exploitation' that guides the search using accumulated constraints. 3. 'Multi-agent parallel exploration' with shared memory, allowing multiple agents to investigate different hypotheses while learning from each other's results.

Похожее

Достиг ли биткоин дна? Разбор 12 ключевых показателей

Анализируются 12 ключевых индикаторов для оценки того, достиг ли Bitcoin дна после коррекции примерно на 53% от максимумов 2025 года до текущих ~$59,600. Показатели указывают на приближение к исторически низким уровням оценки: Индекс страха и жадности (16 - "крайний страх"), Bitcoin в "мертвой зоне" на Rainbow Chart, низкий MVRV (~1.13), цена близка к реализованной (~$53,400). Накоплены признаки капитуляции: рекордно низкий UTXO Profit Ratio, долгосрочные держатели продают в убыток (LTH SOPR 0.662), давление на майнеров (20% убыточны), устойчивый отток из ETF США. Однако полная очистка рынка не завершена: реализованная цена не пробита, спрос ETF не восстановился. Зона ниже $60,000 выглядит привлекательной для долгосрочных инвесторов, но требуется терпение и подтверждение разворота по сигналам: возобновление притока в ETF, восстановление LTH SOPR, снижение давления на майнеров. Рынок находится в фазе формирования потенциального дна.

marsbit3 мин. назад

Достиг ли биткоин дна? Разбор 12 ключевых показателей

marsbit3 мин. назад

Биткоин консолидируется вблизи $60 000 – Могут ли покупки китов преодолеть продажи ETF?

Биткоин консолидируется вблизи уровня в 60 000 долларов. Несмотря на это, данные с блокчейна показывают, что крупные держатели (киты) продолжают накапливать BTC, считая текущие цены привлекательными. Их совокупные запасы остаются около исторических максимумов, что создает структурную поддержку рынку. Однако на рынке наблюдается противоречивая картина. С одной стороны, биткоин-ETF фиксируют значительные оттоки средств, что указывает на продажи со стороны институциональных инвесторов. С другой — чистый приток монет на биржи говорит о поступлении нового капитала. Это свидетельствует о возможном переходе активов от краткосрочных трейдеров к долгосрочным держателям. В итоге, устойчивое накопление китами может заложить основу для восстановления курса BTC. Ключевым фактором станет способность нового спроса со стороны крупных игроков перевесить продолжающееся давление продаж через ETF-фонды.

ambcrypto10 мин. назад

Биткоин консолидируется вблизи $60 000 – Могут ли покупки китов преодолеть продажи ETF?

ambcrypto10 мин. назад

Проявилось обесценивание: компании, удерживающие биткоин в казне, столкнулись с кризисом доверия

Основная проблема заключается в смене рыночной логики оценки акций компаний с биткоин-казначействами. Раньше инвесторы реагировали позитивно на любые новости о покупке биткоинов. Теперь же фокус сместился на степень размытия доли акционеров. Ключевым показателем стала скорректированная чистая стоимость активов (mNAV) — отношение рыночной капитализации компании к стоимости её биткоинов. Когда mNAV падает ниже 1.0 (как у Metaplanet), это означает, что рынок оценивает компанию дешевле, чем её биткоины, что блокирует возможность привлечения нового капитала без ущерба для текущих акционеров. Пионер отрасли, MicroStrategy, столкнулся со снижением доходности на биткоин с 13% до 11.8%. Значительная часть средств от последнего размещения акций пошла на обеспечение дивидендов по привилегированным акциям, что негативно влияет на долю обычных акционеров в активах компании. В Европе новые игроки, такие как Capital B и BTC AB, выходят на рынок со сложными схемами финансирования (привилегированные акции с дивидендами), стоимость которых ещё не оценена рынком. Их успех зависит от того, смогут ли будущие покупки биткоинов покрыть все расходы на привлечение капитала. Основной причиной смены парадигмы стало появление спотовых биткоин-ETF, которые предлагают инвесторам прямой, дешёвый и ликвидный доступ к активам, без риска размытия доли. Теперь компаниям необходимо доказывать свою ценность за счёт дополнительных преимуществ, таких как эффективный финансовый менеджмент. Новый этап отрасли требует от компаний не просто накапливать биткоины, но и гарантировать, что каждая новая сделка по финансированию увеличивает долю биткоинов, приходящуюся на одну обыкновенную акцию.

Foresight News34 мин. назад

Проявилось обесценивание: компании, удерживающие биткоин в казне, столкнулись с кризисом доверия

Foresight News34 мин. назад

Криптомошенничество NanoBit завершилось победой SEC на сумму $5,52 млн – Вот как это было

Комиссия по ценным бумагам и биржам США (SEC) одержала победу в деле против компании NanoBit и ряда связанных с ней лиц и организаций. С сентября 2023 по июнь 2024 года ответчики осуществляли мошенническую схему «свиноводство» (pig butchering), заманивая жертв через мессенджеры, такие как WhatsApp. Они рекламировали фиктивные первичные предложения монет (ICO), обещая нереально высокую доходность, и ложно утверждали, что их партнёр зарегистрирован в SEC. Окружной суд Восточного округа Нью-Йорка вынес окончательное решение против двух физических лиц и четырёх организаций. Суд установил, что на платформе NanoBit не проводилось реальных транзакций, а средства инвесторов были переведены на счета в Гонконг и присвоены. Все ответчики навсегда лишены права нарушать антимошеннические положения законов о ценных бумагах. Им предписано выплатить в общей сложности около 5,52 миллиона долларов в виде штрафов, изъятия незаконно полученной прибыли и процентов. Наибольшая сумма в размере примерно 1,8 миллиона долларов возложена на NanoBit.

ambcrypto37 мин. назад

Криптомошенничество NanoBit завершилось победой SEC на сумму $5,52 млн – Вот как это было

ambcrypto37 мин. назад

Claude Code официально анонсировал следующее крупное обновление: вы общаетесь, а на фоне работа уже сделана

Claude Code, разработчики которого объявили о следующем крупном обновлении, делает фоновое выполнение задач суб-агентами стандартной функцией. Это означает, что пользователи могут общаться с Claude, пока интеллектуальные агенты в фоновом режиме завершают работу — например, рефакторинг кода, запуск тестов или создание PR. По сути, инструмент эволюционирует от диалогового интерфейса к «движку рабочих процессов», способному одновременно управлять несколькими задачами. Создатель Claude Code, Борис Черны, подчеркивает философию проекта: это не чат, а инфраструктура. Этот шаг стал закономерным развитием ранее представленных функций, таких как Routines (запланированные задачи) и Dynamic workflows (динамические рабочие процессы для сложных задач). Теперь фоновый режим стал настройкой по умолчанию, позволяя разработчикам сосредоточиться на стратегическом планировании. Практический эффект значителен. В Anthropic отмечают, что Claude Code утроил эффективную производительность инженеров, сместив узкое место с написания кода на принятие решений о том, какой код писать. Компаниям теперь требуется больше продуктовых менеджеров. Пример Spotify демонстрирует масштаб: в монолитном репозитории из 20+ миллионов строк кода 73% pull request создаются с помощью AI, а частота PR выросла на 75%. Инженерный директор Spotify Никлас Густавссон управляет несколькими сессиями Claude одновременно, параллельно выполняя задачи. Ключевой вывод: когда «работа в фоне» становится стандартом, главной задачей инженера становится не написание кода, а определение целей и оценка результатов.

marsbit39 мин. назад

Claude Code официально анонсировал следующее крупное обновление: вы общаетесь, а на фоне работа уже сделана

marsbit39 мин. назад

Торговля

Спот

Популярные статьи

Как купить S

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

1.6k просмотров всегоОпубликовано 2025.01.15Обновлено 2026.06.02

Как купить S

Sonic: Обновления под руководством Андре Кронье – новая звезда Layer-1 на фоне спада рынка

Он решает проблемы масштабируемости, совместимости между блокчейнами и стимулов для разработчиков с помощью технологических инноваций.

2.3k просмотров всегоОпубликовано 2025.04.09Обновлено 2025.04.09

Sonic: Обновления под руководством Андре Кронье – новая звезда Layer-1 на фоне спада рынка

HTX Learn: Пройдите обучение по "Sonic" и разделите 1000 USDT

HTX Learn — ваш проводник в мир перспективных проектов, и мы запускаем специальное мероприятие "Учитесь и Зарабатывайте", посвящённое этим проектам. Наше новое направление .

1.9k просмотров всегоОпубликовано 2025.04.10Обновлено 2025.04.10

HTX Learn: Пройдите обучение по "Sonic" и разделите 1000 USDT

Обсуждения

Добро пожаловать в Сообщество HTX. Здесь вы сможете быть в курсе последних новостей о развитии платформы и получить доступ к профессиональной аналитической информации о рынке. Мнения пользователей о цене на S (S) представлены ниже.

活动图片