TON Dev News
43.2K subscribers
66 photos
9 videos
238 links
Short announces with new services, tools, libraries and their features. Request a post: https://tg-me.sbs/tondev_news/33
Download Telegram
Forwarded from ๐Ÿ“€ TON Data Hub (Dan)
๐Ÿ”ฌ TON data on Dune Advanced Guide

Shared some advanced sql magic for fellow analysts.

๐Ÿ”น How to analyze authentic users (excluding contracts and custodial wallets)
๐Ÿ”น How to calculate TVL using balance tables
๐Ÿ”น How to calculate USD volumes flowing through addresses
๐Ÿ”น How to track Telegram Stars volumes on TON Blockchain
๐Ÿ”น How to analyze both on-chain and estimated off-chain NFT trading volumes

Read the article:
๐Ÿ”— blog.ton.org/how-to-analyze-ton-users-and-token-flows-on-dune

If you are new to TON data or Dune, read the first part: blog.ton.org/ton-on-chain-data-analysis-dune
โค5๐Ÿ‘1
Forwarded from TON Tech
๐Ÿ”จ Dev Tools Updates

New updates have landed for TON development tools โ€” delivering greater stability, better performance, and a smoother workflow for developers building on TON.

๐Ÿ“ @ton/blueprint v0.39.1 โ€“ 2025-08-05
๐Ÿ“ @ton/sandbox v0.36.0 โ€“ 2025-08-04
๐Ÿ“ @ton/test-utils v0.10.0 โ€“ 2025-08-04

๐Ÿ‘ฅ Highlights & New Features
โ€ข New --compiler-version flag for selecting specific compiler versions during contract verification
โ€ข buildLibrary wrapper compile config and compile function option to convert the built code into a library
โ€ข Blockchain.getTransactions method to fetch transactions
โ€ข Code coverage support
โ€ข allowParallel flag in Blockchain.sendMessageIter, allowing for testing MITM attack
โ€ข autoDeployLibs flag for automatic detection of deployed libraries
โ€ข Support for the Bun test runner

โฌ‡ To update, run npm install @ton/blueprint@latest @ton/sandbox@latest @ton/test-utils@latest

๐Ÿ’กTo learn more, visit GitHub pages: https://github.com/ton-org/blueprint, https://github.com/ton-org/sandbox and https://github.com/ton-org/test-utils.

๐Ÿ’ฌ Encountered issues? Please report them on GitHub at https://github.com/ton-org/blueprint/issues.

๐ŸŽ Your feedback and usage examples are crucial. Share your experiences to help us evolve the SDK!
Please open Telegram to view this post
VIEW IN TELEGRAM
๐Ÿ‘11โค5๐Ÿฅฐ2
Forwarded from BotNews
Bot API 9.2

๐Ÿ“ญ Direct Messages in Channels
โ€ข Introduced Channel Direct Messages Chats, allowing bots to send and detect Direct Messages in channels they manage.
โ€ข Bots can now identify direct messages chats and their parent channel.
โ€ข Bots now additionally receive topic metadata for direct messages.

โญ๏ธ Suggested Posts
โ€ข Introduced full support for Suggested Posts in channels, unlocking granular automations via bots with sufficient rights.
โ€ข Bots can now detect, send, approve and decline suggested posts, with detailed price and date options.
โ€ข All relevant service messages are supported โ€“ including approvals, errors, declines, successful payments and refunds.

โ˜‘๏ธ Checklists
โ€ข Bots can now reply directly to individual checklist tasks.

๐ŸŽ Gifts
โ€ข Gifts can now expose their publisher chat for attribution.

โ€ข And more, see the full changelog for details:

https://torg.tg-me.sbs/bots/api-changelog#august-15-2025
Please open Telegram to view this post
VIEW IN TELEGRAM
๐Ÿ—ฟ11โค10๐Ÿ‘8โšก2
Forwarded from IntelliJ TON Development
Intellij TON v3.0.0 is the biggest update of the plugin ever.

We have improved every part of the plugin, every supported language.
The list of supported languages has expanded, and now the plugin also supports TASM, the future assembler standard in
the Tolk language, and Fift assembly has received its improved support as part of Fift support.
BoC files are no longer just opaque binary files, you can open them and see the disassembled code!
In this version, we also supported the latest release of Tolk 1.1.

Available on JetBrains Marketplace

Read full change-log:
https://github.com/ton-blockchain/intellij-ton/releases/tag/v3.0.0
โค6๐Ÿ‘5๐Ÿ‘3
Forwarded from TOLK lang
๐Ÿซง Tolk v1.1: built-in map<K,V>, enums, private and readonly fields, method overloads

Two months have passed โ€” maybe you even started to worry about the silence. The reason is simple: I worked on features that are "nice to have" but complex and time-consuming to implement โ€” and they've only just been finished.

โœ… Notable changes in Tolk v1.1:

1. map<K, V> โ€” a convenient zero-overhead wrapper over TVM dictionaries
2. enum โ€” group numeric constants into a distinct type
3. private and readonly fields in structures
4. Overload resolution and partial specialization

PR on GitHub with detailed info.

โœ” Built-in maps

Forget about uDictSetBuilder, sDictGetFirstAsRef, and the endless boilerplate of low-level dict helpers. A universal map<K, V> now fully replaces them.


var m: map<int8, int32> = createEmptyMap();
m.set(1, 10);
m.addIfNotExists(9, -90);
m.delete(9); // now: [ 1 => 10 ]
m.exists(1); // true
m.isEmpty(); // false


Just m.get() โ€” no need to care about cells and slices under the hood:

val r = m.get(1);
if (r.isFound) { // true
val v = r.loadValue(); // 10
}

// or if the key 100% exists
val v = m.mustGet(1); // 10


Easily iterate forward and backward:

var r = m.findFirst();
while (r.isFound) {
// use r.getKey() and r.loadValue()
r = m.iterateNext(r);
}


Any serializable keys and values โ€” it just works:

map<address, Point>
map<Point, Cell<Extra>>
map<int32, map<int64, bool>>
...


All in all:
- self-explanatory methods, nicely suggested by IDEs
- DICTISETREF, DICTREPLACE, DICTUREPLACEGET, ... โ€” 100+ asm instructions covered by the type system
- all deserialization to/from cells perfectly hidden by high-level API
- absolutely zero overhead compared to low-level TVM dictionaries

โœ” Enums

A long-awaited syntax feature for grouping constants.


// will be 0 1 2
enum Color {
Red
Green
Blue
}


Being integers at runtime, enums have their own place in the type system. They resemble TypeScript/C++ enums. (Unlike Rust, where each variant may have its own shape. In Tolk we have union types โ€” a more powerful solution)


struct Gradient {
from: Color
to: Color? = null
}

var g: Gradient = { from: Color.Blue };
g.from == Color.Red; // false


Compatible with all language features: auto-serialization, exhaustive pattern matching, generics, etc.

โœ” Private and readonly fields

Fields can now have modifiers:
* private โ€” accessible only within methods
* readonly โ€” immutable after object creation


struct PosInTuple {
private readonly t: tuple
curIndex: int
}

fun PosInTuple.last(mutate self) {
// `t` is visible only in methods
// and cannot be modified
self.curIndex = self.t.size() - 1;
}


โœ” Partial specialization

Now it's possible to overload methods for "more specific" implementations:


// general implementation
fun Iterator<T>.next(self) { ... }

// a more specific one
fun Iterator<Cell<T>>.next(self) { ... }


In complex scenarios, this feature lets you adjust the behavior of specific types while keeping a common interface. It "just works", but internally the compiler was enhanced with shape of types, structural depth, type dominators, and several heuristics.

๐ŸŒณ After Tolk v1.0 release, many people and companies started migrating from FunC to Tolk. I have received a lot of feedback and requests (and almost zero bug reports, huh). Meanwhile, a bigger roadmap is already in motion. In the near future I'll also try to close long-standing questions around TypeScript wrappers, and deliver proper from-scratch documentation.
๐Ÿ”ฅ10โค3๐Ÿ‘1
Forwarded from TON Tech
โœˆ TON Connect UI 2.3.1 โ€” PLEASE UPDATE

This continues our push to improve reliability and success rates across the TON ecosystem.

๐Ÿ“ @tonconnect/sdk v3.3.1
๐Ÿ“ @tonconnect/ui v2.3.1
๐Ÿ“ @tonconnect/ui-react v2.3.1

๐Ÿ‘ฅ What changed
โ€ข BREAKING: ton_proof limits: payload โ‰ค 128 bytes, domain โ‰ค 128 bytes, payload + domain โ‰ค 222 bytes. If you exceed these limits, the connection will fail.
โ€ข BREAKING: sendTransaction & signData: requests are now strictly validated against the spec. Non-conformant requests will fail.
โ€ข stateInit, payload, and cell now accept both Base64 and Base64URL, auto-converted to Base64 per spec.
โ€ข Migrated wallet list URL to https://config.ton.org/wallets-v2.json for improved reliability
โ€ข Updated fallback wallets list to match https://config.ton.org/wallets-v2.json
โ€ข Client ID added to all deeplinks to allow better UX on the wallet side.
โ€ข Improved overall package quality and stability, increased test coverage.

๐Ÿ—’ What to test
โ€ข Connect (ton_proof only): ensure your payload and domain sizes are within limits. Typical failure causes: the payload or domain does not meet the limits.
โ€ข Send transactions: verify that the request shape, required fields, types, encodings exactly match the spec. Typical failure causes: invalid address format, amount not a string, bad payload/stateInit encoding, unknown fields.
โ€ข Sign data: verify the request type and fields are correct. Typical failure causes: wrong type and field combination, bad encoding.

โฌ‡ To update, run npm install @tonconnect/sdk@3.3.1 @tonconnect/ui@2.3.1 @tonconnect/ui-react@2.3.1

๐Ÿ”— Specification https://github.com/ton-blockchain/ton-connect/blob/main/requests-responses.md#methods

๐Ÿ’ฌ Encountered issues? Please report them on GitHub at https://github.com/ton-connect/sdk/issues.

โค Your feedback and usage examples are crucial. Share your experiences to help us evolve the SDK!
Please open Telegram to view this post
VIEW IN TELEGRAM
๐Ÿ’ฉ7๐Ÿ‘5โค4๐Ÿคฎ3
Forwarded from TON Tech
๐Ÿ”จ Simplifying code coverage in Blueprint

The new update introduces command, which collects coverage reports from all tests into the coverage directory. Update your packages and try it out now!


blueprint test --coverage


๐Ÿ“ @ton/blueprint v0.41.0 โ€“ 2025-09-23
๐Ÿ“ @ton/sandbox v0.37.2 โ€“ 2025-09-23

โฌ‡ To update, run npm install @ton/blueprint@latest @ton/sandbox@latest

๐Ÿ’กTo learn more, visit GitHub pages: https://github.com/ton-org/blueprint, https://github.com/ton-org/sandbox.

๐Ÿ’ฌ Encountered issues? Please report them on GitHub at https://github.com/ton-org/blueprint/issues.

๐ŸŽ Your feedback and usage examples are crucial. Share your experiences to help us evolve the SDK!
Please open Telegram to view this post
VIEW IN TELEGRAM
๐Ÿ‘6โค5๐Ÿ˜1
Forwarded from TON Tech
โœˆ TON Connect Enhancement โ€” Domain Verification

We're introducing enhanced verification features to provide users with better transparency and trust indicators. Rollout to wallets is starting โ€” please review your manifests to ensure optimal user experience.

๐Ÿ‘ฅ What changed
โ€ข Your app's hosting domain should match the domain specified in your manifest.json โ†’ url parameter
โ€ข No SDK changes required, existing integrations continue working
โ€ข Feature is being deployed to wallets progressively

๐Ÿ—’ What to test
โ€ข Domain alignment: ensure your app domain matches the domain in manifest.json url parameter. Typical issue: url parameter contains different domain than app hosting domain.
โ€ข Manifest accessibility: verify your manifest.json is accessible. Typical issues: CORS issues, manifest not found.

๐Ÿ”จ Examples
๐Ÿ‘ Correct:
App hosted on: https://myapp.ton.org
manifest.json: { "url": "https://myapp.ton.org", ... }

๐Ÿ‘Ž Incorrect:
App hosted on: https://myapp.ton.org
manifest.json: { "url": "https://another.myapp.ton.org", ... }


๐Ÿ”— Specification https://github.com/ton-blockchain/ton-connect/pull/91

๐Ÿ’ฌ Have suggestions on the standard? Please contribute at https://github.com/ton-blockchain/ton-connect/pull/91

โค Your feedback helps us improve the TON Connect ecosystem!
Please open Telegram to view this post
VIEW IN TELEGRAM
โค9๐Ÿ‘4๐Ÿ’ฉ2๐Ÿคก2๐Ÿ‘1๐Ÿคฎ1
Forwarded from TON Tech
โœˆ๏ธ New Proposal: Scaled UI Standard for TON

The Scaled UI standard introduces 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.

๐Ÿ’ฌ We invite developers to review the draft and share feedback before adoption.

๐Ÿ“Ž https://github.com/ton-blockchain/TEPs/pull/526
Please open Telegram to view this post
VIEW IN TELEGRAM
๐Ÿ‘6๐Ÿ’ฉ3๐Ÿฅฑ1
Forwarded from Gram of TON
TON x Ignyte Hackathon: Building the Web3 SuperApp Economy

TON Foundation and Ignyte invite innovators worldwide to create Web3 payment, gig economy, and creator tools on Telegram, making digital payments faster and more useful for everyday life.

๐Ÿ—“ Key Dates

โ–ช๏ธLaunch: Oct 8, 2025
โ–ช๏ธDeadline: Nov 17, 2025
โ–ช๏ธFinalists: Nov 21, 2025
โ–ช๏ธPitch & Awards: Nov 29, 2025

Who Can Apply?

Students, early-stage startups, and scale-ups (Seed to Pre-Series A)

๐Ÿ’ฐ Prizes (30,000 USD Total)
๐Ÿฅ‡ 15,000 | ๐Ÿฅˆ 10,000 | ๐Ÿฅ‰ 5,000

The Challenge

Build solutions that bring Web3 payments and experiences to Telegram, from instant pay for gig workers to token-gated creator tools.

Winners gain mentorship, access to TONโ€™s Ecosystem, and a chance to pilot their projects globally.

Apply here
๐Ÿ‘7
Forwarded from TON Tech
โœˆ๏ธ New Proposal: Tokenized Vaults Standard for TON

The Tokenized Vaults standard, created by the Torch Finance team, introduces a unified interface for vaults on TON, enabling seamless deposits, withdrawals, and balance queries while ensuring compatibility with dApps and protocols across the ecosystem.

Adapted from ERC-4626 and tailored for TONโ€™s asynchronous architecture, it provides a consistent foundation for yield strategies, liquidity products, and composable DeFi applications.

๐Ÿ’ฌ We invite developers to review the draft and share feedback before adoption.

๐Ÿ“Ž https://github.com/ton-blockchain/TEPs/pull/524
Please open Telegram to view this post
VIEW IN TELEGRAM
โค11๐Ÿ‘5โœ2
๐Ÿš€ First beta release of the new TON documentation is now live!
๐Ÿ—บ Jump ahead to beta-docs.ton.org or stay here to learn about the project's backstory, current achievements, and future plans.

For quite some time, developers shared the same feedback: TON documentation is too scattered, difficult to navigate, and has obvious gaps and inconsistencies.

We at TON Studio took that seriously and initiated the TON Docs Revamp project in late July. It is focused on the following four goals:

โ€ข To introduce a streamlined, discoverable structure that would be easy to navigate and search
โ€ข To make documentation welcoming to all developers, from newcomers to seasoned professionals
โ€ข To introduce and maintain stricter quality checks from humans and AIs to ensure proof-read, up-to-date, consistent, and clear content
โ€ข And, finally, to set up documentation release pipelines for major TON builders, while making community contributions straightforward and approachable

๐Ÿ† Today, with the help and suggestions from various developer teams, including Zengo, RSquad, TonTech, TON API team, and TON Core, the TON Studio is proud to present the first public version of this documentation. It already fulfills the first goal of comprehensive structure and rapidly moves towards achieving the third goal of content.

๐Ÿฆ„ That said, this is a beta release: many pages await their contents, some pages require secondary reviews, while infrastructure, pipelines, and processes are only nourishing, not mature yet. All constructive feedback is appreciated.

So, what's in store already? We've got:

โ€ข Flat, easy-to-navigate structure
โ€ข Hands-on articles with real examples whenever we can provide them
โ€ข Visuals and diagrams, including various Mermaid diagrams
โ€ข Smart AI search and summaries
โ€ข Automatic CI spell checks and AI reviews based on the growing style guide
โ€ข ...and much, much more!

๐Ÿ  TON Docs Revamp features an engaging landing page that guides users through their TON journey, whether they're first exploring TON, building smart contracts, integrating wallets, or just want to access and navigate the documentation quickly.

๐Ÿ“ Re-written or brand new content includes pages for: mytonctrl, mylocalton, development setups with Sandbox and Blueprint (with major help from TonTech), IDEs and SDKs, gas estimation, analytics, oracles, bridges, TMAs, TON Connect, standard wallet contracts, Jettons, NFTs, TVM instructions (with proper search and discovery), TL-B, FunC and other TON-specific programming languages, web versions of whitepapers (with cross-links and solid AI summaries), and even a "Coming from Ethereum" guide!

๐Ÿ“ˆ And this is just the beginning. Plans ahead and for the next month include:

- Release pipelines and assignments of relevant technical owners
- Docs, infrastructure, and processes for approachable community contributions
- More playgrounds, interactive components, and interactivity
- Much more content
- Stronger AI-based assistance as documentation grows

๐ŸŽฏ The main goals of this beta release are to show preliminary progress, willingness to make things right, and to collect feedback from the developer community before the full release, which is tentatively scheduled for November 17th.

We are nothing without the feedback from the community. If something is missing or confusing, let us know by filing a GitHub issue. Furthermore, help review new content whenever you or someone you know is deeply familiar with the topic. TON is vast, and there is always something to know or be aware of.

Prominent ecosystem projects are invited to host, co-own, and maintain their documentation with us. Keeping things in one place will enrich the user experience and AI responses.

๐Ÿ’ช Let's make the best documentation for TON. Together.

โ†’ Beta release URL: beta-docs.ton.org
โ†’ GitHub repository: github.com/ton-org/docs
โ†’ Future milestones: github.com/ton-org/docs/milestone/3
โค31๐Ÿ”ฅ20๐ŸŽ‰13๐Ÿพ3๐Ÿ–•2๐Ÿ‘1
@ton/ton library v16.0.0 major release

๐Ÿšจ This is a breaking change to fix a bug in the storeOutListExtendedV5R1 method for Wallet V5.

It used to incorrectly reverse the message order, but in v16.0.0 this behavior has been changed to NOT do the reversal anymore.
Now the load and store operations are mutually inverse.

This major release does not add any new functionality.

Important: If you do not use Wallet V5, you donโ€™t have to change anything in your code, otherwise, please test your apps before upgrading to the new version.

Many thanks to the Ston.fi team for uncovering the issue.
โค19๐Ÿ‘4๐Ÿ”ฅ2
๐Ÿฆ€ ton-rs โ€” Idiomatic Rust toolkit for TON builders

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
๐Ÿ‘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.
Please open Telegram to view this post
VIEW IN TELEGRAM
๐Ÿ‘15โค8๐Ÿ”ฅ1
Forwarded from TON Tech
โœˆ๏ธ TEP-526: Scaled UI Standard Adopted for TON

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.

โค๏ธ Thanks to the community and early adopters โ€” all teams working with jettons are encouraged to implement this standard for consistent user experience.

๐Ÿ“Ž https://github.com/ton-blockchain/TEPs/blob/master/text/0526-scaled-ui-jettons.md
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: 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.
๐Ÿ‘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
๐Ÿ‘15โค7๐Ÿ”ฅ2
Forwarded from TON Tech
โœˆ๏ธ We Need Your Feedback on TON

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.

๐Ÿ“Ž https://walletresearch.typeform.com/to/IwFt5CSL
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.
โค11๐Ÿ‘8๐Ÿคฏ2๐Ÿ”ฅ1๐ŸŽ‰1