I use Visual Studio Code with the "FunC Language Support" extension by Whales Corp. This setup is convenient and often helps with the autocompletion in FunC....
I've came to TON ecosystem from Ethereum, and I have Ethereum testnet coins. I know there is Ethereum-TON bridge for mainnet coins. Is there something like t...
I'd like to get updates regarding transactions as soon as possible. Do I get it right that the validators are the first to know about the new transactions, a...
one year ago
There is no native auto-renewal of .ton domains, which can lead to unwanted security issues: if someone fails to renew a domain and another person acquires i...
one year ago
TON Center (toncenter.com) is possibly the best-known service for making API requests, but lately it was not accessible when I needed it. What can be used in...
Suppose I send an external message to some smart contract, and it reacts by sending several internal messages. These messages were generated "together" and w...
one year ago
It's known that Tick and Tock transactions are special, they are invoked at the beginning and end of each masterchain block. But does that mean they are for ...
one year ago
Since I am looking into the multisig project in detail, how can I use the command line in GitHub (https://github.com/akifoq/multisig) using the following com...
one year ago
I'd like to see the main smart contract used by STON.fi DEX. Is it open source, and if it is, where can I look at it? --- > This question was imported from T...
one year ago
Suppose I have a slice that contains a string and I want to read it char by char. How do I do it? --- > This question was imported from Telegram Chat: https:...
I wanna build a ton dapp on tg bot, but I cant find the way to switch net work in the official wallet bot. This is the code I forked. https://github.com/ton-...
In the docs.ton.org, we find: > There is a necessity for the synchronization of message routing and transaction execution. In other words, nodes in the netwo...
one year ago
Do I get it right that if my smart contract needs to store a string longer than 1023 bits, I should split that thing in parts and make a chain of cells conta...
How can I actually register a ton domain? And how to participate in a public auction? > This question was imported from Telegram Chat: > https://t.me/tondev_...
Follow the docs there:https://ton.org/docs/develop/func/overview back by the code: () send_money(slice address, int amount) impure inline { var msg = begin_c...
There are several different wallet contract versions on TON, with the latest wallet contract version currently being v4r2. They have different abilities and ...
one year ago
In the TON DNS smart contract, there is code that makes it so that if the owner doesn't make a transfer within a year, the DNS will be released. Is there a w...
I've been trying to create a simple wallet smart contract by myself to learn FunC, but my transactions keep failing with exit code 34. What am I doing wrong?...
2 years ago
I'm looking for a good tutorial to make an NFT smart contract on TON. --- > This question was imported from Telegram Chat: https://t.me/tondev_eng/10064
2 years ago
Is it possible to programmatically monitor what smart contracts were deployed on TON on any given day? Not just general statistics "how much contracts were d...
one year ago
I'm used to timestamps in Unix time, where digits stand for the seconds passed since 1970. Logical time on TON is also a long number, but it seems different....
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
The fragment.com website shows some of usernames that can be bought but hides others saying "and 1.68K+ more". Is there a way to get the full list of those 1...
one year ago
Suppose I use getTransactions, but instead of getting all of them I'm interested only ones that happened during the current month. How do I do that? --- > Th...
one year ago
On other blockchains such as Ethereum I've encountered a concept of "block confirmations". It means that transaction is considered "complete" and irreversibl...
one year ago
What are compute_gas_fees and other_fee? They consume much more coins than gas fee. Is there a way to lower them? --- > Question imported from Telegram Chat:...
2 years ago
How can I transfer TON in PHP? --- > This question was imported from Telegram Chat: https://t.me/tondev_eng/8808
2 years ago
What's the practical utility of internal non-bounceable messages? When would they be useful? --- > This question was imported by Telegram Chat: https://t.me/...
one year ago
Hi I am trying to get all transactions for a given address and am working my way backwards in time. I'm making the following request (using last tx_hash and ...
2 years ago
// Create a transfer const seqno: number = await contract.getSeqno(); const transfer = await contract.createTransfer({ seqno, secretKey: keyPair.secretKey, m...
one year ago