Examples: query, "exact match", wildcard*, wild?ard, wild*rd
Fuzzy search: cake~ (finds cakes, bake)
Term boost: "red velvet"^4, chocolate^2
Field grouping: tags:(+work -"fun-stuff")
Escape special characters +-&|!(){}[]^"~*?:\ - e.g. \+ \* \!
Range search: properties.timestamp:[1587729413488 TO *] (inclusive), properties.title:{A TO Z}(excluding A and Z)
Combinations: chocolate AND vanilla, chocolate OR vanilla, (chocolate OR vanilla) NOT "vanilla pudding"
Field search: properties.title:"The Title" AND text

Questions 561

Questions 561

Tags
Sorting
Results
per page
Filter

   
0 Votes
1 Answers
7K Views
0 Votes 1 Answers 7K Views
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...
2 years ago
2 Votes
2 Answers
26K Views
2 Votes 2 Answers 26K Views
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...
Tal Kol
359 × 3 Administrator
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K Views
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
0 Votes
0 Answers
12K Views
0 Votes 0 Answers 12K Views
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
0 Votes
1 Answers
17K Views
0 Votes 1 Answers 17K Views
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
0 Votes
0 Answers
6K Views
0 Votes 0 Answers 6K Views
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
0 Votes
1 Answers
4K Views
0 Votes 1 Answers 4K Views
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
0 Votes
1 Answers
17K Views
0 Votes 1 Answers 17K Views
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...
0 Votes
1 Answers
16K Views
0 Votes 1 Answers 16K Views
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...
2 years ago
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K Views
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 ...
2 years ago
0 Votes
1 Answers
10K Views
0 Votes 1 Answers 10K Views
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...
1 Votes
1 Answers
16K Views
1 Votes 1 Answers 16K Views
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...
0 Votes
1 Answers
17K Views
0 Votes 1 Answers 17K Views
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 Votes
1 Answers
6K Views
2 Votes 1 Answers 6K Views
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...
2 years ago
0 Votes
1 Answers
8K Views
0 Votes 1 Answers 8K Views
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...
1 Votes
1 Answers
16K Views
1 Votes 1 Answers 16K Views
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...
one year ago
1 Votes
2 Answers
21K Views
1 Votes 2 Answers 21K Views
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 ...
2 years ago
0 Votes
1 Answers
12K Views
0 Votes 1 Answers 12K Views
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...
0 Votes
1 Answers
17K Views
0 Votes 1 Answers 17K Views
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...
2 years ago
0 Votes
4 Answers
27K Views
0 Votes 4 Answers 27K Views
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:...
0 Votes
1 Answers
15K Views
0 Votes 1 Answers 15K Views
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
0 Votes
0 Answers
8K Views
0 Votes 0 Answers 8K Views
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 ...
one year ago
0 Votes
0 Answers
13K Views
0 Votes 0 Answers 13K Views
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
0 Votes
1 Answers
19K Views
0 Votes 1 Answers 19K Views
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...
4 Votes
1 Answers
26K Views
4 Votes 1 Answers 26K Views
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...
Daniil Sedov
233 × 6 Administrator
0 Votes
1 Answers
19K Views
0 Votes 1 Answers 19K Views
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
0 Votes
0 Answers
16K Views
0 Votes 0 Answers 16K Views
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
0 Votes
0 Answers
14K Views
0 Votes 0 Answers 14K Views
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
0 Votes
0 Answers
16K Views
0 Votes 0 Answers 16K Views
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...
api
one year ago
0 Votes
0 Answers
8K Views
0 Votes 0 Answers 8K Views
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...
Show more results questions