TON Builders
رفتن به کانال در Telegram
TON Builders' Hub for developers, creators, and founders to connect, collaborate, and grow.
نمایش بیشترکشور مشخص نشده استفناوری و برنامهها13 625
8 643
مشترکین
-824 ساعت
-487 روز
-20430 روز
در حال بارگیری داده...
کانالهای مشابه
هیچ دادهای
مشکلی وجود دارد؟ لطفاً صفحه را تازه کنید یا با مدیر پشتیبانی ما تماس بگیرید.
ابر برچسبها
اشارات ورودی و خروجی
---
---
---
---
---
---
جذب مشترکین
ژوئن '26
ژوئن '26
+37
در 0 کانالها
مه '26
+90
در 1 کانالها
Get PRO
آوریل '26
+194
در 21 کانالها
Get PRO
مارس '26
+837
در 58 کانالها
Get PRO
فوریه '26
+1 111
در 42 کانالها
Get PRO
ژانویه '26
+973
در 81 کانالها
Get PRO
دسامبر '25
+1 294
در 39 کانالها
Get PRO
نوامبر '25
+150
در 4 کانالها
Get PRO
اکتبر '25
+1 399
در 31 کانالها
Get PRO
سپتامبر '25
+333
در 8 کانالها
Get PRO
اوت '25
+461
در 8 کانالها
Get PRO
ژوئیه '25
+300
در 11 کانالها
Get PRO
ژوئن '25
+1 529
در 72 کانالها
Get PRO
مه '25
+46
در 1 کانالها
Get PRO
آوریل '25
+2 319
در 5 کانالها
| تاریخ | رشد مشترکین | اشارات | کانالها | |
| 24 ژوئن | +1 | |||
| 23 ژوئن | +3 | |||
| 22 ژوئن | +4 | |||
| 21 ژوئن | +2 | |||
| 20 ژوئن | +1 | |||
| 19 ژوئن | 0 | |||
| 18 ژوئن | 0 | |||
| 17 ژوئن | +2 | |||
| 16 ژوئن | +4 | |||
| 15 ژوئن | +2 | |||
| 14 ژوئن | 0 | |||
| 13 ژوئن | +1 | |||
| 12 ژوئن | 0 | |||
| 11 ژوئن | +4 | |||
| 10 ژوئن | +2 | |||
| 09 ژوئن | 0 | |||
| 08 ژوئن | +1 | |||
| 07 ژوئن | 0 | |||
| 06 ژوئن | +3 | |||
| 05 ژوئن | +1 | |||
| 04 ژوئن | +1 | |||
| 03 ژوئن | +1 | |||
| 02 ژوئن | +3 | |||
| 01 ژوئن | +1 |
پستهای کانال
📣 Community Update
As the TON ecosystem evolves, so does the way we come together! We're consolidating channels to keep conversations more active and connected. As a result, this channel will be closing and joining the main TON community.
Getting the latest updates, connecting with the wider community, and getting support just got easier.
Stay Connected:
🔊 News & Updates
TG: TON Dev News, Toncoin, TON Community
X: TON 💎, TON Community
LI: TON Foundation | LinkedIn
GH: TON Blockchain
💬 Community Groups
TG: TON Dev Eng, Toncoin Chat, TON Community Chat
Thanks for being part of this space. See you on the other side! 🤝
YouTube | TON.org
| 2 | 🚀 The AI Hackathon review period has been extended until April 3.
The results exceeded all expectations: over 160 submissions, 4x the previous contest.
The volume and variety of projects submitted have genuinely impressed us. A strong mix of thoughtful, creative, and technically impressive work from across the ecosystem.
We definitely didn’t expect that. So, we are extending the review period to April 3 to ensure we have enough time to review every submission thoroughly.
While you wait, two new features just dropped on the Identity platform:
🔹Makers. Add your teammates to submission. Everyone gets the participation badge.
🔹Comments. Talk about projects. Feedback, questions, discussion, all on submission pages.
Thank you for the energy, creativity, and effort you brought to this hackathon.
Keep building! ✨😎
TON Community | TON Builders | TON Dev News | TON Hubs | X | YouTube | LinkedIn | TON.org | 0 |
| 3 | 🫧 Tolk v1.3: moving toward a general-purpose language
After the previous post, this release may feel less surprising — but still a bit unusual.
The reason is simple: Tolk is no longer evolving only as a contract language. It is becoming a foundation for the toolchain I described earlier.
This release focuses on features beyond contracts — introducing general-purpose capabilities needed for libraries and frameworks.
✅ Notable changes in Tolk v1.3:
1. Type array<T> — dynamically sized arrays backed by TVM tuples.
2. Type unknown — a TVM primitive with unknown contents.
3. Type lisp_list<T> — nested two-element tuples (FunC-style).
4. Type string — text chunks backed by snaked cells, with StringBuilder for concatenation.
5. Compile-time string methods: "str".crc32(), "str".sha256(), etc.
6. Null coalescing operator — ?? like in TypeScript.
7. Import path mappings — import "@third_party/utils".
8. Compile-time reflection via @stdlib/reflection.
9. Custom serializers now support structures and generics.
10. The compiler now reports multiple errors at once.
11. Focused on stability — fixed dozens of minor issues found by LLM fuzzing.
12. Extensive internal refactoring towards being stateless and multi-threaded.
PR on GitHub with detailed info.
✔ Arrays: redesigned tuples
Working with TVM tuples has been fully redesigned. There is now array<T> — a dynamically sized container:
// array<int>
var numbers = [1, 2, 3];
// array<Point?>
var optPoints = [
Point { x: 10, y: 20 },
Point { x: 30, y: 40 },
null,
];
- methods push, get(idx), etc.
- any T, including sub-arrays like array<array<int>>
- automatically serialized into snake cells
- max size: 255 (TVM limitation)
✔ The `unknown` type
Raw TVM tuple exists, but it's no longer built-in. It's just an array... of something unknown:
type tuple = array<unknown>
The unknown gives access to the untyped TVM stack, fully integrated into the type system.
✔ The `string` type
TVM has no strings — only binary slices. Strings were always just a convention over binary data.
Now Tolk has strings built-in.
// string
val str = "hello";
- strings are cells (not slices)
- long strings are snake cells under the hood
- methods calculateLength, equalTo, etc.
- on-chain/off-chain encoding for jettons and NFTs to comply with TEPs
StringBuilder encapsulates cell manipulation:
StringBuilder.create()
.append(content.commonContent)
.append(individualNftContent)
.build()
By the way, compile-time functions now look cleaner: "str".crc32() and so on.
✔ Import path mappings
The import statement now accepts @aliases:
import "@common/jettons"
import "@third_party/math-lib"
This is similar to widely used path mappings in TypeScript.
✔ Compile-time reflection
Many additions in v1.3 make sense not for contracts, but for frameworks. For example, take a look at one of reflect features:
fun log(msg: string, loc: SourceLocation = reflect.sourceLocation()) {
debug.print(loc.lineNo);
}
fun demo() {
log("a"); // prints K — current line no
log("b"); // prints K+1
}
Why is this useful? It allows errors to point to the original call site — for example, expect(...) in tests — by carrying source location at compile time.
⚙️ A huge portion of internal refactoring
A lot of work has been done inside the compiler core, peephole optimizations, and memory management.
Final result: tolk compiler is now thread-safe and re-invokable within a single process. It will be embedded into an external toolchain written in Rust, communicating via FFI.
... And more
Dozens of independent improvements. Combined, they cover the requirements not only for contracts, but for abstract libraries and the upcoming toolchain.
Feel free to check the description on GitHub.
🌳 And one more thing! Wallet-v5, compiled with Tolk v1.3, reduces gas usage by 30% compared to FunC. As of Tolk v1.0, the savings were "only" 20%. Take a look at new benchmarks. | 0 |
| 4 | 💎 Tolk v1.3 is live — expanding scope beyond smart contracts
Tolk is evolving into a general-purpose language, enabling the next layer of TON tooling:
• Library development
• Framework support
• Developer tooling infrastructure
This release lays groundwork for a more complete development stack on TON.
TON Core team is improving developer experience with focus on onboarding, usability, and tooling consistency.
More technical updates will follow.
👉 Start building on TON
TON Community | TON Hubs |X | YouTube | LinkedIn | TON.org | 0 |
اکنون در دسترس! پژوهش تلگرام ۲۰۲۵ — مهمترین بینشهای سال 
