TON Community
1.05M subscribers
528 photos
70 videos
723 links
TON ecosystem project news, events, and community activities.

Website: ton.org
X: x.com/toncommunityhq
Download Telegram
Forwarded from TOLK lang
🫧 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.
❀30πŸ‘16πŸ”₯7πŸŽ‰1
πŸš€ 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
1❀29πŸ‘6πŸ™4
🎀 TON Real Talk Ep.8 – Driving Growth in the US

What does real growth in the US actually look like for TON?

Beyond awareness, it’s about turning distribution into a system that works:

community β†’ builders β†’ partnerships β†’ adoption

With @moontrips - TON US Hub Lead and Ankit Raj, General Partner of Not Alone , we’ll break down what’s working, what’s not, and how ecosystem growth becomes repeatable.

πŸ—“οΈ April 2 | 4pm UTC

🎀 On X, Telegram & YouTube

WalletKit | Alpha AppKit | TON Coin | TON Builders | TON Hubs | X | YouTube | LinkedIn |TON.org
Please open Telegram to view this post
VIEW IN TELEGRAM
πŸ‘21❀17πŸ”₯6🀩3
Forwarded from TON Core
Sub-Second mainnet activation starts

The public bug bounty contest for the TON Sub-Second update has been completed.

We thank all participants for their work and valuable feedback. The corresponding changes have already been applied to the codebase. No major consensus changes were required.

The final contest results and reward distribution will be announced later.

This contest was the final stage of testing before mainnet activation. Prior to that, the update had already passed internal testing by TON Core and extended testing in testnet.

We are now starting the activation of the Sub-Second update in TON mainnet.

For additional reliability, activation will be performed in 3 stages:

Update plan:

March 31 (today): Upgrade validator nodes to the version supporting the latest consensus changes.

April 2: Vote to activate the new consensus on the basechain and enable a moderate block rate increase.

April 7: Vote to fully activate fast consensus on both the basechain and masterchain and then upgrade validator nodes.

The Sub-Second update is a major protocol upgrade comprising a substantial number of changes.

Despite comprehensive testing, validators are advised to maintain heightened operational readiness during the next two weeks, from March 31 to April 12.

The TON Core team will remain available throughout the deployment and is prepared to respond promptly to any situations.
❀19πŸŽ‰7🌭4
GOING LIVE NOW!

Glenn Brown, VP of Business Development at TON Foundation, takes the stage at WalletCon (13:30 CET).

➑️Watch the full session here:
https://x.com/i/broadcasts/1qGvvkWDRQOGB
Please open Telegram to view this post
VIEW IN TELEGRAM
1❀23❀‍πŸ”₯6
Forwarded from Toncoin
πŸ’Ž Building financial products inside Telegram just got faster

Dynami
c
and Fireblocks launched native embedded wallet support for TON. Developers can now ship payment apps, trading platforms, and commerce experiences without building wallet infrastructure from scratch.

βœ… Users get a fully functional TON wallet on sign-up automatically
βœ… No wallet contract management
βœ… Enterprise-grade custody backing 550M+ wallets across 2,400+ institutions

If you're building financial products inside Telegram, the infrastructure to match that scale is ready.

πŸ‘‰ Read more

TON Community | TON Builders | TON Dev News | TON Hubs | X | YouTube | LinkedIn | TON.org
πŸ”₯19❀9πŸ‘8πŸ‘4
Forwarded from Toncoin
Identity is the trust layer for the TON ecosystem.πŸ’Ž

It turns public ecosystem activity into reputation by analyzing signals such as code, wallets, badges, and social presence, helping make contribution and credibility more visible across TON.

Now Identity has released Launches, a new discovery section for products building in the ecosystem.

✨ The first Launches cohort is now live with 16 projects
How it works:
β€’ users clap for the projects they like
β€’ clap budget is tied to Identity reputation
β€’ top projects earn permanent badges on Identity at the end of the week

This makes discovery more transparent and gives more weight to real ecosystem contribution.

✨ Projects in the first cohort include:
β€’ OmniMarket β€” prediction markets for Telegram communities
β€’ EdChess β€” play chess and earn TON
β€’ Toncenter SDK β€” AI-ready Python SDK for TON
β€’ TON Agent Platform β€” no-code AI agents in Telegram
β€’ TON Bridge β€” cross-chain liquidity for TON
β€’ ENACT Protocol β€” on-chain escrow for AI agent payments
β€’ Catallaxy β€” decentralized agents marketplace
β€’ TeleGifts β€” AI-powered Telegram Gifts analytics and swaps
β€’ Hash2Cash β€” Bitcoin mining based on RWA
β€’ ODROB β€” financial layer for agents
β€’ Rolls β€” PvP game with Telegram NFT gifts
β€’ mena β€” P2P atomic asset exchange on TON
β€’ Swift Gifts β€” Telegram Gifts aggregator
β€’ TonGo β€” .ton DNS lookup service
β€’ Watchi β€” AI focus coach with streaks and ambient sounds
β€’ MOLVA β€” social game on TON

πŸ‘‰ Check out the cohort and vote for your favorites
⚑Rankings close on Sunday.
πŸ‘‰ Read more about how Launches work

TON Community
| TON Builders | TON Dev News | TON Hubs | X | YouTube | LinkedIn | TON.org
❀17πŸ‘8
Something’s cooking πŸ”₯

Two heavy hitters are about to drop alpha you didn’t know you needed.

πŸ’Ž Chef Andre Rush
✨ @moontrips

This one hits differently. Stay tuned.

WalletKit | Alpha AppKIt | TON Coin | TON Builders | TON Hubs | X | YouTube | LinkedIn | TON.org
Please open Telegram to view this post
VIEW IN TELEGRAM
❀19πŸ”₯10🀣7πŸ₯±4🀨3🌚2
Forwarded from Toncoin
⚑️ Sub-Second Mainnet Activation Starts Now

TON Core has announced the mainnet rollout of the Sub-Second upgrade.

This is a consensus upgrade designed to move TON toward sub-second finality and bring on-chain UX closer to Web2 responsiveness.

Rollout plan:

πŸ“… March 31: Validators upgrade nodes to the version supporting the latest consensus changes

πŸ“… April 2: Validators vote to activate the new consensus on the basechain and enable a moderate block rate increase

πŸ“… April 7: Validators vote to fully activate fast consensus on both the basechain and masterchain

πŸ‘‰ Full announcement

πŸ‘‰ Instructions for validators and apps

TON Community | TON Builders | TON Dev News | TON Hubs | X | YouTube | LinkedIn | TON.org
Please open Telegram to view this post
VIEW IN TELEGRAM
3❀29πŸ”₯11πŸ‘8
Forwarded from Toncoin
Media is too big
VIEW IN TELEGRAM
πŸ’Ž Creator Spotlight | Chef Rush x Angela

Four US Presidents trusted him in the kitchen. After 25 years, not much surprises Chef Andre Rush.
Until Angela Brasington forgot her wallet and paid him instantly with TON Pay inside Telegram.

πŸ‘‰ Follow Chef

TON Community | TON Builders | TON Dev News | TON Hubs | X | YouTube | LinkedIn | TON.org
❀23🌭5πŸŽ‰2πŸ†1
🎀 TON Real Talk Ep.8 is LIVE!

This week: Driving Growth in the US πŸ‡ΊπŸ‡Έ

What does real growth actually look like for TON?

Beyond awareness, it’s about building a system that works:
community β†’ builders β†’ partnerships β†’ adoption

With @moontrips (TON US Hub Lead), Ankit Raj and Clement Chaikov (Not Alone), breaking down what’s working, what’s not, and how growth becomes repeatable.

😏 Watch now on X, Telegram & YouTube

WalletKit | Alpha AppKIt | TON Coin | TON Builders | TON Hubs | X | YouTube | LinkedIn | TON.org
Please open Telegram to view this post
VIEW IN TELEGRAM
1❀34πŸ”₯23❀‍πŸ”₯14🀩5πŸ‘1πŸŽ‰1πŸ†1
Live stream started
Live stream finished (1 hour)
Forwarded from Toncoin
Media is too big
VIEW IN TELEGRAM
🎬 TON Pay | Nikola, VP Payments

In payments, every percentage point counts.
Nikola, VP Payments at TON Foundation, breaks down why.

TON Community | TON Dev News | TON Hubs | X | YouTube | LinkedIn | TON.org
❀12😁7πŸ₯±5πŸ‘3😒2
GM TON CommunityπŸ’ͺ

We're putting together a post about different wallets on TON!

But the real question is – Which one do you like the most?
What’s your favorite feature, and why do you love it?

Let us know in the replies below πŸ’Žβ¬‡οΈ

⚑️BOOST
Please open Telegram to view this post
VIEW IN TELEGRAM
❀36🀨5🌚2
Forwarded from Toncoin
πŸ’ŽCentral Asia is emerging as a key early-stage market for digital financial infrastructure, and TON provides the infrastructure to onboard users at scale and launch real-world financial products.

Anastasia Yugova, CIS Hub Lead at TON Foundation, joined the Central Eurasian Venture Forum in Tashkent πŸ‡ΊπŸ‡Ώ

Key Topics included
⭐Web3 evolving into financial infrastructure
⭐Rising demand for stablecoins in payments
⭐Growing interest in regulatory sandboxes

It was great to connect with builders and speak at IT Park.
Thanks to everyone involved 🀝

TON Community | TON Dev News | TON Regional | X | YouTube | LinkedIn | TON.org
Please open Telegram to view this post
VIEW IN TELEGRAM
Please open Telegram to view this post
VIEW IN TELEGRAM
❀11πŸ‘7πŸ”₯6❀‍πŸ”₯2😁2