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
17K Views
0 Votes 1 Answers 17K Views
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
0 Votes
0 Answers
12K Views
0 Votes 0 Answers 12K Views
When you implement flow control in your program and you have a loop, sometimes you need to let the execution path out of that loop while its condition is not...
one year ago
0 Votes
1 Answers
20K Views
0 Votes 1 Answers 20K Views
I read in the TON Whitepaper that TON blockchain supports sharding. How does this mechanism work? How does it allow the network to scale to billions of trans...
one year ago
0 Votes
1 Answers
16K Views
0 Votes 1 Answers 16K 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...
one year ago
0 Votes
0 Answers
5K Views
0 Votes 0 Answers 5K Views
There's a main TON monorepo that includes cryptography: https://github.com/ton-blockchain/ton There's also TON Connect. As far as I understand, instead of th...
one year ago
0 Votes
1 Answers
17K Views
0 Votes 1 Answers 17K Views
It's known that smart contracts on TON have to pay storage fee, it is deducted during each transaction. And if a contract doesn't have any transactions for a...
one year ago
0 Votes
1 Answers
3K Views
0 Votes 1 Answers 3K Views
One of the primary differentiators of TON is the fact that it is an asynchronous block chain. This introduces concepts such as lamport time and crazy orderin...
Jeremy
394 × 5 Administrator
one year ago
0 Votes
1 Answers
13K Views
0 Votes 1 Answers 13K Views
I know theoretically that a smart contract can deploy another smart contract. But is there an public example of it to learn from? --- > This question was imp...
0 Votes
1 Answers
16K Views
0 Votes 1 Answers 16K Views
How is a reference serialized (stored)? --- > This question was imported from Telegram Chat: https://t.me/tondev_eng/9475
0 Votes
1 Answers
7K Views
0 Votes 1 Answers 7K Views
In whitepaper, 2.1.1. Account addresses. we got description in below: The source address and destination address are always present in any message. Normally,...
0 Votes
1 Answers
13K Views
0 Votes 1 Answers 13K Views
I am looking for NFT staking tutorial but couldn't found. Like other blockchain i want to create a staking platform for my client and they have collection of...
0 Votes
1 Answers
9K Views
0 Votes 1 Answers 9K 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...
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
0 Answers
11K Views
0 Votes 0 Answers 11K Views
Usually new blocks on TON blockchain are formed every new seconds so there's no reason to worry about waiting too long. But I've heard that under some circum...
one year ago
0 Votes
0 Answers
11K Views
0 Votes 0 Answers 11K Views
Technically speaking, masterchain and basechain are similar in many ways. Why does using the masterchain cost much more gas? --- > This question was imported...
one year ago
0 Votes
1 Answers
7K Views
0 Votes 1 Answers 7K Views
I keep getting a connection refused error when I run the lite client. Any idea what could be causing the issue? shayan@shayan-pc:/usr/bin/ton$ sudo ./lite-cl...
0 Votes
1 Answers
15K Views
0 Votes 1 Answers 15K Views
I have a question about the burning mechanism. It seems that the Elector smart contract does not send half of network fees to black hole address. Indeed, the...
one year ago
0 Votes
1 Answers
21K Views
0 Votes 1 Answers 21K Views
I want to deploy a new smart contract that I've written. Where can I read how the gas cost of deploying the smart contract in TON is calculated? Is there a c...
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
0 Answers
16K Views
0 Votes 0 Answers 16K 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:/...
one year ago
0 Votes
1 Answers
5K Views
0 Votes 1 Answers 5K Views
It's possible to create voting systems on TON, such as ton.vote. But usually it's known how a specific account voted. Is it possible to create a voting syste...
one year ago
0 Votes
1 Answers
15K Views
0 Votes 1 Answers 15K Views
If I put a logical calculation, such as a multiplication, on the TON blockchain, do I not need a server to perform that remote calculation? --- > This questi...
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K Views
I would like to test the deployment and execution of smart contracts on my local network. I'm looking for a rapid system that I can spin up so that I don't n...
one year ago
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K Views
Does TON blockchain let developers set a pyramid-like scheme for selling NFTs where every seller gets a share from all the future resells? --- > This questio...
nft
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
17K Views
0 Votes 1 Answers 17K 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...
0 Votes
1 Answers
9K Views
0 Votes 1 Answers 9K Views
To create a minimal jetton, is the jetton-wallet.fc file within the token-contract GitHub repository really necessary? --- > This question was imported from ...
0 Votes
0 Answers
4K Views
0 Votes 0 Answers 4K Views
There is an item at the end of roadmap in the TON website that mentions "Bitcoin & EVM Workchains". Is there any reading material available on that? It's men...
one year ago
0 Votes
1 Answers
16K Views
0 Votes 1 Answers 16K Views
I'm interested in creating a Jetton (custom token on TON blockchain). Are there some services that let you do that easily? --- > This question was imported f...
one year ago
0 Votes
2 Answers
17K Views
0 Votes 2 Answers 17K Views
I know there are multiple TON wallets for different platforms. Can you name some open source ones for iOS? --- > This question was imported from Telegram Cha...
one year ago
Show more results questions