Binance Square
Binnoreen
31 投稿

Binnoreen

Web3 Advocate||Web 3 content creator|| passionate about crypto adoption||thread writer||MOD||Certified Crypto Trader @BitkovaHub||intern @TrustChain0||
取引を発注
低高頻度トレーダー
2.7年
94 フォロー
45 フォロワー
16 いいね
投稿
ポートフォリオ
PINNED
·
--
記事
翻訳参照
STON.fi: Inside TON’s Leading AMM DEXAn evidence-based look at the AMM, liquidity architecture, Omniston, governance, security, and the data behind STON.fi’s position on TON. On a decentralized exchange, the most visible action is simple: a user selects one token, chooses another, enters an amount, and presses Swap. Behind that button, however, sits a considerably more complicated system. Liquidity has to be available. Prices have to be calculated. Smart contracts have to coordinate the transaction. Liquidity providers need to receive their share of fees. The system needs to protect users from excessive price movement, while developers need infrastructure capable of supporting thousands of different assets. On TON, one of the most established systems built around that problem is STON.fi. STON.fi describes itself as a decentralized automated market maker (AMM) exchange built on the TON blockchain. Independent analytics currently place it ahead of other tracked TON DEXs by both total value locked and recent DEX volume. But calling something “leading” raises a more useful question: What exactly makes STON.fi a leader, and what is happening underneath the interface? To answer that, it is necessary to look beyond the swap screen. ❑ From a one-Jetton AMM to a broader trading infrastructure STON.fi's history begins with a relatively simple proposition. The protocol's own historical material identifies November 20, 2022 as the launch of its initial AMM, at a time when the system supported only one Jetton. Since then, the project has expanded through multiple stages: developer tools and integrations, staking and farming, protocol upgrades, new pool types, governance, and eventually Omniston. That progression matters because today's STON.fi is not identical to the system that launched in 2022. The original product was primarily an AMM. The current ecosystem combines the core AMM with additional infrastructure designed to aggregate liquidity and execute trades across different sources and, increasingly, different blockchains. That distinction becomes particularly important when looking at trading-volume statistics. ❑The mechanism underneath every swap At its foundation, an AMM replaces the traditional order book with liquidity pools and mathematical pricing rules. In an order-book exchange, buyers and sellers place orders and a matching engine determines which orders can be executed. An AMM works differently. Liquidity providers deposit assets into a pool. The protocol then uses the pool's reserves to calculate exchange rates. For STON.fi's original constant-product model, the relationship can be represented as: x × y = k where: x represents the quantity of one asset in the pool; y represents the quantity of the other; k is the pool's invariant. When a trader removes one asset from the pool by swapping into it, the relative reserve of that asset changes. The resulting price therefore changes as well. This is why a large trade can move the market price inside a pool. That effect is known as price impact. It is different from slippage, which describes the difference between the expected execution and the actual execution allowed by the user's transaction settings. For a beginner, the distinction is important: Price impact comes from the size of the trade relative to available liquidity. Slippage protection determines how much execution movement the user is willing to tolerate. STON.fi's documentation describes these mechanisms as part of its swap and liquidity architecture. ❑ A swap is more than a token exchange The STON.fi architecture divides responsibilities between several smart-contract components. The Router serves as the main entry point for interactions. Pool contracts contain the liquidity and perform the AMM calculations. Account contracts are used during certain liquidity operations, while LP Jetton wallets represent liquidity-provider positions. A simplified swap looks like this: User wallet → Router → Pool → Router → User wallet The user sends the input asset to the Router. The Router communicates with the relevant Pool. The Pool calculates the exchange according to its pool type and reserves. The output asset is then returned to the user. This architecture is particularly relevant on TON because TON uses asynchronous message-based smart-contract interactions rather than simply reproducing the execution model commonly seen on EVM chains. STON.fi's technical documentation describes the interaction using TON's Jetton transfer and notification mechanisms. The result is that a swap that looks like one action in the interface can involve several contract-to-contract messages underneath. ❑STON.fi is no longer limited to one AMM formula One of the easiest mistakes would be to describe STON.fi entirely as a constant-product AMM. That was the foundation, but the current protocol supports additional pool designs. STON.fi documentation describes multiple pool types, including: - Constant Product; - StableSwap; - Weighted Constant Product; - Weighted StableSwap. Different pool designs are useful for different asset relationships. A constant-product pool is a general-purpose mechanism. A stable-oriented pool can be designed for assets expected to trade close to one another. Weighted pools can assign different proportions to assets rather than treating both sides identically. This matters because “AMM” is not one single mathematical design. It is a broader category of automated liquidity systems. ❑ Where the liquidity providers fit in The other side of every AMM trade is the liquidity provider. Instead of matching directly with another trader, the trader interacts with liquidity supplied to the pool. When liquidity is deposited, the provider receives LP tokens representing their position in that pool. When trading activity generates fees, liquidity providers can receive a portion of those fees according to the pool's fee structure. STON.fi documents a default total swap fee of 0.3%, with the commonly documented split allocating approximately 0.2% to liquidity providers and 0.1% to the protocol. Pool-level fees can be configured within the protocol's supported parameters. This is important because liquidity provision is sometimes described simply as “earning yield.” That description is incomplete. The underlying return comes from specific mechanisms, primarily trading fees and, where applicable, additional incentive programs. And the liquidity provider also accepts risks. One of the most important is impermanent loss. ❑Why providing liquidity is not the same as staking Staking and liquidity provision are often grouped together because both can produce rewards. Mechanically, however, they are different. A person staking a token generally locks or delegates that token under a specific protocol mechanism. A liquidity provider deposits assets into a trading pool. The provider's asset proportions can change as traders buy one asset and sell another. If the external market price changes significantly, the pool can therefore end up holding a different composition of assets than the provider initially deposited. That difference can produce impermanent loss relative to simply holding the original assets. STON.fi provides documentation explaining impermanent loss and even maintains an impermanent-loss calculator. This is one reason the phrase “LP yield” should never be interpreted as risk-free income. The relevant question is not merely: How much are the fees? It is also: What risks are being taken to earn those fees? ❑ The Router introduces an important security distinction One of the more interesting details in STON.fi's architecture is that its smart contracts are not all governed in exactly the same way. The Pool contracts are described as immutable. The Router, however, is upgradeable. The official technical documentation describes administrative capabilities around the Router and a timelocked upgrade process. The documented delay gives users and the ecosystem time to observe a proposed Router upgrade rather than having the implementation change instantly. That distinction matters. It would be inaccurate to summarize the protocol simply by saying: «“STON.fi's smart contracts are immutable.”» A more accurate description is: STON.fi combines immutable Pool contracts with an upgradeable Router subject to a timelock. For users evaluating decentralized protocols, this distinction is more useful than a generic statement about decentralization. It tells us where change can occur and where it cannot. ❑TON is part of the architecture, not merely the network label STON.fi was built specifically around TON's architecture. Its token ecosystem relies on Jettons, TON's token standard. The contracts communicate through TON's asynchronous message system, and the protocol's documentation discusses how its contracts interact through those messages. This architecture creates engineering differences from EVM-based AMMs. A developer cannot simply copy an Ethereum AMM contract to TON and expect the same execution model. The application has to account for TON's asynchronous contract communication and Jetton mechanics. STON.fi's architecture is therefore better understood as a TON-native implementation of automated liquidity rather than an Ethereum-style AMM simply deployed onto another chain. ❑ Then came Omniston At some point, building another liquidity pool stopped being enough. The problem was liquidity fragmentation. Imagine several DEXs operating on the same blockchain. One pool may have the best price for one pair. Another may have deeper liquidity for another pair. A third liquidity source might be able to quote a better execution price for a large order. A user who interacts with only one pool cannot automatically see all those possibilities. This is the problem Omniston is designed to address. STON.fi describes Omniston as a liquidity aggregation and execution layer based around Request for Quote (RFQ) mechanisms. Instead of relying exclusively on one AMM pool, the system can obtain quotes from multiple liquidity sources and resolvers. The result is a different execution model from a conventional AMM swap. ❑ Omniston is not the same thing as the STON.fi AMM This distinction deserves emphasis. STON.fi DEX is the AMM. Omniston is the aggregation/execution layer. Omniston can access STON.fi liquidity, but it can also interact with other liquidity sources and RFQ resolvers. That means an Omniston-routed trade should not automatically be interpreted as a trade executed entirely against STON.fi's own AMM liquidity. This becomes particularly important when examining aggregate volume. A headline number for STON.fi's trading activity needs to be understood in the context of what the underlying measurement actually counts. DefiLlama currently defines STON.fi's DEX volume as spot token swaps on the DEX, while its methodology separately defines TVL, fees and protocol revenue. The distinction between native AMM liquidity and aggregated execution therefore belongs in any serious analysis of STON.fi's scale. ❑Omniston is also changing the cross-chain equation Cross-chain trading introduces another problem. Blockchains do not naturally share one state. Moving assets between networks therefore requires a mechanism for coordinating transactions across separate ledgers. Omniston's newer architecture uses RFQ-based liquidity discovery combined with Hashed Timelock Contracts (HTLCs) for cross-chain settlement. In the model described by STON.fi, resolvers compete to fill a user's request. Once a quote is selected, the cross-chain settlement uses paired cryptographic conditions so that the two sides either settle according to the agreed conditions or become refundable after the relevant timelocks expire. This is materially different from the traditional bridge model in which assets are deposited into a central contract and a representation is issued on another chain. It also introduces a new set of dependencies. The system now depends not only on smart-contract correctness, but also on resolver liquidity, quote quality, settlement logic and cross-chain execution. That does not make the system inherently good or bad. It simply changes what must be evaluated. ❑ The numbers behind STON.fi's market position This is where the phrase “leading AMM” can be tested rather than repeated. At the latest available DefiLlama snapshot used for this article, STON.fi had approximately: - $26.06 million TVL - $88.02 million 30-day DEX volume - $16.84 million 7-day DEX volume - $1.75 million 24-hour DEX volume - $8.56 billion cumulative DEX volume DefiLlama lists TON as the chain accounting for 100% of the tracked TVL. More importantly, the same dataset provides a common basis for comparison. DefiLlama currently lists approximately: - STON.fi — $26.06M TVL - TONCO — $5.94M - DeDust — $4.52M - Megaton Finance — $728K - Torch — $472K Those figures are snapshots and can change continuously, but they show that STON.fi currently has a substantial lead in TVL among the listed TON DEX competitors. The same pattern appears in recent trading volume. That gives the “leading” description a measurable basis. But the evidence supports a metric-specific conclusion, not an unlimited one. It demonstrates leadership in currently tracked liquidity and trading volume. It does not automatically establish leadership in every possible category, such as developer preference, user satisfaction, decentralization, security, or every measure of active users. ❑ Scale matters, but methodology matters too There is another reason to avoid using one headline number without context. STON.fi publishes its own historical statistics, while independent analytics providers calculate their own measurements. Different systems can produce different cumulative-volume numbers because they can differ in: - data sources; - inclusion criteria; - aggregation methods; - treatment of routed transactions; - update timing. Therefore, if STON.fi reports one cumulative volume and an analytics provider reports another, the difference should not automatically be described as an error. The appropriate question is: What does each number actually measure? That is why the article uses third-party analytics for comparative market measurements and official documentation for protocol mechanics. ❑The STON token is tied to governance as well as incentives STON is the protocol's native token. The original whitepaper documented a total supply of 100 million STON, with allocations to the DAO, team and advisors, and investors. But the original tokenomics document should not be treated as a complete description of the protocol's current economic system. The protocol has since introduced DAO governance and subsequent governance decisions affecting the use of protocol fees and treasury mechanisms. The current DAO uses a staking-based governance system. Users stake STON for a period between three and 24 months and receive an ARKENSTON NFT representing governance voting power. The DAO currently describes a seven-day discussion period followed by a 14-day voting period. Proposal creation requires at least 240.17 voting power in a single ARKENSTON NFT. Voting power also changes over time according to the governance system's staking and decay mechanics. This makes STON more than simply a token distributed as an incentive. It forms part of the protocol's governance mechanism. ❑ But DAO governance does not mean every component is controlled by token holders This is another distinction worth preserving. The existence of a DAO does not automatically mean that every technical parameter or smart contract can be changed directly by a token vote. The governance system has defined powers, while operational and technical authority can remain elsewhere. For example, the Router's upgradeability remains an architectural consideration independent of the existence of DAO voting. That means the more accurate question is not: “Is STON.fi decentralized?” but: “Which parts of STON.fi are controlled through which mechanisms?” That question produces a much more useful picture. ❑ Security: audits reduce uncertainty, not eliminate it STON.fi's v2 DEX contracts underwent a security review by Trail of Bits in January 2025. Trail of Bits lists the engagement in its public publications repository. STON.fi also documents additional security measures and a bug-bounty program. An audit is important because it introduces an independent review of the code. But an audit is not a guarantee. Smart-contract systems can contain: - undiscovered vulnerabilities; - economic exploits; - integration risks; - oracle or pricing risks; - governance risks; - upgrade risks; - operational failures. Consequently, the responsible statement is: STON.fi has undergone external security reviews. It would be inappropriate to convert that into: STON.fi is completely safe. No serious smart-contract system can justify the second statement merely from an audit. ❑What the evidence actually says about STON.fi's leadership After separating the AMM from Omniston, distinguishing official claims from independent measurements, and putting the statistics into a common framework, the evidence is relatively clear. STON.fi has several characteristics associated with a leading TON AMM: - It has operated since 2022. - It has built native TON AMM infrastructure. - It supports multiple pool designs. - It has accumulated substantial liquidity. - It processes significant trading volume. - It has a large historical transaction footprint. - It has developed developer and integration tooling. - It has introduced governance. - It has expanded into liquidity aggregation through Omniston. - Independent analytics currently place it ahead of the principal tracked TON DEX competitors by TVL and recent DEX volume. Those are measurable characteristics. They do not mean STON.fi is automatically the best choice for every trader or liquidity provider. They also do not eliminate the risks inherent in AMMs, smart contracts, governance or cross-chain execution. But they do provide a factual basis for describing STON.fi as a leading AMM on TON, particularly when leadership is measured by current liquidity and trading activity. ❑ The more interesting story is what comes after the AMM The original problem STON.fi solved was relatively straightforward: How can TON users exchange tokens without relying on a centralized order book? The problem the ecosystem faces today is broader: How can liquidity distributed across different pools, protocols and blockchains be made accessible through a coherent execution layer? STON.fi's answer has evolved accordingly. The AMM remains the underlying liquidity mechanism. Omniston adds aggregation and RFQ-based execution. The DAO introduces community governance. Developer tooling extends the protocol into third-party applications. Cross-chain functionality attempts to make TON liquidity accessible beyond TON itself. Each layer introduces new capabilities. Each also introduces new things that need to be evaluated. That is why STON.fi is more interesting today as a piece of DeFi infrastructure than simply as a screen where users swap one Jetton for another. ❑ Where the evidence stops A research-based assessment also needs boundaries. The exact number of active users is difficult to compare consistently across protocols. The advertised number of supported tokens is not equivalent to the number of actively liquid trading mmarkets. Current circulating STON supply and remaining unlock schedules require direct on-chain verification rather than relying solely on historical tokenomics documents. Cross-chain functionality is evolving, and different official materials describe different stages of its rollout. And while current independent data supports STON.fi's leadership in tracked TON TVL and DEX volume, “leading” should not be interpreted as a universal ranking across every conceivable metric. Those limitations do not weaken the analysis. They define what the evidence can actually support. ❑ STON.fi's position is measurable — but the mechanism explains the numbers $The most useful way to understand STON.fi is not as a claim that it is “the best DEX.” It is as a layered system. At the bottom is the AMM, where liquidity pools allow users to trade without a conventional order book. Around that are the Router and smart-contract architecture, which coordinate interactions with those pools. Above that are liquidity aggregation and execution systems such as Omniston, designed to search across liquidity sources rather than relying on a single pool. And around the protocol sits a growing governance and developer ecosystem. Current data shows that this infrastructure has achieved substantial scale on TON. But the numbers become meaningful only when the mechanisms behind them are understood. That is ultimately what the STON.fi story illustrates: the evolution of a simple AMM into a broader attempt to organize fragmented liquidity around TON and, increasingly, across blockchain networks. The evidence supports calling STON.fi a leading TON AMM by current tracked liquidity and trading volume. The rest of the claim — security, decentralization, efficiency, user experience, and long-term cross-chain success — requires separate evidence. And that distinction is precisely where responsible DeFi research should begin. ❑ References Official Sources STON.fi — Official Website: https://ston.fi/ STON.fi Documentation: https://docs.ston.fi/ STON.fi User Guide: https://guide.ston.fi/ STON.fi GitHub: https://github.com/ston-fi STON.fi Blog: https://blog.ston.fi/ STON.fi DAO: https://dao.ston.fi/ STON.fi DAO Governance: https://dao.ston.fi/about STONbassadors Program: https://ston.fi/stonbassadors STON.fi DEX: https://app.ston.fi/swap Omniston: https://ston.fi/omniston Research and Analytics DefiLlama — STON.fi Metrics: https://defillama.com/protocol/ston.fi Trail of Bits — Public Security Publications: https://github.com/trailofbits/publications Technical / Historical Sources Omniston: TON liquidity in one service — STON.fi Blog: https://blog.ston.fi/stonchronicles-omniston-ton-liquidity-in-one-service/ Cross-chain portfolio rebalancing: HTLC & RFQ — STON.fi Blog: https://blog.ston.fi/cross-chain-portfolio-rebalancing-how-htlc-and-rfq-swaps-work-for-defi-users/ Omniston explained: cross-chain swaps without a bridge — STON.fi Blog: https://blog.ston.fi/omniston-explained-how-cross-chain-swaps-on-ton-work-without-a-bridge/ Technical Documentation STON.fi Protocol: https://docs.ston.fi/document/user-section/protocol STON.fi Developer Documentation: https://docs.ston.fi/document STON.fi Quickstart Guides: https://docs.ston.fi/developer-section/quickstart STON.fi API Reference: https://docs.ston.fi/developer-section/dex/api/reference STON.fi v1 Smart Contracts: https://docs.ston.fi/document/developer-section/api-reference-v1 Community / Ambassador Sources STONbassadors Official Program: https://ston.fi/stonbassadors STON.fi X: https://x.com/ston_fi STON.fi Telegram: https://t.me/stonfidex STON.fi Discord: https://discord.com/invite/bdmaGV6qUW STON.fi Reddit: https://www.reddit.com/r/Stonfiers/ Written by Binnoreen X: Bin_noreen https://x.com/Bin_noreen Telegram: Binnoreen https://t.me/binnoreen

STON.fi: Inside TON’s Leading AMM DEX

An evidence-based look at the AMM, liquidity architecture, Omniston, governance, security, and the data behind STON.fi’s position on TON.
On a decentralized exchange, the most visible action is simple: a user selects one token, chooses another, enters an amount, and presses Swap.
Behind that button, however, sits a considerably more complicated system.
Liquidity has to be available. Prices have to be calculated. Smart contracts have to coordinate the transaction. Liquidity providers need to receive their share of fees. The system needs to protect users from excessive price movement, while developers need infrastructure capable of supporting thousands of different assets.
On TON, one of the most established systems built around that problem is STON.fi.
STON.fi describes itself as a decentralized automated market maker (AMM) exchange built on the TON blockchain. Independent analytics currently place it ahead of other tracked TON DEXs by both total value locked and recent DEX volume.
But calling something “leading” raises a more useful question:
What exactly makes STON.fi a leader, and what is happening underneath the interface?
To answer that, it is necessary to look beyond the swap screen.
❑ From a one-Jetton AMM to a broader trading infrastructure
STON.fi's history begins with a relatively simple proposition.
The protocol's own historical material identifies November 20, 2022 as the launch of its initial AMM, at a time when the system supported only one Jetton.
Since then, the project has expanded through multiple stages: developer tools and integrations, staking and farming, protocol upgrades, new pool types, governance, and eventually Omniston.
That progression matters because today's STON.fi is not identical to the system that launched in 2022.
The original product was primarily an AMM.
The current ecosystem combines the core AMM with additional infrastructure designed to aggregate liquidity and execute trades across different sources and, increasingly, different blockchains.
That distinction becomes particularly important when looking at trading-volume statistics.
❑The mechanism underneath every swap
At its foundation, an AMM replaces the traditional order book with liquidity pools and mathematical pricing rules.
In an order-book exchange, buyers and sellers place orders and a matching engine determines which orders can be executed.
An AMM works differently.
Liquidity providers deposit assets into a pool. The protocol then uses the pool's reserves to calculate exchange rates.
For STON.fi's original constant-product model, the relationship can be represented as:
x × y = k
where:
x represents the quantity of one asset in the pool;
y represents the quantity of the other;
k is the pool's invariant.
When a trader removes one asset from the pool by swapping into it, the relative reserve of that asset changes. The resulting price therefore changes as well.
This is why a large trade can move the market price inside a pool.
That effect is known as price impact.
It is different from slippage, which describes the difference between the expected execution and the actual execution allowed by the user's transaction settings.
For a beginner, the distinction is important:
Price impact comes from the size of the trade relative to available liquidity.
Slippage protection determines how much execution movement the user is willing to tolerate.
STON.fi's documentation describes these mechanisms as part of its swap and liquidity architecture.
❑ A swap is more than a token exchange
The STON.fi architecture divides responsibilities between several smart-contract components.
The Router serves as the main entry point for interactions. Pool contracts contain the liquidity and perform the AMM calculations. Account contracts are used during certain liquidity operations, while LP Jetton wallets represent liquidity-provider positions.
A simplified swap looks like this:
User wallet → Router → Pool → Router → User wallet
The user sends the input asset to the Router.
The Router communicates with the relevant Pool.
The Pool calculates the exchange according to its pool type and reserves.
The output asset is then returned to the user.
This architecture is particularly relevant on TON because TON uses asynchronous message-based smart-contract interactions rather than simply reproducing the execution model commonly seen on EVM chains.
STON.fi's technical documentation describes the interaction using TON's Jetton transfer and notification mechanisms.
The result is that a swap that looks like one action in the interface can involve several contract-to-contract messages underneath.
❑STON.fi is no longer limited to one AMM formula
One of the easiest mistakes would be to describe STON.fi entirely as a constant-product AMM.
That was the foundation, but the current protocol supports additional pool designs.
STON.fi documentation describes multiple pool types, including:
- Constant Product;
- StableSwap;
- Weighted Constant Product;
- Weighted StableSwap.
Different pool designs are useful for different asset relationships.
A constant-product pool is a general-purpose mechanism.
A stable-oriented pool can be designed for assets expected to trade close to one another.
Weighted pools can assign different proportions to assets rather than treating both sides identically.
This matters because “AMM” is not one single mathematical design.
It is a broader category of automated liquidity systems.
❑ Where the liquidity providers fit in
The other side of every AMM trade is the liquidity provider.
Instead of matching directly with another trader, the trader interacts with liquidity supplied to the pool.
When liquidity is deposited, the provider receives LP tokens representing their position in that pool.
When trading activity generates fees, liquidity providers can receive a portion of those fees according to the pool's fee structure.
STON.fi documents a default total swap fee of 0.3%, with the commonly documented split allocating approximately 0.2% to liquidity providers and 0.1% to the protocol. Pool-level fees can be configured within the protocol's supported parameters.
This is important because liquidity provision is sometimes described simply as “earning yield.”
That description is incomplete.
The underlying return comes from specific mechanisms, primarily trading fees and, where applicable, additional incentive programs.
And the liquidity provider also accepts risks.
One of the most important is impermanent loss.
❑Why providing liquidity is not the same as staking
Staking and liquidity provision are often grouped together because both can produce rewards.
Mechanically, however, they are different.
A person staking a token generally locks or delegates that token under a specific protocol mechanism.
A liquidity provider deposits assets into a trading pool.
The provider's asset proportions can change as traders buy one asset and sell another.
If the external market price changes significantly, the pool can therefore end up holding a different composition of assets than the provider initially deposited.
That difference can produce impermanent loss relative to simply holding the original assets.
STON.fi provides documentation explaining impermanent loss and even maintains an impermanent-loss calculator.
This is one reason the phrase “LP yield” should never be interpreted as risk-free income.
The relevant question is not merely:
How much are the fees?
It is also:
What risks are being taken to earn those fees?
❑ The Router introduces an important security distinction
One of the more interesting details in STON.fi's architecture is that its smart contracts are not all governed in exactly the same way.
The Pool contracts are described as immutable.
The Router, however, is upgradeable.
The official technical documentation describes administrative capabilities around the Router and a timelocked upgrade process. The documented delay gives users and the ecosystem time to observe a proposed Router upgrade rather than having the implementation change instantly.
That distinction matters.
It would be inaccurate to summarize the protocol simply by saying:
«“STON.fi's smart contracts are immutable.”»
A more accurate description is:
STON.fi combines immutable Pool contracts with an upgradeable Router subject to a timelock.
For users evaluating decentralized protocols, this distinction is more useful than a generic statement about decentralization.
It tells us where change can occur and where it cannot.
❑TON is part of the architecture, not merely the network label
STON.fi was built specifically around TON's architecture.
Its token ecosystem relies on Jettons, TON's token standard.
The contracts communicate through TON's asynchronous message system, and the protocol's documentation discusses how its contracts interact through those messages.
This architecture creates engineering differences from EVM-based AMMs.
A developer cannot simply copy an Ethereum AMM contract to TON and expect the same execution model.
The application has to account for TON's asynchronous contract communication and Jetton mechanics.
STON.fi's architecture is therefore better understood as a TON-native implementation of automated liquidity rather than an Ethereum-style AMM simply deployed onto another chain.
❑ Then came Omniston
At some point, building another liquidity pool stopped being enough.
The problem was liquidity fragmentation.
Imagine several DEXs operating on the same blockchain.
One pool may have the best price for one pair.
Another may have deeper liquidity for another pair.
A third liquidity source might be able to quote a better execution price for a large order.
A user who interacts with only one pool cannot automatically see all those possibilities.
This is the problem Omniston is designed to address.
STON.fi describes Omniston as a liquidity aggregation and execution layer based around Request for Quote (RFQ) mechanisms.
Instead of relying exclusively on one AMM pool, the system can obtain quotes from multiple liquidity sources and resolvers.
The result is a different execution model from a conventional AMM swap.
❑ Omniston is not the same thing as the STON.fi AMM
This distinction deserves emphasis.
STON.fi DEX is the AMM.
Omniston is the aggregation/execution layer.
Omniston can access STON.fi liquidity, but it can also interact with other liquidity sources and RFQ resolvers.
That means an Omniston-routed trade should not automatically be interpreted as a trade executed entirely against STON.fi's own AMM liquidity.
This becomes particularly important when examining aggregate volume.
A headline number for STON.fi's trading activity needs to be understood in the context of what the underlying measurement actually counts.
DefiLlama currently defines STON.fi's DEX volume as spot token swaps on the DEX, while its methodology separately defines TVL, fees and protocol revenue.
The distinction between native AMM liquidity and aggregated execution therefore belongs in any serious analysis of STON.fi's scale.
❑Omniston is also changing the cross-chain equation
Cross-chain trading introduces another problem.
Blockchains do not naturally share one state.
Moving assets between networks therefore requires a mechanism for coordinating transactions across separate ledgers.
Omniston's newer architecture uses RFQ-based liquidity discovery combined with Hashed Timelock Contracts (HTLCs) for cross-chain settlement.
In the model described by STON.fi, resolvers compete to fill a user's request. Once a quote is selected, the cross-chain settlement uses paired cryptographic conditions so that the two sides either settle according to the agreed conditions or become refundable after the relevant timelocks expire.
This is materially different from the traditional bridge model in which assets are deposited into a central contract and a representation is issued on another chain.
It also introduces a new set of dependencies.
The system now depends not only on smart-contract correctness, but also on resolver liquidity, quote quality, settlement logic and cross-chain execution.
That does not make the system inherently good or bad.
It simply changes what must be evaluated.
❑ The numbers behind STON.fi's market position
This is where the phrase “leading AMM” can be tested rather than repeated.
At the latest available DefiLlama snapshot used for this article, STON.fi had approximately:
- $26.06 million TVL
- $88.02 million 30-day DEX volume
- $16.84 million 7-day DEX volume
- $1.75 million 24-hour DEX volume
- $8.56 billion cumulative DEX volume
DefiLlama lists TON as the chain accounting for 100% of the tracked TVL.
More importantly, the same dataset provides a common basis for comparison.
DefiLlama currently lists approximately:
- STON.fi — $26.06M TVL
- TONCO — $5.94M
- DeDust — $4.52M
- Megaton Finance — $728K
- Torch — $472K
Those figures are snapshots and can change continuously, but they show that STON.fi currently has a substantial lead in TVL among the listed TON DEX competitors.
The same pattern appears in recent trading volume.
That gives the “leading” description a measurable basis.
But the evidence supports a metric-specific conclusion, not an unlimited one.
It demonstrates leadership in currently tracked liquidity and trading volume.
It does not automatically establish leadership in every possible category, such as developer preference, user satisfaction, decentralization, security, or every measure of active users.
❑ Scale matters, but methodology matters too
There is another reason to avoid using one headline number without context.
STON.fi publishes its own historical statistics, while independent analytics providers calculate their own measurements.
Different systems can produce different cumulative-volume numbers because they can differ in:
- data sources;
- inclusion criteria;
- aggregation methods;
- treatment of routed transactions;
- update timing.
Therefore, if STON.fi reports one cumulative volume and an analytics provider reports another, the difference should not automatically be described as an error.
The appropriate question is:
What does each number actually measure?
That is why the article uses third-party analytics for comparative market measurements and official documentation for protocol mechanics.
❑The STON token is tied to governance as well as incentives
STON is the protocol's native token.
The original whitepaper documented a total supply of 100 million STON, with allocations to the DAO, team and advisors, and investors.
But the original tokenomics document should not be treated as a complete description of the protocol's current economic system.
The protocol has since introduced DAO governance and subsequent governance decisions affecting the use of protocol fees and treasury mechanisms.
The current DAO uses a staking-based governance system.
Users stake STON for a period between three and 24 months and receive an ARKENSTON NFT representing governance voting power.
The DAO currently describes a seven-day discussion period followed by a 14-day voting period. Proposal creation requires at least 240.17 voting power in a single ARKENSTON NFT. Voting power also changes over time according to the governance system's staking and decay mechanics.
This makes STON more than simply a token distributed as an incentive.
It forms part of the protocol's governance mechanism.
❑ But DAO governance does not mean every component is controlled by token holders
This is another distinction worth preserving.
The existence of a DAO does not automatically mean that every technical parameter or smart contract can be changed directly by a token vote.
The governance system has defined powers, while operational and technical authority can remain elsewhere.
For example, the Router's upgradeability remains an architectural consideration independent of the existence of DAO voting.
That means the more accurate question is not:
“Is STON.fi decentralized?”
but:
“Which parts of STON.fi are controlled through which mechanisms?”
That question produces a much more useful picture.
❑ Security: audits reduce uncertainty, not eliminate it
STON.fi's v2 DEX contracts underwent a security review by Trail of Bits in January 2025. Trail of Bits lists the engagement in its public publications repository.
STON.fi also documents additional security measures and a bug-bounty program.
An audit is important because it introduces an independent review of the code.
But an audit is not a guarantee.
Smart-contract systems can contain:
- undiscovered vulnerabilities;
- economic exploits;
- integration risks;
- oracle or pricing risks;
- governance risks;
- upgrade risks;
- operational failures.
Consequently, the responsible statement is:
STON.fi has undergone external security reviews.
It would be inappropriate to convert that into:
STON.fi is completely safe.
No serious smart-contract system can justify the second statement merely from an audit.
❑What the evidence actually says about STON.fi's leadership
After separating the AMM from Omniston, distinguishing official claims from independent measurements, and putting the statistics into a common framework, the evidence is relatively clear.
STON.fi has several characteristics associated with a leading TON AMM:
- It has operated since 2022.
- It has built native TON AMM infrastructure.
- It supports multiple pool designs.
- It has accumulated substantial liquidity.
- It processes significant trading volume.
- It has a large historical transaction footprint.
- It has developed developer and integration tooling.
- It has introduced governance.
- It has expanded into liquidity aggregation through Omniston.
- Independent analytics currently place it ahead of the principal tracked TON DEX competitors by TVL and recent DEX volume.
Those are measurable characteristics.
They do not mean STON.fi is automatically the best choice for every trader or liquidity provider.
They also do not eliminate the risks inherent in AMMs, smart contracts, governance or cross-chain execution.
But they do provide a factual basis for describing STON.fi as a leading AMM on TON, particularly when leadership is measured by current liquidity and trading activity.
❑ The more interesting story is what comes after the AMM
The original problem STON.fi solved was relatively straightforward:
How can TON users exchange tokens without relying on a centralized order book?
The problem the ecosystem faces today is broader:
How can liquidity distributed across different pools, protocols and blockchains be made accessible through a coherent execution layer?
STON.fi's answer has evolved accordingly.
The AMM remains the underlying liquidity mechanism.
Omniston adds aggregation and RFQ-based execution.
The DAO introduces community governance.
Developer tooling extends the protocol into third-party applications.
Cross-chain functionality attempts to make TON liquidity accessible beyond TON itself.
Each layer introduces new capabilities.
Each also introduces new things that need to be evaluated.
That is why STON.fi is more interesting today as a piece of DeFi infrastructure than simply as a screen where users swap one Jetton for another.
❑ Where the evidence stops
A research-based assessment also needs boundaries.
The exact number of active users is difficult to compare consistently across protocols.
The advertised number of supported tokens is not equivalent to the number of actively liquid trading mmarkets.
Current circulating STON supply and remaining unlock schedules require direct on-chain verification rather than relying solely on historical tokenomics documents.
Cross-chain functionality is evolving, and different official materials describe different stages of its rollout.
And while current independent data supports STON.fi's leadership in tracked TON TVL and DEX volume, “leading” should not be interpreted as a universal ranking across every conceivable metric.
Those limitations do not weaken the analysis.
They define what the evidence can actually support.
❑ STON.fi's position is measurable — but the mechanism explains the numbers
$The most useful way to understand STON.fi is not as a claim that it is “the best DEX.”
It is as a layered system.
At the bottom is the AMM, where liquidity pools allow users to trade without a conventional order book.
Around that are the Router and smart-contract architecture, which coordinate interactions with those pools.
Above that are liquidity aggregation and execution systems such as Omniston, designed to search across liquidity sources rather than relying on a single pool.
And around the protocol sits a growing governance and developer ecosystem.
Current data shows that this infrastructure has achieved substantial scale on TON.
But the numbers become meaningful only when the mechanisms behind them are understood.
That is ultimately what the STON.fi story illustrates: the evolution of a simple AMM into a broader attempt to organize fragmented liquidity around TON and, increasingly, across blockchain networks.
The evidence supports calling STON.fi a leading TON AMM by current tracked liquidity and trading volume.
The rest of the claim — security, decentralization, efficiency, user experience, and long-term cross-chain success — requires separate evidence.
And that distinction is precisely where responsible DeFi research should begin.
❑ References
Official Sources
STON.fi — Official Website: https://ston.fi/
STON.fi Documentation:
https://docs.ston.fi/
STON.fi User Guide: https://guide.ston.fi/
STON.fi GitHub: https://github.com/ston-fi
STON.fi Blog: https://blog.ston.fi/
STON.fi DAO: https://dao.ston.fi/
STON.fi DAO Governance: https://dao.ston.fi/about
STONbassadors Program: https://ston.fi/stonbassadors
STON.fi DEX: https://app.ston.fi/swap
Omniston: https://ston.fi/omniston
Research and Analytics
DefiLlama — STON.fi Metrics:
https://defillama.com/protocol/ston.fi
Trail of Bits — Public Security Publications: https://github.com/trailofbits/publications
Technical / Historical Sources
Omniston: TON liquidity in one service — STON.fi Blog: https://blog.ston.fi/stonchronicles-omniston-ton-liquidity-in-one-service/
Cross-chain portfolio rebalancing: HTLC & RFQ — STON.fi Blog: https://blog.ston.fi/cross-chain-portfolio-rebalancing-how-htlc-and-rfq-swaps-work-for-defi-users/
Omniston explained: cross-chain swaps without a bridge — STON.fi Blog: https://blog.ston.fi/omniston-explained-how-cross-chain-swaps-on-ton-work-without-a-bridge/
Technical Documentation
STON.fi Protocol: https://docs.ston.fi/document/user-section/protocol
STON.fi Developer Documentation: https://docs.ston.fi/document
STON.fi Quickstart Guides: https://docs.ston.fi/developer-section/quickstart
STON.fi API Reference: https://docs.ston.fi/developer-section/dex/api/reference
STON.fi v1 Smart Contracts: https://docs.ston.fi/document/developer-section/api-reference-v1
Community / Ambassador Sources
STONbassadors Official Program: https://ston.fi/stonbassadors
STON.fi X: https://x.com/ston_fi
STON.fi Telegram: https://t.me/stonfidex
STON.fi Discord:
https://discord.com/invite/bdmaGV6qUW
STON.fi Reddit: https://www.reddit.com/r/Stonfiers/
Written by Binnoreen
X: Bin_noreen https://x.com/Bin_noreen
Telegram: Binnoreen
https://t.me/binnoreen
翻訳参照
good explanation
good explanation
Web3 Haidar
·
--
RFQとHTLCの解説:クロスチェーン・スワップは実際どう動くのか
私はOmniston、STON.fiのクロスチェーン、そして一般的にSTON.fiについて、多くの記事を書いてきました。

私が最も頻繁に使ってきた用語の一つがRFQです。

もう一つがHTLCです。

Omnistonがクロスチェーン・スワップをどのように扱うかを議論する中で、何度もそれを説明してきましたが、ひとつ問題があります。裏側で何が起きているのかをすでに理解していないと、RFQとHTLCは、複雑な暗号系の略語が2つ並んでいるだけに聞こえてしまうのです。

そうではありません。

簡単に言うと、RFQはクロスチェーン・スワップをどのように実行すべきかを決めるのに役立ちます。一方、HTLCは、2つの別々のブロックチェーン間での交換を調整するための仕組みを提供します。
記事
翻訳参照
One Swap. Across Chains: What STON.fi Is Actually BuildingCross-chain DeFi often asks users to understand too much infrastructure.Which chain are you on? Do you need a bridge? Which asset arrives on the other side? Where does liquidity come from? What happens if something fails? STON.fi’s “One Swap. Across Chains” campaign is designed around a simpler user experience, but the campaign itself is more than a reward program. It is also an onboarding layer for STON.fi’s cross-chain product, powered by Omniston. The important question is therefore not simply “What can I earn?” It is: “what is STON.fi actually trying to teach users about cross-chain swaps, and what has it already built underneath the campaign?” ❑ The Campaign Starts With a Waitlist, Not a Cross-Chain Reward The official rules identify the campaign as a marketing campaign organized by STON Limited, beginning with a Waitlist Phase on “1 September 2026 at 00:00 UTC. Participation is free, and the rules explicitly state that it is not an investment offer, lottery, gambling activity or financial product. The onboarding process requires users to connect a TON wallet and pair the campaign's Telegram bot. The first 1,000 eligible participants were offered a Priority Passenger Ticket, alongside a 1,000-mile bonus and Priority status in STON.fi's campaign announcement. STON.fi later reported that all 1,000 Priority Passenger Tickets had been claimed on the first day. There is an important distinction here. The formal rules define the Priority Passenger Ticket as a campaign identity image, not an NFT and not a Flight Deal. It has no guaranteed monetary value and does not require miles to receive. The exact future benefits of “Priority status” remain undisclosed. STON.fi's announcement simply says users should watch what the status unlocks next. ❑ Miles Are Points, Not a Token Miles are the campaign's internal points system. Users can earn them through active missions such as wallet connections and other campaign activities. The rules make an important distinction between spendable miles and total earned miles. Spendable miles can eventually be used for Flight Deals, while total earned miles track the user's cumulative campaign activity and do not decrease when spendable miles are used. Miles are not transferable and have no guaranteed cash value. The campaign interface currently advertises a 1,000-mile waitlist bonus through September 15. It also displays “1,300 miles the moment you're aboard.” That wording deserves caution because the formal rules and launch announcement clearly identify the joining bonus as 1,000 miles. For an independent reader, the safest interpretation is to treat 1,000 miles as the formally documented joining bonus and not assume the additional 300-mile figure is guaranteed without further clarification. Flight Classes are another unresolved component. The rules define them as campaign status tiers that may affect access to selected Flight Deals, but current documentation does not establish complete class names, thresholds or benefits. ❑ Behind the Campaign: How Omniston Handles the Swap The campaign sits on top of Omniston, STON.fi's cross-chain execution layer. The architecture uses two different mechanisms for two different jobs. RFQ, or Request for Quote, handles price discovery. A user requests a cross-chain swap. Resolvers compete by providing executable quotes, and the system selects a route. HTLCs handle settlement. Hashed Timelock Contracts create a cryptographic condition linking the two sides of the transaction. According to STON.fi's technical explanation, the source and destination funds are locked in linked contracts. If the required conditions are met, the swap settles; otherwise the relevant funds can be refunded through the timelock mechanism. This is what STON.fi means by atomic settlement. The design is intended to avoid a valid outcome where one side completes while the other permanently loses its funds. ❑ Why the Architecture Avoids Wrapped Bridge Assets Traditional bridge systems commonly lock an asset on one chain and issue a representation of it on another. Omniston takes a different approach. According to STON.fi's documentation, resolvers provide destination-side liquidity while the user receives the native asset on the destination chain. The system does not require a shared bridge pool or wrapped representation of the asset. That does not mean cross-chain swaps become risk-free. Resolver liquidity, smart-contract execution, blockchain availability and the supported route still matter. The important difference is architectural: Omniston attempts to separate cross-chain execution from the traditional lock-and-mint bridge model. ❑ What Is Still Undisclosed Several important campaign details remain open. The complete benefits of Priority status have not been published. Flight Class thresholds and specific Flight Deal requirements are also not fully defined in the current rules. The rules allow STON.fi to modify campaign mechanics, dates, mission requirements and rewards by publishing updates. That matters because readers should not interpret today's campaign interface as a permanent specification. The same principle applies to supported chains. STON.fi currently lists TON, TRON, Ethereum, Base, BNB Chain, Polygon, Arbitrum, Avalanche and Robinhood as live on the Omniston page, while noting that more chains are rolling out in phases. ❑ What the Campaign Reveals About STON.fi’s Cross-Chain Direction The campaign is easiest to understand as a bridge between education and product adoption. Users are introduced to cross-chain concepts through wallets, missions and miles, while the underlying product is designed to make the actual transaction less dependent on users understanding the infrastructure underneath. Whether that architecture becomes broadly useful will ultimately depend on factors such as resolver liquidity, route availability, execution reliability and user adoption. For now, the evidence supports a narrower conclusion: STON.fi is using the “One Swap. Across Chains” campaign to introduce users to a cross-chain execution system built around RFQ-based resolver competition and HTLC-based atomic settlement. The rewards are part of the campaign. The more significant development is the infrastructure underneath them. ❑ References Official Sources STON.fi Cross-Chain Campaign https://cross-chain.ston.fi/ Official Campaign Rules https://cross-chain.ston.fi/rules STON.fi Omniston https://ston.fi/omniston Omniston Documentation https://docs.ston.fi/developer-section/omniston STON.fi Blog https://blog.ston.fi/ STON.fi X https://x.com/ston_fi STON.fi Telegram https://t.me/stonfidex Stonbassadors Program https://ston.fi/stonbassadors

One Swap. Across Chains: What STON.fi Is Actually Building

Cross-chain DeFi often asks users to understand too much infrastructure.Which chain are you on? Do you need a bridge? Which asset arrives on the other side? Where does liquidity come from? What happens if something fails?
STON.fi’s “One Swap. Across Chains” campaign is designed around a simpler user experience, but the campaign itself is more than a reward program. It is also an onboarding layer for STON.fi’s cross-chain product, powered by Omniston.
The important question is therefore not simply “What can I earn?”
It is: “what is STON.fi actually trying to teach users about cross-chain swaps, and what has it already built underneath the campaign?”
❑ The Campaign Starts With a Waitlist, Not a Cross-Chain Reward
The official rules identify the campaign as a marketing campaign organized by STON Limited, beginning with a Waitlist Phase on “1 September 2026 at 00:00 UTC. Participation is free, and the rules explicitly state that it is not an investment offer, lottery, gambling activity or financial product.
The onboarding process requires users to connect a TON wallet and pair the campaign's Telegram bot.
The first 1,000 eligible participants were offered a Priority Passenger Ticket, alongside a 1,000-mile bonus and Priority status in STON.fi's campaign announcement. STON.fi later reported that all 1,000 Priority Passenger Tickets had been claimed on the first day.
There is an important distinction here.
The formal rules define the Priority Passenger Ticket as a campaign identity image, not an NFT and not a Flight Deal. It has no guaranteed monetary value and does not require miles to receive.
The exact future benefits of “Priority status” remain undisclosed. STON.fi's announcement simply says users should watch what the status unlocks next.
❑ Miles Are Points, Not a Token
Miles are the campaign's internal points system.
Users can earn them through active missions such as wallet connections and other campaign activities. The rules make an important distinction between spendable miles and total earned miles.
Spendable miles can eventually be used for Flight Deals, while total earned miles track the user's cumulative campaign activity and do not decrease when spendable miles are used. Miles are not transferable and have no guaranteed cash value.
The campaign interface currently advertises a 1,000-mile waitlist bonus through September 15. It also displays “1,300 miles the moment you're aboard.” That wording deserves caution because the formal rules and launch announcement clearly identify the joining bonus as 1,000 miles.
For an independent reader, the safest interpretation is to treat 1,000 miles as the formally documented joining bonus and not assume the additional 300-mile figure is guaranteed without further clarification.
Flight Classes are another unresolved component. The rules define them as campaign status tiers that may affect access to selected Flight Deals, but current documentation does not establish complete class names, thresholds or benefits.
❑ Behind the Campaign: How Omniston Handles the Swap
The campaign sits on top of Omniston, STON.fi's cross-chain execution layer.
The architecture uses two different mechanisms for two different jobs.
RFQ, or Request for Quote, handles price discovery.
A user requests a cross-chain swap. Resolvers compete by providing executable quotes, and the system selects a route.
HTLCs handle settlement.
Hashed Timelock Contracts create a cryptographic condition linking the two sides of the transaction. According to STON.fi's technical explanation, the source and destination funds are locked in linked contracts. If the required conditions are met, the swap settles; otherwise the relevant funds can be refunded through the timelock mechanism.
This is what STON.fi means by atomic settlement.
The design is intended to avoid a valid outcome where one side completes while the other permanently loses its funds.
❑ Why the Architecture Avoids Wrapped Bridge Assets
Traditional bridge systems commonly lock an asset on one chain and issue a representation of it on another.
Omniston takes a different approach.
According to STON.fi's documentation, resolvers provide destination-side liquidity while the user receives the native asset on the destination chain. The system does not require a shared bridge pool or wrapped representation of the asset.
That does not mean cross-chain swaps become risk-free.
Resolver liquidity, smart-contract execution, blockchain availability and the supported route still matter. The important difference is architectural: Omniston attempts to separate cross-chain execution from the traditional lock-and-mint bridge model.
❑ What Is Still Undisclosed
Several important campaign details remain open.
The complete benefits of Priority status have not been published. Flight Class thresholds and specific Flight Deal requirements are also not fully defined in the current rules. The rules allow STON.fi to modify campaign mechanics, dates, mission requirements and rewards by publishing updates.
That matters because readers should not interpret today's campaign interface as a permanent specification.
The same principle applies to supported chains. STON.fi currently lists TON, TRON, Ethereum, Base, BNB Chain, Polygon, Arbitrum, Avalanche and Robinhood as live on the Omniston page, while noting that more chains are rolling out in phases.
❑ What the Campaign Reveals About STON.fi’s Cross-Chain Direction
The campaign is easiest to understand as a bridge between education and product adoption.
Users are introduced to cross-chain concepts through wallets, missions and miles, while the underlying product is designed to make the actual transaction less dependent on users understanding the infrastructure underneath.
Whether that architecture becomes broadly useful will ultimately depend on factors such as resolver liquidity, route availability, execution reliability and user adoption.
For now, the evidence supports a narrower conclusion:
STON.fi is using the “One Swap. Across Chains” campaign to introduce users to a cross-chain execution system built around RFQ-based resolver competition and HTLC-based atomic settlement.
The rewards are part of the campaign.
The more significant development is the infrastructure underneath them.
❑ References
Official Sources
STON.fi Cross-Chain Campaign
https://cross-chain.ston.fi/
Official Campaign Rules
https://cross-chain.ston.fi/rules
STON.fi Omniston
https://ston.fi/omniston
Omniston Documentation
https://docs.ston.fi/developer-section/omniston
STON.fi Blog
https://blog.ston.fi/
STON.fi X
https://x.com/ston_fi
STON.fi Telegram
https://t.me/stonfidex

Stonbassadors Program
https://ston.fi/stonbassadors
記事
翻訳参照
xStocks on TON: What Actually Changes When a Stock Becomes a Jetton? A token such as AAPLx can look like an Apple stock position inside a TON wallet. But technically and legally, that description is incomplete. The important question is not simply whether a stock can be placed on a blockchain. It is what exactly the token represents, who stands behind it, and what happens between the traditional asset and the token in your wallet. xStocks provide a useful case study because they connect traditional-market exposure with TON's DeFi infrastructure. ❑ The ticker in your wallet is not the stock itself xStocks are issued by Backed Assets (JE) Limited, not STON.fi. Backed's current legal documentation classifies its products as certificates tracking an underlying asset, under Swiss law. That distinction matters. Holding an xStock does not give the holder the same legal position as directly owning the underlying company's ordinary shares. The token represents exposure through a regulated tracker-certificate structure. So the simplified relationship is: Underlying security → regulated certificate → blockchain representation → TON Jetton STON.fi is involved at the DeFi infrastructure layer, not as the issuer. ❑ Follow the asset backwards from TON STON.fi's technical explanation describes the structure as a series of layers. Backed creates the regulated product against the underlying asset, while custodians hold the relevant traditional-market positions. The product is represented by blockchain tokens, which can then appear on TON as Jettons. A TON wallet therefore contains the on-chain representation, while the underlying financial assets remain within the traditional custody structure. This is what makes the term "self-custody" more nuanced than it first appears. You control the TON Jetton through your wallet keys. You do not personally hold the underlying Apple, Tesla or ETF shares in that wallet. ❑ What does "1:1 backed" actually mean? Backed and STON.fi describe xStocks as being backed 1:1 by the corresponding underlying assets held with regulated custodians. This should not be interpreted as "one token equals one ordinary share in every legal respect." Instead, the important claim is that the tokenized certificate is collateralized against the corresponding underlying position. That creates another layer of trust beyond the blockchain itself: the issuer, custodians, legal structure and reserve-monitoring system all matter. ❑ Proof of reserves adds an on-chain verification layer This is where tokenization becomes particularly interesting. STON.fi says Backed uses Chainlink Proof of Reserve to connect information about off-chain collateral with on-chain data. The mechanism is designed to allow users and protocols to compare the amount of tokens in circulation with reported underlying reserves. But proof of reserves is not the same thing as eliminating risk. It does not automatically eliminate issuer risk, custodian failure, smart-contract vulnerabilities, legal disputes or regulatory restrictions. STON.fi itself acknowledges market, issuer, custodian, smart-contract and regulatory risks and warns that investors can lose part or all of their investment. In other words, PoR provides another verification layer. It is not a guarantee. ❑ Where STON.fi actually fits STON.fi explicitly states that it does not issue, sell or distribute xStocks and does not act as a broker, dealer, exchange or investment adviser. It describes its role as non-custodial infrastructure on TON that can route swaps into xStocks. This distinction is important because several different entities perform different jobs: Backed: issues the tracker certificates. Custodians: hold the underlying traditional-market assets. TON: provides the blockchain environment. STON.fi/Omniston: provides swap-routing and execution infrastructure. Confusing these roles would give readers the wrong picture of how the system works. ❑ Why xStocks use a different liquidity mechanism Traditional AMMs depend on public liquidity pools. But STON.fi says xStocks were the first assets to use its escrow execution layer inside Omniston, allowing swaps to access resolver-priced OTC liquidity rather than relying solely on public AMM pools. The simplified difference is: AMM: trade against publicly supplied pool liquidity. Resolver/escrow: obtain a quoted route from a liquidity provider and settle the transaction through an escrow contract. The escrow model allows direct asset-to-asset execution and on-chain settlement without requiring STON.fi itself to operate an xStock liquidity pool. STON.fi's current xStocks page explicitly says it does not operate xStock trading pairs or liquidity pools. ❑ The 24/7 question is more complicated than it sounds A blockchain can process transactions around the clock. The underlying stock market cannot. That creates an important distinction between blockchain availability and traditional-market price discovery. STON.fi promotes 24/7 access to xStocks, but users should understand that the underlying securities still belong to traditional financial markets with their own trading hours and market structure. This makes liquidity, pricing and market conditions important considerations when traditional markets are closed. ❑ What happens to dividends? xStocks do not simply reproduce the normal dividend-payment experience of a brokerage account. STON.fi says dividend treatment is determined by Backed and that, under the Backed Base Prospectus, dividend payouts are automatically reinvested into additional tokens. On TON, this is reflected through Scaled UI Jettons (TEP-526). STON.fi itself does not distribute the dividends. ❑ The restrictions remain It would therefore be misleading to describe xStocks as completely permissionless global stocks. STON.fi currently lists restrictions for residents or citizens of the United States, EU/EEA countries, the United Kingdom, Canada, Australia, Belgium and other jurisdictions where tokenized securities are restricted or prohibited. Older STON.fi material described access without brokerage accounts or KYC, but the current documentation emphasizes eligibility requirements. The safer conclusion is that self-custody does not mean the removal of financial regulation. ❑ The bigger RWA question xStocks illustrate what tokenization actually changes. The blockchain can make an investment instrument transferable through a wallet, composable with DeFi infrastructure and available through blockchain-based settlement. But tokenization does not make the underlying financial system disappear. The issuer still matters. The custodian still matters. The legal structure still matters. The underlying market still matters. And the token still carries technical and regulatory risks. That is arguably the most important lesson from xStocks on TON: putting an asset on-chain changes how it can be accessed and used, but it does not erase the institutions, legal claims and risks behind the asset. For readers evaluating tokenized RWAs, the useful question is therefore not simply "Is this a stock on-chain?" It is: "What legal instrument am I holding, what backs it, who controls the underlying assets, and what exactly can I verify on-chain?" That is where the real substance of tokenized assets begins. ❑ References Official Sources STON.fixStocks https://ston.fi/xstocks How xStocks Actually Work https://blog.ston.fi/how-xstocks-actually-work-from-real-world-asset-to-ton-jetton/ Escrow Swaps and Omniston https://blog.ston.fi/escrow-swaps-a-new-execution-layer-inside-omniston/ xStocks: Explore the Tokenized Market https://blog.ston.fi/xstocks-explore-tokenized-market/ Proof of Reserves https://blog.ston.fi/proof-of-reserves-why-on-chain-checks-matter-more-than-glossy-decks/ Backed Legal Documentation https://assets.backed.fi/legal-documentation Backed Service Providers https://assets.backed.fi/legal-documentation/service-providers Backed Products https://assets.backed.fi/products xStocks Official Website https://xstocks.fi/ xStocks Proof of Reserves https://defi.xstocks.fi/proof-of-reserve STON.fi Stonbassadors https://ston.fi/stonbassadors Research and Technical Sources Chainlink Proof of Reserve https://chain.link/proof-of-reserve Chainlink Tokenized Stocks Explained https://chain.link/education-hub/tokenized-stocks-equities-explained Primary Social Sources STON.fi on X https://x.com/ston_fi STON.fi Blog https://blog.ston.fi/ Community Sources STON.fi Reddit Community https://www.reddit.com/r/Stonfiers/ STON.fi Telegram Community https://t.me/stonfidex

xStocks on TON: What Actually Changes When a Stock Becomes a Jetton?

A token such as AAPLx can look like an Apple stock position inside a TON wallet. But technically and legally, that description is incomplete.
The important question is not simply whether a stock can be placed on a blockchain. It is what exactly the token represents, who stands behind it, and what happens between the traditional asset and the token in your wallet.
xStocks provide a useful case study because they connect traditional-market exposure with TON's DeFi infrastructure.
❑ The ticker in your wallet is not the stock itself
xStocks are issued by Backed Assets (JE) Limited, not STON.fi. Backed's current legal documentation classifies its products as certificates tracking an underlying asset, under Swiss law.
That distinction matters.
Holding an xStock does not give the holder the same legal position as directly owning the underlying company's ordinary shares. The token represents exposure through a regulated tracker-certificate structure.
So the simplified relationship is:
Underlying security → regulated certificate → blockchain representation → TON Jetton
STON.fi is involved at the DeFi infrastructure layer, not as the issuer.
❑ Follow the asset backwards from TON
STON.fi's technical explanation describes the structure as a series of layers. Backed creates the regulated product against the underlying asset, while custodians hold the relevant traditional-market positions. The product is represented by blockchain tokens, which can then appear on TON as Jettons.
A TON wallet therefore contains the on-chain representation, while the underlying financial assets remain within the traditional custody structure.
This is what makes the term "self-custody" more nuanced than it first appears.
You control the TON Jetton through your wallet keys. You do not personally hold the underlying Apple, Tesla or ETF shares in that wallet.
❑ What does "1:1 backed" actually mean?
Backed and STON.fi describe xStocks as being backed 1:1 by the corresponding underlying assets held with regulated custodians.
This should not be interpreted as "one token equals one ordinary share in every legal respect."
Instead, the important claim is that the tokenized certificate is collateralized against the corresponding underlying position.
That creates another layer of trust beyond the blockchain itself: the issuer, custodians, legal structure and reserve-monitoring system all matter.
❑ Proof of reserves adds an on-chain verification layer
This is where tokenization becomes particularly interesting.
STON.fi says Backed uses Chainlink Proof of Reserve to connect information about off-chain collateral with on-chain data. The mechanism is designed to allow users and protocols to compare the amount of tokens in circulation with reported underlying reserves.
But proof of reserves is not the same thing as eliminating risk.
It does not automatically eliminate issuer risk, custodian failure, smart-contract vulnerabilities, legal disputes or regulatory restrictions. STON.fi itself acknowledges market, issuer, custodian, smart-contract and regulatory risks and warns that investors can lose part or all of their investment.
In other words, PoR provides another verification layer. It is not a guarantee.
❑ Where STON.fi actually fits
STON.fi explicitly states that it does not issue, sell or distribute xStocks and does not act as a broker, dealer, exchange or investment adviser. It describes its role as non-custodial infrastructure on TON that can route swaps into xStocks.
This distinction is important because several different entities perform different jobs:
Backed: issues the tracker certificates.
Custodians: hold the underlying traditional-market assets.
TON: provides the blockchain environment.
STON.fi/Omniston: provides swap-routing and execution infrastructure.
Confusing these roles would give readers the wrong picture of how the system works.
❑ Why xStocks use a different liquidity mechanism
Traditional AMMs depend on public liquidity pools. But STON.fi says xStocks were the first assets to use its escrow execution layer inside Omniston, allowing swaps to access resolver-priced OTC liquidity rather than relying solely on public AMM pools.
The simplified difference is:
AMM: trade against publicly supplied pool liquidity.
Resolver/escrow: obtain a quoted route from a liquidity provider and settle the transaction through an escrow contract.
The escrow model allows direct asset-to-asset execution and on-chain settlement without requiring STON.fi itself to operate an xStock liquidity pool. STON.fi's current xStocks page explicitly says it does not operate xStock trading pairs or liquidity pools.
❑ The 24/7 question is more complicated than it sounds
A blockchain can process transactions around the clock.
The underlying stock market cannot.
That creates an important distinction between blockchain availability and traditional-market price discovery.
STON.fi promotes 24/7 access to xStocks, but users should understand that the underlying securities still belong to traditional financial markets with their own trading hours and market structure.
This makes liquidity, pricing and market conditions important considerations when traditional markets are closed.
❑ What happens to dividends?
xStocks do not simply reproduce the normal dividend-payment experience of a brokerage account.
STON.fi says dividend treatment is determined by Backed and that, under the Backed Base Prospectus, dividend payouts are automatically reinvested into additional tokens. On TON, this is reflected through Scaled UI Jettons (TEP-526).
STON.fi itself does not distribute the dividends.
❑ The restrictions remain
It would therefore be misleading to describe xStocks as completely permissionless global stocks.
STON.fi currently lists restrictions for residents or citizens of the United States, EU/EEA countries, the United Kingdom, Canada, Australia, Belgium and other jurisdictions where tokenized securities are restricted or prohibited.
Older STON.fi material described access without brokerage accounts or KYC, but the current documentation emphasizes eligibility requirements.
The safer conclusion is that self-custody does not mean the removal of financial regulation.
❑ The bigger RWA question
xStocks illustrate what tokenization actually changes.
The blockchain can make an investment instrument transferable through a wallet, composable with DeFi infrastructure and available through blockchain-based settlement.
But tokenization does not make the underlying financial system disappear.
The issuer still matters.
The custodian still matters.
The legal structure still matters.
The underlying market still matters.
And the token still carries technical and regulatory risks.
That is arguably the most important lesson from xStocks on TON: putting an asset on-chain changes how it can be accessed and used, but it does not erase the institutions, legal claims and risks behind the asset.
For readers evaluating tokenized RWAs, the useful question is therefore not simply "Is this a stock on-chain?"
It is:
"What legal instrument am I holding, what backs it, who controls the underlying assets, and what exactly can I verify on-chain?"
That is where the real substance of tokenized assets begins.
❑ References
Official Sources
STON.fixStocks
https://ston.fi/xstocks
How xStocks Actually Work
https://blog.ston.fi/how-xstocks-actually-work-from-real-world-asset-to-ton-jetton/
Escrow Swaps and Omniston
https://blog.ston.fi/escrow-swaps-a-new-execution-layer-inside-omniston/
xStocks: Explore the Tokenized Market
https://blog.ston.fi/xstocks-explore-tokenized-market/
Proof of Reserves
https://blog.ston.fi/proof-of-reserves-why-on-chain-checks-matter-more-than-glossy-decks/
Backed Legal Documentation
https://assets.backed.fi/legal-documentation
Backed Service Providers
https://assets.backed.fi/legal-documentation/service-providers
Backed Products
https://assets.backed.fi/products
xStocks Official Website
https://xstocks.fi/
xStocks Proof of Reserves
https://defi.xstocks.fi/proof-of-reserve
STON.fi Stonbassadors
https://ston.fi/stonbassadors
Research and Technical Sources
Chainlink Proof of Reserve
https://chain.link/proof-of-reserve
Chainlink Tokenized Stocks Explained
https://chain.link/education-hub/tokenized-stocks-equities-explained
Primary Social Sources
STON.fi on X
https://x.com/ston_fi
STON.fi Blog
https://blog.ston.fi/
Community Sources
STON.fi Reddit Community
https://www.reddit.com/r/Stonfiers/
STON.fi Telegram Community
https://t.me/stonfidex
翻訳参照
STON.fi Goes Cross-Chain: What Actually Happens When TON MeetsEVMCross chain swaps are easy to describe and much harder to build. A user may only see a simple action: choose a token on one blockchain, choose another token on a different blockchain, confirm, and receive the destination asset. Underneath that interface, however, two independent blockchains must coordinate an exchange without relying on the same ledger, while managing liquidity, execution, fees and failure scenarios. On June 16, 2026, STON.fi made TON to EVM cross chain swaps available through its dApp. The initial launch connected TON with Ethereum, Base, BNB Chain and Polygon, with a temporary $1,000 per transaction limit. The important question is therefore not simply whether STON.fi has gone cross chain. It is how the exchange actually happens. ❑ The technology behind the launch was built before the launch The June launch was not an isolated feature. STON.fi's own development history shows Omniston evolving from TON liquidity aggregation into broader execution infrastructure. In May 2026, Omniston v1beta8 introduced cross chain testing through a sandbox, initially demonstrating TON to Base stablecoin flows. The architecture separated quote discovery, execution coordination, settlement and execution tracking. That evolution matters because Omniston was originally designed around liquidity aggregation. Its earlier role was to collect liquidity from multiple sources and find routes for swaps inside TON. The newer architecture adds order settlement, where resolvers can fulfil executable orders across chains. In other words, the cross chain launch represents an extension of an existing execution system rather than a completely separate bridge product. ❑ A cross chain swap does not necessarily require a bridge The usual bridge model is relatively straightforward. An asset is locked or otherwise secured on the source chain. A representation of that asset is then made available on another chain, often as a wrapped token. Omniston takes a different approach. STON.fi describes it as a resolver based cross chain execution layer using Hashed Timelock Contracts, or HTLCs. The destination asset remains native to its destination blockchain instead of being created as a wrapped representation by Omniston. An HTLC combines two conditions: 1. A cryptographic secret must be revealed before the funds can be claimed. 2. If that does not happen within a specified period, the funds can be refunded after the timelock expires. For a cross chain swap, Omniston links two HTLCs. One exists on the source chain and another on the destination chain. Both use the same cryptographic condition. When the secret is revealed, the corresponding claims can occur on both sides. If the required condition is not completed, the timelock provides a refund path. This is the core mechanism behind the claim that the swap can settle atomically. ❑ Where the liquidity comes from The user does not need to find another person willing to take the opposite side of the trade. Instead, Omniston uses an RFQ model. RFQ means Request for Quote. The user requests a price for a particular asset pair and amount. Resolvers respond with executable quotes. A resolver is effectively a professional liquidity provider or market maker that can provide the destination side of a trade. The resolver commits its own destination side liquidity. For example, consider a simplified TON to Ethereum transaction. A user wants to exchange USDT on TON for USDC on Ethereum. The user submits the request. A resolver provides a quote. The source side is secured through the appropriate HTLC, while the resolver commits the destination USDC through a corresponding HTLC on Ethereum. The two sides share the same cryptographic condition. Once the secret is disclosed, the user can claim the destination asset and the resolver can claim the source asset. The resolver therefore does not simply promise to deliver the destination asset later. Its liquidity is committed as part of the settlement process. ❑ What happens when something goes wrong? This is where the HTLC architecture becomes important. Suppose the resolver does not complete its side of the operation. The intended settlement condition is not fulfilled. The timelock eventually allows the relevant funds to return. This creates an important distinction between execution failure and loss of funds. A failed quote does not necessarily mean that money has already moved. If no resolver provides an acceptable quote, the swap does not need to begin. Once an order has entered the settlement process, the HTLC mechanism provides the documented refund path if the required secret is not revealed within the permitted period. However, there is an important technical qualification. STON.fi's later documentation also describes partial fills for larger orders. An order can be divided into independent sub swaps, each with its own settlement conditions. So “atomic” should not be interpreted as meaning every large order must always settle as one indivisible transaction. The more accurate description is that each HTLC linked execution is designed to settle atomically, while larger orders can consist of multiple independently settled portions. ❑ The launch was deliberately limited At launch, STON.fi supported: TON Ethereum Base BNB Chain Polygon The initial asset selection was heavily focused on stablecoins, including USDT and USDC, with PUSD and USDC on Polygon. STON.fi also introduced a temporary $1,000 per transaction limit. This should not be confused with the current network expansion. Later official material documented additional networks and assets, including Arbitrum, Avalanche, TRON, Robinhood Chain and X Layer. The distinction is important because a current network list should not be presented as though every network was available on June 16. The launch was a starting point. ❑ Gasless does not mean fee free Another area that deserves careful explanation is gas. STON.fi's Omniston documentation describes gasless execution for certain EVM source chain flows. Instead of the user submitting the on chain transaction directly, the user signs an authorization or order. The resolver can then submit the transaction and pay the blockchain gas cost. This can remove the need for an EVM user to hold the chain's native gas token for the swap itself. But it does not mean every part of the process is free. A token approval can still require gas depending on the wallet, token and execution path. STON.fi also states that gas is still required when TON is the source chain. So the accurate statement is: Omniston supports gasless execution scenarios, not universally gasless transactions. That distinction matters for anyone evaluating the actual user experience. Security: what has actually been reviewed? ❑ Security claims require another layer of caution. STON.fi's security documentation references a January 2025 Trail of Bits review of its TON AMM DEX v2. That review concerns the DEX system and should not be presented as a full audit of the entire live cross chain Omniston architecture. STON.fi also reports a TonTech review of Omniston escrow contracts that found no critical issues. However, the full report is not publicly available according to the project's documentation. That means the evidence supports saying that specific components have undergone security review. It does not support saying that the entire cross chain system has been independently proven secure. The distinction is important because audits and security reviews reduce uncertainty; they do not eliminate it. ❑ The numbers do not yet tell us how big cross chain adoption is STON.fi currently reports roughly $8 billion in all time volume, $27 million in TVL, 6 million all time swappers and 37 million all time swaps on its website. Those figures provide context for the wider STON.fi protocol. They should not, however, be presented as cross chain statistics. I did not find independently verified data establishing the exact amount of volume, users or transactions generated specifically by the cross chain feature. That leaves an important research gap. The launch itself is verifiable. The scale of adoption is a separate question. ❑ What this changes for TON users The immediate practical change is access. A TON user does not necessarily need to leave the STON.fi interface to access assets on supported EVM networks. Likewise, an EVM user can use the same infrastructure to move into TON based assets where a supported resolver route exists. For developers, the significance is potentially broader. Omniston is not described as infrastructure exclusively for the STON.fi interface. STON.fi says the protocol is designed for integration through SDK and API interfaces, allowing wallets, aggregators, exchanges and other DeFi applications to build on top of it. That means the longer term question is not only how many chains appear inside the STON.fi application. It is whether resolver based execution can become reusable infrastructure for other applications. ❑ What the evidence establishes, and what remains unanswered The evidence establishes that STON.fi launched live TON × EVM cross chain swaps in June 2026. It also establishes the documented architecture: RFQ based quote discovery, resolver supplied liquidity and linked HTLC settlement. What remains less clear is equally important. There is no independently verified dataset in the sources reviewed here showing the cross chain feature's total volume, unique users, resolver concentration or failure rate. The current status of the original $1,000 transaction limit also requires caution because launch and later material reference the limit, while the current documentation does not clearly establish a definitive removal date. These gaps do not invalidate the technology. They simply define what can and cannot responsibly be claimed today. The bigger story STON.fi's cross chain launch is therefore less about adding a “bridge button” to a DEX and more about changing the execution layer underneath the swap. The documented architecture combines RFQ for liquidity discovery, resolvers for destination liquidity and HTLCs for conditional settlement. That approach avoids the need for Omniston itself to mint a wrapped representation of the destination asset. Whether this architecture can scale to deeper liquidity, larger transaction sizes and broader adoption is an empirical question that future usage data will answer. For now, the strongest conclusion is narrower: TON × EVM swaps are live, the mechanism is documented, and the architecture is materially different from a conventional wrapped token bridge. The remaining question is how well that architecture performs at scale. ❑ Reference STON.fi official websitel https://reference-url-citation.invalid/15 STON.fi cross chain launch announcement https://reference-url-citation.invalid/16 Omniston explained: cross chain swaps and HTLCs https://reference-url-citation.invalid/17 Omniston v1beta8 and cross chain execution layer https://reference-url-citation.invalid/18 Omniston gasless execution model https://reference-url-citation.invalid/19 Omniston resolver documentation https://reference-url-citation.invalid/20 STON.fi developer documentation https://reference-url-citation.invalid/21 STON.fi official X account https://reference-url-citation.invalid/22 STON.fi Ambassador Program https://reference-url-citation.invalid/23 STONbassador Guide https://reference-url-citation.invalid/24 Research and Security Sources Trail of Bits, STON.fi TON AMM DEX v2 security review. TonTech review of Omniston escrow contracts. CertiK security monitoring for STON.fi. HackenProof bug bounty information.

STON.fi Goes Cross-Chain: What Actually Happens When TON MeetsEVM

Cross chain swaps are easy to describe and much harder to build.
A user may only see a simple action: choose a token on one blockchain, choose another token on a different blockchain, confirm, and receive the destination asset.
Underneath that interface, however, two independent blockchains must coordinate an exchange without relying on the same ledger, while managing liquidity, execution, fees and failure scenarios.
On June 16, 2026, STON.fi made TON to EVM cross chain swaps available through its dApp. The initial launch connected TON with Ethereum, Base, BNB Chain and Polygon, with a temporary $1,000 per transaction limit.
The important question is therefore not simply whether STON.fi has gone cross chain.
It is how the exchange actually happens.
❑ The technology behind the launch was built before the launch
The June launch was not an isolated feature.
STON.fi's own development history shows Omniston evolving from TON liquidity aggregation into broader execution infrastructure.
In May 2026, Omniston v1beta8 introduced cross chain testing through a sandbox, initially demonstrating TON to Base stablecoin flows. The architecture separated quote discovery, execution coordination, settlement and execution tracking.
That evolution matters because Omniston was originally designed around liquidity aggregation.
Its earlier role was to collect liquidity from multiple sources and find routes for swaps inside TON. The newer architecture adds order settlement, where resolvers can fulfil executable orders across chains.
In other words, the cross chain launch represents an extension of an existing execution system rather than a completely separate bridge product.
❑ A cross chain swap does not necessarily require a bridge
The usual bridge model is relatively straightforward.
An asset is locked or otherwise secured on the source chain. A representation of that asset is then made available on another chain, often as a wrapped token.
Omniston takes a different approach.
STON.fi describes it as a resolver based cross chain execution layer using Hashed Timelock Contracts, or HTLCs. The destination asset remains native to its destination blockchain instead of being created as a wrapped representation by Omniston.
An HTLC combines two conditions:
1. A cryptographic secret must be revealed before the funds can be claimed.
2. If that does not happen within a specified period, the funds can be refunded after the timelock expires.
For a cross chain swap, Omniston links two HTLCs.
One exists on the source chain and another on the destination chain. Both use the same cryptographic condition. When the secret is revealed, the corresponding claims can occur on both sides. If the required condition is not completed, the timelock provides a refund path.
This is the core mechanism behind the claim that the swap can settle atomically.
❑ Where the liquidity comes from
The user does not need to find another person willing to take the opposite side of the trade.
Instead, Omniston uses an RFQ model.
RFQ means Request for Quote.
The user requests a price for a particular asset pair and amount. Resolvers respond with executable quotes. A resolver is effectively a professional liquidity provider or market maker that can provide the destination side of a trade.
The resolver commits its own destination side liquidity.
For example, consider a simplified TON to Ethereum transaction.
A user wants to exchange USDT on TON for USDC on Ethereum.
The user submits the request.
A resolver provides a quote.
The source side is secured through the appropriate HTLC, while the resolver commits the destination USDC through a corresponding HTLC on Ethereum.
The two sides share the same cryptographic condition.
Once the secret is disclosed, the user can claim the destination asset and the resolver can claim the source asset.
The resolver therefore does not simply promise to deliver the destination asset later. Its liquidity is committed as part of the settlement process.
❑ What happens when something goes wrong?
This is where the HTLC architecture becomes important.
Suppose the resolver does not complete its side of the operation.
The intended settlement condition is not fulfilled.
The timelock eventually allows the relevant funds to return.
This creates an important distinction between execution failure and loss of funds.
A failed quote does not necessarily mean that money has already moved. If no resolver provides an acceptable quote, the swap does not need to begin.
Once an order has entered the settlement process, the HTLC mechanism provides the documented refund path if the required secret is not revealed within the permitted period.
However, there is an important technical qualification.
STON.fi's later documentation also describes partial fills for larger orders. An order can be divided into independent sub swaps, each with its own settlement conditions.
So “atomic” should not be interpreted as meaning every large order must always settle as one indivisible transaction.
The more accurate description is that each HTLC linked execution is designed to settle atomically, while larger orders can consist of multiple independently settled portions.
❑ The launch was deliberately limited
At launch, STON.fi supported:
TON
Ethereum
Base
BNB Chain
Polygon
The initial asset selection was heavily focused on stablecoins, including USDT and USDC, with PUSD and USDC on Polygon. STON.fi also introduced a temporary $1,000 per transaction limit.
This should not be confused with the current network expansion.
Later official material documented additional networks and assets, including Arbitrum, Avalanche, TRON, Robinhood Chain and X Layer.
The distinction is important because a current network list should not be presented as though every network was available on June 16.
The launch was a starting point.
❑ Gasless does not mean fee free
Another area that deserves careful explanation is gas.
STON.fi's Omniston documentation describes gasless execution for certain EVM source chain flows.
Instead of the user submitting the on chain transaction directly, the user signs an authorization or order. The resolver can then submit the transaction and pay the blockchain gas cost.
This can remove the need for an EVM user to hold the chain's native gas token for the swap itself.
But it does not mean every part of the process is free.
A token approval can still require gas depending on the wallet, token and execution path. STON.fi also states that gas is still required when TON is the source chain.
So the accurate statement is:
Omniston supports gasless execution scenarios, not universally gasless transactions.
That distinction matters for anyone evaluating the actual user experience.
Security: what has actually been reviewed?
❑ Security claims require another layer of caution.
STON.fi's security documentation references a January 2025 Trail of Bits review of its TON AMM DEX v2. That review concerns the DEX system and should not be presented as a full audit of the entire live cross chain Omniston architecture.
STON.fi also reports a TonTech review of Omniston escrow contracts that found no critical issues. However, the full report is not publicly available according to the project's documentation.
That means the evidence supports saying that specific components have undergone security review.
It does not support saying that the entire cross chain system has been independently proven secure.
The distinction is important because audits and security reviews reduce uncertainty; they do not eliminate it.
❑ The numbers do not yet tell us how big cross chain adoption is
STON.fi currently reports roughly $8 billion in all time volume, $27 million in TVL, 6 million all time swappers and 37 million all time swaps on its website.
Those figures provide context for the wider STON.fi protocol.
They should not, however, be presented as cross chain statistics.
I did not find independently verified data establishing the exact amount of volume, users or transactions generated specifically by the cross chain feature.
That leaves an important research gap.
The launch itself is verifiable.
The scale of adoption is a separate question.
❑ What this changes for TON users
The immediate practical change is access.
A TON user does not necessarily need to leave the STON.fi interface to access assets on supported EVM networks.
Likewise, an EVM user can use the same infrastructure to move into TON based assets where a supported resolver route exists.
For developers, the significance is potentially broader.
Omniston is not described as infrastructure exclusively for the STON.fi interface. STON.fi says the protocol is designed for integration through SDK and API interfaces, allowing wallets, aggregators, exchanges and other DeFi applications to build on top of it.
That means the longer term question is not only how many chains appear inside the STON.fi application.
It is whether resolver based execution can become reusable infrastructure for other applications.
❑ What the evidence establishes, and what remains unanswered
The evidence establishes that STON.fi launched live TON × EVM cross chain swaps in June 2026.
It also establishes the documented architecture: RFQ based quote discovery, resolver supplied liquidity and linked HTLC settlement.
What remains less clear is equally important.
There is no independently verified dataset in the sources reviewed here showing the cross chain feature's total volume, unique users, resolver concentration or failure rate.
The current status of the original $1,000 transaction limit also requires caution because launch and later material reference the limit, while the current documentation does not clearly establish a definitive removal date.
These gaps do not invalidate the technology.
They simply define what can and cannot responsibly be claimed today.
The bigger story
STON.fi's cross chain launch is therefore less about adding a “bridge button” to a DEX and more about changing the execution layer underneath the swap.
The documented architecture combines RFQ for liquidity discovery, resolvers for destination liquidity and HTLCs for conditional settlement.
That approach avoids the need for Omniston itself to mint a wrapped representation of the destination asset.
Whether this architecture can scale to deeper liquidity, larger transaction sizes and broader adoption is an empirical question that future usage data will answer.
For now, the strongest conclusion is narrower:
TON × EVM swaps are live, the mechanism is documented, and the architecture is materially different from a conventional wrapped token bridge. The remaining question is how well that architecture performs at scale.
❑ Reference
STON.fi official websitel
https://reference-url-citation.invalid/15
STON.fi cross chain launch
announcement
https://reference-url-citation.invalid/16
Omniston explained: cross chain swaps and HTLCs
https://reference-url-citation.invalid/17
Omniston v1beta8 and cross chain execution layer
https://reference-url-citation.invalid/18
Omniston gasless execution model
https://reference-url-citation.invalid/19
Omniston resolver documentation
https://reference-url-citation.invalid/20
STON.fi developer documentation
https://reference-url-citation.invalid/21
STON.fi official X account
https://reference-url-citation.invalid/22
STON.fi Ambassador Program
https://reference-url-citation.invalid/23
STONbassador Guide
https://reference-url-citation.invalid/24
Research and Security Sources
Trail of Bits, STON.fi TON AMM DEX v2 security review.
TonTech review of Omniston escrow contracts.
CertiK security monitoring for STON.fi.
HackenProof bug bounty information.
記事
翻訳参照
STON.fi’s 14,000 Financially Active Wallets: What the Number Really Tells Us About TON DeFiOn August 20, 2026, STON.fi published a statistic that immediately stood out: The protocol said it ranked #4 among 100 TON applications by monthly financially active wallets, behind applications including major centralized platforms, and claimed the #1 position among TON DeFi protocols. The same announcement said approximately 14,000 wallets were financially active on STON.fi during the month. At first glance, 14,000 looks like a straightforward user-adoption number. It is not. The more important question is: What exactly counts as a financially active wallet? That question changes how the statistic should be interpreted, and it also reveals something more interesting about how TON DeFi activity is measured. The $50 rule behind the 14,000 The ranking cited by STON.fi comes from the TON Foundation's TON Applications Activity dashboard on Dune. The associated Dune query is specifically focused on Financially Active Monthly Wallets, or fMAW. The methodology is important. A wallet is considered financially active when it sends more than $50 in value to the smart contracts of an application. That means the metric is not simply counting every wallet that connects to STON.fi. It is also not counting the number of transactions. It is measuring wallet addresses that cross a defined threshold of economic activity. Consider two wallets. Wallet A sends $51. Wallet B sends $50,000. Under a threshold-based wallet metric, both can contribute one financially active wallet. The metric therefore tells us something about the breadth of qualifying economic participation, but not how much each wallet actually traded. That distinction is essential. 14,000 wallets does not mean 14,000 people There is another important limitation. The metric counts wallet addresses. A wallet address is not automatically equivalent to a human being. One person can control multiple wallets. A wallet can also belong to an organization or automated system. Therefore, the statement: “14,000 people used STON.fi” would go beyond what the evidence establishes. The more accurate description is: Approximately 14,000 wallet addresses met the relevant financially active threshold during the measured period. This may sound like a small wording difference, but in blockchain analytics it is a major one. Wallet metrics are useful because blockchain addresses are observable on-chain. But observable addresses are not the same thing as verified human identities. Why 14,000 looks strange beside STON.fi’s older wallet numbers Someone familiar with STON.fi's historical announcements may notice something unusual. The protocol has previously reported much larger active-wallet figures. For example, STON.fi reported more than 87,000 active wallets and 882,000+ swaps for June 2026. It has also published older weekly and monthly wallet statistics that reached tens or hundreds of thousands. At first, this could look like a contradiction. But the numbers should not automatically be compared as though they measure the same thing. There are at least three different concepts involved: Metric| What it measures Financially active monthly wallets| Wallets crossing the financial-activity threshold Active wallets| STON.fi's own reported activity metric Cumulative wallets| Wallet addresses accumulated over a historical period The period also matters. A weekly metric, monthly metric and cumulative historical metric answer different questions. So the difference between 14,000 financially active wallets and a much larger “active-wallet” figure does not by itself demonstrate a decline in STON.fi usage. It demonstrates why the definition attached to a number matters as much as the number itself. Fourth among 100 TON applications is not the same as fourth among DeFi protocols The ranking becomes even more interesting when we look at what is actually being ranked. The TON Applications Activity dataset covers more than DeFi. The application categories include areas such as centralized exchanges, decentralized exchanges, bridges, merchants, gaming and liquid staking. That means the statement: “#4 among 100 TON applications” describes a broader application universe. It should not automatically be translated into: “STON.fi is the fourth-largest DeFi protocol on TON.” Those are different claims. STON.fi separately reported that it was #1 among DeFi protocols on TON by the relevant metric. That is a narrower comparison. The distinction matters because centralized exchanges and other non-DeFi applications can appear above or alongside DEXs in the broader TON ranking. In other words, STON.fi's position is interesting precisely because it is competing for financially active wallet activity within the wider TON application economy. What the ranking tells us about TON's application economy The broader ranking provides useful context. The applications appearing near the top include major centralized platforms as well as TON-native applications. This means financially active wallet activity on TON is not concentrated exclusively in DeFi. Users interact with exchanges, wallets, bridges, games, merchants and financial protocols for different reasons. STON.fi's appearance near the top therefore tells us something specific: A TON-native DeFi application is attracting enough economically qualifying wallet activity to rank alongside some of the ecosystem's largest applications. That is meaningful. But it still does not tell us how many individual humans those wallets represent. Independent data adds another dimension Wallet activity is only one way to evaluate a DeFi protocol. Independent analytics provide two other useful measures: TVL, or total value locked, tells us roughly how much capital is held in the protocol. Trading volume tells us how much trading activity passes through it over a specified period. DeFiLlama's current indexed data places STON.fi at roughly $27 million in TVL and around $99 million in 30-day DEX volume in the latest snapshot available for this research. Those figures should not be confused with the 14,000-wallet metric. They answer different questions. The wallet metric asks: How many wallet addresses crossed the financial-activity threshold? TVL asks: How much capital is currently held in the protocol? Volume asks: How much trading activity occurred during the period? A serious assessment of DeFi adoption needs to keep these dimensions separate. STON.fi vs DeDust: what the numbers actually show The comparison with DeDust is useful because both are major TON-native DEXs. According to the current DeFiLlama DEX data used for this research, STON.fi recorded approximately $99 million in 30-day DEX volume, compared with roughly $33 million for DeDust. The same dataset places STON.fi's TVL substantially above DeDust's in the current snapshot. That provides independent evidence that STON.fi is handling significant economic activity within TON's DEX market. But it does not prove that STON.fi is technologically superior. Volume does not measure code quality. TVL does not measure user satisfaction. Wallet count does not measure retention. Those are separate questions. The appropriate conclusion is simply that the available independent metrics show substantial activity and liquidity around STON.fi relative to other TON DEXs. Why wallets, TVL and volume tell three different stories Imagine three protocols. Protocol A has many active wallets but relatively little capital. Protocol B has fewer wallets but a large amount of liquidity. Protocol C has moderate wallet activity but extremely high trading volume because the same wallets trade frequently. Which protocol has the most users? The available metrics cannot answer that question by themselves. This is why DeFi research needs multiple dimensions. Wallet activity Measures the breadth of qualifying address participation. TVL Measures capital deposited in the protocol. Trading volume Measures the value of trades occurring over a period. Transaction activity Measures how frequently blockchain interactions occur. None of these is a perfect proxy for human adoption. Together, however, they provide a much more useful picture. TON has substantial stablecoin liquidity, but that does not equal DeFi TVL There is also a broader ecosystem question. Current DeFiLlama data puts TON's stablecoin market capitalization at roughly $790 million, while TON's DeFi TVL is around $59 million in the same general snapshot. These figures should not be directly divided to produce a “DeFi adoption rate.” Stablecoins can sit in wallets, exchanges, payment systems and other applications without being deposited into DeFi. But the difference highlights an important point: Having liquidity available on a blockchain is not the same as having that liquidity deployed into DeFi protocols. For TON, that creates a larger ecosystem question. How much of the network's available capital actually becomes productive DeFi liquidity? The 14,000-wallet statistic cannot answer that by itself. What the 14,000 figure can actually tell us After examining the metric and the surrounding data, the most defensible interpretation is fairly specific. The 14,000 figure indicates that approximately 14,000 wallet addresses met the relevant financial-activity condition during the measured period. That is evidence of meaningful economically qualifying activity. Combined with independent data showing substantial STON.fi trading volume and TVL, the evidence suggests that STON.fi is not merely appearing in the TON application rankings because of a historical reputation. There is measurable economic activity happening around the protocol. But several stronger conclusions remain unsupported. The number does not prove: - 14,000 individual people; - 14,000 long-term users; - user retention; - organic adoption; - profitability; - user satisfaction; - technical superiority; - or permanent market leadership. Those conclusions would require additional evidence. The missing metric is often retention A monthly active-wallet number tells us who qualified during a particular period. It does not tell us who came back. That distinction is especially important in DeFi. Suppose 14,000 wallets qualify in August. There are several possibilities. The same wallets could have been active in July and June. Or most could be new. Or some could have interacted only once. The monthly number alone cannot distinguish between these scenarios. To understand retention, we would need cohort data showing how many wallets return over subsequent periods. Without that data, “14,000 financially active wallets” should remain an activity statistic, not a retention statistic. The metric is useful precisely because its limitations are visible It would be easy to dismiss the 14,000 figure because it does not measure everything. That would also be a mistake. Financially active wallets are still a useful analytical metric. The $50 threshold attempts to distinguish economically meaningful interactions from trivial activity. It provides a standardized way to compare applications within the same dataset. And because the ranking covers multiple types of TON applications, it can help reveal where meaningful financial activity is occurring across the ecosystem. The important thing is not to ask the metric to answer questions it was never designed to answer. A better way to measure TON DeFi If the goal is to understand whether TON DeFi is actually growing, a stronger framework would combine several indicators: 1. Financially active wallets How many addresses cross a meaningful economic-activity threshold? 2. Repeat activity How many of those addresses return? 3. volume How much economic activity is taking place? 4. TVL How much capital is committed to the ecosystem? 5. Liquidity depth How much capital is actually available for trading without excessive price impact? 6. Transaction activity How frequently are users interacting with protocols? 7. Protocol distribution Is activity spread across multiple DeFi applications or concentrated in one? 8. Time series Are these metrics growing consistently, or are they driven by short-lived events? That framework gives us a much better picture than any single wallet number. So, what does STON.fi’s 14,000 actually mean? The most important part of the August 20 announcement is not simply the number 14,000. It is the methodology behind it. STON.fi reported approximately 14,000 financially active monthly wallets and a #4 position among 100 TON applications. The underlying TON Foundation Dune framework defines financially active wallets using a financial threshold, making the figure different from ordinary active-wallet statistics. Independent data also shows substantial STON.fi trading volume and TVL within the TON ecosystem. Taken together, the evidence supports a measured conclusion: STON.fi has significant economically qualifying activity within TON, and its position in the financially active-wallet ranking is consistent with its substantial activity as a TON DEX. But the evidence does not justify turning 14,000 wallet addresses into 14,000 people, or turning one ranking into proof of permanent market dominance. That distinction is important beyond STON.fi. It is a useful lesson for evaluating DeFi generally: A statistic becomes meaningful only after we understand what is being counted. References Official Sources STON.fi — August 20, 2026 announcement (https://x.com/ston_fi/status/2090374865492619548 STON.fi — Official website https://ston.fi/ STON.fi — Documentation https://docs.ston.fi/ STON.fi — Guide https://guide.ston.fi/en/ STON.fi — Stonbassadors Program https://ston.fi/stonbassadors STON.fi — Official Blog https://blog.ston.fi/ --- TON Foundation / Analytics TON Applications Activity — Dune https://dune.com/ton_foundation/application-activity Financially Active Monthly Wallets — Dune https://dune.com/queries/4593278/7656787 Independent Research DeFiLlama — TON https://defillama.com/chain/ton DeFiLlama — STON.fi https://defillama.com/protocol/ston.fi DeFiLlama — TON DEX Rankings https://defillama.com/dexs/chain/ton

STON.fi’s 14,000 Financially Active Wallets: What the Number Really Tells Us About TON DeFi

On August 20, 2026, STON.fi published a statistic that immediately stood out:
The protocol said it ranked #4 among 100 TON applications by monthly financially active wallets, behind applications including major centralized platforms, and claimed the #1 position among TON DeFi protocols.
The same announcement said approximately 14,000 wallets were financially active on STON.fi during the month.
At first glance, 14,000 looks like a straightforward user-adoption number.
It is not.
The more important question is:
What exactly counts as a financially active wallet?
That question changes how the statistic should be interpreted, and it also reveals something more interesting about how TON DeFi activity is measured.
The $50 rule behind the 14,000
The ranking cited by STON.fi comes from the TON Foundation's TON Applications Activity dashboard on Dune.
The associated Dune query is specifically focused on Financially Active Monthly Wallets, or fMAW.
The methodology is important.
A wallet is considered financially active when it sends more than $50 in value to the smart contracts of an application.
That means the metric is not simply counting every wallet that connects to STON.fi.
It is also not counting the number of transactions.
It is measuring wallet addresses that cross a defined threshold of economic activity.
Consider two wallets.
Wallet A sends $51.
Wallet B sends $50,000.
Under a threshold-based wallet metric, both can contribute one financially active wallet.
The metric therefore tells us something about the breadth of qualifying economic participation, but not how much each wallet actually traded.
That distinction is essential.
14,000 wallets does not mean 14,000 people
There is another important limitation.
The metric counts wallet addresses.
A wallet address is not automatically equivalent to a human being.
One person can control multiple wallets. A wallet can also belong to an organization or automated system.
Therefore, the statement:
“14,000 people used STON.fi”
would go beyond what the evidence establishes.
The more accurate description is:
Approximately 14,000 wallet addresses met the relevant financially active threshold during the measured period.
This may sound like a small wording difference, but in blockchain analytics it is a major one.
Wallet metrics are useful because blockchain addresses are observable on-chain.
But observable addresses are not the same thing as verified human identities.
Why 14,000 looks strange beside STON.fi’s older wallet numbers
Someone familiar with STON.fi's historical announcements may notice something unusual.
The protocol has previously reported much larger active-wallet figures.
For example, STON.fi reported more than 87,000 active wallets and 882,000+ swaps for June 2026.
It has also published older weekly and monthly wallet statistics that reached tens or hundreds of thousands.
At first, this could look like a contradiction.
But the numbers should not automatically be compared as though they measure the same thing.
There are at least three different concepts involved:
Metric| What it measures
Financially active monthly wallets| Wallets crossing the financial-activity threshold
Active wallets| STON.fi's own reported activity metric
Cumulative wallets| Wallet addresses accumulated over a historical period
The period also matters.
A weekly metric, monthly metric and cumulative historical metric answer different questions.
So the difference between 14,000 financially active wallets and a much larger “active-wallet” figure does not by itself demonstrate a decline in STON.fi usage.
It demonstrates why the definition attached to a number matters as much as the number itself.
Fourth among 100 TON applications is not the same as fourth among DeFi protocols
The ranking becomes even more interesting when we look at what is actually being ranked.
The TON Applications Activity dataset covers more than DeFi.
The application categories include areas such as centralized exchanges, decentralized exchanges, bridges, merchants, gaming and liquid staking.
That means the statement:
“#4 among 100 TON applications”
describes a broader application universe.
It should not automatically be translated into:
“STON.fi is the fourth-largest DeFi protocol on TON.”
Those are different claims.
STON.fi separately reported that it was #1 among DeFi protocols on TON by the relevant metric.
That is a narrower comparison.
The distinction matters because centralized exchanges and other non-DeFi applications can appear above or alongside DEXs in the broader TON ranking.
In other words, STON.fi's position is interesting precisely because it is competing for financially active wallet activity within the wider TON application economy.
What the ranking tells us about TON's application economy
The broader ranking provides useful context.
The applications appearing near the top include major centralized platforms as well as TON-native applications.
This means financially active wallet activity on TON is not concentrated exclusively in DeFi.
Users interact with exchanges, wallets, bridges, games, merchants and financial protocols for different reasons.
STON.fi's appearance near the top therefore tells us something specific:
A TON-native DeFi application is attracting enough economically qualifying wallet activity to rank alongside some of the ecosystem's largest applications.
That is meaningful.
But it still does not tell us how many individual humans those wallets represent.
Independent data adds another dimension
Wallet activity is only one way to evaluate a DeFi protocol.
Independent analytics provide two other useful measures:
TVL, or total value locked, tells us roughly how much capital is held in the protocol.
Trading volume tells us how much trading activity passes through it over a specified period.
DeFiLlama's current indexed data places STON.fi at roughly $27 million in TVL and around $99 million in 30-day DEX volume in the latest snapshot available for this research.
Those figures should not be confused with the 14,000-wallet metric.
They answer different questions.
The wallet metric asks:
How many wallet addresses crossed the financial-activity threshold?
TVL asks:
How much capital is currently held in the protocol?
Volume asks:
How much trading activity occurred during the period?
A serious assessment of DeFi adoption needs to keep these dimensions separate.
STON.fi vs DeDust: what the numbers actually show
The comparison with DeDust is useful because both are major TON-native DEXs.
According to the current DeFiLlama DEX data used for this research, STON.fi recorded approximately $99 million in 30-day DEX volume, compared with roughly $33 million for DeDust.
The same dataset places STON.fi's TVL substantially above DeDust's in the current snapshot.
That provides independent evidence that STON.fi is handling significant economic activity within TON's DEX market.
But it does not prove that STON.fi is technologically superior.
Volume does not measure code quality.
TVL does not measure user satisfaction.
Wallet count does not measure retention.
Those are separate questions.
The appropriate conclusion is simply that the available independent metrics show substantial activity and liquidity around STON.fi relative to other TON DEXs.
Why wallets, TVL and volume tell three different stories
Imagine three protocols.
Protocol A has many active wallets but relatively little capital.
Protocol B has fewer wallets but a large amount of liquidity.
Protocol C has moderate wallet activity but extremely high trading volume because the same wallets trade frequently.
Which protocol has the most users?
The available metrics cannot answer that question by themselves.
This is why DeFi research needs multiple dimensions.
Wallet activity
Measures the breadth of qualifying address participation.
TVL
Measures capital deposited in the protocol.
Trading volume
Measures the value of trades occurring over a period.
Transaction activity
Measures how frequently blockchain interactions occur.
None of these is a perfect proxy for human adoption.
Together, however, they provide a much more useful picture.
TON has substantial stablecoin liquidity, but that does not equal DeFi TVL
There is also a broader ecosystem question.
Current DeFiLlama data puts TON's stablecoin market capitalization at roughly $790 million, while TON's DeFi TVL is around $59 million in the same general snapshot.
These figures should not be directly divided to produce a “DeFi adoption rate.”
Stablecoins can sit in wallets, exchanges, payment systems and other applications without being deposited into DeFi.
But the difference highlights an important point:
Having liquidity available on a blockchain is not the same as having that liquidity deployed into DeFi protocols.
For TON, that creates a larger ecosystem question.
How much of the network's available capital actually becomes productive DeFi liquidity?
The 14,000-wallet statistic cannot answer that by itself.
What the 14,000 figure can actually tell us
After examining the metric and the surrounding data, the most defensible interpretation is fairly specific.
The 14,000 figure indicates that approximately 14,000 wallet addresses met the relevant financial-activity condition during the measured period.
That is evidence of meaningful economically qualifying activity.
Combined with independent data showing substantial STON.fi trading volume and TVL, the evidence suggests that STON.fi is not merely appearing in the TON application rankings because of a historical reputation.
There is measurable economic activity happening around the protocol.
But several stronger conclusions remain unsupported.
The number does not prove:
- 14,000 individual people;
- 14,000 long-term users;
- user retention;
- organic adoption;
- profitability;
- user satisfaction;
- technical superiority;
- or permanent market leadership.
Those conclusions would require additional evidence.
The missing metric is often retention
A monthly active-wallet number tells us who qualified during a particular period.
It does not tell us who came back.
That distinction is especially important in DeFi.
Suppose 14,000 wallets qualify in August.
There are several possibilities.
The same wallets could have been active in July and June.
Or most could be new.
Or some could have interacted only once.
The monthly number alone cannot distinguish between these scenarios.
To understand retention, we would need cohort data showing how many wallets return over subsequent periods.
Without that data, “14,000 financially active wallets” should remain an activity statistic, not a retention statistic.
The metric is useful precisely because its limitations are visible
It would be easy to dismiss the 14,000 figure because it does not measure everything.
That would also be a mistake.
Financially active wallets are still a useful analytical metric.
The $50 threshold attempts to distinguish economically meaningful interactions from trivial activity.
It provides a standardized way to compare applications within the same dataset.
And because the ranking covers multiple types of TON applications, it can help reveal where meaningful financial activity is occurring across the ecosystem.
The important thing is not to ask the metric to answer questions it was never designed to answer.
A better way to measure TON DeFi
If the goal is to understand whether TON DeFi is actually growing, a stronger framework would combine several indicators:
1. Financially active wallets
How many addresses cross a meaningful economic-activity threshold?
2. Repeat activity
How many of those addresses return?
3. volume
How much economic activity is taking place?
4. TVL
How much capital is committed to the ecosystem?
5. Liquidity depth
How much capital is actually available for trading without excessive price impact?
6. Transaction activity
How frequently are users interacting with protocols?
7. Protocol distribution
Is activity spread across multiple DeFi applications or concentrated in one?
8. Time series
Are these metrics growing consistently, or are they driven by short-lived events?
That framework gives us a much better picture than any single wallet number.
So, what does STON.fi’s 14,000 actually mean?
The most important part of the August 20 announcement is not simply the number 14,000.
It is the methodology behind it.
STON.fi reported approximately 14,000 financially active monthly wallets and a #4 position among 100 TON applications.
The underlying TON Foundation Dune framework defines financially active wallets using a financial threshold, making the figure different from ordinary active-wallet statistics.
Independent data also shows substantial STON.fi trading volume and TVL within the TON ecosystem.
Taken together, the evidence supports a measured conclusion:
STON.fi has significant economically qualifying activity within TON, and its position in the financially active-wallet ranking is consistent with its substantial activity as a TON DEX.
But the evidence does not justify turning 14,000 wallet addresses into 14,000 people, or turning one ranking into proof of permanent market dominance.
That distinction is important beyond STON.fi.
It is a useful lesson for evaluating DeFi generally:
A statistic becomes meaningful only after we understand what is being counted.
References
Official Sources
STON.fi — August 20, 2026 announcement
(https://x.com/ston_fi/status/2090374865492619548
STON.fi — Official website
https://ston.fi/
STON.fi — Documentation
https://docs.ston.fi/
STON.fi — Guide
https://guide.ston.fi/en/
STON.fi — Stonbassadors Program
https://ston.fi/stonbassadors
STON.fi —
Official Blog
https://blog.ston.fi/
---
TON Foundation / Analytics
TON Applications Activity — Dune
https://dune.com/ton_foundation/application-activity
Financially Active Monthly Wallets — Dune
https://dune.com/queries/4593278/7656787
Independent Research
DeFiLlama — TON
https://defillama.com/chain/ton
DeFiLlama — STON.fi
https://defillama.com/protocol/ston.fi
DeFiLlama — TON DEX Rankings
https://defillama.com/dexs/chain/ton
翻訳参照
big opportunity
big opportunity
引用されたコンテンツは削除されました
規制を損なわずにプライバシーを守る @Dusk_Foundation kについて興味深いのは、プライバシーとは財務活動を完全に不可視にすることではない、という点です。 Duskは、公的かつ機密性のある取引モデルと選択的開示を組み合わせており、機微情報を非公開のまま維持しつつ、認可された関係者は必要な範囲で検証できるようにします。 この区別は、機密性とコンプライアンスの両方が必要とされる規制対象の金融分野で重要になります。 $DUSK #dusk $DUSK @Dusk_Foundation
規制を損なわずにプライバシーを守る

@Dusk kについて興味深いのは、プライバシーとは財務活動を完全に不可視にすることではない、という点です。

Duskは、公的かつ機密性のある取引モデルと選択的開示を組み合わせており、機微情報を非公開のまま維持しつつ、認可された関係者は必要な範囲で検証できるようにします。

この区別は、機密性とコンプライアンスの両方が必要とされる規制対象の金融分野で重要になります。

$DUSK
#dusk $DUSK @Dusk
なぜ黄昏が存在するのか @Dusk_Foundation は、オンチェーン・ファイナンスにおける難しい課題に取り組んでいます。つまり、すべての機微な金融情報を公にさらすことなく、ブロックチェーンの透明性と決済をどう実現するのか? そのレイヤー1は、機密取引、選択的開示、コンプライアンス重視のスマートコントラクト、規制対象のデジタル資産に対する決定論的な決済を組み合わせています。 これにより、$DUSK は、従来のRWA(現実世界資産)という文脈を超えて注目に値します。より大きな問いは、このインフラが実際の金融市場の取引活動にまでつながるかどうかです。 #dusk #dusk $DUSK @Dusk_Foundation
なぜ黄昏が存在するのか

@Dusk は、オンチェーン・ファイナンスにおける難しい課題に取り組んでいます。つまり、すべての機微な金融情報を公にさらすことなく、ブロックチェーンの透明性と決済をどう実現するのか?

そのレイヤー1は、機密取引、選択的開示、コンプライアンス重視のスマートコントラクト、規制対象のデジタル資産に対する決定論的な決済を組み合わせています。

これにより、$DUSK は、従来のRWA(現実世界資産)という文脈を超えて注目に値します。より大きな問いは、このインフラが実際の金融市場の取引活動にまでつながるかどうかです。

#dusk

#dusk $DUSK @Dusk
翻訳参照
good
good
Femifire
·
--
取引におけるリアルブレイクアウトとフェイクアウトの違いをどうやって知ることができますか?
トレーダーとして学んだ最も高価な教訓の一つは、リアルブレイクアウトをフェイクアウトと混同することでした。初めの頃、私は抵抗線を超えたりサポートラインを下回るすべての動きをその動きだと捉え、トラップされ、ストップアウトされ、価格が私の知らないところで逆転するのを見ていました。時が経つにつれて、この区別を正しく理解することがすべてであることが明らかになりました。たとえあなたが暗号、株、外国為替、または先物を取引しても。

本物のブレイクアウトとは何ですか?
実際の(真の)ブレイクアウトは、価格が決定的に重要なレベル、サポート、抵抗、トレンドライン、レンジの高値/安値、またはパターンの境界を超えて移動し、そこに留まるときに発生します。それは供給と需要の真の変化を反映し、一方の側が明確にコントロールを取ることを示します。
記事
翻訳参照
STON.fi as Omniston: Aggregation & Cross-Chain Execution LayerFor much of its history, STON.fi was primarily understood as an automated market maker (AMM) and decentralized exchange on TON. That description is still accurate, but it no longer captures the entire architecture. STON.fi now operates Omniston as a separate liquidity aggregation and cross-chain execution layer. Instead of relying on a single AMM pool, Omniston can request quotes from multiple liquidity sources, compare executable routes, and coordinate settlement. Its newer cross-chain architecture extends that model beyond TON. The distinction matters. STON.fi is the AMM and DEX. Omniston is the routing, aggregation and execution layer that can sit above multiple liquidity sources. Understanding that separation is important for anyone trying to understand what STON.fi has actually built. ❑ From an AMM to a broader execution architecture An AMM, or automated market maker, allows users to trade against liquidity pools rather than directly matching with another trader. In a conventional AMM model, a user selects a token pair and the protocol calculates the exchange rate from the assets held in the relevant pool. That model works, but it has an obvious limitation: liquidity is fragmented. A trader may find one price on STON.fi, another on DeDust, and another from a market maker. The user or application then needs a mechanism for determining which route provides the most suitable execution. This is the problem Omniston was initially designed to address. STON.fi's documentation describes Omniston as a liquidity aggregation protocol that pulls liquidity from multiple sources and determines routes across DEXs and resolvers. Its developer guide demonstrates swaps involving STON.fi V1, STON.fi V2 and DeDust. That means Omniston should not be confused with another AMM pool. It is an aggregation layer. ❑ The important change was moving from pools to quotes The central mechanism behind Omniston is an RFQ — Request for Quote. Instead of simply asking one pool for a price, an application can request quotes from participating liquidity sources. The basic sequence is: Request → Quote → Selection → Execution → Settlement Resolvers are entities that provide executable quotes to Omniston. Multiple resolvers can compete for an order, after which a quote is selected for execution. This creates a different liquidity model from a conventional AMM. An AMM commits liquidity to a pool. A resolver can instead respond to individual orders with a price and execution proposal. For users, the practical implication is that liquidity does not necessarily have to come from one pool or even one DEX. ❑ Why aggregation matters on TON Liquidity fragmentation is a structural issue in decentralized markets. If liquidity is distributed across several exchanges, applications have two choices. They can integrate with each exchange separately, or they can use an aggregation layer that handles those connections. STON.fi's Omniston documentation describes the second approach: a single integration can query multiple liquidity sources and route trades through the appropriate source. The developer documentation also provides an example in which an application requests an RFQ and Omniston determines a route across multiple DEXs. This is particularly relevant for applications that do not want to maintain separate integrations with every DEX. The architecture therefore changes the role of STON.fi. Instead of only asking: Which pool should execute this trade? the application can ask: Which available liquidity source can provide an executable route for this trade? That is a substantially different layer of abstraction. ❑ October 2025 marked an important transition Omniston was not always the default execution path for STON.fi users. In October 2025, STON.fi announced that Omniston had moved from an optional feature to the default smart-routing system in its dApp. The announcement stated that Omniston would source liquidity from multiple DEXs and that the system had already processed more than 29 million swaps and over $6.5 billion in transaction volume at that point. This is an important historical distinction. Omniston began as an aggregation mechanism, but its integration into the main STON.fi trading interface made it part of the normal execution path. The next stage was to take the same architecture beyond a single blockchain. ❑ Cross-chain execution changes the problem Moving tokens between blockchains introduces another layer of complexity. A conventional cross-chain workflow often involves a bridge or intermediary infrastructure that transfers value between networks. Omniston takes a different approach. Its current architecture uses resolvers and linked HTLCs — Hash Time-Locked Contracts — to coordinate the two sides of a cross-chain transaction. The current STON.fi architecture describes the flow as: 1. A user requests a cross-chain swap. 2. Omniston sends an RFQ to resolvers. 3. Resolvers return executable quotes. 4. The selected liquidity is locked in linked HTLC contracts. 5. The transaction either settles atomically or the parties are refunded. The important concept here is that the destination liquidity is supplied by the resolver. STON.fi describes resolvers as providing destination-side liquidity for individual orders rather than requiring an application to maintain pre-funded balances across every supported network. ❑ HTLCs are what connect the two sides HTLC stands for Hash Time-Locked Contract. The mechanism combines two conditions. A hashlock requires knowledge of a secret before funds can be claimed. A timelock establishes a deadline after which the transaction can be cancelled and funds returned. In a cross-chain atomic swap, these conditions can connect the source-side and destination-side transactions. The intended result is straightforward: Either the swap completes according to the agreed conditions, or the funds can be returned. STON.fi's current Omniston description explicitly states that linked HTLC contracts are used across chains and that the swap settles atomically or participants are refunded. That does not mean the architecture is risk-free. The security of such a system still depends on the correctness of the contracts, the participating chains, the resolver implementation and the execution conditions. The relevant point is narrower: Omniston's cross-chain design attempts to coordinate native-asset swaps through atomic settlement rather than depending on a conventional wrapped-asset bridge model. ❑ Omniston does not eliminate the role of liquidity providers It changes where liquidity can come from. For a traditional AMM, liquidity providers deposit assets into pools and receive LP tokens representing their position. With Omniston's resolver model, a resolver responds to RFQs and, for cross-chain transactions, provides the destination-side liquidity required to complete an order. STON.fi says resolvers compete on pricing and execution, with the winning resolver supplying the required destination liquidity. This creates a market structure where liquidity providers can compete for order flow. The resolver is therefore not simply another backend API. It is an execution participant. ❑ The resolver model introduces a new trust and infrastructure layer Resolvers must interact with Omniston's technical infrastructure and respond to quote requests. STON.fi's documentation describes a resolver as an entity that provides quotes and executes trades through the aggregation protocol. This creates several dependencies that are worth recognizing. The system depends on: accurate quotes; functioning resolver infrastructure; settlement contracts; blockchain execution; RFQ deadlines; correct HTLC behaviour; and sufficient resolver liquidity. The architecture therefore shifts some of the complexity away from the user and application developer, but that complexity does not disappear. It moves into the execution layer. ❑ Cross-chain support has expanded beyond TON The current Omniston website lists TON, TRON, Ethereum, Base, BNB Chain, Polygon, Arbitrum, Avalanche and Robinhood Chain as live networks. There is an important documentation discrepancy worth recording. Some older Omniston documentation still describes TRON as upcoming, while the current product page lists TRON as live. Rather than treating the older documentation as definitive, the safest interpretation is that the documentation and production rollout were updated at different times. For actual availability, the live RFQ infrastructure is the more relevant operational source. This is also why supported-chain lists should be treated as time-sensitive rather than permanent protocol specifications. ❑ The architecture is also designed for developers Omniston is not only intended to be used through the STON.fi interface. STON.fi provides developer tooling for applications that want to integrate the system. The documentation includes SDK-based integration for requesting quotes, constructing transactions and tracking trades. The current guide demonstrates integration with React and TON wallet connectivity, while the Omniston platform provides SDK, API/RFQ and widget infrastructure. That distinction is significant. If Omniston were only a feature inside the STON.fi application, its architectural role would be relatively narrow. By exposing the execution infrastructure to other applications, STON.fi is attempting to make Omniston a reusable liquidity and execution layer. The architecture is therefore better understood as infrastructure rather than simply a front-end trading feature. ❑ Fees are part of the execution model The current Omniston product page describes two fee components: a protocol fee determined per asset pair; an integrator fee configured by the application using Omniston. The stated integrator-fee range is 0.01 to 100 basis points, with the fee collected in the destination asset and enforced at the smart-contract level. A basis point is one hundredth of a percentage point. Therefore: 1 basis point = 0.01% 10 basis points = 0.10% 100 basis points = 1% The existence of configurable fees means Omniston is not simply an open routing API with no economic layer. It has an execution model in which integrators can incorporate their own fee into the quoted transaction. ❑ The scale question needs careful interpretation STON.fi currently presents Omniston as powering every swap on STON.fi and describes the system as processing tens of millions of swaps and billions of dollars in volume. However, there is an important analytical limitation. Public data does not cleanly isolate Omniston-only volume from the historical volume of the underlying STON.fi DEX. This matters because Omniston became the default routing mechanism only after its integration into the STON.fi dApp. DefiLlama currently reports STON.fi as a TON-based AMM with approximately $27.15 million TVL and $104.21 million in 30-day DEX volume at the time of its latest retrieved snapshot. It also reports approximately $8.50 billion in cumulative DEX volume. These figures describe the STON.fi protocol according to DefiLlama's methodology. They should not be presented as independently verified Omniston-only statistics. That distinction is important when evaluating the scale of the execution layer. ❑ Security evidence exists, but it has boundaries Security claims should also be separated by scope. STON.fi's broader AMM v2 contracts were reviewed by Trail of Bits in January 2025. Separately, STON.fi announced that its Omniston escrow contracts underwent an audit by TonTech in August 2025. These are useful security signals, but an audit is not equivalent to proving that a protocol is secure. An audit represents a review of the specified code and scope at a particular point in time. The cross-chain architecture also introduces multiple components and networks, meaning the security question extends beyond a single smart contract. For that reason, the appropriate conclusion is that Omniston has undergone documented security review of relevant components, while the existence of an audit should not be interpreted as a guarantee against future vulnerabilities. ❑ What Omniston changes for STON.fi The evolution can be viewed in three stages. 1. AMM STON.fi provides liquidity pools and automated market-making infrastructure on TON. 2. Aggregator Omniston connects multiple liquidity sources and uses RFQs to determine executable routes. 3. Cross-chain execution layer The newer architecture extends RFQ-based execution beyond TON and coordinates source and destination liquidity using atomic settlement mechanisms. That progression changes the scope of the infrastructure. The AMM is primarily a liquidity venue. Omniston is an execution coordinator. The two systems are related, but they are not interchangeable. ❑ The unresolved questions are as important as the architecture Several details remain difficult to verify from publicly accessible material. The exact number of active resolvers is not clearly disclosed in current public documentation. The complete list of DEX liquidity sources aggregated at any given moment is also not presented as a permanent public list. Exact HTLC timeout parameters can depend on the execution flow rather than being represented by one universal number. And the publicly available data does not provide a clean, independent dashboard showing Omniston-only volume across every integrated application and chain. These are not necessarily flaws in the architecture. They are simply limitations on what can currently be established from public evidence. A research-based assessment should preserve those distinctions rather than filling them with assumptions. ❑ Where Omniston fits in the broader STON.fi architecture The simplest way to understand the system is to separate its components. STON.fi AMM: Provides automated market-making and liquidity pools on TON. Omniston: Aggregates liquidity and requests executable quotes. Resolvers: Provide quotes and, for cross-chain execution, destination-side liquidity. HTLC settlement: Coordinates the source and destination sides of supported cross-chain transactions. SDK/API: Allows external applications to integrate the execution infrastructure. Together, these components represent a move from a single decentralized exchange toward a broader liquidity-routing and execution architecture. Whether that architecture ultimately becomes widely used across applications and chains is an adoption question that cannot be answered simply from the existence of the technology. What can be established today is more specific: Omniston has evolved from TON-focused liquidity aggregation into the cross-chain execution infrastructure that STON.fi uses for its own swaps and makes available for external integrations. That is the more precise description of what the system is. ❑References Official Sources STON.fi — Omniston https://ston.fi/omniston STON.fi Documentation — Omniston Overview https://docs.ston.fi/developer-section/omniston/overview STON.fi Documentation — Omniston Resolvers https://docs.ston.fi/developer-section/omniston/resolvers STON.fi Documentation — Omniston Developer Guide https://docs.ston.fi/developer-section/quickstart/omniston STON.fi GitHub — Omniston SDK https://github.com/ston-fi/omniston-sdk STON.fi Blog — Omniston now powers every swap on STON.fi https://blog.ston.fi/omniston-now-powers-every-swap-on-ston-fi/ STONfi x https://x.com/ston_fi Research & Analytics DefiLlama — STON.fi Metrics https://defillama.com/protocol/ston.fi Trail of Bits — STON.fi TON AMM DEX v2 Security Review https://github.com/trailofbits/publications/blob/master/reviews/2025-01-stonfi-ton-amm-dex-v2-securityreview.pdf HackenProof — STON.fi DEX Smart Contracts v2 Bug Bounty https://hackenproof.com/programs/ston-dot-fi-dex-smart-contracts-v2 CertiK — STON.fi Security Profile https://skynet.certik.com/projects/ston-fi Community & Program Sources STONbassadors — Official Program https://ston.fi/stonbassadors STONbassadors Guidelines https://ambassadors.ston.fi/ Written by Binnoreen X: https://x.com/Bin_noreen Telegram https://t.me/binnoreen

STON.fi as Omniston: Aggregation & Cross-Chain Execution Layer

For much of its history, STON.fi was primarily understood as an automated market maker (AMM) and decentralized exchange on TON.
That description is still accurate, but it no longer captures the entire architecture.
STON.fi now operates Omniston as a separate liquidity aggregation and cross-chain execution layer. Instead of relying on a single AMM pool, Omniston can request quotes from multiple liquidity sources, compare executable routes, and coordinate settlement. Its newer cross-chain architecture extends that model beyond TON.
The distinction matters.
STON.fi is the AMM and DEX. Omniston is the routing, aggregation and execution layer that can sit above multiple liquidity sources.
Understanding that separation is important for anyone trying to understand what STON.fi has actually built.
❑ From an AMM to a broader execution architecture
An AMM, or automated market maker, allows users to trade against liquidity pools rather than directly matching with another trader.
In a conventional AMM model, a user selects a token pair and the protocol calculates the exchange rate from the assets held in the relevant pool.
That model works, but it has an obvious limitation: liquidity is fragmented.
A trader may find one price on STON.fi, another on DeDust, and another from a market maker. The user or application then needs a mechanism for determining which route provides the most suitable execution.
This is the problem Omniston was initially designed to address.
STON.fi's documentation describes Omniston as a liquidity aggregation protocol that pulls liquidity from multiple sources and determines routes across DEXs and resolvers. Its developer guide demonstrates swaps involving STON.fi V1, STON.fi V2 and DeDust.
That means Omniston should not be confused with another AMM pool.
It is an aggregation layer.
❑ The important change was moving from pools to quotes
The central mechanism behind Omniston is an RFQ — Request for Quote.
Instead of simply asking one pool for a price, an application can request quotes from participating liquidity sources.
The basic sequence is:
Request → Quote → Selection → Execution → Settlement
Resolvers are entities that provide executable quotes to Omniston. Multiple resolvers can compete for an order, after which a quote is selected for execution.
This creates a different liquidity model from a conventional AMM.
An AMM commits liquidity to a pool.
A resolver can instead respond to individual orders with a price and execution proposal.
For users, the practical implication is that liquidity does not necessarily have to come from one pool or even one DEX.
❑ Why aggregation matters on TON
Liquidity fragmentation is a structural issue in decentralized markets.
If liquidity is distributed across several exchanges, applications have two choices.
They can integrate with each exchange separately, or they can use an aggregation layer that handles those connections.
STON.fi's Omniston documentation describes the second approach: a single integration can query multiple liquidity sources and route trades through the appropriate source.
The developer documentation also provides an example in which an application requests an RFQ and Omniston determines a route across multiple DEXs.
This is particularly relevant for applications that do not want to maintain separate integrations with every DEX.
The architecture therefore changes the role of STON.fi.
Instead of only asking:
Which pool should execute this trade?
the application can ask:
Which available liquidity source can provide an executable route for this trade?
That is a substantially different layer of abstraction.
❑ October 2025 marked an important transition
Omniston was not always the default execution path for STON.fi users.
In October 2025, STON.fi announced that Omniston had moved from an optional feature to the default smart-routing system in its dApp.
The announcement stated that Omniston would source liquidity from multiple DEXs and that the system had already processed more than 29 million swaps and over $6.5 billion in transaction volume at that point.
This is an important historical distinction.
Omniston began as an aggregation mechanism, but its integration into the main STON.fi trading interface made it part of the normal execution path.
The next stage was to take the same architecture beyond a single blockchain.
❑ Cross-chain execution changes the problem
Moving tokens between blockchains introduces another layer of complexity.
A conventional cross-chain workflow often involves a bridge or intermediary infrastructure that transfers value between networks.
Omniston takes a different approach.
Its current architecture uses resolvers and linked HTLCs — Hash Time-Locked Contracts — to coordinate the two sides of a cross-chain transaction.
The current STON.fi architecture describes the flow as:
1. A user requests a cross-chain swap.
2. Omniston sends an RFQ to resolvers.
3. Resolvers return executable quotes.
4. The selected liquidity is locked in linked HTLC contracts.
5. The transaction either settles atomically or the parties are refunded.
The important concept here is that the destination liquidity is supplied by the resolver.
STON.fi describes resolvers as providing destination-side liquidity for individual orders rather than requiring an application to maintain pre-funded balances across every supported network.
❑ HTLCs are what connect the two sides
HTLC stands for Hash Time-Locked Contract.
The mechanism combines two conditions.
A hashlock requires knowledge of a secret before funds can be claimed.
A timelock establishes a deadline after which the transaction can be cancelled and funds returned.
In a cross-chain atomic swap, these conditions can connect the source-side and destination-side transactions.
The intended result is straightforward:
Either the swap completes according to the agreed conditions, or the funds can be returned.
STON.fi's current Omniston description explicitly states that linked HTLC contracts are used across chains and that the swap settles atomically or participants are refunded.
That does not mean the architecture is risk-free.
The security of such a system still depends on the correctness of the contracts, the participating chains, the resolver implementation and the execution conditions.
The relevant point is narrower: Omniston's cross-chain design attempts to coordinate native-asset swaps through atomic settlement rather than depending on a conventional wrapped-asset bridge model.
❑ Omniston does not eliminate the role of liquidity providers
It changes where liquidity can come from.
For a traditional AMM, liquidity providers deposit assets into pools and receive LP tokens representing their position.
With Omniston's resolver model, a resolver responds to RFQs and, for cross-chain transactions, provides the destination-side liquidity required to complete an order.
STON.fi says resolvers compete on pricing and execution, with the winning resolver supplying the required destination liquidity.
This creates a market structure where liquidity providers can compete for order flow.
The resolver is therefore not simply another backend API.
It is an execution participant.
❑ The resolver model introduces a new trust and infrastructure layer
Resolvers must interact with Omniston's technical infrastructure and respond to quote requests.
STON.fi's documentation describes a resolver as an entity that provides quotes and executes trades through the aggregation protocol.
This creates several dependencies that are worth recognizing.
The system depends on:
accurate quotes;
functioning resolver infrastructure;
settlement contracts;
blockchain execution;
RFQ deadlines;
correct HTLC behaviour;
and sufficient resolver liquidity.
The architecture therefore shifts some of the complexity away from the user and application developer, but that complexity does not disappear.
It moves into the execution layer.
❑ Cross-chain support has expanded beyond TON
The current Omniston website lists TON, TRON, Ethereum, Base, BNB Chain, Polygon, Arbitrum, Avalanche and Robinhood Chain as live networks.
There is an important documentation discrepancy worth recording.
Some older Omniston documentation still describes TRON as upcoming, while the current product page lists TRON as live.
Rather than treating the older documentation as definitive, the safest interpretation is that the documentation and production rollout were updated at different times.
For actual availability, the live RFQ infrastructure is the more relevant operational source.
This is also why supported-chain lists should be treated as time-sensitive rather than permanent protocol specifications.
❑ The architecture is also designed for developers
Omniston is not only intended to be used through the STON.fi interface.
STON.fi provides developer tooling for applications that want to integrate the system.
The documentation includes SDK-based integration for requesting quotes, constructing transactions and tracking trades. The current guide demonstrates integration with React and TON wallet connectivity, while the Omniston platform provides SDK, API/RFQ and widget infrastructure.
That distinction is significant.
If Omniston were only a feature inside the STON.fi application, its architectural role would be relatively narrow.
By exposing the execution infrastructure to other applications, STON.fi is attempting to make Omniston a reusable liquidity and execution layer.
The architecture is therefore better understood as infrastructure rather than simply a front-end trading feature.
❑ Fees are part of the execution model
The current Omniston product page describes two fee components:
a protocol fee determined per asset pair;
an integrator fee configured by the application using Omniston.
The stated integrator-fee range is 0.01 to 100 basis points, with the fee collected in the destination asset and enforced at the smart-contract level.
A basis point is one hundredth of a percentage point.
Therefore:
1 basis point = 0.01%
10 basis points = 0.10%
100 basis points = 1%
The existence of configurable fees means Omniston is not simply an open routing API with no economic layer.
It has an execution model in which integrators can incorporate their own fee into the quoted transaction.
❑ The scale question needs careful interpretation
STON.fi currently presents Omniston as powering every swap on STON.fi and describes the system as processing tens of millions of swaps and billions of dollars in volume.
However, there is an important analytical limitation.
Public data does not cleanly isolate Omniston-only volume from the historical volume of the underlying STON.fi DEX.
This matters because Omniston became the default routing mechanism only after its integration into the STON.fi dApp.
DefiLlama currently reports STON.fi as a TON-based AMM with approximately $27.15 million TVL and $104.21 million in 30-day DEX volume at the time of its latest retrieved snapshot. It also reports approximately $8.50 billion in cumulative DEX volume.
These figures describe the STON.fi protocol according to DefiLlama's methodology.
They should not be presented as independently verified Omniston-only statistics.
That distinction is important when evaluating the scale of the execution layer.
❑ Security evidence exists, but it has boundaries
Security claims should also be separated by scope.
STON.fi's broader AMM v2 contracts were reviewed by Trail of Bits in January 2025.
Separately, STON.fi announced that its Omniston escrow contracts underwent an audit by TonTech in August 2025.
These are useful security signals, but an audit is not equivalent to proving that a protocol is secure.
An audit represents a review of the specified code and scope at a particular point in time.
The cross-chain architecture also introduces multiple components and networks, meaning the security question extends beyond a single smart contract.
For that reason, the appropriate conclusion is that Omniston has undergone documented security review of relevant components, while the existence of an audit should not be interpreted as a guarantee against future vulnerabilities.
❑ What Omniston changes for STON.fi
The evolution can be viewed in three stages.
1. AMM
STON.fi provides liquidity pools and automated market-making infrastructure on TON.
2. Aggregator
Omniston connects multiple liquidity sources and uses RFQs to determine executable routes.
3. Cross-chain execution layer
The newer architecture extends RFQ-based execution beyond TON and coordinates source and destination liquidity using atomic settlement mechanisms.
That progression changes the scope of the infrastructure.
The AMM is primarily a liquidity venue.
Omniston is an execution coordinator.
The two systems are related, but they are not interchangeable.
❑ The unresolved questions are as important as the architecture
Several details remain difficult to verify from publicly accessible material.
The exact number of active resolvers is not clearly disclosed in current public documentation.
The complete list of DEX liquidity sources aggregated at any given moment is also not presented as a permanent public list.
Exact HTLC timeout parameters can depend on the execution flow rather than being represented by one universal number.
And the publicly available data does not provide a clean, independent dashboard showing Omniston-only volume across every integrated application and chain.
These are not necessarily flaws in the architecture.
They are simply limitations on what can currently be established from public evidence.
A research-based assessment should preserve those distinctions rather than filling them with assumptions.
❑ Where Omniston fits in the broader STON.fi architecture
The simplest way to understand the system is to separate its components.
STON.fi AMM:
Provides automated market-making and liquidity pools on TON.
Omniston:
Aggregates liquidity and requests executable quotes.
Resolvers:
Provide quotes and, for cross-chain execution, destination-side liquidity.
HTLC settlement:
Coordinates the source and destination sides of supported cross-chain transactions.
SDK/API:
Allows external applications to integrate the execution infrastructure.
Together, these components represent a move from a single decentralized exchange toward a broader liquidity-routing and execution architecture.
Whether that architecture ultimately becomes widely used across applications and chains is an adoption question that cannot be answered simply from the existence of the technology.
What can be established today is more specific:
Omniston has evolved from TON-focused liquidity aggregation into the cross-chain execution infrastructure that STON.fi uses for its own swaps and makes available for external integrations.
That is the more precise description of what the system is.
❑References
Official Sources
STON.fi — Omniston
https://ston.fi/omniston
STON.fi Documentation — Omniston Overview
https://docs.ston.fi/developer-section/omniston/overview
STON.fi Documentation — Omniston Resolvers
https://docs.ston.fi/developer-section/omniston/resolvers
STON.fi Documentation — Omniston Developer Guide
https://docs.ston.fi/developer-section/quickstart/omniston
STON.fi GitHub — Omniston SDK
https://github.com/ston-fi/omniston-sdk
STON.fi Blog — Omniston now powers every swap on STON.fi https://blog.ston.fi/omniston-now-powers-every-swap-on-ston-fi/
STONfi x
https://x.com/ston_fi
Research & Analytics
DefiLlama — STON.fi Metrics
https://defillama.com/protocol/ston.fi
Trail of Bits — STON.fi TON AMM DEX v2 Security Review https://github.com/trailofbits/publications/blob/master/reviews/2025-01-stonfi-ton-amm-dex-v2-securityreview.pdf
HackenProof
— STON.fi DEX Smart Contracts v2 Bug Bounty https://hackenproof.com/programs/ston-dot-fi-dex-smart-contracts-v2
CertiK — STON.fi Security Profile https://skynet.certik.com/projects/ston-fi
Community & Program Sources
STONbassadors — Official Program https://ston.fi/stonbassadors
STONbassadors Guidelines https://ambassadors.ston.fi/
Written by Binnoreen
X: https://x.com/Bin_noreen
Telegram https://t.me/binnoreen
·
--
ブリッシュ
一部該当
🗿 週次まとめ(Weekly Round-Up) STON.fiエコシステムにとって、インフラの新たな連携、業界での議論、そして流動性プロバイダーにとっての継続的な機会など、実り多い1週間でした。 今週の出来事はこちら: 1️⃣ ステーブルコインに注目 STON.fiは、最近のHSC X Spaceにて業界のリーダーたちとともに、ステーブルコインの将来について議論しました。 主なトピックは以下の通りです: • 国境を越えた決済 • 規制の動向 • シームレスなブロックチェーン体験の未来 • ステーブルコインが次のDeFiフェーズをどう形作っているか この議論から、業界がどこへ向かっているのかの貴重な示唆が得られます。 2️⃣ STON.fiで構築が進む、さらに多くのプロジェクト TONプロジェクトがSTON.fiインフラを統合する数が増えるにつれ、STONpoweredエコシステムは引き続き成長しています。 今週の注目すべき統合は以下の通りです: • DTrade — TONエコシステム向けに作られたトレーディングボット。 • Fact Market — Telegramのグループ/チャンネルを予測市場へと変換するプラットフォーム。 これらの統合は、開発者がSTON.fiインフラを活用して新しいWeb3体験をどのように構築しているかを示しています。 3️⃣ 今週のファーミング機会 注目のファーミングプールは以下の通りです: • STON/USDT V2 • JETTON/USDT • JETTON/GRAM STON/USDT V2プールは対象のSTONステーカー向けにBoost Farm APRを引き続き提供しており、JETTONプールでは月次のファーミング報酬が強化されています。 📊 アクティブなFarm APR 🔥 USD₮/JETTON → 99% 🔥 TONG/GRAM → 69% 🔥 STON/USD₮ → 15% 📊 AMMプロトコル統計 🔥 週次スワップ取引量:14.5M TON($23.4M) 🔥 TVL:17.7M TON($28.5M) 🔥 流動性プロバイダー報酬の配布:21,948 TON($35,337) さらに多くのビルダーがSTON.fiインフラを統合し、オンチェーン活動が成長を続けることで、TONエコシステムは、よりつながり、より利用しやすいDeFiの未来に向けてもう一歩進んでいます。 $GRAM #DeFi #STONfi
🗿 週次まとめ(Weekly Round-Up)

STON.fiエコシステムにとって、インフラの新たな連携、業界での議論、そして流動性プロバイダーにとっての継続的な機会など、実り多い1週間でした。

今週の出来事はこちら:

1️⃣ ステーブルコインに注目

STON.fiは、最近のHSC X Spaceにて業界のリーダーたちとともに、ステーブルコインの将来について議論しました。

主なトピックは以下の通りです:
• 国境を越えた決済
• 規制の動向
• シームレスなブロックチェーン体験の未来
• ステーブルコインが次のDeFiフェーズをどう形作っているか

この議論から、業界がどこへ向かっているのかの貴重な示唆が得られます。

2️⃣ STON.fiで構築が進む、さらに多くのプロジェクト

TONプロジェクトがSTON.fiインフラを統合する数が増えるにつれ、STONpoweredエコシステムは引き続き成長しています。

今週の注目すべき統合は以下の通りです:

• DTrade — TONエコシステム向けに作られたトレーディングボット。
• Fact Market — Telegramのグループ/チャンネルを予測市場へと変換するプラットフォーム。

これらの統合は、開発者がSTON.fiインフラを活用して新しいWeb3体験をどのように構築しているかを示しています。

3️⃣ 今週のファーミング機会

注目のファーミングプールは以下の通りです:

• STON/USDT V2
• JETTON/USDT
• JETTON/GRAM

STON/USDT V2プールは対象のSTONステーカー向けにBoost Farm APRを引き続き提供しており、JETTONプールでは月次のファーミング報酬が強化されています。

📊 アクティブなFarm APR

🔥 USD₮/JETTON → 99%
🔥 TONG/GRAM → 69%
🔥 STON/USD₮ → 15%

📊 AMMプロトコル統計

🔥 週次スワップ取引量:14.5M TON($23.4M)
🔥 TVL:17.7M TON($28.5M)
🔥 流動性プロバイダー報酬の配布:21,948 TON($35,337)

さらに多くのビルダーがSTON.fiインフラを統合し、オンチェーン活動が成長を続けることで、TONエコシステムは、よりつながり、より利用しやすいDeFiの未来に向けてもう一歩進んでいます。

$GRAM #DeFi #STONfi
記事
週間まとめSTON.fiエコシステムにとって、主要な成長とクロスチェーン機能の拡大、新たなインフラによりTONのDeFi環境を支える、もう一つの節目の週です。 🔥 今週のハイライト STON.fiは累計で3,500万回を超えるスワップを達成しました。 2026年6月、ウォレットの平均完了取引数は約10件で、強いユーザーエンゲージメントとエコシステム全体での採用拡大を反映しています。 TONのDeFiを前進させるために尽力してくれた皆さんに感謝します。 今週の出来事はこちら: 1️⃣ AvalancheとArbitrumがクロスチェーン・ネットワークに参加

週間まとめ

STON.fiエコシステムにとって、主要な成長とクロスチェーン機能の拡大、新たなインフラによりTONのDeFi環境を支える、もう一つの節目の週です。
🔥 今週のハイライト
STON.fiは累計で3,500万回を超えるスワップを達成しました。
2026年6月、ウォレットの平均完了取引数は約10件で、強いユーザーエンゲージメントとエコシステム全体での採用拡大を反映しています。
TONのDeFiを前進させるために尽力してくれた皆さんに感謝します。
今週の出来事はこちら:
1️⃣ AvalancheとArbitrumがクロスチェーン・ネットワークに参加
AvalancheとArbitrumがSTON.fiのクロスチェーン・ネットワークに参加クロスチェーンDeFiは進化を続けており、STON.fiはブロックチェーンの境界をほぼ見えなくすることに向けて、さらなる大きな一歩を踏み出しました。 TONと主要なEVMネットワーク間のクロスチェーン・スワップのローンチ後、STON.fiはAvalancheとArbitrumを追加し、ネットワークを拡大しました。これにより、単一のインターフェースからエコシステムをまたいでステーブルコインを移動するための選択肢が、ユーザーにさらに増えました。 拡大するクロスチェーン・エコシステム 複数のブリッジ、ウォレット、分散型アプリケーションを切り替える代わりに、ユーザーはSTON.fiアプリ内で対応しているステーブルコインのスワップを直接実行できるようになりました。

AvalancheとArbitrumがSTON.fiのクロスチェーン・ネットワークに参加

クロスチェーンDeFiは進化を続けており、STON.fiはブロックチェーンの境界をほぼ見えなくすることに向けて、さらなる大きな一歩を踏み出しました。
TONと主要なEVMネットワーク間のクロスチェーン・スワップのローンチ後、STON.fiはAvalancheとArbitrumを追加し、ネットワークを拡大しました。これにより、単一のインターフェースからエコシステムをまたいでステーブルコインを移動するための選択肢が、ユーザーにさらに増えました。
拡大するクロスチェーン・エコシステム
複数のブリッジ、ウォレット、分散型アプリケーションを切り替える代わりに、ユーザーはSTON.fiアプリ内で対応しているステーブルコインのスワップを直接実行できるようになりました。
·
--
ブリッシュ
🗿 STON.fiに新たなマイルストーン STON.fiエコシステムにとってのさらなる大きな成果です。 STON.fiはこれで累計3,500万回を超えるスワップを達成し、TON DeFiの成長における新たな節目となりました。 例えると、1回のスワップを1秒間隔で1つずつ数え続けると、1年以上かかる計算です。 しかし本当の物語は、その数字だけではありません。 背後にある継続的な活発さこそが重要なのです。 2026年6月には、平均ウォレットが約10件のトランザクションを完了しており、ユーザーは単に一度試して終わりではないことがわかります。彼らは戻ってきて、再度スワップし、流動性を提供し、エコシステムに積極的に参加しています。 このマイルストーンは、導入の拡大、より強いオンチェーン活動、そして日々TON DeFiを支え続けるコミュニティの成長を示しています。 スワップしてくれた皆さん、開発し、検証し、STON.fiを支えてくれた皆さんに感謝します。 旅は続き、さらに多くのマイルストーンがこれから待っています。 #TON #DeFi #STONfi
🗿 STON.fiに新たなマイルストーン

STON.fiエコシステムにとってのさらなる大きな成果です。

STON.fiはこれで累計3,500万回を超えるスワップを達成し、TON DeFiの成長における新たな節目となりました。

例えると、1回のスワップを1秒間隔で1つずつ数え続けると、1年以上かかる計算です。

しかし本当の物語は、その数字だけではありません。

背後にある継続的な活発さこそが重要なのです。

2026年6月には、平均ウォレットが約10件のトランザクションを完了しており、ユーザーは単に一度試して終わりではないことがわかります。彼らは戻ってきて、再度スワップし、流動性を提供し、エコシステムに積極的に参加しています。

このマイルストーンは、導入の拡大、より強いオンチェーン活動、そして日々TON DeFiを支え続けるコミュニティの成長を示しています。

スワップしてくれた皆さん、開発し、検証し、STON.fiを支えてくれた皆さんに感謝します。

旅は続き、さらに多くのマイルストーンがこれから待っています。

#TON #DeFi #STONfi
STON.fi DAOガバナンス・ダイジェスト STON.fiエコシステムにおける最新のガバナンス活動について、簡単にアップデートします。 2026年7月1日時点: • 投票中のアクティブ提案:1 DAOのガバナンスにより、コミュニティはプロトコルの将来を形作る上で直接的な役割を担い、参加者によって提案が審査され投票されます。 新しい提案やガバナンスの決定に関する最新情報は、リアルタイムのお知らせのための専用「DAO Updates」チャンネルをご覧ください。 注:このダイジェストは情報提供のみを目的としています。データは公開されているSTON.fi DAOインターフェースおよび関連する公開ソースから自動的に取得されています。 #TON #DAO #STONfi
STON.fi DAOガバナンス・ダイジェスト

STON.fiエコシステムにおける最新のガバナンス活動について、簡単にアップデートします。

2026年7月1日時点:

• 投票中のアクティブ提案:1

DAOのガバナンスにより、コミュニティはプロトコルの将来を形作る上で直接的な役割を担い、参加者によって提案が審査され投票されます。

新しい提案やガバナンスの決定に関する最新情報は、リアルタイムのお知らせのための専用「DAO Updates」チャンネルをご覧ください。

注:このダイジェストは情報提供のみを目的としています。データは公開されているSTON.fi DAOインターフェースおよび関連する公開ソースから自動的に取得されています。

#TON #DAO #STONfi
·
--
ブリッシュ
2026年9月1日にToncoinおよびToken Bridgeが停止 ToncoinとToken Bridgeを使ったことがある方にとって、これは重要な注意事項です。 bridge-v3.ton.orgのブリッジは2026年9月1日に恒久的に停止します。以降は、ブリッジを通じたクロスチェーン送金は利用できなくなります。 ユーザーの移行を支援するため、残りの出金期間中は、すべての「割合(パーセンテージ)ベース」の送金手数料が免除されます。 確認すべき内容は以下です: • イーサリアムまたはBNB Smart Chain上でラップ済みのToncoinを保有していますか? TONに戻してください。 • TONウォレット内でjUSDT、jUSDC、jWBTC、またはその他のjトークンを保有していますか? 締切前に、それらをイーサリアムへブリッジしてください。 対応しているjトークンプールのアドレスは以下です: • jUSDT • jUSDC • jWBTC なぜ重要なのか ブリッジのオラクルは2026年6月に担保の引き出しを開始しており、2026年9月1日の最終停止まで送金処理を継続します。その後は、残っているブリッジ済み資産はブリッジを通じて送金できなくなります。 以前にToncoin Bridgeを利用したことがある場合は、今がウォレットを見直し、締切までに必要な送金を完了する良いタイミングです。
2026年9月1日にToncoinおよびToken Bridgeが停止

ToncoinとToken Bridgeを使ったことがある方にとって、これは重要な注意事項です。

bridge-v3.ton.orgのブリッジは2026年9月1日に恒久的に停止します。以降は、ブリッジを通じたクロスチェーン送金は利用できなくなります。

ユーザーの移行を支援するため、残りの出金期間中は、すべての「割合(パーセンテージ)ベース」の送金手数料が免除されます。

確認すべき内容は以下です:

• イーサリアムまたはBNB Smart Chain上でラップ済みのToncoinを保有していますか? TONに戻してください。

• TONウォレット内でjUSDT、jUSDC、jWBTC、またはその他のjトークンを保有していますか? 締切前に、それらをイーサリアムへブリッジしてください。

対応しているjトークンプールのアドレスは以下です:

• jUSDT
• jUSDC
• jWBTC

なぜ重要なのか

ブリッジのオラクルは2026年6月に担保の引き出しを開始しており、2026年9月1日の最終停止まで送金処理を継続します。その後は、残っているブリッジ済み資産はブリッジを通じて送金できなくなります。

以前にToncoin Bridgeを利用したことがある場合は、今がウォレットを見直し、締切までに必要な送金を完了する良いタイミングです。
STON.fiでのファーミング:ウィークリー・ダイジェスト Stonfiersの皆さん、プロトコル全体で稼働中のファーミング・プールの今週の概要をお届けします。 STON/USDT STONは、STON.fiプロトコルの中核メカニズムに統合されたネイティブトークンです。こちらのプールは、生態系の中でも最も安定した実績の1つを維持しています。 主な詳細: 月間報酬:10,000 STON ファーミング状況:継続中 LPトークン:ロックなし Boost Farm APR:6月30日までアクティブ。対象となるSTONステーカーには最大2倍の倍率 JETTON/USDT | JETTON/GRAM JETTONは、TON上のクロスプラットフォームGameFiエコシステムであるJetTon Gamesによって発行されています。これらのプールは引き続きブーストされた参加を集めています。 主な詳細: 月間報酬:1ファームあたり200,000 JETTON ファーミング期間:2026年12月31日まで継続中 LPトークン:ロックなし ブースト報酬:有効 STORM/GRAM STORMは、TON上の最大級のパーペチュアルDEXエコシステムの1つに関連するトークンです。このプールは安定した稼働を保ち、報酬も一貫しています。 主な詳細: 日次報酬:30,000 STORM ファーミング状況:継続中 LPトークン:ロックなし 重要な注記 流動性を提供すると、LPトークンは自動的に発行されます。参加する前に必ずプール条件を確認し、リスクは各自で独立して評価してください。 行動の呼びかけ STON.fiで稼働中のファームを確認し、報酬条件が変化する様子をモニタリングしましょう。 $TON
STON.fiでのファーミング:ウィークリー・ダイジェスト

Stonfiersの皆さん、プロトコル全体で稼働中のファーミング・プールの今週の概要をお届けします。

STON/USDT

STONは、STON.fiプロトコルの中核メカニズムに統合されたネイティブトークンです。こちらのプールは、生態系の中でも最も安定した実績の1つを維持しています。

主な詳細:

月間報酬:10,000 STON

ファーミング状況:継続中

LPトークン:ロックなし

Boost Farm APR:6月30日までアクティブ。対象となるSTONステーカーには最大2倍の倍率

JETTON/USDT | JETTON/GRAM

JETTONは、TON上のクロスプラットフォームGameFiエコシステムであるJetTon Gamesによって発行されています。これらのプールは引き続きブーストされた参加を集めています。

主な詳細:

月間報酬:1ファームあたり200,000 JETTON

ファーミング期間:2026年12月31日まで継続中

LPトークン:ロックなし

ブースト報酬:有効

STORM/GRAM

STORMは、TON上の最大級のパーペチュアルDEXエコシステムの1つに関連するトークンです。このプールは安定した稼働を保ち、報酬も一貫しています。

主な詳細:

日次報酬:30,000 STORM

ファーミング状況:継続中

LPトークン:ロックなし

重要な注記

流動性を提供すると、LPトークンは自動的に発行されます。参加する前に必ずプール条件を確認し、リスクは各自で独立して評価してください。

行動の呼びかけ

STON.fiで稼働中のファームを確認し、報酬条件が変化する様子をモニタリングしましょう。

$TON
·
--
ブリッシュ
🗿 クロスチェーン ライブストリーム | 本日15:00 UTC STON.fiが本日ライブ配信を行い、DeFiの最大の未解決課題の一つ — クロスチェーンUXを解説します。 クロスチェーンスワップは資産の移動を簡素化するために設計されましたが、ほとんどのユーザーにとって、その体験は未だに断片的で手動、そして余分なステップが満載です。 本日のセッションでは、以下の内容を詳しく解説します: 1️⃣ ユーザーが受け入れることを学んだ隠れた摩擦点 2️⃣ 中央集権的取引所がクロスチェーンの動きで依然として支配的である理由 3️⃣ 真にシームレスでほとんど見えないクロスチェーンフローがどのようなものになるか 🎁 ライブ報酬アラート ストリーム中に参加者全員に特別な報酬が提供されます。詳細と引き換え方法はライブで発表されます。 📅 6月17日 · 15:00 UTC YouTubeまたはXでライブ参加し、クロスチェーンDeFiの次のフェーズを形作る議論に参加しましょう。 #TON #DeFi
🗿 クロスチェーン ライブストリーム | 本日15:00 UTC

STON.fiが本日ライブ配信を行い、DeFiの最大の未解決課題の一つ — クロスチェーンUXを解説します。

クロスチェーンスワップは資産の移動を簡素化するために設計されましたが、ほとんどのユーザーにとって、その体験は未だに断片的で手動、そして余分なステップが満載です。

本日のセッションでは、以下の内容を詳しく解説します:

1️⃣ ユーザーが受け入れることを学んだ隠れた摩擦点
2️⃣ 中央集権的取引所がクロスチェーンの動きで依然として支配的である理由
3️⃣ 真にシームレスでほとんど見えないクロスチェーンフローがどのようなものになるか

🎁 ライブ報酬アラート
ストリーム中に参加者全員に特別な報酬が提供されます。詳細と引き換え方法はライブで発表されます。

📅 6月17日 · 15:00 UTC

YouTubeまたはXでライブ参加し、クロスチェーンDeFiの次のフェーズを形作る議論に参加しましょう。

#TON #DeFi
🗿 STON.fi はクロスチェーンを実現 STON.fi と、より広範な TON エコシステムにとって大きなマイルストーンが到来しました。 TON と主要な EVM ネットワーク間のクロスチェーン・スワップが、いま STON.fi の dApp 内で直接利用可能になり、ユーザーはシームレスなマルチチェーン DeFi 体験に一歩近づきます。 これまで別々のブリッジに頼ったり、複数のインターフェースを切り替えたりすることなく、初めてユーザーは TON、Ethereum、Base、BNB Chain、Polygon 間で資産をスワップできます。 例: • Base の USDC → Ethereum の USDT • TON エコシステム資産 ↔ EVM エコシステム資産 • 起動時に利用可能な、あらゆるチェーン間の組み合わせ 対応資産: • TON の USDT • Base の USDT と USDC • Ethereum の USDT と USDC • BNB Chain の USDT と USDC • Polygon の PUSD と USDC ローンチ時、スワップ金額は一時的に 1 回の取引あたり $1,000 に上限が設けられます。 Omniston により提供 これらのクロスチェーン・スワップの裏にあるのは、STON.fi の実行および流動性オーケストレーション・プロトコルである Omniston です。 もともとは TON のための流動性集約レイヤーとして設計されましたが、Omniston は現在、複数のブロックチェーン・エコシステムにわたる実行まで拡張しています。 主な利点の 1 つ: ユーザーはインターフェースに表示された「正確な金額」を受け取ります。表示された金額を実行できない場合、スワップはキャンセルされ、資金は全額返還されます。 重要な理由 これまでクロスチェーンのやり取りには、複数のツール、ブリッジ、そして手作業の手順が必要でした。 STON.fi は、流動性と実行を 1 つのインターフェースに統合することで、その体験を簡素化し、ユーザーが摩擦を減らしてエコシステム間で価値を移動できるようにします。 これは始まりにすぎません。 マルチチェーン構想が広がるにつれ、今後さらに多くのチェーン、資産、クロスチェーンのフローが追加される見込みです。 #TON #DeFi
🗿 STON.fi はクロスチェーンを実現

STON.fi と、より広範な TON エコシステムにとって大きなマイルストーンが到来しました。

TON と主要な EVM ネットワーク間のクロスチェーン・スワップが、いま STON.fi の dApp 内で直接利用可能になり、ユーザーはシームレスなマルチチェーン DeFi 体験に一歩近づきます。

これまで別々のブリッジに頼ったり、複数のインターフェースを切り替えたりすることなく、初めてユーザーは TON、Ethereum、Base、BNB Chain、Polygon 間で資産をスワップできます。

例:
• Base の USDC → Ethereum の USDT
• TON エコシステム資産 ↔ EVM エコシステム資産
• 起動時に利用可能な、あらゆるチェーン間の組み合わせ

対応資産:

• TON の USDT
• Base の USDT と USDC
• Ethereum の USDT と USDC
• BNB Chain の USDT と USDC
• Polygon の PUSD と USDC

ローンチ時、スワップ金額は一時的に 1 回の取引あたり $1,000 に上限が設けられます。

Omniston により提供

これらのクロスチェーン・スワップの裏にあるのは、STON.fi の実行および流動性オーケストレーション・プロトコルである Omniston です。

もともとは TON のための流動性集約レイヤーとして設計されましたが、Omniston は現在、複数のブロックチェーン・エコシステムにわたる実行まで拡張しています。

主な利点の 1 つ:

ユーザーはインターフェースに表示された「正確な金額」を受け取ります。表示された金額を実行できない場合、スワップはキャンセルされ、資金は全額返還されます。

重要な理由

これまでクロスチェーンのやり取りには、複数のツール、ブリッジ、そして手作業の手順が必要でした。

STON.fi は、流動性と実行を 1 つのインターフェースに統合することで、その体験を簡素化し、ユーザーが摩擦を減らしてエコシステム間で価値を移動できるようにします。

これは始まりにすぎません。

マルチチェーン構想が広がるにつれ、今後さらに多くのチェーン、資産、クロスチェーンのフローが追加される見込みです。

#TON #DeFi
ログインして、さらにコンテンツを読む
厳選トピックで世界の暗号資産トレーダーの仲間入り
⚡️ 暗号資産に関する最新かつ有益な情報が見つかります。
💬 世界最大の暗号資産取引所から信頼されています。
👍 認証を受けたクリエイターから、有益なインサイトを得られます。
メール / 電話番号
サイトマップ
Cookieの設定
プラットフォーム利用規約