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...
Functions are called "words" in Fift, and there is a special word word. The whitepaper (https://ton.org/docs/fiftbase.pdf) explains it this way: «word (x – S...
one year ago
Usually new blocks on TON blockchain are formed every new seconds so there's no reason to worry about waiting too long. But I've heard that under some circum...
one year ago
Technically speaking, masterchain and basechain are similar in many ways. Why does using the masterchain cost much more gas? --- > This question was imported...
one year ago
What's the easiest way to get the number of the latest block on the TON blockchain? --- > This question was imported from Telegram Chat: https://t.me/tondev/...
one year ago
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...
How do you access individual elements of a tuple in FunC using a while loop? As in, say there are 5 values in a tuple. How do I access the "nth" value in my ...
one year ago
What is the difference between addresses that start with EQ and those that start with UQ? There are also addresses that start with kf, but when searched up o...
TON configuration parameters can be changed by an election. What does that mean for people running the nodes? In the case such a change happens, all the node...
one year ago
There are numerous libraries for working with TON, but they are mostly for JavaScript / TypeScript. Is it possible to interact with TON using Go language? --...
Is the code of smart contracts visible to the explorers? Can I use some explorer to see the code of any specific smart contract I'm interested in? --- > This...
one year 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...
Highload wallets use queryId instead of seqno. It is better suited for large amounts of transactions, but does it come with a cost in terms of gas? How much ...
https://toncenter.com/api/v2/getTransactions?address=UQCzwxqIw1pt41DND9pgGfAOhJKtQQEgjVcpn0rHxv-4b8Ob&limit=1<=23481826000001&hash=OBInamdujxrUx%2Fqebnhix%2F...
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...
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...
one year ago
Suppose I need to store 50 000 objects and have the ability to sort them (e.g., find an object with the minimal value of some parameter). Is it possible and ...
one year ago
People who own NFTs can keep them in their wallets such as Tonkeeper. But can non-wallet smart contracts be listed as the NFT owners too? Are there any limit...
Is there a built-in square root function in the language? And if not, maybe there is a popular library with the optimal implementation? --- > This question w...
What is the purpose of the Election contract on the TON blockchain, and why does it have a balance greater than the total stake of all validators combined? >...
one year ago
Does anyone know what the following error message of Fift means? I think I have configured fiftlib correctly. [fift-main.cpp:204] Error interpreting file cou...
What is the minimum stake for a validator? On GitHub (https://github.com/ton-blockchain/mytonctrl/blob/master/docs/en/nominator-pool.md) I found that the min...
Is there a dedicated chat group for validators? I'm looking because I want to discuss updates to MyTonCtrl. --- > This question was imported from Telegram Ch...
Many TON tutorials and whitepapers mention Linux/macOS-specific things like /usr/lib/fift path, terminal commands and so on. Can I develop smart contract on ...
I'm trying to create a human-readable transaction graph, but haven't succeed yet. Maybe someone has seen successful examples on other blockchains? --- > This...
one year ago
It's planned to separate the roles of Collator and Validator in TON blockchain. So in addition to current node types such as the Validator node there will be...
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...
Different Jetton tokens have different decimal precision (most use the default value is 9 digits, but some changed it). If I want to know the decimal precisi...
one year ago
Suppose there is a mutex that locks some operations in the smart contract waiting for some other execution chains outside of the smart contract to finish. Is...
one year ago
As far as I understand, on TON blockchain there is a globally set gas limit, and its value usually stays the same, but hypothetically it could be changed. If...