It's known that smart contracts on TON have to pay storage fee, it is deducted during each transaction. And if a contract doesn't have any transactions for a...
I would like to put some utility functions into different files and call them from the main contract file. How can I do that? --- > This question was importe...
Jettons on TON usually have decimal precision value of 9, meaning the smallest amount of a Jetton is 0.000000001 of a coin. I know it's not the only possible...
2 years ago
Recently a TON update allowed users to send transactions with end-to-end encrypted text messages. Do I get it right that the encryption happens client-side a...
one year ago
I'm coming from EVM ecosystem. I know there are explorers on TON, but the ones I've seen yet provide information regarding a specific wallet address. And I'm...
It's said that TON blockchain is capable of processing millions of transactions per second. That sounds like it only needs to spend a small fraction of a sec...
one year ago
It's known that coins in the testnet are not "real". But are the testnet fees in those coins exactly the same as the gas fees in mainnet? If a transaction re...
Some programming languages let assign a variable the result of a logical expression. In FunC that could look like this: int enough? = (s.slice_bits() >= flag...
one year ago
Is there an application to send tokens in bulk ? Like multisender.app but on TON
one year ago
TON whitepapers present "Infinite Sharding Paradigm", but I couldn't quite figure it out by reading the whitepapers. Is there another explanation avaliable s...
one year ago
I come from the Ethereum ecosystem, where time is measured in epochs. Is there a thing like epochs in the TON ecosystem? --- > This question was imported fro...
What error code should a smart contract use when dealing with an unsupported opcode? Is it up to the smart contract developer, or there is a conventional one...
2 years ago
Are there functions for working with dates in FunC? Is it possible to get the current date or something like that? --- > This question was imported from Tele...
TON development world seems to be JavaScript/TypeScript-centered for now. If I know come from Python background, what should I use to develop on TON? --- > T...
Is there any implementation of VRF like what Chainlink brought to work in The Open Network? If there is no such contract working in mainnet can anybody help ...
I have a simple transfer from a TON wallet to a contract. It has a comment: "2". Is there a way to parse this comment within the recv_internal function? Here...
2 years ago
Hello, can somebody please provide me with following information: 1. Is there any way to limit wallets, that displayed in modal? For example i want only Tonh...
one year ago
Suppose there is a web3 blog platform where people follow specific writers. Each follower has its own smart contract. Usually data such as "X follows Y" woul...
2 years ago
I've read in the TON whitepaper that smart contacts in TON can change their code. But if I simply change the code myself and deploy the contract, it gets a n...
2 years ago
On the Tonscan and Tonviewer explorers you can find some general stats numbers on TON. But those two websites provide different numbers of addresses. What ca...
How do you update tlo files? I have found an update-tlo.sh file, but it can't find tl-parser utility. --- > This question was imported from Telegram Chat: ht...
When I try to install toncli using Windows I see: (venv) PS C:\Users\Maxim\Desktop\ton\ton-win64-binarie> toncli INFO: 🥰 First time run - i'll create config...
2 years ago
Where can I find the format of transactions returned by the TonWeb getTransactions() method? Specifically, the format of the 'message' and 'msg_data' fields ...
2 years ago
I've tried asking ChatGPT about development on TON. It kept referring to a project called FreeTON, but I couldn't find more info on that. Are those answers r...
I want to create a new wallet on TON blockchain - the wallet is defined by its 24 secret words (the mnemonic phrase). How can I generate this phrase securely...
2 years ago
FunC language evolves and gets new versions. But there seems to be no release notes for those versions on the TON website and FunC doesn't have its own websi...
Hello is there TON Proxy documentation anywhere? The release was in Q3 2022, shouldn't there be documentation or a white paper? --- > This question was impor...
2 years ago
TON Storage isn't meant to be a hosting for all kinds of websites, but it can host static content. Are there any real-life examples of static TON Sites that ...
one year ago
Is the deposit confirmation based on confirmation num or bundle
one year ago
There's a lot of setup for a project to implement a smart contract in FunC for TON blockchain (ton.org). Is there a good practice setup project that provides...