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
18K Views
0 Votes 1 Answers 18K Views
I see that there is a touch method in the wallet v4 contract: https://github.com/ton-blockchain/wallet-contract/blob/main/func/wallet-v4-code.fc#L90 What exa...
one year ago
0 Votes
0 Answers
5K Views
0 Votes 0 Answers 5K Views
I get a type check error and I can't understand what line of my code causes it. How can I find out, is there some tool that could help with tracing? --- > Th...
one year ago
0 Votes
0 Answers
14K Views
0 Votes 0 Answers 14K Views
Can I collect information on all the incoming external messages that a specific smart contract receives? Everything that goes through its recv_external(). --...
one year ago
0 Votes
1 Answers
6K Views
0 Votes 1 Answers 6K Views
On other blockchains there are projects like Tenderly and Pagoda that help with tasks such as smart contract analytics. Are there any alternatives to them in...
one year ago
0 Votes
1 Answers
11K Views
0 Votes 1 Answers 11K Views
I am encountering an inconsistency when calling my_address() in different contexts and hope someone can help me understand why this is happening. When I call...
one year ago
1 Votes
1 Answers
7K Views
1 Votes 1 Answers 7K Views
In TON, messages are used to send data and instructions to smart contracts. Sometimes, these messages can contain large amounts of data such as media files, ...
1 Votes
1 Answers
7K Views
1 Votes 1 Answers 7K Views
Hello is there TON Proxy documentation anywhere? The release was in Q3 2022, shouldn't there be documentation or a white paper? --- > This question was impor...
0 Votes
1 Answers
12K Views
0 Votes 1 Answers 12K Views
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...
one year ago
0 Votes
3 Answers
21K Views
0 Votes 3 Answers 21K Views
When running the command: cmake --build . --target adnl-http-proxy --config Release The build fails with error: msbuild: can not find adnl-http-proxy.vscxpro...
one year ago
0 Votes
0 Answers
7K Views
0 Votes 0 Answers 7K Views
Since I am looking into the multisig project in detail, how can I use the command line in GitHub (https://github.com/akifoq/multisig) using the following com...
one year ago
0 Votes
1 Answers
5K Views
0 Votes 1 Answers 5K Views
Suppose I'm deploying an NFT collection consisting of 1000 items. I would like to know the minting cost in advance. How can I calculate it? --- > This questi...
one year ago
0 Votes
0 Answers
6K Views
0 Votes 0 Answers 6K Views
I know that an NFT collection on TON requires a metadata file in JSON format. Is there some kind of reference file to look at? --- > This question was import...
nft
one year ago
0 Votes
1 Answers
10K Views
0 Votes 1 Answers 10K Views
Is it possible to delete an NFT on TON? --- > This question was imported from Telegram Chat: https://t.me/tondev_eng/8950
one year ago
0 Votes
1 Answers
10K Views
0 Votes 1 Answers 10K Views
I've been playing around with toncli and smart-contract development, but I've been stuck on the toncli deploy command. I'm using a macbook with M1 chip, so I...
one year ago
0 Votes
0 Answers
15K Views
0 Votes 0 Answers 15K Views
Developing for EVM-based blockchains, I got used to doing that using ethers: parseFloat(ethers.utils.formatUnits(reserves.token0, token0.decimals)); Is there...
one year ago
0 Votes
0 Answers
12K Views
0 Votes 0 Answers 12K Views
There is no native auto-renewal of .ton domains, which can lead to unwanted security issues: if someone fails to renew a domain and another person acquires i...
one year ago
0 Votes
1 Answers
13K Views
0 Votes 1 Answers 13K 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
1 Answers
8K Views
0 Votes 1 Answers 8K Views
How can you obtain a v3r2 address from a v4r2 address of a wallet in the TON network? -- > This question was imported from Telegram Chat: https://t.me/tondev...
0 Votes
1 Answers
16K Views
0 Votes 1 Answers 16K Views
I'm coming from EVM ecosystem. I know there are explorers on TON, but the ones I've seen yet provide information regarding a specific wallet address. And I'm...
0 Votes
1 Answers
13K Views
0 Votes 1 Answers 13K Views
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 ...
0 Votes
1 Answers
13K Views
0 Votes 1 Answers 13K Views
As far as I understand, NFTs in TON are just smart contracts that implement a specific interface. Suppose I create a wallet, an explorer or some other produc...
one year ago
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K Views
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...
one year ago
0 Votes
0 Answers
5K Views
0 Votes 0 Answers 5K 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...
one year ago
0 Votes
1 Answers
15K Views
0 Votes 1 Answers 15K 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...
one year ago
0 Votes
0 Answers
13K Views
0 Votes 0 Answers 13K Views
I'm used to timestamps in Unix time, where digits stand for the seconds passed since 1970. Logical time on TON is also a long number, but it seems different....
one year ago
0 Votes
1 Answers
17K Views
0 Votes 1 Answers 17K Views
Do I get it right that FunC treats int and (int) (a tuple with only one integer in it) as two different types even though they both are really integers? I ha...
one year ago
0 Votes
0 Answers
13K Views
0 Votes 0 Answers 13K Views
I would like to store data in the smart contract storage in such a way that only the owner of that smart contract could read it. How to achieve it? --- > Thi...
0 Votes
1 Answers
5K Views
0 Votes 1 Answers 5K Views
Some programming languages have built-in functions like is_int() helping to check quickly if a specific variable is of type integer or not. Is there somethin...
one year ago
0 Votes
0 Answers
5K Views
0 Votes 0 Answers 5K Views
I'm trying to develop on Windows 10. I've installed toncli according to the manual. It successfully finds Func but can't find Fift executable, even though it...
one year ago
0 Votes
1 Answers
17K Views
0 Votes 1 Answers 17K Views
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...
one year ago
Show more results questions