This question has been answered many times before. But people keep asking it again and again, so it is probably a good idea to have the question here, where ...
2 years ago
As far as I understand, in TON NFT it is possible to associate a wallet with a specific NFT so each of NFTs may have its own "balance". So does it mean it is...
2 years ago
There is an open source tool minter.ton.org for deploying custom Jettons to mainnet. Is there something like it for testnet? --- > This question was imported...
Is there any call to get the contract address inside it? I cant find anything like that in tvm https://t.me/tondev_eng/363
2 years ago
Is there a built-in way to exponentiate numbers in FunC? If there isn't and it is up to developer to write a function, probably the community has already wri...
TON whitepapers are helpful for a developer, but they are hard to read, especially when English is not your native language. Maybe there are community transl...
2 years ago
There are extensions for code editors like Visual Studio Code providing syntax highlighting for FunC. Is there anything like that for the vim editor? --- > T...
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
Some projects like exchanges ask users to include memo (a comment) in the TON coin transaction. What is the purpose, isn't the address enough for identificat...
2 years ago
Blockchains like Ethereum let people not only use the default ether token, but also create their own tokens on the blockchain. Does TON let people do this? H...
2 years ago
It is known that a special "highload wallet" is for those who have lots of transactions. But what exactly do "lots" mean: where is the boundary between "regu...
2 years ago
There are special "highload wallets" for those who make lots of transactions (like exchanges). But aren't the regular wallets good enough? They look fast and...
Are there any minimum/recommended hardware requirements for developing on TON? And is there any "necessary" software like Xcode is for iOS development? Is it...
2 years ago
The TON documentation states that "a variable can be dumped to the debug log by the ~dump function". But where exactly it that log? How can I see it? --- > T...
2 years ago
Many programming languages have a ternary operator, such as booleanExpression ? expression1 : expression2 in Java (if booleanExpression equals true, than exp...
Are there any oracle services such as ChainLink or data aggregators such as The Graph that support the TON network?
2 years ago
I am new to developing smart contracts on the TON blockchain and I am looking for assistance in creating a contract that can automatically distribute a jetto...
2 years 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
I mostly work with Java, so it would be convenient for me to develop on TON using that language. Are there any Java libraries to work with TON? --- > This qu...
Where is it possible to retrieve current TON coin price in USD? Preferably an open API, not a paid one. --- > This question was imported from Telegram Chat: ...
2 years ago
It is probably a silly question, but it is confusing for a newcomer. What is the difference between msg and msg_body, aside from the type difference? --- > T...
2 years ago
On the Ton Whales website there is a "Top 1000 accounts" list sorted by the balance size: https://tonwhales.com/explorer/top How exactly such a list can be c...
2 years ago
I would like to become a part of TON blockchain and run a full node without becoming a validator. What are good options for this? Do node owners usually rent...
2 years ago
In general-purpose languages there often is some form of try. Is there anything like that in FunC I could use to validate data in msg_body? > This question w...
2 years ago
To interact with the outside world blockchains rely on oracles. But I see a problem here. Let's say we have a betting contract that lets users place their be...
2 years ago
What would happen if someone tried to send an internal message with zero ton coins? And if the receiving party calls accept_message(), who would pay the fee?...
2 years ago
I have function like this: clike () save_data_on_update(slice destination_address) impure inline { builder q = begin_cell(); builder qSliceDestinationAddress...
I have a problem when deploying the contract on the console when writing the command: toncli deploy -n testnet
I have done all instructions from this guide: https://github.com/disintar/toncli/blob/master/INSTALLATION.md After the toncli command, I should have: Unfortu...
2 years ago
We are developing a Web3 game project. Every day, tens of thousands of users should receive game tokens for activity in the game. At the moment, the project ...