# TON Docs ## Docs - [Blueprint TypeScript API](https://docs.ton.org/contract-dev/blueprint/api.md) - [Benchmarking performance](https://docs.ton.org/contract-dev/blueprint/benchmarks.md) - [Blueprint CLI](https://docs.ton.org/contract-dev/blueprint/cli.md) - [Configuring Blueprint](https://docs.ton.org/contract-dev/blueprint/config.md) - [Collecting test coverage](https://docs.ton.org/contract-dev/blueprint/coverage.md) - [Deployment and interaction](https://docs.ton.org/contract-dev/blueprint/deploy.md) - [Smart contract development](https://docs.ton.org/contract-dev/blueprint/develop.md) - [Blueprint overview](https://docs.ton.org/contract-dev/blueprint/overview.md) - [Contract sharding](https://docs.ton.org/contract-dev/contract-sharding.md) - [Debugging smart contracts](https://docs.ton.org/contract-dev/debug.md) - [Your first smart contract](https://docs.ton.org/contract-dev/first-smart-contract.md) - [Estimate gas usage in TON contracts](https://docs.ton.org/contract-dev/gas.md) - [TON plugin for IDEs from JetBrains](https://docs.ton.org/contract-dev/ide/jetbrains.md) - [IDEs and editor plugins for smart contract development](https://docs.ton.org/contract-dev/ide/overview.md) - [TON extension for Visual Studio Code (VS Code) and VSCode-based editors](https://docs.ton.org/contract-dev/ide/vscode.md) - [On-chain Jetton processing](https://docs.ton.org/contract-dev/on-chain-jetton-processing.md) - [Random number generation](https://docs.ton.org/contract-dev/random.md) - [Security best practices](https://docs.ton.org/contract-dev/security.md) - [Signing messages](https://docs.ton.org/contract-dev/signing.md) - [Overview](https://docs.ton.org/contract-dev/testing/overview.md) - [Reference](https://docs.ton.org/contract-dev/testing/reference.md) - [Upgrading contracts](https://docs.ton.org/contract-dev/upgrades.md) - [Using on-chain libraries](https://docs.ton.org/contract-dev/using-on-chain-libraries.md) - [How to use a vanity contract](https://docs.ton.org/contract-dev/vanity.md) - [Zero-knowledge proofs on TON](https://docs.ton.org/contract-dev/zero-knowledge.md) - [Aside component](https://docs.ton.org/contribute/snippets/aside.md) - [FileTree component](https://docs.ton.org/contribute/snippets/filetree.md) - [Image component](https://docs.ton.org/contribute/snippets/image.md) - [Using components and snippets](https://docs.ton.org/contribute/snippets/overview.md) - [Documentation style guide](https://docs.ton.org/contribute/style-guide.md) - [Agentic MCP server: @ton/mcp](https://docs.ton.org/ecosystem/ai/mcp.md) - [Agentic wallet contracts](https://docs.ton.org/ecosystem/ai/wallets.md) - [Analytics and data providers](https://docs.ton.org/ecosystem/analytics.md) - [Overview](https://docs.ton.org/ecosystem/api/overview.md) - [Jetton prices API](https://docs.ton.org/ecosystem/api/price.md) - [Get your TON Center API key](https://docs.ton.org/ecosystem/api/toncenter/get-api-key.md) - [Introduction](https://docs.ton.org/ecosystem/api/toncenter/introduction.md) - [Rate limits](https://docs.ton.org/ecosystem/api/toncenter/rate-limit.md) - [Get Nominator Bookings Method](https://docs.ton.org/ecosystem/api/toncenter/smc-index/get-nominator-bookings-method.md): Get nominator bookings (debits and credits) in specified pool. - [Get Nominator Earnings Method](https://docs.ton.org/ecosystem/api/toncenter/smc-index/get-nominator-earnings-method.md): Get nominator income in specified pool with his stake on each timepoint. - [Get Nominator Method](https://docs.ton.org/ecosystem/api/toncenter/smc-index/get-nominator-method.md): Get nominator data in given pool (the only in list) or, if pool is not specified, in all pools where nominator stakes. - [Get Pool Bookings Method](https://docs.ton.org/ecosystem/api/toncenter/smc-index/get-pool-bookings-method.md): Get all the bookings (debits and credits) in specified pool. - [Get Pool Method](https://docs.ton.org/ecosystem/api/toncenter/smc-index/get-pool-method.md): Get pool data with all its nominators. - [Lifecheck Method](https://docs.ton.org/ecosystem/api/toncenter/smc-index/lifecheck-method.md): Check if there are any bookings in the last 19 hours. Returns status "ok" if bookings exist, "dead" otherwise. - [Streaming API overview](https://docs.ton.org/ecosystem/api/toncenter/streaming/overview.md) - [Streaming API notification reference](https://docs.ton.org/ecosystem/api/toncenter/streaming/reference.md) - [Streaming API: Server-Sent Events](https://docs.ton.org/ecosystem/api/toncenter/streaming/sse.md) - [Streaming API: WebSocket](https://docs.ton.org/ecosystem/api/toncenter/streaming/wss.md) - [API authentication](https://docs.ton.org/ecosystem/api/toncenter/v2-authentication.md) - [API error codes](https://docs.ton.org/ecosystem/api/toncenter/v2-errors.md) - [Tonlib type identifiers](https://docs.ton.org/ecosystem/api/toncenter/v2-tonlib-types.md) - [Get address balance](https://docs.ton.org/ecosystem/api/toncenter/v2/accounts/get-address-balance.md): Returns the TON balance of an account in nanotons. 1 TON = 1,000,000,000 nanotons. A lightweight endpoint that returns only the balance without contract code, data, or other account details. Returns "0" for addresses that have never received any funds. - [Get address information](https://docs.ton.org/ecosystem/api/toncenter/v2/accounts/get-address-information.md): Returns the current state of any account on the TON blockchain. Includes the balance (in nanotons), smart contract code and data (if deployed), account status, and a reference to the last transaction. This is the primary endpoint for checking if an address exists and what's deployed there. - [Get address state](https://docs.ton.org/ecosystem/api/toncenter/v2/accounts/get-address-state.md): Returns the lifecycle state of an account. Possible values: `uninitialized` (address has no deployed contract but can receive TON), `active` (contract is deployed and working), `frozen` (contract suspended due to zero balance, send TON to unfreeze). Refer to the [account lifecycle states documentati… - [Get extended address information](https://docs.ton.org/ecosystem/api/toncenter/v2/accounts/get-extended-address-information.md): Returns detailed account information with parsed contract state. For wallet contracts, identifies the wallet version (v3, v4, v5) and extracts wallet-specific fields like `seqno` and public key. For other contracts, returns the raw state. - [Get token data](https://docs.ton.org/ecosystem/api/toncenter/v2/accounts/get-token-data.md): Returns metadata for Jetton or NFT contracts. Automatically detects the contract type and returns appropriate fields. For Jetton masters: total supply, admin, metadata. For Jetton wallets: balance, owner. For NFT items: collection, owner, content. For NFT collections: item count, metadata. - [Get wallet information](https://docs.ton.org/ecosystem/api/toncenter/v2/accounts/get-wallet-information.md): Returns wallet-specific information for an address. If the address is a known wallet contract, returns the wallet type, current `seqno` (needed for sending transactions), and wallet_id. Always check `wallet: true` before using wallet-specific fields. Call this before sending any transaction to get t… - [Get block header](https://docs.ton.org/ecosystem/api/toncenter/v2/blocks/get-block-header.md): Returns block metadata without the full transaction list. Includes timestamps, validator info, and references to previous blocks. Intended for block explorers and other use cases that require block information without transactions. - [Get consensus block](https://docs.ton.org/ecosystem/api/toncenter/v2/blocks/get-consensus-block.md): Returns the latest block that has reached consensus and is guaranteed to be final. This block will never be reverted, making it safe for confirming transactions that require absolute finality. - [Get masterchain block signatures](https://docs.ton.org/ecosystem/api/toncenter/v2/blocks/get-masterchain-block-signatures.md): Returns validator signatures for a specific masterchain block. Each signature proves that a validator approved this block. Use this for building cryptographic proofs or verifying block authenticity in trustless applications. - [Get masterchain info](https://docs.ton.org/ecosystem/api/toncenter/v2/blocks/get-masterchain-info.md): Returns the current state of the TON masterchain. The `last` field contains the latest block used for querying current state. The `seqno` in `last` is the current block height. Use this endpoint to obtain the latest block reference for other queries. - [Get outbound message queue size](https://docs.ton.org/ecosystem/api/toncenter/v2/blocks/get-outbound-message-queue-size.md): Returns the current size of the outbound message queue for each shard. A growing queue indicates network congestion. If the queue is large, transactions may take longer to process. Monitor this to detect network issues. - [Get shard block proof](https://docs.ton.org/ecosystem/api/toncenter/v2/blocks/get-shard-block-proof.md): Returns a Merkle proof that links a shardchain block to a masterchain block. This proof cryptographically verifies that the shard block is part of the canonical chain. Used by light clients and cross-chain bridges to verify shard data without trusting the API. - [Get shards](https://docs.ton.org/ecosystem/api/toncenter/v2/blocks/get-shards.md): Returns the active shardchain block identifiers at a given masterchain block height. Each shard processes a subset of accounts in parallel. The response shows how the basechain is currently partitioned and which block each shard is at. - [Lookup block](https://docs.ton.org/ecosystem/api/toncenter/v2/blocks/lookup-block.md): Finds a block by position or time. Specify workchain and shard, then provide either: `seqno` (exact block number), lt (find block containing this logical time), or unixtime (find block closest to this timestamp). Returns the full block ID including hashes needed for verification. - [Get all config parameters](https://docs.ton.org/ecosystem/api/toncenter/v2/configuration/get-all-config-parameters.md): Returns all blockchain configuration parameters at once. Includes gas prices, validator settings, workchain configs, and governance rules. Use the optional `seqno` to get historical configuration at a specific block height. - [Get config parameter](https://docs.ton.org/ecosystem/api/toncenter/v2/configuration/get-config-parameter.md): Returns a specific blockchain configuration parameter. TON stores all network settings on-chain as numbered parameters. Common ones: 0 (config contract), 1 (elector), 15 (election timing), 17 (stake limits), 20-21 (gas prices), 34 (current validators). Check TON documentation for the full list. - [Get libraries](https://docs.ton.org/ecosystem/api/toncenter/v2/configuration/get-libraries.md): Returns smart contract library code by hash. Some contracts reference shared libraries instead of including all code directly. When a library reference appears in contract code, this endpoint fetches the actual library implementation. - [API v2 overview](https://docs.ton.org/ecosystem/api/toncenter/v2/overview.md) - [JSON-RPC endpoint](https://docs.ton.org/ecosystem/api/toncenter/v2/rpc/json-rpc-endpoint.md): All API methods are available through this single endpoint using JSON-RPC 2.0 protocol. Send the method name in the `method` field and parameters as a dictionary in `params`. Useful for calling multiple methods in sequence or when JSON-RPC is preferred over REST. - [Run get method](https://docs.ton.org/ecosystem/api/toncenter/v2/run-method/run-get-method.md): Executes a read-only method on a smart contract. Get methods query contract state without sending a transaction. Common methods include `seqno` (wallet sequence number), `get_wallet_data` (wallet info), and `get_jetton_data` (token info). Method arguments are provided in the `stack` array. - [Run get method (standard)](https://docs.ton.org/ecosystem/api/toncenter/v2/run-method/run-get-method-standard.md): Executes a read-only method on a smart contract using typed stack entries. Input and output stack entries use explicit types (`TvmStackEntryNumber`, `TvmStackEntryCell`, etc.) for structured input/output handling. Common methods: `seqno` (wallet sequence number), `get_wallet_data` (wallet info), `ge… - [Estimate fee](https://docs.ton.org/ecosystem/api/toncenter/v2/send/estimate-fee.md): Calculates the fees required to send a message. Provide the destination address and message body. For new contract deployments, also include init_code and init_data. Set ignore_chksig to true when estimating before signing. Returns a breakdown of storage, gas, and forwarding fees. - [Send BoC](https://docs.ton.org/ecosystem/api/toncenter/v2/send/send-boc.md): Broadcasts a signed message to the TON network. The `boc` parameter must contain a complete, signed external message in base64 format. The API validates the message and forwards it to validators. Returns immediately after acceptance; use getTransactions to confirm the transaction was processed. - [Send BoC (return hash)](https://docs.ton.org/ecosystem/api/toncenter/v2/send/send-boc-return-hash.md): Broadcasts a signed message to the TON network and returns the message hash. The `boc` parameter must contain a complete, signed external message in base64 format. The API validates the message and forwards it to validators. The returned hash can be used to track the message's processing status. - [Get block transactions](https://docs.ton.org/ecosystem/api/toncenter/v2/transactions/get-block-transactions.md): Returns a summary of transactions in a specific block. Each item contains the account address and transaction ID, but not full transaction details. Use `count` to limit results and `after_lt`/`after_hash` for pagination. Call getTransactions with each transaction ID to get full details. - [Get block transactions (extended)](https://docs.ton.org/ecosystem/api/toncenter/v2/transactions/get-block-transactions-extended.md): Returns full transaction objects for all transactions in a specific block. Each transaction includes complete data: inbound and outbound messages, fees, state changes, and BoC-encoded raw data. Use `count` to limit results and `after_lt`/`after_hash` for pagination when `incomplete` is true. - [Get transactions](https://docs.ton.org/ecosystem/api/toncenter/v2/transactions/get-transactions.md): Returns transaction history for an account. Transactions are returned newest-first. Each transaction shows the incoming message that triggered it, all outgoing messages, and fees paid. For pagination: use the `lt` and `hash` from the oldest transaction as the starting point for the next request. - [Get transactions (standard)](https://docs.ton.org/ecosystem/api/toncenter/v2/transactions/get-transactions-standard.md): Returns transaction history for an account in a standardized format. Transactions are returned newest-first. Each transaction includes the triggering inbound message, all outbound messages, and fees paid. The response includes a `previous_transaction_id` cursor for paginating through older transacti… - [Try locate result transaction](https://docs.ton.org/ecosystem/api/toncenter/v2/transactions/try-locate-result-transaction.md): Finds the transaction that received a specific message. Given message parameters, returns the transaction on the destination account that processed the incoming message. Use this to trace message delivery across accounts. - [Try locate source transaction](https://docs.ton.org/ecosystem/api/toncenter/v2/transactions/try-locate-source-transaction.md): Finds the transaction that sent a specific message. Given message parameters, returns the transaction on the source account that created this outgoing message. Useful for tracing where a message originated from. - [Try locate transaction](https://docs.ton.org/ecosystem/api/toncenter/v2/transactions/try-locate-transaction.md): Finds a transaction by message parameters. Given a source address, destination address, and message creation time (created_lt), returns the transaction that processed this message. Useful for locating when a previously sent message was executed. - [Detect address](https://docs.ton.org/ecosystem/api/toncenter/v2/utils/detect-address.md): Validates an address and returns it in all standard formats. Use this to convert between address formats or to validate user input. Returns raw format (0:abc), base64 bounceable (EQ), base64 non-bounceable (UQ), and URL-safe variants. - [Detect hash](https://docs.ton.org/ecosystem/api/toncenter/v2/utils/detect-hash.md): Validates a hash and returns it in all standard formats. Use this to convert between hex (64 chars) and base64 (44 chars) representations. Works with any 256-bit hash including transaction hashes, block hashes, and message hashes. - [Pack address](https://docs.ton.org/ecosystem/api/toncenter/v2/utils/pack-address.md): Converts a raw address to user-friendly base64 format. Raw addresses use the format `workchain:hex` (e.g., `0:abc...`). The packed format is shorter and includes a checksum for error detection. - [Unpack address](https://docs.ton.org/ecosystem/api/toncenter/v2/utils/unpack-address.md): Converts a user-friendly base64 address back to its raw components. Returns the workchain ID, account hex, and flags indicating if the address is bounceable or testnet-only. - [API authentication](https://docs.ton.org/ecosystem/api/toncenter/v3-authentication.md) - [API error codes](https://docs.ton.org/ecosystem/api/toncenter/v3-errors.md) - [Pagination](https://docs.ton.org/ecosystem/api/toncenter/v3-pagination.md) - [Address Book](https://docs.ton.org/ecosystem/api/toncenter/v3/accounts/address-book.md): Query address book - [Get Account States](https://docs.ton.org/ecosystem/api/toncenter/v3/accounts/get-account-states.md): Query account states - [Get Wallet States](https://docs.ton.org/ecosystem/api/toncenter/v3/accounts/get-wallet-states.md): Query wallet information - [Metadata](https://docs.ton.org/ecosystem/api/toncenter/v3/accounts/metadata.md): Query address metadata - [Get Actions](https://docs.ton.org/ecosystem/api/toncenter/v3/actions-and-traces/get-actions.md): Get actions by specified filter. - [Get Pending Actions](https://docs.ton.org/ecosystem/api/toncenter/v3/actions-and-traces/get-pending-actions.md): Get actions by specified filter. - [Get Pending Traces](https://docs.ton.org/ecosystem/api/toncenter/v3/actions-and-traces/get-pending-traces.md): Get traces by specified filter. - [Get Traces](https://docs.ton.org/ecosystem/api/toncenter/v3/actions-and-traces/get-traces.md): Get traces by specified filter. - [Estimate Fee](https://docs.ton.org/ecosystem/api/toncenter/v3/apiv2/estimate-fee.md): Estimate fees required for query processing. Fields body, init-code and init-data accepted in serialized format (b64-encoded). - [Get Address Information](https://docs.ton.org/ecosystem/api/toncenter/v3/apiv2/get-address-information.md): Get smart contract information. - [Get Wallet Information](https://docs.ton.org/ecosystem/api/toncenter/v3/apiv2/get-wallet-information.md): Get wallet smart contract information. The following wallets are supported: `v1r1`, `v1r2`, `v1r3`, `v2r1`, `v2r2`, `v3r1`, `v3r2`, `v4r1`, `v4r2`, `v5beta`, `v5r1`. In case the account is not a wallet error code 409 is returned. - [Run Get-Method](https://docs.ton.org/ecosystem/api/toncenter/v3/apiv2/run-get-method.md): Run get method of smart contract. Stack supports only `num`, `cell` and `slice` types: ``` [ { "type": "num", "value": "0x12a" }, { "type": "cell", "value": "te6..." // base64 encoded boc with cell }, { "type": "slice", "value": "te6..." // base64 encoded boc with slice } ] ``` - [Send Message](https://docs.ton.org/ecosystem/api/toncenter/v3/apiv2/send-message.md): Send an external message to the TON network. - [Get Adjacent Transactions](https://docs.ton.org/ecosystem/api/toncenter/v3/blockchain-data/get-adjacent-transactions.md): Get parent and/or children for specified transaction. - [Get blocks](https://docs.ton.org/ecosystem/api/toncenter/v3/blockchain-data/get-blocks.md): Returns blocks by specified filters. - [Get masterchain block shard state](https://docs.ton.org/ecosystem/api/toncenter/v3/blockchain-data/get-masterchain-block-shard-state.md): Get masterchain block shard state. Same as /api/v2/shards. - [Get masterchain block shard state](https://docs.ton.org/ecosystem/api/toncenter/v3/blockchain-data/get-masterchain-block-shard-state-1.md): Returns all worchain blocks, that appeared after previous masterchain block. - [Get Masterchain Info](https://docs.ton.org/ecosystem/api/toncenter/v3/blockchain-data/get-masterchain-info.md): Get first and last indexed block - [Get messages](https://docs.ton.org/ecosystem/api/toncenter/v3/blockchain-data/get-messages.md): Get messages by specified filters. - [Get pending transactions](https://docs.ton.org/ecosystem/api/toncenter/v3/blockchain-data/get-pending-transactions.md): Get pending transactions by specified filter. - [Get transactions](https://docs.ton.org/ecosystem/api/toncenter/v3/blockchain-data/get-transactions.md): Get transactions by specified filter. - [Get transactions by Masterchain block](https://docs.ton.org/ecosystem/api/toncenter/v3/blockchain-data/get-transactions-by-masterchain-block.md): Returns transactions from masterchain block and from all shards. - [Get transactions by message](https://docs.ton.org/ecosystem/api/toncenter/v3/blockchain-data/get-transactions-by-message.md): Get transactions whose inbound/outbound message has the specified hash. \ - [Get DNS Records](https://docs.ton.org/ecosystem/api/toncenter/v3/dns/get-dns-records.md): Query DNS records by specified filters. Currently .ton and .t.me DNS are supported. - [Get Jetton Burns](https://docs.ton.org/ecosystem/api/toncenter/v3/jettons/get-jetton-burns.md): Get Jetton burns by specified filters - [Get Jetton Masters](https://docs.ton.org/ecosystem/api/toncenter/v3/jettons/get-jetton-masters.md): Get Jetton masters by specified filters - [Get Jetton Transfers](https://docs.ton.org/ecosystem/api/toncenter/v3/jettons/get-jetton-transfers.md): Get Jetton transfers by specified filters - [Get Jetton Wallets](https://docs.ton.org/ecosystem/api/toncenter/v3/jettons/get-jetton-wallets.md): Get Jetton wallets by specified filters - [Get Multisig Orders](https://docs.ton.org/ecosystem/api/toncenter/v3/multisig/get-multisig-orders.md): Get multisig orders by specified filters - [Get Multisig Wallets](https://docs.ton.org/ecosystem/api/toncenter/v3/multisig/get-multisig-wallets.md): Get multisig contracts by specified filters with associated orders - [Get NFT collections](https://docs.ton.org/ecosystem/api/toncenter/v3/nfts/get-nft-collections.md): Get NFT collections by specified filters - [Get NFT items](https://docs.ton.org/ecosystem/api/toncenter/v3/nfts/get-nft-items.md): Get NFT items by specified filters - [Get NFT Transfers](https://docs.ton.org/ecosystem/api/toncenter/v3/nfts/get-nft-transfers.md): Get transfers of NFT items by specified filters - [API v3 overview](https://docs.ton.org/ecosystem/api/toncenter/v3/overview.md) - [Get Top Accounts By Balance](https://docs.ton.org/ecosystem/api/toncenter/v3/stats/get-top-accounts-by-balance.md): Get list of accounts sorted descending by balance. - [Decode Opcodes and Bodies](https://docs.ton.org/ecosystem/api/toncenter/v3/utils/decode-opcodes-and-bodies.md): Decode opcodes and message bodies. Opcodes can be in hex (with or without 0x prefix) or decimal format. Bodies should be in base64 or hex format. - [Decode Opcodes and Bodies](https://docs.ton.org/ecosystem/api/toncenter/v3/utils/decode-opcodes-and-bodies-1.md): Decode opcodes and message bodies. Opcodes can be in hex (with or without 0x prefix) or decimal format. Bodies should be in base64 or hex format. Use POST method for long parameters that may be truncated in GET requests. - [Get Vesting Contracts](https://docs.ton.org/ecosystem/api/toncenter/v3/vesting/get-vesting-contracts.md): Get vesting contracts by specified filters - [How to initialize the TON Connect's AppKit](https://docs.ton.org/ecosystem/appkit/init.md) - [How to work with Jettons using AppKit](https://docs.ton.org/ecosystem/appkit/jettons.md) - [How to work with NFTs using AppKit](https://docs.ton.org/ecosystem/appkit/nfts.md) - [AppKit: SDK for decentralized applications (dApps)](https://docs.ton.org/ecosystem/appkit/overview.md) - [How to work with Toncoin using AppKit](https://docs.ton.org/ecosystem/appkit/toncoin.md) - [Bridges](https://docs.ton.org/ecosystem/bridges.md) - [Overview](https://docs.ton.org/ecosystem/explorers/overview.md) - [Using Tonviewer](https://docs.ton.org/ecosystem/explorers/tonviewer.md) - [Integrate MyTonCtrl with Prometheus](https://docs.ton.org/ecosystem/nodes/cpp/integrating-with-prometheus.md) - [Telegram alerting](https://docs.ton.org/ecosystem/nodes/cpp/mytonctrl/alerting.md) - [Backup](https://docs.ton.org/ecosystem/nodes/cpp/mytonctrl/backups.md): MyTonCtrl bundles helper scripts for creating and restoring node backups. - [BTC Teleport](https://docs.ton.org/ecosystem/nodes/cpp/mytonctrl/btc-teleport.md): The BTC Teleport module manages the optional Bitcoin bridge (Teleport) client shipped with MyTonCtrl. Use these commands to inspect proposals, vote on them, or remove the Teleport installation when no longer needed. - [Collator](https://docs.ton.org/ecosystem/nodes/cpp/mytonctrl/collator.md): Collator mode lets a node produce blocks for selected shardchains without running the full validator stack. The commands below help you configure local collators, adjust the validator allowlist, and manage collator-specific configuration JSON. - [Core](https://docs.ton.org/ecosystem/nodes/cpp/mytonctrl/core.md): Inspecting node health, managing modes and settings, maintaining the software stack, and running diagnostics. - [Custom overlays](https://docs.ton.org/ecosystem/nodes/cpp/mytonctrl/custom-overlays.md): Sets up a custom overlay to speed up synchronization for a group of nodes. - [Installer](https://docs.ton.org/ecosystem/nodes/cpp/mytonctrl/installer.md): MyTonInstaller complements MyTonCtrl by bootstrapping and maintaining TON node components. - [Liquid staking](https://docs.ton.org/ecosystem/nodes/cpp/mytonctrl/liquid-staking.md): Liquid staking mode orchestrates controller deployment and maintenance for jetton-based staking pools. The commands below cover controller lifecycle management, funding flows, validator-set updates, and diagnostic helpers. - [Overview](https://docs.ton.org/ecosystem/nodes/cpp/mytonctrl/overview.md) - [Nominator pools](https://docs.ton.org/ecosystem/nodes/cpp/mytonctrl/pools.md): Pool-focused commands help you manage validator-run nominator pools and Orbs single-nominator pools. The console exposes utilities that create local pool descriptors, deploy the contracts on-chain, and move stake in or out. - [Utilities](https://docs.ton.org/ecosystem/nodes/cpp/mytonctrl/utilities.md): Utility commands provide quick inspection and helper tools for accounts, bookmarks, governance artifacts, and validator data. - [Validator](https://docs.ton.org/ecosystem/nodes/cpp/mytonctrl/validator.md): Validator mode automates governance voting, election participation, efficiency tracking, and the local collator registry. - [Wallet](https://docs.ton.org/ecosystem/nodes/cpp/mytonctrl/wallet.md): Wallet mode provides convenience utilities for generating, activating, importing, exporting, and moving funds between TON wallets managed by MyTonCtrl. - [Run a validator](https://docs.ton.org/ecosystem/nodes/cpp/run-validator.md): Run a validator node with MyTonCtrl - [Setting up a local blockchain using MyLocalTon](https://docs.ton.org/ecosystem/nodes/cpp/setup-mylocalton.md): Install MyLocalTon to spin up a self-contained TON network for development and testing. - [Run a node with MyTonCtrl](https://docs.ton.org/ecosystem/nodes/cpp/setup-mytonctrl.md): Provision hardware, install MyTonCtrl, and follow runbooks for validator, liteserver, or archive roles. - [Blockchain nodes overview](https://docs.ton.org/ecosystem/nodes/overview.md): Pick the right TON node setup and understand the operational work it requires. - [Architecture reference](https://docs.ton.org/ecosystem/nodes/rust/architecture.md) - [How to configure global JSON file](https://docs.ton.org/ecosystem/nodes/rust/global-config.md) - [How to configure logging YAML file](https://docs.ton.org/ecosystem/nodes/rust/logs-config.md) - [Metrics](https://docs.ton.org/ecosystem/nodes/rust/metrics.md) - [Monitoring](https://docs.ton.org/ecosystem/nodes/rust/monitoring.md) - [How to configure node JSON file](https://docs.ton.org/ecosystem/nodes/rust/node-config.md) - [Node configuration reference](https://docs.ton.org/ecosystem/nodes/rust/node-config-ref.md) - [Health probes](https://docs.ton.org/ecosystem/nodes/rust/probes.md) - [Rust node quick start](https://docs.ton.org/ecosystem/nodes/rust/quick-start.md) - [Oracles overview](https://docs.ton.org/ecosystem/oracles/overview.md) - [Pyth oracle](https://docs.ton.org/ecosystem/oracles/pyth.md) - [RedStone oracle](https://docs.ton.org/ecosystem/oracles/redstone.md) - [SDKs](https://docs.ton.org/ecosystem/sdks.md) - [Liquid staking contracts](https://docs.ton.org/ecosystem/staking/liquid-staking.md) - [Nominator pool contracts](https://docs.ton.org/ecosystem/staking/nominator-pools.md) - [Staking overview](https://docs.ton.org/ecosystem/staking/overview.md) - [Single nominator pool contracts](https://docs.ton.org/ecosystem/staking/single-nominator.md) - [Stake calculation](https://docs.ton.org/ecosystem/staking/stake-calculation.md) - [Network status](https://docs.ton.org/ecosystem/status.md) - [How to adopt sub-second finality](https://docs.ton.org/ecosystem/subsecond.md) - [Telegram analytics](https://docs.ton.org/ecosystem/tma/analytics/analytics.md) - [API Endpoints](https://docs.ton.org/ecosystem/tma/analytics/api-endpoints.md) - [FAQ](https://docs.ton.org/ecosystem/tma/analytics/faq.md) - [Installation via NPM package](https://docs.ton.org/ecosystem/tma/analytics/install-via-npm.md) - [Installation via script tag](https://docs.ton.org/ecosystem/tma/analytics/install-via-script.md) - [Managing integration](https://docs.ton.org/ecosystem/tma/analytics/managing-integration.md) - [Preparations](https://docs.ton.org/ecosystem/tma/analytics/preparation.md) - [Supported events](https://docs.ton.org/ecosystem/tma/analytics/supported-events.md) - [TMA create CLI](https://docs.ton.org/ecosystem/tma/create-mini-app.md) - [TMA: Telegram Mini Apps overview](https://docs.ton.org/ecosystem/tma/overview.md) - [Getting started](https://docs.ton.org/ecosystem/tma/telegram-ui/getting-started.md) - [Overview](https://docs.ton.org/ecosystem/tma/telegram-ui/overview.md) - [AppRoot component](https://docs.ton.org/ecosystem/tma/telegram-ui/platform-and-palette.md) - [Avatar](https://docs.ton.org/ecosystem/tma/telegram-ui/reference/avatar.md) - [How to integrate a decentralized application (dApp)](https://docs.ton.org/ecosystem/ton-connect/dapp.md) - [TON Connect manifests](https://docs.ton.org/ecosystem/ton-connect/manifest.md) - [Message lookup](https://docs.ton.org/ecosystem/ton-connect/message-lookup.md) - [TON Connect overview](https://docs.ton.org/ecosystem/ton-connect/overview.md) - [How to integrate a wallet with TON](https://docs.ton.org/ecosystem/ton-connect/wallet.md) - [WalletConnect support](https://docs.ton.org/ecosystem/ton-connect/wallet-connect.md) - [API reference](https://docs.ton.org/ecosystem/ton-pay/api-reference.md) - [On-ramp in TON Pay SDK](https://docs.ton.org/ecosystem/ton-pay/on-ramp.md) - [TON Pay SDK overview](https://docs.ton.org/ecosystem/ton-pay/overview.md) - [How to send payments using TON Pay React hook](https://docs.ton.org/ecosystem/ton-pay/payment-integration/payments-react.md) - [How to send payments using TON Connect](https://docs.ton.org/ecosystem/ton-pay/payment-integration/payments-tonconnect.md) - [How to check status and retrieve info](https://docs.ton.org/ecosystem/ton-pay/payment-integration/status-info.md) - [How to build a transfer](https://docs.ton.org/ecosystem/ton-pay/payment-integration/transfer.md) - [Quick start](https://docs.ton.org/ecosystem/ton-pay/quick-start.md) - [How to add a TON Pay button using JS](https://docs.ton.org/ecosystem/ton-pay/ui-integration/button-js.md) - [How to add a TON Pay button using React](https://docs.ton.org/ecosystem/ton-pay/ui-integration/button-react.md) - [TON Pay webhooks](https://docs.ton.org/ecosystem/ton-pay/webhooks.md) - [Addresses workflow](https://docs.ton.org/ecosystem/wallet-apps/addresses-workflow.md) - [Deep links](https://docs.ton.org/ecosystem/wallet-apps/deep-links.md) - [How to get coins on testnet](https://docs.ton.org/ecosystem/wallet-apps/get-coins.md) - [Tonkeeper](https://docs.ton.org/ecosystem/wallet-apps/tonkeeper.md) - [wallet.ton.org](https://docs.ton.org/ecosystem/wallet-apps/web.md) - [How to retrieve wallet information, jettons, and NFTs with WalletKit on the Android platform](https://docs.ton.org/ecosystem/walletkit/android/data.md) - [How to connect to dApp and handle wallet events on the Android platform](https://docs.ton.org/ecosystem/walletkit/android/events.md) - [How to initialize the TON Connect's WalletKit on the Android platform](https://docs.ton.org/ecosystem/walletkit/android/init.md) - [How to install the TON Connect's WalletKit on the Android platform](https://docs.ton.org/ecosystem/walletkit/android/installation.md) - [How to transfer Toncoin, Jettons and NFTs with WalletKit on the Android platform](https://docs.ton.org/ecosystem/walletkit/android/transactions.md) - [How to manage TON wallets with WalletKit on the Android platform](https://docs.ton.org/ecosystem/walletkit/android/wallets.md) - [How to inject TON's WalletKit into WebView on Android platform](https://docs.ton.org/ecosystem/walletkit/android/webview.md) - [Custodian integration for in-wallet browsers and browser extensions](https://docs.ton.org/ecosystem/walletkit/browser-extension.md) - [How to retrieve wallet information, jettons, and NFTs with WalletKit on the iOS platform](https://docs.ton.org/ecosystem/walletkit/ios/data.md) - [How to connect to dApp and handle wallet events on the iOS platform](https://docs.ton.org/ecosystem/walletkit/ios/events.md) - [How to initialize the TON Connect's WalletKit on the iOS platform](https://docs.ton.org/ecosystem/walletkit/ios/init.md) - [How to install the TON Connect's WalletKit on the iOS platform](https://docs.ton.org/ecosystem/walletkit/ios/installation.md) - [How to transfer Toncoin, Jettons and NFTs with WalletKit on the iOS platform](https://docs.ton.org/ecosystem/walletkit/ios/transactions.md) - [How to manage TON wallets with WalletKit on the iOS platform](https://docs.ton.org/ecosystem/walletkit/ios/wallets.md) - [How to inject TON's WalletKit into WebView on iOS platform](https://docs.ton.org/ecosystem/walletkit/ios/webview.md) - [Custodian integration for native and web wallets](https://docs.ton.org/ecosystem/walletkit/native-web.md) - [WalletKit: SDK for custodial and non-custodial wallet services](https://docs.ton.org/ecosystem/walletkit/overview.md) - [Integration QA guide](https://docs.ton.org/ecosystem/walletkit/qa-guide.md) - [How to handle connections with WalletKit on the Web platform](https://docs.ton.org/ecosystem/walletkit/web/connections.md) - [How to handle other events with WalletKit on the Web platform](https://docs.ton.org/ecosystem/walletkit/web/events.md) - [How to initialize the TON Connect's WalletKit on the Web platform](https://docs.ton.org/ecosystem/walletkit/web/init.md) - [How to work with Jettons using WalletKit on the Web platform](https://docs.ton.org/ecosystem/walletkit/web/jettons.md) - [How to work with NFTs using WalletKit on the Web platform](https://docs.ton.org/ecosystem/walletkit/web/nfts.md) - [How to work with Toncoin using WalletKit on the Web platform](https://docs.ton.org/ecosystem/walletkit/web/toncoin.md) - [How to manage TON wallets with WalletKit on the Web platform](https://docs.ton.org/ecosystem/walletkit/web/wallets.md) - [Change library](https://docs.ton.org/foundations/actions/change-library.md) - [Actions](https://docs.ton.org/foundations/actions/overview.md) - [Reserve coins](https://docs.ton.org/foundations/actions/reserve.md) - [Send message](https://docs.ton.org/foundations/actions/send.md) - [Set code](https://docs.ton.org/foundations/actions/set-code.md) - [Deriving addresses](https://docs.ton.org/foundations/addresses/derive.md) - [Internal address formats](https://docs.ton.org/foundations/addresses/formats.md) - [Addresses overview](https://docs.ton.org/foundations/addresses/overview.md) - [Reading and writing addresses](https://docs.ton.org/foundations/addresses/serialize.md) - [Blockchain config](https://docs.ton.org/foundations/config.md) - [Catchain & BCP visualizer](https://docs.ton.org/foundations/consensus/catchain-visualizer.md): Interactive visual simulation of Catchain + BCP rounds - [Transaction fees](https://docs.ton.org/foundations/fees.md) - [Glossary](https://docs.ton.org/foundations/glossary.md) - [Blockchain limits](https://docs.ton.org/foundations/limits.md) - [Deploy message](https://docs.ton.org/foundations/messages/deploy.md) - [Incoming external messages](https://docs.ton.org/foundations/messages/external-in.md) - [Outbound external messages](https://docs.ton.org/foundations/messages/external-out.md) - [Internal messages](https://docs.ton.org/foundations/messages/internal.md) - [Sending modes](https://docs.ton.org/foundations/messages/modes.md) - [Ordinary transactions](https://docs.ton.org/foundations/messages/ordinary-tx.md) - [Overview](https://docs.ton.org/foundations/messages/overview.md) - [Execution phases](https://docs.ton.org/foundations/phases.md) - [Precompiled contracts](https://docs.ton.org/foundations/precompiled.md) - [Overview](https://docs.ton.org/foundations/proofs/overview.md) - [Liteserver proof verification](https://docs.ton.org/foundations/proofs/verifying-liteserver-proofs.md) - [Bag of cells](https://docs.ton.org/foundations/serialization/boc.md) - [Cells](https://docs.ton.org/foundations/serialization/cells.md) - [Library references](https://docs.ton.org/foundations/serialization/library.md) - [Merkle proofs](https://docs.ton.org/foundations/serialization/merkle.md) - [Merkle updates](https://docs.ton.org/foundations/serialization/merkle-update.md) - [Pruned branches](https://docs.ton.org/foundations/serialization/pruned.md) - [Blockchain sharding](https://docs.ton.org/foundations/shards.md) - [Account status](https://docs.ton.org/foundations/status.md) - [System contracts](https://docs.ton.org/foundations/system.md) - [Traces](https://docs.ton.org/foundations/traces.md) - [Web3 services](https://docs.ton.org/foundations/web3/overview.md) - [TON DNS](https://docs.ton.org/foundations/web3/ton-dns.md): On-chain hierarchical domain name service for TON Network - [TON Proxy](https://docs.ton.org/foundations/web3/ton-proxy.md): HTTP-to-ADNL bridge for accessing and hosting TON Sites from a conventional browser - [TON Sites](https://docs.ton.org/foundations/web3/ton-sites.md): Web services accessible through TON Network via ADNL and RLDP - [TON Storage](https://docs.ton.org/foundations/web3/ton-storage.md): Distributed file storage for the TON Blockchain using torrent-like technology and on-chain payment contracts - [Catchain consensus: an outline](https://docs.ton.org/foundations/whitepapers/catchain.md): Whitepaper by Dr. Nikolai Durov - [Overview](https://docs.ton.org/foundations/whitepapers/overview.md) - [Telegram Open Network (TON) Blockchain Specification](https://docs.ton.org/foundations/whitepapers/tblkch.md): Whitepaper by Dr. Nikolai Durov - [The Open Network](https://docs.ton.org/foundations/whitepapers/ton.md): Whitepaper by Dr. Nikolai Durov - [Telegram Open Network Virtual Machine](https://docs.ton.org/foundations/whitepapers/tvm.md): Whitepaper by Dr. Nikolai Durov - [Coming from Ethereum](https://docs.ton.org/from-ethereum.md) - [Get support](https://docs.ton.org/get-support.md) - [Complex and non-trivial TL-B examples](https://docs.ton.org/languages/tl-b/complex-and-non-trivial-examples.md) - [TL-B overview](https://docs.ton.org/languages/tl-b/overview.md) - [Simple TL-B examples](https://docs.ton.org/languages/tl-b/simple-examples.md) - [TL-B syntax and semantics](https://docs.ton.org/languages/tl-b/syntax-and-semantics.md) - [TEP TL-B examples](https://docs.ton.org/languages/tl-b/tep-examples.md) - [TL-B tooling](https://docs.ton.org/languages/tl-b/tooling.md) - [Other resources](https://docs.ton.org/more-tutorials.md) - [Old documentation](https://docs.ton.org/old.md) - [Jettons payments processing](https://docs.ton.org/payments/jettons.md) - [Payment processing overview](https://docs.ton.org/payments/overview.md) - [Toncoin payments processing](https://docs.ton.org/payments/toncoin.md) - [Airdrop](https://docs.ton.org/standard/tokens/airdrop.md) - [API](https://docs.ton.org/standard/tokens/jettons/api.md) - [Burn](https://docs.ton.org/standard/tokens/jettons/burn.md) - [Jetton comparison](https://docs.ton.org/standard/tokens/jettons/comparison.md) - [How to find Jetton wallet](https://docs.ton.org/standard/tokens/jettons/find.md) - [How it works](https://docs.ton.org/standard/tokens/jettons/how-it-works.md) - [How to mint new jettons](https://docs.ton.org/standard/tokens/jettons/mint.md) - [How to deploy mintless Jetton](https://docs.ton.org/standard/tokens/jettons/mintless/deploy.md) - [Mintless Jetton](https://docs.ton.org/standard/tokens/jettons/mintless/overview.md) - [Overview](https://docs.ton.org/standard/tokens/jettons/overview.md) - [How to get supply data](https://docs.ton.org/standard/tokens/jettons/supply-data.md) - [How to transfer Jettons](https://docs.ton.org/standard/tokens/jettons/transfer.md) - [How to get Jetton wallet data](https://docs.ton.org/standard/tokens/jettons/wallet-data.md) - [Metadata](https://docs.ton.org/standard/tokens/metadata.md) - [API](https://docs.ton.org/standard/tokens/nft/api.md) - [NFT comparison](https://docs.ton.org/standard/tokens/nft/comparison.md) - [How to deploy an NFT item](https://docs.ton.org/standard/tokens/nft/deploy.md) - [NFT: How it works](https://docs.ton.org/standard/tokens/nft/how-it-works.md) - [How to get NFT item metadata](https://docs.ton.org/standard/tokens/nft/metadata.md) - [NFT 2.0](https://docs.ton.org/standard/tokens/nft/nft-2.0.md) - [NFT: Non-fungible token](https://docs.ton.org/standard/tokens/nft/overview.md) - [NFT: reference implementation](https://docs.ton.org/standard/tokens/nft/reference.md) - [SBT: How it works](https://docs.ton.org/standard/tokens/nft/sbt.md) - [How to transfer an NFT](https://docs.ton.org/standard/tokens/nft/transfer.md) - [How to verify NFT item](https://docs.ton.org/standard/tokens/nft/verify.md) - [Token overview](https://docs.ton.org/standard/tokens/overview.md) - [Vesting contracts](https://docs.ton.org/standard/vesting.md) - [Comparison](https://docs.ton.org/standard/wallets/comparison.md) - [Highload wallets](https://docs.ton.org/standard/wallets/highload/overview.md) - [Highload Wallet v2 — specification](https://docs.ton.org/standard/wallets/highload/v2/specification.md) - [How to create Highload Wallet v3](https://docs.ton.org/standard/wallets/highload/v3/create.md) - [How to send a batch of transfers](https://docs.ton.org/standard/wallets/highload/v3/send-batch-transfers.md) - [How to send a single transfer](https://docs.ton.org/standard/wallets/highload/v3/send-single-transfer.md) - [Highload Wallet v3 — specification](https://docs.ton.org/standard/wallets/highload/v3/specification.md) - [How to verify message is processed](https://docs.ton.org/standard/wallets/highload/v3/verify-is-processed.md) - [Wallets history](https://docs.ton.org/standard/wallets/history.md) - [How TON wallets work](https://docs.ton.org/standard/wallets/how-it-works.md) - [How to interact with wallet](https://docs.ton.org/standard/wallets/interact.md) - [Lockup wallet](https://docs.ton.org/standard/wallets/lockup.md) - [Mnemonics](https://docs.ton.org/standard/wallets/mnemonics.md) - [Performance benchmark](https://docs.ton.org/standard/wallets/performance.md) - [How to interact with Preprocessed Wallet V2](https://docs.ton.org/standard/wallets/preprocessed-v2/interact.md) - [Preprocessed Wallet V2 — specification](https://docs.ton.org/standard/wallets/preprocessed-v2/specification.md) - [Restricted wallet](https://docs.ton.org/standard/wallets/restricted.md) - [Wallet V4](https://docs.ton.org/standard/wallets/v4.md) - [Wallet V5](https://docs.ton.org/standard/wallets/v5.md) - [Wallet V5 API](https://docs.ton.org/standard/wallets/v5-api.md) - [Start here](https://docs.ton.org/start-here.md) - [Basic syntax](https://docs.ton.org/tolk/basic-syntax.md) - [Changelog](https://docs.ton.org/tolk/changelog.md) - [Tolk contract examples](https://docs.ton.org/tolk/examples.md) - [Assembler functions](https://docs.ton.org/tolk/features/asm-functions.md) - [Automatic serialization](https://docs.ton.org/tolk/features/auto-serialization.md) - [Compiler optimizations](https://docs.ton.org/tolk/features/compiler-optimizations.md) - [Contract getters](https://docs.ton.org/tolk/features/contract-getters.md) - [Contract storage](https://docs.ton.org/tolk/features/contract-storage.md) - [Forward payload in jettons](https://docs.ton.org/tolk/features/jetton-payload.md) - [Lazy loading](https://docs.ton.org/tolk/features/lazy-loading.md) - [Handling messages](https://docs.ton.org/tolk/features/message-handling.md) - [Sending messages](https://docs.ton.org/tolk/features/message-sending.md) - [Standard library](https://docs.ton.org/tolk/features/standard-library.md) - [FunC-to-Tolk converter](https://docs.ton.org/tolk/from-func/converter.md) - [Standard libraries comparison](https://docs.ton.org/tolk/from-func/stdlib-comparison.md) - [Tolk vs FunC](https://docs.ton.org/tolk/from-func/tolk-vs-func.md) - [Idioms and conventions](https://docs.ton.org/tolk/idioms-conventions.md) - [Tolk language](https://docs.ton.org/tolk/overview.md) - [Conditions and loops](https://docs.ton.org/tolk/syntax/conditions-loops.md) - [Exceptions in Tolk](https://docs.ton.org/tolk/syntax/exceptions.md) - [Functions and methods](https://docs.ton.org/tolk/syntax/functions-methods.md) - [Imports and name resolution](https://docs.ton.org/tolk/syntax/imports.md) - [Mutability](https://docs.ton.org/tolk/syntax/mutability.md) - [Operators](https://docs.ton.org/tolk/syntax/operators.md) - [Pattern matching](https://docs.ton.org/tolk/syntax/pattern-matching.md) - [Structures and fields](https://docs.ton.org/tolk/syntax/structures-fields.md) - [Variables](https://docs.ton.org/tolk/syntax/variables.md) - [Address](https://docs.ton.org/tolk/types/address.md) - [Type aliases](https://docs.ton.org/tolk/types/aliases.md) - [Booleans](https://docs.ton.org/tolk/types/booleans.md) - [Callables](https://docs.ton.org/tolk/types/callables.md) - [Cells, slices, builders](https://docs.ton.org/tolk/types/cells.md) - [Enums](https://docs.ton.org/tolk/types/enums.md) - [Generic structs and aliases](https://docs.ton.org/tolk/types/generics.md) - [Type system overview](https://docs.ton.org/tolk/types/list-of-types.md) - [Maps](https://docs.ton.org/tolk/types/maps.md) - [Nullable types and null safety](https://docs.ton.org/tolk/types/nullable.md) - [Numbers](https://docs.ton.org/tolk/types/numbers.md) - [Serialization](https://docs.ton.org/tolk/types/overall-serialization.md) - [TVM stack representation](https://docs.ton.org/tolk/types/overall-tvm-stack.md) - [Strings](https://docs.ton.org/tolk/types/strings.md) - [Structures](https://docs.ton.org/tolk/types/structures.md) - [Tensors](https://docs.ton.org/tolk/types/tensors.md) - [Arrays and tuples](https://docs.ton.org/tolk/types/tuples.md) - [Type checks and casts](https://docs.ton.org/tolk/types/type-checks-and-casts.md) - [Union types](https://docs.ton.org/tolk/types/unions.md) - [The unknown type](https://docs.ton.org/tolk/types/unknown.md) - [Void and never types](https://docs.ton.org/tolk/types/void-never.md) - [Builders and Slices](https://docs.ton.org/tvm/builders-and-slices.md) - [Continuations](https://docs.ton.org/tvm/continuations.md) - [Exit codes](https://docs.ton.org/tvm/exit-codes.md) - [Gas](https://docs.ton.org/tvm/gas.md) - [Get methods](https://docs.ton.org/tvm/get-method.md) - [Initialization](https://docs.ton.org/tvm/initialization.md): State of TVM before smart contract execution - [Instructions](https://docs.ton.org/tvm/instructions.md): Interactive reference for TVM instructions - [TVM overview](https://docs.ton.org/tvm/overview.md) - [Registers](https://docs.ton.org/tvm/registers.md) - [Retracer](https://docs.ton.org/tvm/tools/retracer.md) - [TON Decompiler](https://docs.ton.org/tvm/tools/ton-decompiler.md) - [TVM Explorer](https://docs.ton.org/tvm/tools/tvm-explorer.md) - [TxTracer](https://docs.ton.org/tvm/tools/txtracer.md) ## OpenAPI Specs - [v2](https://docs.ton.org/ecosystem/api/toncenter/v2.json) - [v3](https://docs.ton.org/ecosystem/api/toncenter/v3.yaml) - [smc-index](https://docs.ton.org/ecosystem/api/toncenter/smc-index.json) - [openapi](https://docs.ton.org/api-reference/openapi.json)