Skip to main content

Frequently Asked Questions

This section covers the most popular questions about TON Blockchain.

Overview

Could you share a brief overview of TON?

What are some of the main similarities and differences to EVM blockchains?

Does TON have a test environment?

Block

What is the RPC method used to retrieve block information?

Blocks produced by Validators. Existing blocks available via Liteservers. Liteservers accessible via Lite Сlients. On top of Lite Сlient built 3rd-party tools like wallets, explorers, dapps, etc.

Additionally, here are three high-level third-party block explorers:

Read more in the Explorers in TON section of our documentation.

Block time

2-5s

info

Compare TON's on-chain metrics, including block time and time-to-finality, to Solana and Ethereum by reading our analysis at ton.org/analysis.

Time-to-finality

Under 6 sec.

info

Compare TON's on-chain metrics, including block time and time-to-finality, to Solana and Ethereum by reading our analysis at ton.org/analysis.

Average block size

max block size param 29
max_block_bytes:2097152
info

Find more actual params in Network Configs.

What is the layout of blocks on TON?

Detailed explanations on each field of the layout:

Transactions

RPC method to get transactions data

Is TON transaction asynchronous or synchronous? Is it possible to access documentation that show how this system works?

TON Blockchain messages asynchronous:

  • sender prepares the transaction body(message boc) and broadcasts it via Lite Client (or higher-level tool)
  • Lite Client returns status of broadcast, not result of executing the Transaction
  • sender checks desired result by listening target account(address) state or the whole blockchain state

An explanation of how TON asynchronous messaging works is explained using an example related to Wallet smart contracts:

Example for Wallet contract transfer (low-level):

Is it possible to determine if a transaction is 100% finalized? Is querying the transaction level data sufficient to obtain this information?

Short answer: To ensure the transaction is finalized, the receiver's account must be checked.

To learn more about transaction verification, please see the following examples:

What is the layout of a transaction in TON?

Detailed explanations on each field of the layout:

Is transaction batching possible?

Yes, transaction batching on TON can be accomplished in two distinct ways:

  • By utilizing the asynchronous nature of TON, i.e. sending independent transactions to the network
  • By making use of smart contracts which receive task and execute it as a batch

Example of using batch-featured contract (high-load wallet):

Default wallets (v3/v4) also support sending multiple messages (up to 4) in one transaction.

Standards

What accuracy of currencies is available for TON?

9 digits

info

Number of decimal places supported by Mainnet : 9 digits.

Are there any standardized protocols for minting, burning, and transferring fungible and non-fungible tokens in transactions?

Non-fungible tokens (NFTs):

Jettons (tokens):

Other Standards:

Are there examples of parsing events with Jettons(Tokens) and NFT?

On TON, all data is transmitted as boc-messages. This means that using NFTs in transactions is not an exceptional event. Rather, it is a regular message that is sent to or received from a (NFT- or Wallet-)contract, much like a transaction involving a standard wallet.

However, certain indexed APIs allow you to view all messages sent to or from a contract, and filter them based on your specific requirements.

To better understand how this process works, please refer Payments Processing section.

Account Structure

What is the address format?

Is it possible to have a named account similar to ENS

Yes, use TON DNS:

How to distinguish between a normal account and a smart contract?

How to tell if the address is a token address?

For a Jettons contract must implement standard's interface and return data on get_wallet_data() or get_jetton_data() methods.

Are there any special accounts (e.g. accounts owned by the network) that have different rules or methods from the rest?

There is a special master blockchain inside a TON called Masterchain. It consists of network-wide contracts with network configuration, validator-related contracts, etc:

info

Read more about masterchain, workchains and shardchains in TON Blockchain overview article: Blockchain of Blockchains.

Good example is smart governance contract, which is a part of masterchain:

Smart Contracts

Is it possible to detect contract deployment events on TON?

Everything in TON is a smart contract.

Account address is generated deterministically from its initial state, which includes initial code and initial data (for wallets, initial data includes public key among other parameters). When any component changes, the address changes accordingly.

Smart contract can exist in uninitialized state, meaning that its state is not available in blockchain but contract has non-zero balance. Initial state itself can be sent to the network later with an internal or external message, so those can be monitored to detect contract deployment.

To protect message chains from being halted at non-existing contracts TON use "bounce" feature. Read more in these articles:

Is it possible to re-deploy code to an existing address or does it have to be deployed as a new contract?

Yes, this is possible. If a smart contract carries out specific instructions (set_code()) its code can be updated and the address will remain the same.

If the contract cannot initially execute set_code() (via its code or execution of other code coming from the outside), then its code cannot be changed ever. No one will be able to redeploy contract with other code at the same address.

Can smart contract be deleted?

Yes, either as a result of storage fee accumulation (contract needs to reach -1 TON balance to be deleted) or by sending a message with mode 160.

Are smart contract addresses case sensitive?

Yes, smart contract addresses are case sensitive because they are generated using the base64 algorithm. You can learn more about smart contract addresses here.

Is the Ton Virtual Machine (TVM) EVM-compatible?

The TVM is not compatible with the Ethereum Virtual Machine (EVM) because TON leverages a completely different architecture (TON is asynchronous, while Ethereum is synchronous).

Read more on asynchronous smart contracts.

Is it possible to write on Solidity for TON?

Relatedly, the TON ecosystem does not support development in Ethereum’s Solidity programming language.

But if you add asynchronous messages to the Solidity syntax and the ability to interact with data at a low level, then you get FunC. FunC features a syntax that is common to most modern programming languages and is designed specifically for development on TON.

Remote Procedure Calls (RPCs)

API types:

  • Read more about different API Types (Indexed, HTTP, and ADNL)

Node providers partners:

TON directory with projects from TON Community: