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...
The main source of knowledge about Fift language is the whitepaper, available at https://ton.org/fiftbase.pdf. It is useful, but are there other articles, vi...
I'm trying to deploy my contract to the TON MainNet, but I get an error: bash <> The account that I'm using has a 1.5 TON balance, which should be enough! Wh...
In general-purpose languages like Java it is possible to get server time by using things like System.currentTimeMills(). Is there a way to retrieve server ti...
2 years ago
i sent a transaction from my telegram wallet to an Exchange wallet but forgot to Comment, the transaction is not reflecting on the exchange wallet, is there ...
one year 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...
A question for those who actually run a full node: can you share its usage metrics like traffic consumption, CPU usage, network usage? Preferably using somet...
I see that there is a touch method in the wallet v4 contract: https://github.com/ton-blockchain/wallet-contract/blob/main/func/wallet-v4-code.fc#L90 What exa...
Where can I read details about BOC flags, including CRC ? ------- > This question was imported from Telegram Chat: https://t.me/tondev_eng/26701 https://t.me...
one year 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...
можно ли и как сформировать ссылку, которую я могу отправить кому-либо, получатель ссылки, перейдя по ней, получает установленную сумму монет с моего кошельк...
one year ago
A good way to learn in development is to study code written by other people. There are open source smart contracts written in FunC that people can use for le...
one year ago
I would like to track every change regarding Telegram anonymous numbers. They exist as NFTs, so any transaction such as ownership change is stored in the TON...
one year ago
I probably need to use an off-chain backend for my project, but then my app would not be as decentralized as I want it to be. In the EVM ecosystem there is a...
2 years ago
To create a minimal jetton, is the jetton-wallet.fc file within the token-contract GitHub repository really necessary? --- > This question was imported from ...
2 years ago
Does TON blockchain let developers set a pyramid-like scheme for selling NFTs where every seller gets a share from all the future resells? --- > This questio...
2 years ago
I know theoretically that a smart contract can deploy another smart contract. But is there an public example of it to learn from? --- > This question was imp...
one year ago
I need to send Toncoins to many different wallets at once. So instead of sending lots of transactions one by one, I would be happy to use something that lets...
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...
Is it possible to dump values while developing using toncli? --- > This question was imported from Telegram Chat: https://t.me/tondev_eng/9234
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...
one year ago
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 ...
There are numerous libraries for interacting with the TON blockchain, so it might be hard for a new developer to choose. Of course, what is the "best" is a h...
2 years ago
I have experience as a developer in the EVM ecosystem and now I want do develop on TON. What do I need to learn in the first place? What things change, and w...
It is well known that code written in FunC gets compiled to the Fift language (which is more low-level). But is there a way to go back and turn Fift code fil...
Is it possible to call a function in a recursive way in FunC? If so, how exactly should I do it? I haven't found it in the FunC documentation, is it covered ...
It looks like Message X is almost the same as MessageAny. What is the difference? --- > This question was imported from Telegram Chat: https://t.me/tondev_en...
Let func "call" such as: int call((int -> int) f, int x) { return f(x); } But I need to store "f" on smc deployment stage, as initial state. How can I store ...
one year ago
There are TIP standards, but are there interfaces (libraries) that I can use when writing smart contracts with FunC? Or should I just attept to follow the st...
2 years ago
One of the primary differentiators of TON is the fact that it is an asynchronous block chain. This introduces concepts such as lamport time and crazy orderin...
one year ago