After a Three-Year Hiatus, Peking University Alumna Lilian Weng's Latest Long-Form Article Goes Viral

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

Введение

After a three-year hiatus, OpenAI alum and renowned AI researcher Lilian Weng has published a comprehensive blog post analyzing the "Scaling Laws" that have guided multi-billion dollar investments in large language models. Her post, "Scaling Laws, Carefully," reveals these foundational laws to be more fragile than widely assumed. She dissects a key discrepancy between OpenAI's 2020 conclusion (favoring larger models) and DeepMind's 2022 Chinchilla finding (advocating balanced growth of model size and data), tracing it to differences in parameter counting and experimental scale. Furthermore, Weng highlights a critical methodological bug in the influential Chinchilla paper, discovered in 2024, where a loss function averaging error caused premature optimizer termination. The analysis also underscores a fundamental limitation: the laws assume infinite, unique training data, a premise collapsing as high-quality text data is exhausted by 2026-2028. This scarcity is driving the industry toward alternatives like reinforcement learning, test-time computation, and synthetic data. Weng concludes that the future of AI depends not just on more compute, but on rigorously understanding and refining these scaling principles.

Lilian Weng has finally published a blog post after a three-year hiatus.

Just moments ago, a long-form article by former OpenAI Vice President Lilian Weng, delayed for over three years, went viral.

In this blog post titled "Scaling Laws, Carefully," she deconstructs Scaling Laws from start to finish—

The law on which the AI industry has bet tens of billions of dollars is far more fragile than anyone imagined.

One-Minute Summary: What This 10,000-Word Article Says

A single formula has governed the entire industry for five years. Scaling Laws state that "increasing model size, feeding more data, and scaling up compute will improve performance at a fixed rate." It turned AI from alchemy into a calculable business, indirectly directing the flow of hundreds of billions of dollars.

OpenAI and DeepMind gave opposite answers. For the same question of "how to allocate compute budget," OpenAI in 2020 said models should scale faster than data, while DeepMind in 2022 said both should scale proportionally. It was later discovered that the root of the divergence was a difference in parameter accounting plus insufficient experimental scale.

Even the winner's formula has bugs. DeepMind's optimal allocation ratio, copied industry-wide for two years, was found in 2024 during a line-by-line reproduction: the loss function used mean instead of sum, causing the optimizer to stop prematurely, and the output parameters were not the true optimum.

Applying patterns from small models to predict large models requires great caution. This curve was fitted on relatively small models; when extrapolated to trillion-parameter scale, a rounding difference can cause conclusions to diverge significantly. The blog includes an interactive simulator—drag the sliders to see it with your own eyes.

There's an even more fundamental issue: data is running out. The formula assumes infinite data supply, but high-quality text is finite. This is why the entire industry is collectively shifting towards reinforcement learning, test-time computation, and synthetic data.

One Straight Line, Hundreds of Billions of Dollars

As is well known, the core of Scaling Laws can be simply summarized in one sentence—

The larger the model, the more data, the more compute, the better the performance. And this "better" is not random; it follows precise mathematical laws.

Plotting training loss on a log-log scale shows it decreases in a straight line as model parameter count N, data volume D, and compute C increase.

Written as a formula: L(x) = E + A/x^α, where x can be N, D, or C; E is the theoretical optimal loss (the entropy of the data itself); A and α are fitted constants.

Training a model with N parameters on D tokens requires total compute C ≈ 6ND—2ND for forward pass, 4ND for backward pass.

This straight line means performance gains are predictable.

Run a few small models first, fit the straight line, extrapolate to the right, and you can estimate the performance of a large model. No need to actually spend hundreds of millions training the large model to know if it works.

Before this, deep learning was often ridiculed as "alchemy"—knowing what works, but not why.

In 2020, OpenAI's Kaplan published this power law, pulling alchemy into the realm of "predictability" for the first time.

This is the confidence behind all large model companies' massive investments.

But on the most critical advice the formula gives—how to allocate compute budget between model and data—OpenAI and DeepMind gave opposite answers.

The Same Problem

OpenAI and DeepMind Produced Opposite Answers

The conclusion reached by OpenAI's Kaplan team in 2020 was: optimal model size N_opt ∝ C^0.73.

Translated: if compute increases 10x, allocate 5.5x to model and 1.8x to data—models should scale much faster than data.

This directly guided GPT-3's training plan.

A 175-billion parameter model was fed only 300 billion tokens (a token is the smallest unit of text processed by a model, roughly 1-2 tokens per word).

By later standards, this was severely undertrained.

In 2022, DeepMind's Chinchilla team reached the opposite conclusion: N_opt ∝ C^0.50, models and data should scale proportionally.

Engineers later distilled it into an oft-quoted number: optimal token-to-parameter ratio is roughly 20:1.

Then DeepMind staged a head-to-head match.

Their Gopher: 280B parameters with 300B tokens. Chinchilla: 70B parameters with 1.4T tokens. Both models used the same compute.

Chinchilla dominated completely.

A smaller, well-fed model beat a larger, starved opponent.

Industry consensus flipped: from "scale up models" to "most models are undertrained."

0.73 vs 0.50, opposite answers to the same problem, would have you allocate your compute budget in two completely different directions.

The Reason Turned Out to be an "Accounting Problem"

In 2024, two researchers published a reconciliation paper in the top-tier machine learning journal TMLR, tracing this divergence to its root.

The conclusion is laughable.

First reason: they counted parameters differently.

Models have a type of parameter layer called embedding, responsible for converting text into numerical vectors the model understands. In small models, this layer constitutes a large proportion of total parameters—maybe one-third for models with tens of millions of parameters.

Kaplan excluded embedding when counting parameters; Chinchilla included it.

This single difference in parameter accounting was enough to distort the final fitted power-law exponent.

They gave a concise correction formula: N = N_\E + ω·N_\E^(1/3), where N_\E is parameter count without embedding, ω is a constant. For small models, the second term is large, embedding influence significant; as models grow larger, the second term approaches zero, and the two counting methods converge.

Second reason: Kaplan's experimental scale was too small.

Kaplan's largest tested model was only 1.5B parameters, while Chinchilla's experiments scanned up to over 16B. In log-log coordinates, tiny fitting deviations are magnified dramatically during extrapolation.

Using unified parameter accounting, they rederived Chinchilla's formula and discovered a key pattern—

The power-law exponent changes with compute scale. Within Kaplan's small-scale experimental range, the exponent was indeed close to 0.73; but as scale increased, the exponent converged to 0.50.

Kaplan wasn't "wrong"; he was correct within his experimental scope.

But he extrapolated a locally valid rule into a global conclusion.

An accounting issue of how to count parameters, plus insufficient experimental scale, led two top teams to give opposite resource allocation advice.

The entire industry adjusted training recipes based on this conclusion for two years.

Even the Winner Has Bugs

Kaplan was corrected by Chinchilla—that's the standard narrative everyone knows.

But Weng took a step further—Chinchilla's own methodology also has problems.

The Chinchilla paper used three independent methods to cross-validate its conclusion:

Method 1: Vary data volume with fixed model size

Method 2: Plot iso-compute curves (IsoFLOP profiles)

Method 3: Directly fit parameters to the loss formula L(N,D) = E + A/N^α + B/D^β

Three paths pointing to the same conclusion, seeming very robust.

Method 3's mathematical derivation is especially elegant: Optimizing L(N,D) under constraint C ≈ 6ND yields a closed-form solution N_opt ∝ (C/6)^(β/(α+β)). When α ≈ β, the exponent is approximately 0.5, meaning models and data scale proportionally. That's the mathematical origin of 0.50.

In 2024, a team from AI research institute Epoch AI manually extracted raw data points from Chinchilla's paper charts and reran the fitting for Method 3.

Two bugs, each more astonishing than the last.

Bug 1: The loss function used mean instead of sum.

When fitting these five parameters, Chinchilla needed to minimize the gap between predicted loss and actual loss.

The complete optimization objective: min Σ Huber_δ(log L̂(Nᵢ,Dᵢ) − log Lᵢ), where Huber Loss is an outlier-insensitive loss function (δ = 10⁻³), paired with the L-BFGS-B optimizer to search for the optimum.

The problem lies in a detail: they took the mean (average) of Huber Loss per sample, not the sum. Averaging over a few hundred samples compressed the loss value to an extremely small magnitude.

The L-BFGS-B optimizer has a built-in convergence criterion. It stops automatically when the loss value is sufficiently small. Seeing such a tiny value, it mistakenly assumed convergence and stopped.

The optimizer never finished running. The output parameters were not the true optimum.

Bug 2: Key parameters were only kept to two decimal places.

In the Chinchilla paper, two core exponents controlling the power-law shape were retained only to two decimal places.

It seems like harmless rounding.

But when deriving other constants from these rough numbers, the error was amplified exponentially. The final confidence intervals were unreasonably narrow—narrow enough to require precision achievable only after over 600,000 experiments, while they actually ran fewer than 500.

A formula revered industry-wide for two years concealed a bug where the loss function didn't finish running.

Weng's blog also includes an interactive simulator with three sliders controlling loss precision, loss noise, and fitting range.

Each adjustment changes the fitted Scaling Law.

OpenAI's conclusion had local bias; DeepMind's conclusion had methodological flaws. In the AI industry's most important academic debate, both sides had cracks.

Data Is Running Out

The first three sections discussed problems with fitting methods—how to count parameters, how to calculate loss, how many decimal places to keep.

But even if all these problems were fixed, classic Scaling Laws have a more fundamental vulnerability—

They assume each training data point is unique, not repeated, not trained over multiple epochs, presuming you have infinite data.

Reality is, high-quality text data is projected to be exhausted by major labs between 2026 and 2028.

Repeated data training is inevitable; the premise of the classic formula is collapsing.

A large-scale experiment in 2023 trained about 400 models, from tens of millions to 9 billion parameters, with up to 1500 epochs of repeated training.

The core idea is to introduce the concept of "effective data volume" to replace actual data volume—

If you have U unique data points repeated R times, the effective data volume is not U×R, but converted via the exponential decay curve D_eff = U·(1 - e^(-R)). The first repetition still learns much new information; by the fifth, tenth repetition, marginal learning gains approach zero.

They also found a counterintuitive conclusion: excess parameters "depreciate" faster than repeated data. Meaning, with limited budget, running more training epochs is more cost-effective than enlarging the model.

A new paper in May 2026 took a different approach.

They didn't convert to effective data volume; instead, they directly added an explicit overfitting penalty term to the classic loss formula—the more times a model sees the same data, the greater the penalty, and this penalty is tied to model size.

Their complete formula looks like this:

That last red penalty term is key.

R is repetition count, N/U is the ratio of model parameters to unique data volume (how "excessive" the model is relative to data), P, δ, κ are fitted from experiments. More repetitions, larger models, heavier penalty.

The paper's core finding: Large models are more sensitive to data repetition. Training the same data for 10 epochs, a 500M parameter model might still hold up, but a 5B parameter model's performance would degrade much more severely.

Another directly useful engineering finding: Increasing weight decay can significantly alleviate overfitting from repeated training.

This is also why from 2025 to 2026, the industry's attention collectively shifted to three paths to bypass the data wall—

Reinforcement learning: DeepSeek R1, OpenAI o-series, letting models self-play on verifiable tasks like math and programming to generate training signals.

Test-time computation: Not increasing training cost, letting models "think" a few more steps when answering questions to exchange for better performance.

Synthetic data: Using existing strong models to generate new data to train the next generation.

The subtext of all three paths is the same: The pure "scale-up" power law is no longer sufficient.

From Peking University to OpenAI to Her Own Company

Lilian Weng, undergraduate at Peking University, PhD from Indiana University Bloomington.

Interestingly, her PhD focus wasn't deep learning, but network science and complex systems, studying how information spreads in social networks.

After graduation, she first worked in data science at Dropbox, then at fintech company Affirm, before joining OpenAI in 2018.

At OpenAI, Weng's first project was robotics. She was a core contributor to Dactyl, the robotic hand that learned to solve a Rubik's Cube in two years.

Later, she moved to build the applied research team, and after GPT-4's release, was tasked with forming the Safety Systems team, which grew to over 80 scientists, engineers, and policy experts by the time she left.

In August 2024, her title was elevated to VP of Research and Safety; three months later, she announced her departure.

In 2017, soon after starting deep learning, Weng opened a personal blog called Lil'Log, initially just to organize her study notes.

She once said, "Explaining a concept clearly is the best way to test whether you truly understand it."

Nine years later, she's still writing—reinforcement learning, diffusion models, large model agents, each article starting from foundational principles, dozens of pages long with her own diagrams.

This blog later became one of the most cited personal technical blogs in AI, used directly as textbook material by many universities.

In February 2025, she and former OpenAI CTO Mira Murati founded Thinking Machines Lab, with co-founders including OpenAI co-founder John Schulman, former research VPs Barret Zoph and Luke Metz. a16z led a $2B seed round at a $12B valuation.

And while her company was advancing rapidly, she took time to finish this long-form article on Scaling Laws, delayed for three years.

The ChatGPT, Claude, and Gemini you use every day are all governed by these formulas deciding how to train the next generation.

How good the next-generation AI is won't depend on who has more GPUs, but on who handles these details with greater precision.

References:

https://x.com/lilianweng/status/2070237256070389897?s=20

https://lilianweng.github.io/posts/2026-06-24-scaling-laws/

This article is from WeChat public account "新智元" (New AI Era), author: ASI启示录, editor: Moses

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

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

QWhat were the key differences in conclusions between OpenAI's Kaplan and DeepMind's Chinchilla regarding scaling laws and resource allocation?

AOpenAI's Kaplan (2020) concluded that for a given compute budget, the optimal model size should grow faster than the data, with the relationship N_opt ∝ C^0.73. This led to large, data-starved models like GPT-3. DeepMind's Chinchilla (2022) concluded the opposite: N_opt ∝ C^0.50, meaning model and data should scale proportionally. This led to the 'Chinchilla-optimal' 20:1 token-to-parameter ratio, and models trained this way (e.g., Chinchilla itself) outperformed larger, undertrained ones.

QWhat were the two main reasons identified for the contradictory findings between Kaplan and Chinchilla?

AThe contradictions stemmed from two main issues: 1) Parameter Counting: Kaplan excluded embedding parameters from his model size count (N), while Chinchilla included them. This difference in definition significantly affected the fitted scaling law exponent for smaller models. 2) Experimental Scale: Kaplan's experiments used models up to only ~1.5B parameters, while Chinchilla scaled up to ~16B+. The scaling exponent derived from a small-scale range can be misleading when extrapolated to much larger scales, where the exponent converges to a different value.

QWhat major methodological flaw was discovered in the Chinchilla paper years later, and what was its consequence?

AIn 2024, researchers found that Chinchilla's Method 3 (fitting the loss formula L(N, D)) had a critical flaw. The optimization used the mean of the Huber loss across samples instead of the sum. This resulted in a very small loss value, which caused the L-BFGS-B optimizer to stop prematurely, believing it had converged. Consequently, the published parameters were not the true global optimum. Additionally, key parameters were reported with insufficient precision (only 2 decimal places), leading to unrealistically narrow confidence intervals.

QWhat fundamental limitation of classical scaling laws is exposed by the impending exhaustion of high-quality text data?

AClassical scaling laws assume unique, non-repeating training data and an infinite supply of it. This premise is breaking down as high-quality text data is expected to be exhausted by 2026-2028. The industry now faces data repetition, which these original laws do not account for. Performance no longer scales predictably when models are trained on the same data for multiple epochs, leading to diminishing returns and overfitting.

QAccording to the article, what three main research directions is the AI industry pursuing to overcome the data limitation problem for scaling?

ATo bypass the data wall, the industry is focusing on three main research directions: 1) Reinforcement Learning: Using models to generate their own training signals through self-play on verifiable tasks (e.g., DeepSeek R1, OpenAI o-series). 2) Test-Time Computation: Enhancing model performance not during training, but by allowing it to 'think' for more steps (compute) when generating an answer (e.g., chain-of-thought). 3) Synthetic Data: Using existing powerful models to generate new data for training the next generation of models.

Похожее

Кто платит по счетам за бумажное ликование в 64 миллиарда долларов?

**Кто платит за бумажную прибыль в 64 миллиарда долларов?** Биткоин упал ниже 60 тысяч долларов, достигнув минимума с конца 2024 года. Крупные игроки (киты) продали 45 тысяч BTC за 8 дней. Однако настоящая проблема глубже — это кризис модели публичных компаний, сделавших ставку на криптовалюты. **Главные пострадавшие:** * **Strategy (бывшая MicroStrategy):** Владеет 847 тыс. BTC при средней цене 75,6 тыс. долларов. При текущей цене убытки превышают 20%. Рыночная стоимость акций компании торгуется с глубоким дисконтом к стоимости её биткоинов. * **Metaplanet (Япония):** Убытки превышают 37% из-за высокой средней цены покупки (~97,6 тыс. долларов) и ослабления иены. * **Solmate:** Компания, вложившая 3 млрд долларов в Solana, увидела падение акций с 249 до 5 долларов на фоне кризиса в руководстве. **Финансовая ловушка и новые правила:** Хотя мгновенного массового маржин-колла нет, финансовая модель этих компаний дала сбой. Гендиректор Strategy Майкл Сейлор впервые допустил возможность продажи части биткоинов для выплат по привилегированным акциям, отойдя от доктрины «никогда не продавать». С 2025 года новый стандарт учёта (ASU 2023-08) требует отражать биткоины по рыночной стоимости. В бычьем рынке это создавало бумажную прибыль, привлекавшую инвесторов. В условиях падения это оборачивается колоссальными убытками в отчётности, что может привести к исключению компаний из ключевых индексов и принудительной продаже их акций ETF и пенсионными фондами. **Главное испытание — в 2027 году:** Настоящий кризис наступит осенью 2027 года, когда откроется окно для погашения конвертируемых облигаций Strategy. Если цена биткоина к тому времени не вернётся выше средней цены покупки компании, держатели облигаций могут потребовать деньги. При замороженных каналах финансирования это может вынудить компанию продать десятки тысяч биткоинов, создав серьёзное давление на ликвидность рынка. Таким образом, угроза сместилась с моментального колла к кризису долговых выплат, отсроченному во времени.

链捕手6 мин. назад

Кто платит по счетам за бумажное ликование в 64 миллиарда долларов?

链捕手6 мин. назад

Base простоял два часа в предрассветное время: один недействительный блок высветил реальность единой точки отказа в L2

Ранним утром 26 июня сеть Base, L2-решение на Ethereum, остановилась на два часа из-за проблем с консенсусом. Причиной стал невалидный блок (47806542), который помешал генерации последующих блоков. Хотя у Base есть система высокой доступности с несколькими экземплярами секвенсора, текущий лидер-секвенсор остаётся единой точкой отказа для производства блоков. Это уже второй подобный инцидент, связанный с секвенсором, после сбоя в августе 2025 года. Авария произошла незадолго до запланированного обновления Beryl, которое вводит стандарт токенов B20. Этот случай высвечивает ключевую зависимость удобства пользователей L2 от централизованных компонентов, таких как секвенсор, и поднимает вопросы о будущей децентрализации и возможном введении собственного токена сети.

Foresight News17 мин. назад

Base простоял два часа в предрассветное время: один недействительный блок высветил реальность единой точки отказа в L2

Foresight News17 мин. назад

STRC не вернется к паритету – не будет и бычьего рынка у BTC

Акции привилегированного типа STRC компании MicroStrategy продолжают терять привязку к целевой номинальной стоимости в 100 долларов, упав ниже 80 долларов. Это блокирует ключевой канал дешёвого финансирования компании, в то время как ежегодные обязательства по выплате дивидендов по привилегированным акциям превышают 1.7 млрд долларов, создавая нагрузку на денежный поток. Для решения проблемы с ликвидностью MicroStrategy использует выпуск обыкновенных акций, но большая часть привлечённых средств теперь идёт на пополнение резервов, а не на покупку биткоина. Это приводит к размыванию доли BTC на акцию и подрывает основную инвестиционную тезу для акционеров. Ранее компания была крупнейшим маржинальным покупателем BTC, но теперь её покупательская способность снижается. В крайнем случае MicroStrategy может рассмотреть продажу части своего биткоин-резерва, что создаст риск для рынка. Таким образом, устойчивое восстановление привязки STRC к номиналу критически важно для восстановления эффективного механизма финансирования MicroStrategy. Без этого компания не сможет поддерживать прежние темпы покупки биткоина, что устраняет один из ключевых факторов бычьего рынка BTC.

marsbit37 мин. назад

STRC не вернется к паритету – не будет и бычьего рынка у BTC

marsbit37 мин. назад

STRC не вернётся к якорю — значит, у биткоина не будет бычьего рынка

Статья посвящена анализу ситуации с привилегированными акциями STRC компании MicroStrategy и ее влиянию на рынок биткоина. Основной тезис: продолжающаяся девальвация STRC (цена упала до $75 против целевого номинала в $100) блокирует для MicroStrategy ключевой и наиболее эффективный канал финансирования покупок BTC. Поскольку бизнес-модель компании построена на постоянном привлечении средств для наращивания резервов биткоина, потеря этого инструмента ставит под угрозу всю стратегию. Вместо инструмента финансирования STRC превратился в нагрузку на денежный поток: ежегодные дивидендные выплаты по всем привилегированным акциям MicroStrategy составляют около $1,7 млрд, что почти равно её денежным резервам ($1,4 млрд). Для решения проблемы компания пытается привлекать деньги через выпуск обыкновенных акций (MSTR). Однако большая часть этих средств сейчас идёт на пополнение казны, а не на покупку биткоина, что приводит к размыванию доли BTC, приходящейся на одну акцию MSTR, и разочарованию инвесторов. Вывод: MicroStrategy, бывший крупнейший и самый стабильный покупатель BTC на рынке, больше не может наращивать закупки прежними темпами из-за проблем с финансированием. Более того, сохраняющееся давление по выплате дивидендов делает компанию потенциальным продавцом биткоина, что создаёт серьёзный риск для цены криптовалюты. Восстановление "якоря" STRC до $100 рассматривается как необходимое условие для возобновления устойчивого роста BTC.

Odaily星球日报37 мин. назад

STRC не вернётся к якорю — значит, у биткоина не будет бычьего рынка

Odaily星球日报37 мин. назад

Изучение устойчивости восходящего тренда STABLE после последнего роста цены на 5%

Несмотря на общую слабость крипторынка, токен STABLE продемонстрировал устойчивость. После защиты уровня поддержки в $0.33 24 июня, его цена выросла до локального максимума в $0.365. На момент написания статьи STABLE торговался около $0.362, показав рост на 5.5% за сутки и 7% за неделю, а объем торгов увеличился на 25% до $20.8 млн. На дневных графиках заметно укрепление бычьей структуры: цена преодолела скользящие средние за 20 и 50 дней ($0.349 и $0.344 соответственно). Индикатор Stochastic Momentum Index (SMI), хотя и остается в медвежьей зоне, движется вверх, сигнализируя об улучшении импульса. Чистый отток средств с бирж (Netflow) в течение семи дней остается отрицательным, что указывает на устойчивый спрос на спотовом рынке. Однако существуют и риски. Показатель Price DAA Divergence остается отрицательным уже семь дней подряд, что означает снижение количества активных адресов на фоне роста цены и свидетельствует о слабом участии пользователей в сети. Исторически такая структурная слабость увеличивает риск коррекции. В краткосрочной перспективе, при сохранении текущего бычьего импульса, STABLE может закрепиться выше $0.36 и достигнуть сопротивления на уровне $0.40. Однако в случае неудачи и закрытия ниже $0.36 вероятен откат к поддержкам $0.34 и далее к $0.32.

ambcrypto48 мин. назад

Изучение устойчивости восходящего тренда STABLE после последнего роста цены на 5%

ambcrypto48 мин. назад

Торговля

Спот
Фьючерсы

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

Как купить 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.8k просмотров всегоОпубликовано 2025.04.10Обновлено 2025.04.10

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

Обсуждения

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

活动图片