It's not exactly a technical question, but when you develop on TON, sometimes you need to show the logos of the technologies used. Do FunC and other TON-rela...
In TON blockchain, when implementing my dapp smart contract in FunC, my contract can accept both internal messages handled by recv_internal() and external me...
2 years ago
Can anyone point me to docs on Fift and the Fift assembler? --- > This question was imported from Telegram Chat: https://t.me/tondev_eng/9973
2 years ago
I'd like to put an address and a hash table into the c4 register. Can I put there both of them there separately or do I have to put the address into the hash...
2 years ago
Suppose I have a TON wallet address and I want to get all its jetton wallet addresses. How do I get it? Do I need to index all the blockchain for that? --- >...
one year ago
On TON, everything is a cell, and a slice is a cell opened up for reading. But can a slice contain another slice inside? --- > This question was imported fro...
2 years 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
If I want to make a board game, in order to show the fairness of the game, I put all the back-end computing on the blockchain. A board game could require ran...
2 years 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...
What would be your suggestions on some basic pet projects for studying main concepts of ton? These would be smart contracts to write immidiately after doing ...
Is it possible to use a passphrase with a mnemonic seed phrase in TON wallet applications? ---- > This question was imported from Telegram Chat: https://t.me...
2 years ago
In TVM's whitepaper, we got this in Chapter 3.2.8: > Integers in cells are big-endian by default. > Notice that the default order of bits in Integer s serial...
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
Hello, I'm considering to move my projects from another blockchain to TON but I still don't understand how to handle the asynchronous part. One of my project...
I have a simple transfer from a TON wallet to a contract. It has a comment: "2". Is there a way to parse this comment within the recv_internal function? Here...
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...
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 ...
It is known that TON is designed for scalability and can potentially withstand mass adoption in the future. But since it has not reached its full potential y...
2 years ago
It looks like Message X is almost the same as MessageAny. What is the difference? --- > This question was imported from Telegram Chat: https://t.me/tondev_en...
TON Keeper is a good wallet for TON, but how do I change it to use the TestNet for development purposes? --- > This question was imported from Telegram Chat:...
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
Hello Everyone I would like to know how to add lp to jetton tokens minted through the ton minter. I just don't want to just transfer between wallets, I want ...
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
I have a smart contract that accepts messages from users. I would like to keep a history of requests. How can I save a list of pairs (address, text of the me...
2 years ago
I'm writing a simple DApp on TON blockchain and using the tonweb JavaScript library to interact with it. I need to first send a transaction, and then after i...
2 years ago
In general-purpose languages like Java it is possible to get server time by using things like System.currentTimeMills(). Is there a way to retrieve server ti...
2 years ago
In the EVM ecosystems there are oracles like Chainlink that let smart contracts get random numbers from outside of the blockchain. Is there anything like tha...
one year ago
Recently a TON update allowed users to send transactions with end-to-end encrypted text messages. Do I get it right that the encryption happens client-side a...
one year ago
TON API provides REST API access to TON Blockchain. Some of its methods require to fill the {account-id} variable. What should I put there, what value format...
one year ago
I trnasfered some jetton to another wallet but response body destination address is not in a familiar format instead how can i convert this address into some...
one year ago