He Kaiming's Team's New Work: After Deleting VAE and Private Data, Text-to-Image Generation Becomes Even Stronger

marsbitОпубліковано о 2026-06-22Востаннє оновлено о 2026-06-22

Анотація

KaiMing He's team introduces **MiniT2I**, a minimalist text-to-image (T2I) model that challenges the complexity of mainstream approaches. It eliminates components commonly considered essential: the VAE encoder-decoder, AdaLN conditioning mechanisms, auxiliary losses, private training data, and post-training alignment stages like RL/DPO. Instead, it uses a pure flow-matching objective trained directly on RGB pixels. The model employs a simplified **MM-JiT** Transformer architecture. It removes AdaLN blocks for conditioning and instead prepends two lightweight text adapter blocks to a standard pre-norm Transformer, allowing frozen T5 text features to adapt to the denoiser. Training follows a two-stage, LLM-like paradigm using only public datasets: pre-training on LLaVA-recaptioned CC12M for coverage, followed by fine-tuning on ~120k high-quality image-text pairs. With just 258M parameters (B/16), MiniT2I achieves competitive scores (0.87 on GenEval, 84.2 on DPG-Bench), outperforming larger pixel-space models. Scaling to 912M parameters (L/16) yields results comparable to SD3-Medium (~2B parameters) in style, composition, and imagination, though it lags in text rendering and named entities due to public data limitations. Key advantages include lower computational cost (~570 GFLOPs vs. ~1379 for latent models) and architectural simplicity. Acknowledged limitations include patch boundary artifacts in pixel space, side effects of high CFG scales, resolution ceilings for sequence...

The field of text-to-image generation has long been a fiercely competitive red ocean, seemingly with no room left to innovate.

What do you need to train a powerful text-to-image model today?

Following the current mainstream approach, you would need: a pre-trained VAE encoder-decoder, concatenated text encoders, meticulously designed conditional injection mechanisms, massive datasets, RL or DPO alignment phases...

Overall, there seems to be a consensus: text-to-image generation must be this complex.

He Kaiming's team, however, takes a contrarian approach, offering a new perspective in the field of text-to-image models. They have released MiniT2I — a minimalist, pixel-space text-to-image model that deliberately pursues simplicity.

No VAE encoder-decoder, no AdaLN conditional injection, no auxiliary loss functions, no private data, no RL/DPO alignment, just pure flow matching trained directly on pixels. The 258M-parameter B/16 version achieves 0.87 on GenEval and 84.2 on DPG-Bench, surpassing pixel-space models several times its size.

The core proposition of MiniT2I is: If text conditioning is treated as 'context tokens with semantic information' and injected into the model, text-to-image generation and class-conditional ImageNet generation are not fundamentally that different — the architecture can be similar, computational requirements comparable, and even the scale of data can be aligned.

  • Paper Title: A Minimalist Baseline for Text-to-Image Generation
  • Technical Blog: https://peppaking8.github.io/#/post/minit2i
  • Open Source Repo: https://github.com/PeppaKing8/minit2i-jax

Technical Approach: Subtraction at Every Step

Direct Pixel-Space Output, No VAE

MiniT2I's first design choice is radical: discard the VAE, perform denoising directly on RGB pixels.

Latent Diffusion Models are the current mainstream paradigm, first compressing images into a low-dimensional latent space using an autoencoder before diffusion. This makes high-resolution generation feasible, but at the cost of introducing reconstruction error, an extra training phase, and misalignment between the encoder and denoiser objectives.

MiniT2I's choice of pixel space is pragmatic: For 512×512 resolution, using 16×16 patches to divide the image into 1024 tokens keeps the sequence length well within the Transformer's comfort zone. Removing the VAE reduces single-step forward computation from ~1379 GFLOPs to ~570 GFLOPs (B/16 setting), and eliminates the ceiling on reconstruction accuracy — the output quality is only limited by the denoiser's capability.

Experiments confirm this: Under the same parameter budget, pixel models achieve FID on par with latent space models (18.7 vs 19.0), but with a 5x lower per-step cost.

MM-JiT Architecture: Returning to a Simple Transformer

SD3's MM-DiT uses AdaLN (Adaptive Layer Normalization) within each block to inject timestep and pooled text embeddings into the network — each sub-block needs to compute scale, shift, and gate parameters generated by an extra MLP from the conditioning vectors. This is an elaborate modulation mechanism, but MiniT2I finds it non-essential.

The proposed MM-JiT architecture does two things:

1. Add Two Text Adapter Layers: Insert two lightweight Transformer blocks before joint attention, allowing the frozen T5 features to first 'adapt' to the denoiser's needs.

2. Remove the AdaLN Branch: No longer inject timestep and global text information through an additional path. The model can still perceive noise levels — because the noise-corrupted image itself carries timestep information.

The result is a clean architecture nearly identical to a standard pre-normalization Transformer. Removing AdaLN reduces parameters, allowing for more layers within the same compute budget (12 layers → 17 layers). FID drops from 18.7 to 13.7, and the architecture itself is easier to understand and modify.

Training Data: Fully Public, Two-Phase

MiniT2I's training data also pursues minimalism:

  • Pre-training: LLaVA-recaptioned CC12M (publicly available VLM re-captioned dataset), 250K steps
  • Fine-tuning: ~120K high-quality image-text pairs (BLIP3o-60K + LAION DALL・E 3 Discord set + ShareGPT-4o-Image), 40K steps

This 'pre-train then fine-tune' two-stage pattern directly mirrors LLM training paradigms: pre-training buys coverage, fine-tuning teaches the model what a good answer is. Ablations show both are indispensable — pre-training alone yields acceptable image quality but poor prompt following; fine-tuning alone makes the model's world too narrow, causing generative diversity to collapse.

Results: Small Model, Big Performance

In comparisons among pixel-space text-to-image models, MiniT2I offers exceptional value:

MiniT2I-B/16, with only ~600M total parameters (including text encoder), surpasses models 3-4 times its size on GenEval and DPG-Bench. Moreover, training cost is extremely low: the B/32 ablation model required only about 3 days on 8 H100s, with total training FLOPs comparable to a standard 200-epoch ImageNet experiment.

Scaling to L/16 (912M parameters) yields noticeable improvements in style diversity, spatial relationships, and text rendering, achieving quality on imaginative scenes comparable to or even better than SD3-Medium (~2B parameters).

In the more comprehensive PRISM-Bench evaluation, MiniT2I-L/16 performs well in style, composition, and imagination dimensions (79.9, 78.4, 57.9), approaching SD3-Medium levels. However, gaps remain in text rendering (30.6 vs SD3's 50.9) and named entities (60.3 vs 66.3) — the team acknowledges these are inherent limitations of the public data recipe, requiring targeted data to bridge.

Limitations and Outlook

MiniT2I is a proof of concept for a technical path, not a final product. The team honestly points out several unresolved issues:

  • Patch artifacts in pixel space: Measurable discontinuities exist at patch boundaries (gradients 17-22% higher at boundaries than elsewhere), a problem latent-space models do not have.
  • Side effects of CFG in pixel space: High guidance scales (~6) push local tokens away from the data manifold, directly exposing visual artifacts without a decoder's 'smoothing' effect.
  • Resolution ceiling: Works well at 512×512 currently; pushing to 4K+ requires longer sequences or more efficient attention mechanisms.
  • Data bottleneck: Text rendering and named entities remain weaker than industrial systems, requiring specialized data augmentation.

MiniT2I demonstrates that state-of-the-art text-to-image generation is no longer a game only for top industrial labs.

When a 258M-parameter model, trained on purely public data with academic-level compute for just 3 days, can defeat opponents orders of magnitude larger, perhaps text-to-image is undergoing a paradigm shift from 'brute force' to 'distillation'.

"T2I is no longer an insurmountable wall. Welcome to use and improve it, to build a simpler baseline."

This article is from the WeChat public account "机器之心" (Almost Human)

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

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

QWhat is the main contribution or innovation of the MiniT2I model proposed by He Kaiming's team?

AThe main contribution is proposing MiniT2I, a minimalist text-to-image baseline model. It removes numerous complex components standard in current models—such as the VAE encoder-decoder, the AdaLN conditional injection mechanism, auxiliary loss functions, and private training data—and relies solely on flow matching objectives trained directly on pixel space. It demonstrates that with a simpler architecture and public data, it can achieve competitive performance against much larger models.

QHow does the architectural design of MiniT2I's MM-JiT differ from the commonly used MM-DiT in models like SD3?

AThe MM-JiT architecture in MiniT2I differs from MM-DiT by performing simplification in two key ways. First, it adds two lightweight text adapter Transformer blocks before joint attention to help frozen T5 features adapt to the denoiser. Second, and more importantly, it deletes the complex AdaLN (Adaptive Layer Normalization) branches used to inject timestep and text conditioning. This results in a cleaner, near-standard pre-norm Transformer architecture, reducing parameters and allowing for more layers within the same compute budget.

QWhat is the core argument for MiniT2I's choice to operate directly in pixel space instead of a latent space like most models?

AThe core argument is simplicity and alignment. Removing the VAE eliminates several issues: reconstruction error, extra training stages, and misalignment between encoder and denoiser objectives. For 512x512 images, patchifying into 1024 16x16 tokens keeps the sequence length manageable for Transformers. This direct approach reduces computational cost per forward pass significantly (~570 vs ~1379 GFLOPs for the B/16 configuration) and removes the upper bound of reconstruction accuracy, meaning the output quality depends directly on the denoiser's capability.

QWhat were the two stages of data used to train MiniT2I, and why was this two-stage approach necessary?

AMiniT2I was trained in two stages using only public data: 1) Pre-training on LLaVA-recaptioned CC12M (a VLM-recaptioned dataset) for 250K steps. 2) Fine-tuning on a combined set of ~120K high-quality image-text pairs from sources like BLIP3o-60K, LAION DALL・E 3 Discord set, and ShareGPT-4o-Image for 40K steps. This 'pre-train then fine-tune' paradigm mirrors LLM training. Ablation studies showed both stages are essential: pre-training alone gives good image quality but poor prompt following, while fine-tuning alone causes a collapse in generation diversity due to a limited worldview.

QAccording to the article, what are some of the key limitations or unsolved problems with the MiniT2I approach?

AThe key limitations highlighted include: 1) Patch boundary artifacts in pixel space, leading to measurable discontinuities not present in latent models. 2) Negative side effects of high CFG (Classifier-Free Guidance) scales in pixel space, which push local tokens off the data manifold and manifest as visual flaws. 3) A resolution ceiling, as scaling to 4K+ would require longer sequences or more efficient attention. 4) Data bottlenecks, particularly in text rendering and named entity accuracy, which lag behind industrial systems and would require specialized data to improve.

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

After Three Consecutive Quarters of Decline, Can the Crypto Market Find a Window for Stabilization in Q3?

The cryptocurrency market has just concluded its worst-performing quarter since 2022, with total capitalization dropping 12.6% to $2.1 trillion. All core metrics indicate capital is leaving the sector, not just rotating within it. Bitcoin fell 14.2% and Ethereum dropped 25.4% in Q2, breaking their previous correlation with US tech stocks. A key driver is the reversal in US spot Bitcoin ETF flows, which saw a net outflow of approximately $4.67 billion in Q2, including a record monthly outflow near $4.5 billion in June. While recent data suggests long-term holders are accumulating again, sustained ETF outflows mean continued selling pressure. Market focus is now singularly on the Federal Reserve. The upcoming July FOMC meeting is seen as the most critical event for Q3. A dovish signal could support Bitcoin reclaiming a $68,000-$84,000 range, while a hawkish stance might establish a new trading band around $50,000-$56,000. Additionally, regulatory uncertainty persists, with the progress of the crucial *CLARITY Act* stalling in the Senate, reducing its perceived 2026 passage probability to 40-45%. Despite the broad downturn, a few sectors showed growth. Prediction markets saw nominal volume surge 48.7% year-over-year to $113.8 billion, and tokenized collectibles transaction volume rose 143% quarterly to $1.4 billion. The Real-World Asset (RWA) tokenization sector also continued steady growth, now representing ~$28.1 billion in on-chain value. The market's foundation for an extreme crash appears limited, with Bitcoin price hovering near its 200-week moving average. However, the trading paradigm has shifted from narrative-driven speculation to decisions based on price action, policy developments, and interest rate expectations, making a broad sentiment-driven rally unlikely in the near term.

marsbit12 год тому

After Three Consecutive Quarters of Decline, Can the Crypto Market Find a Window for Stabilization in Q3?

marsbit12 год тому

BIT Trading Moment: BTC Still Suppressed by Weekly 200 EMA, Rejection May Restart Decline; Storage and Semiconductors that Surged Last Night Begin Falling in Evening Trading

**Crypto & Stock Market Wrap: Bitcoin Tests Resistance, Stocks Retreat After AI Surge** Bitcoin consolidates around $66,000, facing key resistance near $68,000—an area seen as a major psychological and technical hurdle where previous rallies have failed. Analysts note the cryptocurrency is caught between its 200-week moving average (~$63,333) and 200-week EMA (~$68,328). A clear break above $68k is needed to signal a stronger bullish trend, while a rejection could lead to a retest of $63k support. Market sentiment remains cautious, with low futures open interest pointing to a low-liquidity rebound rather than a full bull market. Bitcoin spot ETFs saw another $203 million inflow. US stock futures pointed lower after a strong Tuesday session led by a massive rebound in semiconductors and memory stocks. The rally was fueled by renewed optimism about AI-driven hardware demand, with Micron, SanDisk, and SK Hynix surging. However, those gains reversed in pre-market trading. Super Micro Computer (SMCI) soared over 20% after hours on strong guidance and a record backlog. Other standouts included Rocket Lab and nuclear energy plays Oklo and X-Energy. Rising oil prices (Brent above $91) and climbing Treasury yields (10-year near 4.64%), however, are reigniting inflation concerns and acting as a headwind for equities. In Asia, markets were mixed. South Korea's KOSPI pared early gains to close slightly higher as semiconductor stocks like SK Hynix gave back initial surges. Japan's Nikkei edged lower as the yen hit a fresh 38-year low against the dollar, raising fears of potential market intervention. Key events to watch include the Samsung Galaxy launch, AMD's AI event, and a slew of major tech earnings from Alphabet, Tesla, and IBM after the close on Wednesday, followed by the ECB meeting and Intel's earnings on Thursday.

marsbit12 год тому

BIT Trading Moment: BTC Still Suppressed by Weekly 200 EMA, Rejection May Restart Decline; Storage and Semiconductors that Surged Last Night Begin Falling in Evening Trading

marsbit12 год тому

Former CFTC Chairman, Circle President Tarbert: Preaching Long-Termism While Cashing Out $30 Million Himself

Former CFTC Chairman and Circle President Heath Tarbert has consistently advocated for a long-term vision in public, urging patience from investors as Circle’s stock price has fallen significantly from its peak. However, it has been revealed that since Circle’s IPO, Tarbert has continuously sold his CRCL shares through pre-arranged trading plans, cashing out approximately $30 million, without making any public market purchases. This contrast between his public messaging and personal actions has drawn criticism. Tarbert joined Circle in July 2023 as Chief Legal Officer, leveraging his regulatory experience to help guide the company through its IPO and expansion. Despite promoting stablecoins as long-term infrastructure, he established a 10b5-1 trading plan just before Circle went public, leading to substantial stock sales over the following year. In March 2026, he initiated another plan to sell more shares. His career trajectory highlights a pattern of moving between high-level regulatory roles and influential positions in the financial sector. After resigning as CFTC Chairman in early 2021, he joined Citadel Securities as Chief Legal Officer just 27 days later, during a period of intense regulatory scrutiny for the firm. He later joined Circle, aiding its efforts to navigate regulatory challenges for its public listing. While Tarbert's expertise in policy and compliance is valuable to companies like Circle, his actions—advocating long-term confidence while personally divesting—raise questions about the alignment between his public statements and his private financial decisions, leaving investors who followed his advice to bear the market risks.

marsbit13 год тому

Former CFTC Chairman, Circle President Tarbert: Preaching Long-Termism While Cashing Out $30 Million Himself

marsbit13 год тому

Gate Research Institute: The 'Wall Street-ization' Wave of Crypto Financial Products – Competition or Integration?

The article titled "Gate Research Institute: Are Crypto Financial Products Sparking a 'Wall Street' Wave—Competition or Convergence?" explores the evolving relationship between the crypto ecosystem and traditional finance (TradFi). The piece begins by reflecting on Bitcoin's original 2009 vision of decentralization, disintermediation, and moving away from banks. It then contrasts this with the 2024 landscape, where key crypto assets like Bitcoin are increasingly held through Wall Street products like ETFs issued by giants like BlackRock. The article questions whether this signifies that TradFi is systematically taking over the rights to issue, price, custody, and distribute crypto financial assets. The core argument is that this is not a zero-sum takeover but rather a bidirectional convergence where each side addresses the other's weaknesses. Crypto offers 24/7 global markets, programmable settlement, and open access but lacks compliant channels, institutional-grade custody, deep fiat liquidity, and mainstream distribution. TradFi possesses these but is constrained by legacy systems, limited operating hours, and slow settlement. Two primary convergence paths are highlighted: * **Path A (CEX to TradFi):** Exemplified by Gate, which has progressed from offering tokenized stocks and CFDs to providing direct, real stock trading (US, Hong Kong, South Korea) within its platform, using USDT. * **Path B (TradFi to Crypto):** Exemplified by Robinhood, which has integrated crypto trading, acquired exchanges like Bitstamp, and is moving traditional assets like stocks onto the blockchain via tokenization and its own Layer 2. Both paths are ultimately competing to become the next-generation, unified financial account—a "super account" where users can seamlessly trade cryptocurrencies, stocks, ETFs, RWA (Real World Assets), and tokenized treasury products in one interface. The growth of RWA and tokenized treasuries (e.g., BlackRock's BUIDL) is presented as the asset-layer fusion, providing stable, yield-bearing assets on-chain and acting as a bridge between the two worlds. In conclusion, the "Wall Street-ization" of crypto is framed as a mutual transformation. Decentralized ideals persist in the protocol layer, while at the application layer, a more efficient, global, and accessible unified capital market is emerging from this convergence. The future competition lies not between crypto exchanges and stockbrokers, but between platforms vying to offer the most comprehensive asset coverage, liquidity, and user experience within a single account.

marsbit13 год тому

Gate Research Institute: The 'Wall Street-ization' Wave of Crypto Financial Products – Competition or Integration?

marsbit13 год тому

Торгівля

Спот

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

Що таке ₿O₿

Bitcoin Bob ($₿o₿): Піонер Bitcoin-центристського DeFi через гібридні інновації Layer-2 В епоху, коли цифрова економіка швидко розвивається, Bitcoin Bob ($₿o₿) з'являється як революційний проект, що має на меті підвищити корисність Bitcoin у секторі децентралізованих фінансів (DeFi). Офіційно запущений у травні 2024 року, Bitcoin Bob, також відомий як Build on Bitcoin (BOB), представляє собою гібридне рішення блокчейну Layer-2, яке поєднує відому безпеку та незмінність Bitcoin з програмованістю Ethereum. Ця ініціатива прагне заповнити важливу прогалину в екосистемі Bitcoin, полегшуючи інтеграцію смарт-контрактів та децентралізованих додатків, зберігаючи при цьому основні принципи довіри та безпеки, властиві Bitcoin. Завдяки значній підтримці від відомих венчурних капіталістів, Bitcoin Bob має потенціал переосмислити роль Bitcoin у ландшафті DeFi, ставши основою децентралізованих фінансових операцій у всьому світі. Що таке Bitcoin Bob, $₿o₿? У своїй основі, Bitcoin Bob є гібридним рішенням блокчейну, призначеним для покращення функціональності Bitcoin. Основна мета проекту полягає в тому, щоб забезпечити децентралізовані фінанси на Bitcoin, полегшуючи швидкі та безперешкодні транзакції, забезпечуючи при цьому високий рівень безпеки. Bitcoin Bob використовує передову технологію, зокрема гібридну архітектуру layer-2, яка поєднує атрибути безпеки Bitcoin з програмованістю та гнучкістю Ethereum Virtual Machine (EVM). Цей прагматичний підхід дозволяє проекту ефективно працювати, не компрометуючи основні цінності Bitcoin, що робить його монументальним кроком у подоланні розриву між традиційними власниками Bitcoin та новою екосистемою DeFi. Однією з видатних рис Bitcoin Bob є його роль у забезпеченні середовища з мінімізацією довіри через інноваційні механізми, такі як оптимістичні роллапи, які спочатку покладаються на Ethereum, але врешті-решт переходять до повної інтеграції з Bitcoin. Ця гібридна система розроблена для того, щоб забезпечити збереження та ефективне використання великої ліквідності, присутньої в Bitcoin, у різних протоколах DeFi. Хто є творцем Bitcoin Bob, $₿o₿? Творчою силою за Bitcoin Bob є співзасновник та генеральний директор Олексій Замятін, який приносить багатий досвід та знання з його широкого досвіду в сфері криптовалют. Замятін має ступінь доктора наук у галузі комп'ютерних наук і активно займається розробкою Bitcoin з 2015 року. Його глибоке розуміння як екосистеми Bitcoin, так і Ethereum відіграє ключову роль у формуванні бачення та технологічних основ Bitcoin Bob. Разом із Замятіним є співзасновник Домінік Гарц, який обіймає посаду технічного директора (CTO). Разом ця пара сформувала команду талановитих людей з спільною пристрастю до розширення меж технології блокчейну, забезпечуючи інноваційний статус Bitcoin Bob на ринку. Хто є інвесторами Bitcoin Bob, $₿o₿? Bitcoin Bob успішно отримав підтримку від ряду відомих інвесторів та венчурних капітальних компаній, які визнають його потенціал трансформувати ландшафт Bitcoin. У березні 2024 року проект завершив потужний раунд початкового фінансування на суму 10 мільйонів доларів, очолюваний Castle Island Ventures, з помітною участю таких компаній, як Coinbase Ventures та Bankless Ventures. Невдовзі, у липні 2024 року, Bitcoin Bob отримав додаткові 1,6 мільйона доларів стратегічного фінансування. Цей раунд спільно очолили Ledger Ventures, до якого приєдналися ангели з різних відомих компаній, таких як BlackRock, Aave та Curve. Сильна фінансова підтримка відображає визнання індустрії інноваційного підходу Bitcoin Bob до розкриття потенціалу Bitcoin у сфері DeFi. Це фінансування є критично важливим не лише для подальшого розвитку проекту, але й для створення інкубатора, який сприятиме розвитку децентралізованих додатків (dApps), орієнтованих на задоволення потреб зростаючої бази користувачів. Як працює Bitcoin Bob, $₿o₿? Операційна механіка Bitcoin Bob базується на його гібридній архітектурі роллапів, яка розроблена для поєднання переваг безпеки Bitcoin з універсальністю EVM Ethereum. Проект використовує поетапну модель безпеки, яка окреслює його взаємодію з користувачами та розробниками наступним чином: Фаза 1 – Початкова фаза працює як оптимістичний роллап на Ethereum, де транзакції обробляються з обнадійливим очікуванням дійсності, прокладаючи шлях для майбутніх розробок на Bitcoin. Фаза 2 – У міру переходу проекту, він інтегрує фінальність Bitcoin через Bitcoin Staking, використовуючи Babylon Network для підвищення безпеки. Цей механізм вимагає від валідаторів блокувати Bitcoin, таким чином перевіряючи транзакції BOB, що не лише підвищує безпеку, але й створює можливості для отримання доходу для учасників. Фаза 3 – Перспективне бачення Bitcoin Bob полягає в повній інтеграції з Bitcoin, використовуючи інноваційні технології, такі як BitVM та нульові знання, для полегшення обчислень поза ланцюгом, зберігаючи при цьому цілісність безпеки Bitcoin. Ключові інновації, такі як BitVM2, протокол мосту з мінімізацією довіри, співавтором якого є Замятін, є критично важливими для функціональності проекту, дозволяючи депозити та зняття Bitcoin без необхідності в значній залежності від мережі. Це дозволяє екосистемі ефективно підключатися до Ethereum та інших сумісних ланцюгів, створюючи спрощену та ефективну модель взаємодії для користувачів та розробників. Хронологія Bitcoin Bob, $₿o₿ Розуміння еволюції Bitcoin Bob передбачає відстеження його важливих етапів: 2019: Олексій Замятін та Домінік Гарц засновують дослідницьку компанію, зосереджену на рішеннях блокчейну, закладаючи основу для майбутніх проектів. Березень 2024: Bitcoin Bob успішно залучає 10 мільйонів доларів у раунді початкового фінансування, що позначає його входження в конкурентне середовище блокчейну. 1 травня 2024 року: Відбувається офіційний запуск основної мережі, демонструючи можливості проекту з значним прийняттям користувачів та загальною заблокованою вартістю (TVL). Липень 2024: Проект залучає додаткові 1,6 мільйона доларів стратегічного фінансування для створення свого інкубатора, спрямованого на розвиток інновацій, орієнтованих на Bitcoin. Жовтень 2024: Bitcoin Bob випускає “Vision Paper”, в якому детально описується його гібридний дизайн layer-2 та перспективні стратегії. 2025: Очікується впровадження функцій Фази 2, зосереджуючись на фінальності Bitcoin та мостах BitVM, спрямованих на підвищення загальної функціональності. Висновок: Переосмислення ролі Bitcoin у децентралізованих фінансах Bitcoin Bob ($₿o₿) – це не просто ще один проект блокчейну; він представляє собою парадигмальний зсув у способі, яким Bitcoin може взаємодіяти з більш широкими фінансовими додатками. Уважно поєднуючи безпеку Bitcoin з гнучкістю Ethereum, Bitcoin Bob має на меті переформатувати ландшафт DeFi, заповнюючи розрив між цифровою валютою та децентралізованими додатками. З потужною технологічною основою, сильною лідерською командою та стратегічним фінансуванням, Bitcoin Bob має всі шанси стати основним гравцем у екосистемі криптовалют, відкриваючи нові виміри ліквідності та корисності для Bitcoin. Оскільки проект продовжує розвиватися та розширюватися, він обіцяє започаткувати нову еру інновацій, доводячи, що потенціал Bitcoin виходить далеко за межі простого зберігання вартості, а скоріше стає основою майбутнього фінансового ландшафту. У міру просування проекту через його очікувані фази, всі погляди будуть спрямовані на Bitcoin Bob, особливо щодо його зобов'язання впроваджувати децентралізовані принципи та забезпечувати, щоб користувачі могли насолоджуватися всіма перевагами DeFi, закріпленими за Bitcoin.

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

Що таке ₿O₿

Як купити O

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

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

Як купити O

Обговорення

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

活动图片