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
0 Answers
17K Views
0 Votes 0 Answers 17K Views
Did anybody ever complete stress test on ton network? Per my knowledge it has very limited capacity. In addition, the base config allows you to have a master...
2 years ago
0 Votes
0 Answers
15K Views
0 Votes 0 Answers 15K Views
Is there a dedicated chat group for validators? I'm looking because I want to discuss updates to MyTonCtrl. --- > This question was imported from Telegram Ch...
2 years ago
0 Votes
0 Answers
18K Views
0 Votes 0 Answers 18K Views
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
0 Votes
0 Answers
18K Views
0 Votes 0 Answers 18K Views
Currently it is debated whether or not it is a good idea to temporary freeze the inactive mining wallets. Regardless of the discussion outcome, how exactly s...
2 years ago
0 Votes
0 Answers
18K Views
0 Votes 0 Answers 18K Views
What if I develop a smart contract on TON but don't want the data included in the initState to be seen by others? Does it mean I need to use encryption? --- ...
2 years ago
0 Votes
0 Answers
17K Views
0 Votes 0 Answers 17K Views
I would like to see the whole history of past voting by the validators. How exactly can I do it? --- > This question was imported from Telegram Chat: https:/...
2 years ago
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K Views
Hi everyone I use API v4. In the docs there is example of getting block by unix time: https://mainnet-v4.tonhubapi.com/block/utime/1680031682. Here everythin...
one year ago
0 Votes
1 Answers
16K Views
0 Votes 1 Answers 16K Views
I have experience as a developer in the EVM ecosystem and now I want do develop on TON. What do I need to learn in the first place? What things change, and w...
one year ago
0 Votes
1 Answers
12K Views
0 Votes 1 Answers 12K Views
what is the shortcut key for building project on blueprint
one year ago
1 Votes
1 Answers
24K Views
1 Votes 1 Answers 24K Views
What is the difference between addresses that start with EQ and those that start with UQ? There are also addresses that start with kf, but when searched up o...
2 years ago
0 Votes
0 Answers
6K Views
0 Votes 0 Answers 6K Views
I know there's a project TonAPI that provides REST API to TON blockchain. Is it the only one or are there other projects like that? --- > This question was i...
api
2 years ago
0 Votes
0 Answers
8K Views
0 Votes 0 Answers 8K Views
// Create a transfer const seqno: number = await contract.getSeqno(); const transfer = await contract.createTransfer({ seqno, secretKey: keyPair.secretKey, m...
one year ago
0 Votes
3 Answers
22K Views
0 Votes 3 Answers 22K 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...
2 years ago
0 Votes
0 Answers
19K Views
0 Votes 0 Answers 19K Views
I'm getting the following error when compiling Fift. I'm using this command: ./ton-build/crypto/fift counter.fif I followed this tutorial, but when I run fun...
2 years ago
0 Votes
0 Answers
6K Views
0 Votes 0 Answers 6K Views
Suppose we check for two conditions at the same time: if( (a == b) & (b == c) ). If a is not equal to b, that makes the first condition false. And that means...
2 years ago
0 Votes
1 Answers
19K Views
0 Votes 1 Answers 19K Views
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: ...
api
2 years ago
1 Votes
1 Answers
20K Views
1 Votes 1 Answers 20K Views
Blockchains are considered "append-only" and immutable. But I've heard that in the TON world smart contracts can change their own code. So, is it possible fo...
2 years ago
0 Votes
0 Answers
9K Views
0 Votes 0 Answers 9K Views
I have a generated keypair. How to import the secretKey in code? I tried passing it as a string (hex version) but didnt work > This question was imported fro...
2 years ago
0 Votes
0 Answers
8K Views
0 Votes 0 Answers 8K Views
The pytonlib is the commonly used python package for TON, but they don't have many examples. How do I create a TON address, check the transactions of the add...
2 years ago
0 Votes
1 Answers
6K Views
0 Votes 1 Answers 6K Views
How can I call a function from a smart contract using Python? > This question was imported from Telegram Chat: https://t.me/tondev_eng/27664
0 Votes
1 Answers
7K Views
0 Votes 1 Answers 7K 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...
2 years 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
17K Views
0 Votes 1 Answers 17K Views
Hey all - does anyone know why ther are different addresses between the PoW giver contracts listed here: https://ton.org/docs/#/howto/pow-givers and the ones...
0 Votes
0 Answers
13K Views
0 Votes 0 Answers 13K Views
here is my FunC code: C-like forall X -> int is_null (X x) asm "ISNULL"; forall X -> (tuple, ()) push_back (tuple tail, X head) asm "CONS"; forall X -> (tupl...
one year ago
0 Votes
1 Answers
10K Views
0 Votes 1 Answers 10K Views
While building a dApp some questions arise such as "where to store static files for UI" and "where and how to cache data for the app to be responsive". Is th...
2 Votes
2 Answers
12K Views
2 Votes 2 Answers 12K Views
I found online mentions of projects using Solidity to build for TON instead of using FunC and Fift. Is this really possible to do? I already know Solidity an...
Tal Kol
359 × 3 Administrator
0 Votes
1 Answers
6K Views
0 Votes 1 Answers 6K Views
i sent a transaction from my telegram wallet to an Exchange wallet but forgot to Comment, the transaction is not reflecting on the exchange wallet, is there ...
one year ago
0 Votes
4 Answers
12K Views
0 Votes 4 Answers 12K Views
Hi guys. They sent me NFT to the TON address: EQDCgYOsp7papvk4O2_R1qcrtItnRzeZz-knOb4q7xsI_0so It turns out that this wallet does not have the functionality ...
pic
Deleted user
pic
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K Views
Is there any specific reason why single line comments in FunC start with ;; and not something more common like //? It feels very odd. --- > This question was...
2 years ago
0 Votes
1 Answers
5K Views
0 Votes 1 Answers 5K Views
In languages such as x86 assembly there is a NOP instruction that does absolutely nothing. Is there something like that when using the Fift language? --- > T...
2 years ago
Show more results questions