As far as I understand, code in FunC language compiles to Fift, and then from Fift code the resulting bag of cells is generated. Could I make my code more co...
I want to use a hardware wallet like Ledger or Trezor for storing my TON coins. But unfortunately both don't currently have official support for TON coin. Is...
Technically speaking, masterchain and basechain are similar in many ways. Why does using the masterchain cost much more gas? --- > This question was imported...
2 years ago
In Blueprint, we will need to write the Wrapper functions ourselves. More importantly, when we code the op code in our FunC code, we need to decode the strin...
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
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
Many programming languages have a ternary operator, such as booleanExpression ? expression1 : expression2 in Java (if booleanExpression equals true, than exp...
What is the best place to find developer documentation for TON?
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/...
2 years ago
Out of interest, what is the storage fee for a wallet per year? --- > This question was imported from Telegram Chat: https://t.me/tondev_eng/23290
Programming languages often use 0 for "false" and -1 for "true". It works that way in FunC, too. But what about all the other numbers? Do they have a boolean...
one year ago
Is there a possibility that TON will be added to Metamask later? Or there are some technical / non-technical reasons preventing that from happening? --- > Th...
I can't find the zero address, or at least send tokens to it correctly. I would like to use the address it to implement burn mechanics for a Jetton. How do I...
one year ago
Suppose I own a website and it is not a web3 dApp or something, just a regular old centralized one. On that website I take payments and I would like to accep...
2 years ago
FunC standard library includes Lisp-style lists. TON documentation describes them and their basic functionality like adding an element to the beginning of a ...
one year ago
Can you provide information on the cost of storing data in the TVM TON Blockchain at the current moment? Specifically, how much does it cost to store data us...
2 years ago
Please tell me how to transfer tokens without privatekey, I found only such examples in the documentation. const transaction = { validUntil: Math.floor(Date....
one year ago
To be a validator, do you need a server, or is it possible with a normal PC? As long as it meets the requirements, it should be ok, right? --- > This questio...
As far as I understand, a seed phrase (mnemonic words) and a private key are dependent on each other. If I know one of them, can I generate the other from it...
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
Sometimes I encounter "out of gas" error, and it's hard to predict. Are there any best practices on how to deal with that and make sure in advance the code w...
I don't fully understand the masterchain/workchain distinction yet. If someone sends me Toncoins, what chain does it send it in? Do I need to use the same ch...
one year ago
It would be convenient to pay in Toncoins for hosting the offchain parts of a TON project. Is there currently any hosting company allowing that? --- > This q...
one year ago
What is the inflation rate for TON? I am also interested in inflation. As far as I know, it is 0.6%. Is it calculated from the total circulating supply (more...
Sometimes it would be convenient if the gas fee for the transactions would be paid by some other account. In the EVM ecosystem there's EIP-2711 for that: htt...
2 years ago
How can I activate my wallet? --- > This question was imported from Telegram Chat: https://t.me/tondev_eng/2577
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
I would like to test the deployment and execution of smart contracts on my local network. I'm looking for a rapid system that I can spin up so that I don't n...
2 years ago
As far as I understand, usually there is just one shard, but where can I check to see if if changed? --- > This question was imported from Telegram Chat: htt...
2 years ago
When working with TON blockchain, I need to provide a network config file, for example when using the lite client: lite-client -C global.config.json -c 'send...
2 years ago