๐ฆ ton-rs โ Idiomatic Rust toolkit for TON builders
Write TON dApps the Rust way with a modern crate family:
โจ Why devs will love it
โข Type-safe TON primitives: Cells/BOCs, addresses, TL-B parsing/serialization
โข Zero-boilerplate TL-B: derive layouts with
โข Two network clients:
โ
โ Built-in lite client (always available) using ADNL + Lite API
โข Block.TLB coverage: a large set of predefined
โ
โข Practical examples to get you shipping fast
Repo:
https://github.com/ston-fi/ton-rs
#TON #Rust #TONBlockchain #OpenSource
Write TON dApps the Rust way with a modern crate family:
ton_core, ton, and ton_macros.โจ Why devs will love it
โข Type-safe TON primitives: Cells/BOCs, addresses, TL-B parsing/serialization
โข Zero-boilerplate TL-B: derive layouts with
#[derive(TLB)] from ton_macros โข Two network clients:
โ
TLClient (behind the tonlibjson feature) using TONโs TonLib API โ Built-in lite client (always available) using ADNL + Lite API
โข Block.TLB coverage: a large set of predefined
block.tlb types in ton/src/block_tlb/ โ
tx.rs (transactions), msg.rs (messages), tvm_stack.rs (TVM stack) โ parse raw chain data & traces out of the box โข Practical examples to get you shipping fast
Repo:
https://github.com/ston-fi/ton-rs
#TON #Rust #TONBlockchain #OpenSource
GitHub
GitHub - ston-fi/ton-rs: Rust libraries for working with the TON blockchain: cells, TLB, addresses, wallets, contracts, and tonlibjsonโฆ
Rust libraries for working with the TON blockchain: cells, TLB, addresses, wallets, contracts, and tonlibjson integration. - ston-fi/ton-rs
๐19๐ฅ9โค4โก2
Forwarded from Cocoon
Welcome to Cocoon โ the Confidential Compute Open Network
Cocoon is a decentralized network for executing AI inference securely and privately.
In this network, app developers reward GPU owners with TON for processing inference requests.
Telegram will be the first major customer to use Cocoon for confidential AI queries โ and will invest heavily in promoting the network across its global ecosystem.
๐จ App developers who want to run inference through Cocoon are invited to contact us via DMs to this channel.
Please specify which model architecture you plan to use (e.g., DeepSeek, Qwen), along with your expected daily query volume and average input/output token size.
๐ก GPU owners who want to earn TON by contributing compute power can also message this channel using the ๐ฌ button below.
Please indicate how many GPUs you can provide and include details such as type (e.g., H200), VRAM, and expected uptime.
Cocoon is ready โ launching in November, once weโve gathered your applications.
Cocoon is a decentralized network for executing AI inference securely and privately.
In this network, app developers reward GPU owners with TON for processing inference requests.
Telegram will be the first major customer to use Cocoon for confidential AI queries โ and will invest heavily in promoting the network across its global ecosystem.
Please specify which model architecture you plan to use (e.g., DeepSeek, Qwen), along with your expected daily query volume and average input/output token size.
Please indicate how many GPUs you can provide and include details such as type (e.g., H200), VRAM, and expected uptime.
Cocoon is ready โ launching in November, once weโve gathered your applications.
Please open Telegram to view this post
VIEW IN TELEGRAM
๐15โค8๐ฅ1
Forwarded from TON Tech
The Scaled UI standard has been officially adopted, introducing a unified way for wallets and dApps to display token amounts using a scaling factor โ enabling advanced token models such as rebasing and yield accrual, while preserving full on-chain accuracy.
This ensures consistent and transparent balance representation across the TON ecosystem.
Please open Telegram to view this post
VIEW IN TELEGRAM
๐7๐ฅ5๐คฎ2๐ฉ2โค1๐1
Forwarded from TOLK lang
๐ซง Tolk v1.2: rich bounced messages, cheap deployment, and a breaking change that you'll love
Tolk v1.2 is here, aligned with TVM 12 โ bringing new assembler instructions that make contracts cheaper and cleaner.
This update introduces one breaking change, several powerful new capabilities, and a few quality-of-life improvements across the compiler.
โ Notable changes in Tolk v1.2:
1. Breaking change:
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:
*
Now:
*
*
*
In 99% of contracts only internal addresses are used. External ones are rare, and "none" can be expressed as nullable.
With new TVM 12 instructions, addresses are validated automatically during (de)serialization without extra gas โ no more manual
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.
In
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 โ
-
- "builder-to-address" is the same
- cheaper
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:
โ 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.
Tolk v1.2 is here, aligned with TVM 12 โ bringing new assembler instructions that make contracts cheaper and cleaner.
This update introduces one breaking change, several powerful new capabilities, and a few quality-of-life improvements across the compiler.
โ Notable changes in Tolk v1.2:
1. Breaking change:
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/noneNow:
*
address โ internal only*
address? (nullable) โ internal/none, exactly like "maybe address" in @ton/core*
any_address โ internal/external/noneIn 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 calculationsJust 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.
๐10๐ฅ8๐5โค3โก3
Forwarded from Gram of TON
๐ New TON Documentation is Live
We rebuilt the entire documentation from scratch based on community feedback.
What's new:
โช๏ธ AI Assistant - Ask questions in plain language and get instant answers from the entire documentation
โช๏ธ Easier Navigation - Flat structure rewritten by blockchain engineers
โช๏ธ Comprehensive Guides - New content for blockchain foundations, TON Connect, mytonctrl, Sandbox, Blueprint, smart contracts, and more
โช๏ธ Dr. Durov's Whitepapers - Now in web format with AI summaries and cross-links
Built with feedback from Zengo, RSquad, TonTech, TON API team, TON Core, and shaped and delivered by TON Studio.
Try it: docs.ton.org
๐ Read more
We rebuilt the entire documentation from scratch based on community feedback.
What's new:
โช๏ธ AI Assistant - Ask questions in plain language and get instant answers from the entire documentation
โช๏ธ Easier Navigation - Flat structure rewritten by blockchain engineers
โช๏ธ Comprehensive Guides - New content for blockchain foundations, TON Connect, mytonctrl, Sandbox, Blueprint, smart contracts, and more
โช๏ธ Dr. Durov's Whitepapers - Now in web format with AI summaries and cross-links
Built with feedback from Zengo, RSquad, TonTech, TON API team, TON Core, and shaped and delivered by TON Studio.
Try it: docs.ton.org
๐ Read more
๐15โค7๐ฅ2
Forwarded from TON Tech
TON teams across the ecosystem are refreshing the strategy, and buildersโ input is a key part of that process.
This is a short 3-question form about real blockers and opportunities you see.
Your feedback may help inform the discussions and priorities across the ecosystem.
Please open Telegram to view this post
VIEW IN TELEGRAM
๐12โค6๐4๐ฅ4๐3
Forwarded from TOLK lang
๐ซง Tolk documentation โ now complete and available for learning from scratch
From now on, Tolk has full, structured, from-scratch documentation โ not just "Tolk vs FunC", but a complete language guide that lets developers approach Tolk directly, without any FunC background.
This is a major milestone. Tolk is the recommended language for TON, and now it finally has documentation that matches this role.
Read โ
โ What's inside
The documentation covers the entire language:
โถ Type system.
Every type on its own page: numbers, addresses, structures, generics, etc. โ plus overall explanations for TVM layout and serialization.
โท Syntax details.
Functions, conditions, loops, exceptions, and more โ with minimal descriptions and clear examples.
โธ Language features.
Everything needed for smart-contract development: message sending, contract storage, automatic serialization, etc.
โน Migration from FunC.
A complete guide for FunC builders โ including the mindset shift Tolk encourages.
... And several articles for experienced divers. They reveal compiler internals and the language philosophy. My favourite โ Stop thinking in TL-B.
ใ Hundreds of examples
Every distinct aspect is covered with usage examples โ properly highlighted in both light and dark mode.
No matter whether you are new to TON or have been here for years โ you'll definitely find a few tricks you've never seen before.
โ This documentation in numbers
All together, the new Tolk documentation contains:
โข 46 pages
โข 480 snippets
โข 40000 words
โข 280000 characters
I invested ~200 hours developing the text and picking every word.
I hope that, cumulatively, this documentation will save noticeably more time for all TON developers.
โ Start reading
https://docs.ton.org/languages/tolk
๐ณ Thanks to everyone who reviewed the pull request and pointed out occasional mistakes or misprints. Just imagine the amount of content they had to deal with.
From now on, Tolk has full, structured, from-scratch documentation โ not just "Tolk vs FunC", but a complete language guide that lets developers approach Tolk directly, without any FunC background.
This is a major milestone. Tolk is the recommended language for TON, and now it finally has documentation that matches this role.
Read โ
โ What's inside
The documentation covers the entire language:
โถ Type system.
Every type on its own page: numbers, addresses, structures, generics, etc. โ plus overall explanations for TVM layout and serialization.
โท Syntax details.
Functions, conditions, loops, exceptions, and more โ with minimal descriptions and clear examples.
โธ Language features.
Everything needed for smart-contract development: message sending, contract storage, automatic serialization, etc.
โน Migration from FunC.
A complete guide for FunC builders โ including the mindset shift Tolk encourages.
... And several articles for experienced divers. They reveal compiler internals and the language philosophy. My favourite โ Stop thinking in TL-B.
ใ Hundreds of examples
Every distinct aspect is covered with usage examples โ properly highlighted in both light and dark mode.
No matter whether you are new to TON or have been here for years โ you'll definitely find a few tricks you've never seen before.
โ This documentation in numbers
All together, the new Tolk documentation contains:
โข 46 pages
โข 480 snippets
โข 40000 words
โข 280000 characters
I invested ~200 hours developing the text and picking every word.
I hope that, cumulatively, this documentation will save noticeably more time for all TON developers.
โ Start reading
https://docs.ton.org/languages/tolk
๐ณ Thanks to everyone who reviewed the pull request and pointed out occasional mistakes or misprints. Just imagine the amount of content they had to deal with.
โค11๐8๐คฏ2๐ฅ1๐1
TON Vanity
Meet the new blazingly fast vanity address generator for TON smart contracts!
The previous state-of-the-art solution was released 3 years ago and hasn't improved much since. We at TON Studio decided to develop a completely new solution from scratch, following the usage patterns the previous solution introduced.
Optimizations in both the smart contract and the kernel lead to extreme generation speedups. In realistic usage scenarios on an RTX 4090, the generator finds suffix patterns up to 5,100x faster, and prefix patterns up to 3,600x faster. In practice, this allows finding about 2 more letters than before in appropriate time.
Apart from the crazy speedups, there's a simple interface for TypeScript usage, like in smart contract tests and deployment scripts. Applying the generated vanity address requires writing just a few extra lines of code. The generator's output was improved too, storing all results in a structured JSON format with all useful metadata. Quality-of-life improvements include a polished CLI experience, comprehensive test coverage, and a benchmark script for comparing future optimizations.
The tool will be maintained and improved over time. The entire development process is open on GitHub, and contributions and feedback are welcome. A detailed write-up covering all optimizations and the development process will be published soon, for those who are interested.
Check it out: https://github.com/ton-org/vanity
Meet the new blazingly fast vanity address generator for TON smart contracts!
The previous state-of-the-art solution was released 3 years ago and hasn't improved much since. We at TON Studio decided to develop a completely new solution from scratch, following the usage patterns the previous solution introduced.
Optimizations in both the smart contract and the kernel lead to extreme generation speedups. In realistic usage scenarios on an RTX 4090, the generator finds suffix patterns up to 5,100x faster, and prefix patterns up to 3,600x faster. In practice, this allows finding about 2 more letters than before in appropriate time.
Apart from the crazy speedups, there's a simple interface for TypeScript usage, like in smart contract tests and deployment scripts. Applying the generated vanity address requires writing just a few extra lines of code. The generator's output was improved too, storing all results in a structured JSON format with all useful metadata. Quality-of-life improvements include a polished CLI experience, comprehensive test coverage, and a benchmark script for comparing future optimizations.
The tool will be maintained and improved over time. The entire development process is open on GitHub, and contributions and feedback are welcome. A detailed write-up covering all optimizations and the development process will be published soon, for those who are interested.
Check it out: https://github.com/ton-org/vanity
๐ฅ33โค17๐12โก4๐ฉ2๐2
Hello everyone,
The Pyth oracle contract addresses have now been updated in the TON docs.
The new contract brings several performance improvements, including significantly reduced on-chain price verification costs (10-20x cheaper).
https://docs.ton.org/ecosystem/oracles/pyth
The Pyth oracle contract addresses have now been updated in the TON docs.
The new contract brings several performance improvements, including significantly reduced on-chain price verification costs (10-20x cheaper).
https://docs.ton.org/ecosystem/oracles/pyth
TON Docs
Pyth oracle - TON Docs
๐18โค12๐4๐คฏ4๐ฅ2
Forwarded from BotNews
This media is not supported in your browser
VIEW IN TELEGRAM
Bot API 9.3
๐ช AI Revolution
This release comes with new tools and native interfaces to easily integrate modern LLMs and AI features.
โข Introduced topics in 1-on-1 chats, letting users organize bot chats into easily accessible threads.
โข Topics in private chats support all send and forward methods, including chat actions.
โข Out of the box, bots can edit or delete private chat topics, manage pinned messages and more.
โข Allowed bots to stream live responses as they're generated.
๐ Gifts
โข Improved gifts โ with support for blockchain, multiple currencies, backgrounds and more.
โข Bots can now list all gifts owned by users and chats with detailed filtering options.
โข Added detailed information about the colors tied to a gift or applied to a chat.
๐ค Profiles and Private Chats
โข Business bots can now repost stories across accounts they manage.
โข Copied and forwarded messages can now show effects in private chats.
โข Bots can now see the rating of users who contact them.
โ General
โข Allowed bots to hide their main @username if they set an upgraded one via Fragment.
โข Bots can now restrict channel admins from removing members.
โข And more, see the full changelog for details:
https://torg.tg-me.sbs/bots/api-changelog#december-31-2025
Happy Holidays from the Telegram Team๐
This release comes with new tools and native interfaces to easily integrate modern LLMs and AI features.
โข Introduced topics in 1-on-1 chats, letting users organize bot chats into easily accessible threads.
โข Topics in private chats support all send and forward methods, including chat actions.
โข Out of the box, bots can edit or delete private chat topics, manage pinned messages and more.
โข Allowed bots to stream live responses as they're generated.
โข Improved gifts โ with support for blockchain, multiple currencies, backgrounds and more.
โข Bots can now list all gifts owned by users and chats with detailed filtering options.
โข Added detailed information about the colors tied to a gift or applied to a chat.
โข Business bots can now repost stories across accounts they manage.
โข Copied and forwarded messages can now show effects in private chats.
โข Bots can now see the rating of users who contact them.
โข Allowed bots to hide their main @username if they set an upgraded one via Fragment.
โข Bots can now restrict channel admins from removing members.
โข And more, see the full changelog for details:
https://torg.tg-me.sbs/bots/api-changelog#december-31-2025
Happy Holidays from the Telegram Team
Please open Telegram to view this post
VIEW IN TELEGRAM
โค16๐4๐1๐ฅ1
Forwarded from Ton Console (Subbotin)
Help us become better.
You probably use tonviewer.com, and you likely have ideas on how it could be improved or fixed. Weโd really appreciate it if you took our survey and helped us make it better.
Alternatively, you can share your feedback directly in the comments under this post.
You probably use tonviewer.com, and you likely have ideas on how it could be improved or fixed. Weโd really appreciate it if you took our survey and helped us make it better.
Alternatively, you can share your feedback directly in the comments under this post.
๐6โค3๐2๐คฎ2๐คทโโ1๐ฅ1๐ฉ1๐1
๐ AppKit โ Early Access Now Open
A new way to build TON apps.
Blockchain complexity fades into the background. You focus on product.
๐ Apply for the Early Adopter List.
*Selected developers will have access to Beta version.
Gateway Tickets | Hotel Booking | TON Community | TON Builders | TON Hubs | X | YouTube | Website | Blog | LinkedIn
A new way to build TON apps.
Blockchain complexity fades into the background. You focus on product.
๐ Apply for the Early Adopter List.
*Selected developers will have access to Beta version.
Gateway Tickets | Hotel Booking | TON Community | TON Builders | TON Hubs | X | YouTube | Website | Blog | LinkedIn
๐ฅ10๐5โค4๐ฉ4๐คก3
๐ Final Call | Gateway 2026 Early Bird
24 hours. That's it.
Early bird closes tomorrow at 9pm CET. If you've been waiting, this is the moment.
Dubai. May 1-2. Build what you believe.
โ
Gateway Tickets | Hotel Booking | TON Community | TON Builders | TON Hubs | X | YouTube | Website | Blog | LinkedIn
24 hours. That's it.
Early bird closes tomorrow at 9pm CET. If you've been waiting, this is the moment.
Dubai. May 1-2. Build what you believe.
โ
Gateway Tickets | Hotel Booking | TON Community | TON Builders | TON Hubs | X | YouTube | Website | Blog | LinkedIn
๐คก6๐ฉ5๐ฅ1๐1
๐ Gateway 2026 Tickets in Crypto | Coming Soon
Soon you'll be able to purchase Gateway 2026 tickets with $TON and $USDT on TON.
We're teaming up with Moongate to bring crypto-native ticketing to our flagship event.
More details coming soon. Stay tunned!
WalletKit | Alpha AppKit | TON Community | TON Builders | TON Hubs |X | YouTube | LinkedIn |TON.org
Soon you'll be able to purchase Gateway 2026 tickets with $TON and $USDT on TON.
We're teaming up with Moongate to bring crypto-native ticketing to our flagship event.
More details coming soon. Stay tunned!
WalletKit | Alpha AppKit | TON Community | TON Builders | TON Hubs |X | YouTube | LinkedIn |TON.org
๐คก16๐ฉ9โค2๐ฅ1๐1
Forwarded from BotNews
This media is not supported in your browser
VIEW IN TELEGRAM
Bot API 9.4
๐จ Custom Emoji and Buttons
โข Bots can now use custom emoji in outgoing messages if their owner has Telegram Premium.
โข Keyboard and inline buttons now support background colors and custom emoji.
๐ฌ Private Chat Topics
โข Bots can now create new topics in 1-on-1 chats.
โข Via the BotFather Mini App, bot owners can also prevent users from creating or deleting topics.
๐ค Profile Info
โข Bots can now set and remove their own profile pic.
โข User profile audios are now visible to bots.
๐ Gifts
โข Unique gifts now include model rarity information.
โข Out-of-the-box support for detecting gifts burned after crafting.
โ๏ธ General
โข Bots now handle service messages when a chat owner leaves or ownership changes.
โข Video objects now include a list of available qualities.
โข And more, see the full changelog for details:
https://torg.tg-me.sbs/bots/api-changelog#february-9-2026
โข Bots can now use custom emoji in outgoing messages if their owner has Telegram Premium.
โข Keyboard and inline buttons now support background colors and custom emoji.
โข Bots can now create new topics in 1-on-1 chats.
โข Via the BotFather Mini App, bot owners can also prevent users from creating or deleting topics.
โข Bots can now set and remove their own profile pic.
โข User profile audios are now visible to bots.
โข Unique gifts now include model rarity information.
โข Out-of-the-box support for detecting gifts burned after crafting.
โข Bots now handle service messages when a chat owner leaves or ownership changes.
โข Video objects now include a list of available qualities.
โข And more, see the full changelog for details:
https://torg.tg-me.sbs/bots/api-changelog#february-9-2026
Please open Telegram to view this post
VIEW IN TELEGRAM
โค4๐4๐ฅ1
โผ๏ธBREAKING ๐ฅ
๐ Introducing TON Pay | Payments Infrastructure for TON
A new SDK that lets merchants and developers accept crypto payments across TON-native applications. Starting with Telegram Mini Apps.
Key capabilities
โช๏ธ One integration across TON apps
โช๏ธ Near-instant on-chain settlement
โช๏ธ Low-cost transactions
โช๏ธ Native checkout experiences
โช๏ธ Merchant dashboard and analytics
TON Pay handles settlement, security, and payment logic. Merchants focus on product and user experience.
๐Apply for early access
๐Documentation
WalletKit | Alpha AppKit | TON Community | TON Builders | TON Hubs |X | YouTube | LinkedIn |TON.org
๐ Introducing TON Pay | Payments Infrastructure for TON
A new SDK that lets merchants and developers accept crypto payments across TON-native applications. Starting with Telegram Mini Apps.
Key capabilities
โช๏ธ One integration across TON apps
โช๏ธ Near-instant on-chain settlement
โช๏ธ Low-cost transactions
โช๏ธ Native checkout experiences
โช๏ธ Merchant dashboard and analytics
TON Pay handles settlement, security, and payment logic. Merchants focus on product and user experience.
๐Apply for early access
๐Documentation
WalletKit | Alpha AppKit | TON Community | TON Builders | TON Hubs |X | YouTube | LinkedIn |TON.org
โค7๐ฅ4๐3๐คก2๐1๐1๐ฉ1
Live from Hong Kong โจ๐
This is how a great event looks like "TON Foundation" Great team ๐ซถ
With Asseto, HashKey, OSL, Animoca Brands, Plume, Asseto, ChainNeXT, Native Group
Stay tuned โฐ for more to come
WalletKit | Alpha AppKit | TON Community | TON Builders | TON Hubs |X | YouTube | LinkedIn |TON.org
This is how a great event looks like "TON Foundation" Great team ๐ซถ
With Asseto, HashKey, OSL, Animoca Brands, Plume, Asseto, ChainNeXT, Native Group
Stay tuned โฐ for more to come
WalletKit | Alpha AppKit | TON Community | TON Builders | TON Hubs |X | YouTube | LinkedIn |TON.org
๐คก8๐ฅ7โค4๐พ1
Forwarded from AI Dev Wall
๐ $10,000 Fast Grants for Agent Tooling on TON
Next Monday (23rd February), the AI developer community will select the best AI agent tooling built on TON and allocate $10,000 in total through fast grants.
This is a rapid round:
โ Lightweight review
โ Fast decisions
โ Quick payouts
The goal is simple: bootstrap experimentation and identify the strongest builders ahead of a much larger Agent Competition.
Weโre looking for:
โ Agent SDKs & frameworks
โ On-chain agent infrastructure
โ Developer utilities for agent-driven applications
โ Agent to agent communications
The submission form, details, and evaluation criteria will be published next week.
This is a small, fast-check round designed to move quickly and fund early traction.
Next Monday (23rd February), the AI developer community will select the best AI agent tooling built on TON and allocate $10,000 in total through fast grants.
This is a rapid round:
โ Lightweight review
โ Fast decisions
โ Quick payouts
The goal is simple: bootstrap experimentation and identify the strongest builders ahead of a much larger Agent Competition.
Weโre looking for:
โ Agent SDKs & frameworks
โ On-chain agent infrastructure
โ Developer utilities for agent-driven applications
โ Agent to agent communications
The submission form, details, and evaluation criteria will be published next week.
This is a small, fast-check round designed to move quickly and fund early traction.
๐7โค3๐ฅ1
๐ Gateway 2026 | Early Bird NFT Tickets Now Available
Early bird tickets are now on sale with TON & USDT payments.
Connect your TON Wallet, Tonkeeper or MyTONWallet to get your NFT Ticket.
Moongate is one of the first partners to integrate TON Pay.
๐ Get your tickets now
๐ Read Blog Post
๐ Join us at Gateway!
WalletKit | Alpha AppKit | TON Community | TON Builders | TON Hubs |X | YouTube | LinkedIn |TON.org
Early bird tickets are now on sale with TON & USDT payments.
Connect your TON Wallet, Tonkeeper or MyTONWallet to get your NFT Ticket.
Moongate is one of the first partners to integrate TON Pay.
๐ Get your tickets now
๐ Read Blog Post
๐ Join us at Gateway!
WalletKit | Alpha AppKit | TON Community | TON Builders | TON Hubs |X | YouTube | LinkedIn |TON.org
๐ฅ5โค3๐ฉ3๐คฎ2๐คก2๐1
๐ AppKit | Alpha Announcement
TON is the blockchain built into Telegram. Apps built on TON can reach Telegram's billion+ users directly.
Until now, every team had to build wallet connections, transaction handling, and DeFi integrations from scratch. Weeks of work before a single line of product code.
Today we're announcing AppKit alpha to change that.
What's live now:
โช๏ธ Wallet management and transaction sending
โช๏ธ DeFi integration (swaps, staking)
โช๏ธ TON Connect support
โช๏ธ TypeScript and React support
โช๏ธ LLM-friendly (describe an app, build a prototype in minutes)
WalletKit is also production-ready for wallet developers on iOS, Android, React Native, and Web.
More features coming at Gateway (May 1-2).
๐Read more
WalletKit | Alpha AppKit | TON Community | TON Builders | TON Hubs |X | YouTube | LinkedIn |TON.org
TON is the blockchain built into Telegram. Apps built on TON can reach Telegram's billion+ users directly.
Until now, every team had to build wallet connections, transaction handling, and DeFi integrations from scratch. Weeks of work before a single line of product code.
Today we're announcing AppKit alpha to change that.
What's live now:
โช๏ธ Wallet management and transaction sending
โช๏ธ DeFi integration (swaps, staking)
โช๏ธ TON Connect support
โช๏ธ TypeScript and React support
โช๏ธ LLM-friendly (describe an app, build a prototype in minutes)
WalletKit is also production-ready for wallet developers on iOS, Android, React Native, and Web.
More features coming at Gateway (May 1-2).
๐Read more
WalletKit | Alpha AppKit | TON Community | TON Builders | TON Hubs |X | YouTube | LinkedIn |TON.org
โค11๐6๐ฅ3๐1๐คก1