TON Tech
TON Tech removes the need to think about blockchain complexity so you can focus on shipping your product
Show moreπ Analytical overview of Telegram channel TON Tech
Channel TON Tech (@tontech) in the English language segment is an active participant. Currently, the community unites 26 177 subscribers, ranking 5 221 in the Technologies & Applications category and 25 415 in the Russia region.
π Audience metrics and dynamics
Since its creation on Π½Π΅Π²ΡΠ΄ΠΎΠΌΠΎ, the project has demonstrated rapid growth, gathering an audience of 26 177 subscribers.
According to the latest data from 07 June, 2026, the channel demonstrates stable activity. Although there has been a change in the number of participants by -377 over the last 30 days and by -7 over the last 24 hours, overall reach remains high.
- Verification status: Not verified
- Engagement rate (ER): The average audience engagement rate is 4.22%. Within the first 24 hours after publication, content typically collects 0.80% reactions from the total number of subscribers.
- Post reach: On average, each post receives 1 106 views. Within the first day, a publication typically gains 209 views.
- Reactions and interaction: The audience actively supports content: the average number of reactions per post is 41.
π Description and content policy
The author describes the resource as a platform for expressing subjective opinions:
βTON Tech removes the need to think about blockchain complexity so you can focus on shipping your productβ
Thanks to the high frequency of updates (latest data received on 08 June, 2026), the channel maintains relevance and a high level of publication reach. Analytics show that the audience actively interacts with content, making it an important point of influence in the Technologies & Applications category.
address is now "internal only"
2. Rich bounces: not 256 bits, but the full body on bounce
3. Cheap builder-to-slice, StateInit, and address composition
4. Improved compilation errors
5. Anonymous functions (lambdas)
6. Borrow checker to catch undefined behavior
PR on GitHub with detailed info.
β `address` is now "internal only"
Before:
* address meant internal/external/none
Now:
* address β internal only
* address? (nullable) β internal/none, exactly like "maybe address" in @ton/core
* any_address β internal/external/none
In 99% of contracts only internal addresses are used. External ones are rare, and "none" can be expressed as nullable.
struct Storage {
// internal, checked automatically
owner: address
}
With new TVM 12 instructions, addresses are validated automatically during (de)serialization without extra gas β no more manual isInternal() checks.
So yes, it's technically a breaking change, but it removes a ton of noise.
A short migration guide, as well as technical details, available here.
β Rich bounced messages
Historically, a bounced message only returned the first 256 bits of the original body.
Now TVM 12 supports rich bounces β which lets you obtain the entire body instead.
createMessage({
bounce: BounceMode.RichBounce,
...
})
In onBouncedMessage, you get access to the original body, exit code, gas used, and more.
Old true/false bounce flags still work for backward compatibility.
Rich bounces simplify complex message flows and inter-contract communication β one of the most painful aspects of TON until now.
β Cheap builder-to-slice and address composition
Previously, converting a builder to a slice (endCell + beginParse) consumed a lot of gas because cells are expensive. Now there's a new instruction β BTOS (builder-to-slice) β without intermediate cell creation.
- b.endCell().beginParse() is now cheap: auto-optimized to BTOS
- "builder-to-address" is the same BTOS; hacks around "return a builder with a valid address" can be removed
- cheaper StateInit hashing and address calculations
Just update to Tolk v1.2 + TVM 12, and you'll immediately save gas.
β Anonymous functions (lambdas)
Can be used in general-purpose frameworks, perfectly integrated with the type system:
fun customRead(reader: (slice) -> int) { ... }
customRead(fun(s) {
return s.loadUint(32)
})
β Low-level compiler enhancements
Also included: better diagnostics with precise ranges, new peephole optimizations, tuple β object conversions, and multiple small fixes. A lightweight borrow checker prevents undefined behavior on concurrent mutations.
As always, all additions are carefully described in a PR.
π³ We've also started improving TVM itself β new assembler instructions are designed specifically to fit the Tolk type system and optimizer. I have always said: the language is just the beginning. Perfect developer experience requires improving every layer of TON's stack. The road may be sharp and curvy β but we're definitely heading in the right direction.
Available now! Telegram Research 2025 β the year's key insights 
