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
13K Views
0 Votes 0 Answers 13K Views
It's often suggested to use TypeScript for developing on TON. Tutorials for using libraries such as ton from npm are full of TS examples. What if I'm willing...
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K 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
1 Answers
12K Views
0 Votes 1 Answers 12K Views
What error code should a smart contract use when dealing with an unsupported opcode? Is it up to the smart contract developer, or there is a conventional one...
2 years ago
0 Votes
1 Answers
19K Views
0 Votes 1 Answers 19K 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...
2 years ago
0 Votes
1 Answers
12K Views
0 Votes 1 Answers 12K Views
Is it possible to delete an NFT on TON? --- > This question was imported from Telegram Chat: https://t.me/tondev_eng/8950
2 years ago
0 Votes
0 Answers
13K Views
0 Votes 0 Answers 13K Views
It would be convenient to pay in Toncoins for hosting the offchain parts of a TON project. Is there currently any hosting company allowing that? --- > This q...
one year ago
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K 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...
2 years ago
0 Votes
0 Answers
6K Views
0 Votes 0 Answers 6K Views
Case 1: () recv_internal(int my_balance, int msg_value, cell in_msg_full, slice in_msg_body) impure { slice cs = in_msg_full.begin_parse(); int flags = cs~lo...
2 years ago
0 Votes
1 Answers
19K Views
0 Votes 1 Answers 19K 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...
2 years ago
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K Views
What is the right way to concatenate strings? I've tried this but didn't succeed: .store_slice("start test " + VAR1 + " finish text") --- > This question was...
2 years ago
0 Votes
1 Answers
7K Views
0 Votes 1 Answers 7K Views
how can I calculate the gas price for get/set operations to Hashmap? https://docs.ton.org/learn/tvm-instructions/instructions for these operations the gas pr...
2 years ago
0 Votes
1 Answers
22K Views
0 Votes 1 Answers 22K Views
I'm trying to get my head around TON Python libraries. But I don't get how can I send 1 TON coin from a wallet A to wallet B using code. How can I do it?
2 years ago
0 Votes
1 Answers
19K Views
0 Votes 1 Answers 19K Views
What's the difference between addr, and Addr, by the way? https://t.me/tondev_eng/9063
2 years ago
0 Votes
1 Answers
6K Views
0 Votes 1 Answers 6K Views
Is there a possibility for users to log in using QR code (like in MetaMask). I have already added authentication with extension and now I want to add QR code...
0 Votes
1 Answers
19K Views
0 Votes 1 Answers 19K Views
Do I get it right that there is no implementation of a floating-point numbers type such as float in FunC? --- > This question was imported from Telegram Chat...
2 years ago
0 Votes
1 Answers
4K Views
0 Votes 1 Answers 4K Views
If I want to study by example, are there any smart contracts for implementing auction on TON open for everyone to learn from? --- > This question was importe...
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
1 Answers
16K Views
0 Votes 1 Answers 16K Views
What are the websites that support TON Connect? I'd like to see examples of the websites implementing TON Connect. I know there are getgems.io, dedust.io, st...
one year ago
0 Votes
1 Answers
5K Views
0 Votes 1 Answers 5K Views
How do you define multiple cells in the storage of a contract? clike const data = beginCell() .storeUint(someVar, 64) .storeMaybeSlice() .endCell(); In other...
2 years ago
0 Votes
1 Answers
20K Views
0 Votes 1 Answers 20K Views
In explorers such as Tonscan every Jetton page has a field called "mutable" with "yes/no" value in it. What does that mean, what exactly in Jettons is mutabl...
2 years ago
0 Votes
0 Answers
6K Views
0 Votes 0 Answers 6K 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...
2 years ago
0 Votes
1 Answers
13K Views
0 Votes 1 Answers 13K Views
How do I send jettons with TonWeb? Is there any other way to do it programmatically? --- > This question was imported from Telegram Chat: https://t.me/tondev...
2 years ago
0 Votes
0 Answers
7K Views
0 Votes 0 Answers 7K 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
2 years ago
0 Votes
0 Answers
19K Views
0 Votes 0 Answers 19K Views
There are plugins that add FunC code highlighting to Visual Studio Code. Is there something like that but for TL-B? --- > This question was imported from Tel...
2 years ago
0 Votes
0 Answers
6K Views
0 Votes 0 Answers 6K Views
I have a balance on the Whales pool. Can you take it out?
2 years ago
0 Votes
1 Answers
12K Views
0 Votes 1 Answers 12K Views
I've been trying to create a simple wallet smart contract by myself to learn FunC, but my transactions keep failing with exit code 34. What am I doing wrong?...
0 Votes
0 Answers
18K Views
0 Votes 0 Answers 18K 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
23K Views
0 Votes 1 Answers 23K 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
0 Answers
16K Views
0 Votes 0 Answers 16K Views
Can I collect information on all the incoming external messages that a specific smart contract receives? Everything that goes through its recv_external(). --...
2 years ago
0 Votes
1 Answers
17K Views
0 Votes 1 Answers 17K Views
Given a frontend that lets users upload files to a server, is there a way to manage uploaded files with a TON smart contract? For example, make the uploaded ...
Show more results questions