So far, the only wallet that I found that supports staking is TonHub, but it is mobile only and closed source. The official open source and cross-platform TO...
What is the best block explorer for the TON network? I'm looking specifically for an explorer that allows developers to look at smart contract bytecode, veri...
The set_code() function can be used to alter the code of a smart contract. But while it's easy in theory, it would be great to see an example to fully unders...
one year ago
I want to understand how TON as a blockchain works. I aim to understand: 1. Ton Virtual Machine 2. Blockchain Consensus I come from a Solidity background. Ar...
one year ago
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...
one year ago
Do I get it right that there is no implementation of a floating-point numbers type such as float in FunC? --- > This question was imported from Telegram Chat...
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'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
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
Is there a way that you can access the TON payments system via a Telegram bot? Is there an API that goes along with it? --- > This question was imported from...
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
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 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:...
Why source addres is so important when a contract address being created? In whitepaper: 2.1.2. Source and destination addresses of a message. ``` Any message...
one year 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...
Some projects in the TON ecosystem provide people their smart contracts to see. For example, getgems.io have a GitHub repository with their smart contracts: ...
FunC is the primary language used to program smart contracts on TON, but are there ways to use other programming languages to write smart contracts in progra...
2 years ago
Some of the TON wallets are mobile applications, some are Chrome extensions, some are Telegram bots. But is there any browser extension that supports Firefox...
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...
one year ago
There are different approaches to division: * using floating-point numbers (so 23 / 4 = 5.75) * mathematical rounding (23 / 4 = 6 since it's the closest inte...
one year ago
What happens if we verify the source code in the explorer, but the contract's code gets updated using set_code() instruction? Does the verified source code d...
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
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...
What is the byte size of a smart contract that can be deployed on TON? --------- > This question was imported from Telegram Chat: https://t.me/tondev_eng/26332
one year ago
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...
one year ago
Among different TON wallets there is a browser extension simply called "TON Wallet": https://chrome.google.com/webstore/detail/ton-wallet/nphplpgoakhhjchkkhm...
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...
Why is it that during the TonCLI run_tests procedure, already defined comes up even with only having 2 procedures in test file? The error is as follows: [ 1]...
I'm trying to compile a lite client on a macbook with M1, which gives an error: march-native is not supported How can I compile on mac book M1 (ARM)? Is ther...
2 years 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