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
14K Views
0 Votes 1 Answers 14K 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
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
18K Views
0 Votes 1 Answers 18K Views
The TON documentation states that "a variable can be dumped to the debug log by the ~dump function". But where exactly it that log? How can I see it? --- > T...
2 years ago
0 Votes
0 Answers
10K Views
0 Votes 0 Answers 10K Views
https://docs.dedust.io/docs/swaps Hello, it works when I am swapping ton to jetton. But not jetton -> ton. In the docs, VaultJetton.createSwapPayload({ poolA...
one year ago
0 Votes
0 Answers
12K Views
0 Votes 0 Answers 12K Views
I'd like to know more about emission on TON blockchain. Where can I read about it? Or maybe instead of reading I should use an explorer to check some special...
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
one year ago
0 Votes
0 Answers
6K Views
0 Votes 0 Answers 6K Views
Is it possible to send Toncoins and Jettons in the same transaction? If it is, how to do it exactly? --- > This question was imported from Telegram Chat: htt...
one year 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
one year ago
0 Votes
0 Answers
9K Views
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K 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
6K Views
0 Votes 1 Answers 6K Views
TON development world seems to be JavaScript/TypeScript-centered for now. If I know come from Python background, what should I use to develop on TON? --- > T...
one year ago
0 Votes
1 Answers
23K Views
0 Votes 1 Answers 23K Views
What's the main way to create a TON wallet (v4r2 version) using JavaScript/TypeScript? --- > This question was imported from Telegram Chat: https://t.me/tond...
one year ago
0 Votes
2 Answers
21K Views
0 Votes 2 Answers 21K Views
Probably the TON community has already crafted the best regular expression for validating TON addresses. In fact, there could be two expressions: for the raw...
2 years ago
0 Votes
1 Answers
9K Views
0 Votes 1 Answers 9K Views
UQBrIkn3a4dam3ysKTUc4VCwL2f2FgaQA3qbfGZrQiPi4lee my wallet UQC0lrj3O0af8GotieYsTXChA_wijIIVN7Sd_wkgYLwoHxMv name gate.io https://tonviewer.com/EQBrIkn3a4dam3...
one year ago
0 Votes
1 Answers
9K Views
0 Votes 1 Answers 9K Views
Is there an upgradeable standard for TON contracts? For example, in Ethereum, you can deploy proxy-contracts and then upgrade them through OpenZeppelin's upg...
0 Votes
2 Answers
20K Views
0 Votes 2 Answers 20K Views
Follow the docs there:https://ton.org/docs/develop/func/overview back by the code: () send_money(slice address, int amount) impure inline { var msg = begin_c...
2 years ago
0 Votes
1 Answers
4K Views
0 Votes 1 Answers 4K Views
In FunC there is a function run_ticktock called in ticktock transactions of special smart contracts. But can such smart contracts work on a basechain, or is ...
one year ago
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
0 Answers
18K Views
0 Votes 0 Answers 18K 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
1 Answers
23K Views
0 Votes 1 Answers 23K Views
How can I programmatically create a TON wallet using .NET Core?
2 years ago
0 Votes
1 Answers
14K Views
0 Votes 1 Answers 14K Views
In the docs.ton.org, we find: > There is a necessity for the synchronization of message routing and transaction execution. In other words, nodes in the netwo...
one year ago
0 Votes
1 Answers
8K Views
0 Votes 1 Answers 8K Views
What is the usage of the configuration here? Should I worried about it if I am testing my contract? https://github.com/ton-community/sandbox#networkblock-con...
2 years ago
0 Votes
1 Answers
22K Views
0 Votes 1 Answers 22K Views
Among different TON wallets there is a browser extension simply called "TON Wallet": https://chrome.google.com/webstore/detail/ton-wallet/nphplpgoakhhjchkkhm...
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K 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
19K Views
0 Votes 1 Answers 19K 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
2 years ago
0 Votes
1 Answers
16K Views
0 Votes 1 Answers 16K Views
Is it possible to call a function in a recursive way in FunC? If so, how exactly should I do it? I haven't found it in the FunC documentation, is it covered ...
2 years ago
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K Views
In the TON DNS smart contract, there is code that makes it so that if the owner doesn't make a transfer within a year, the DNS will be released. Is there a w...
2 years ago
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K Views
Are there any minimum/recommended hardware requirements for developing on TON? And is there any "necessary" software like Xcode is for iOS development? Is it...
2 years ago
0 Votes
1 Answers
8K Views
0 Votes 1 Answers 8K Views
I want to understand how TON as a blockchain works. I aim to understand: 1. Ton Virtual Machine 2. Blockchain Consensus I come from a Solidity background. Ar...
0 Votes
2 Answers
7K Views
0 Votes 2 Answers 7K Views
Как, используя API или нечто иное, сделать перевод Тон-монет на сторонний кошелек? Веду разработку бота на телеграм, который и принимает платежи, и осуществл...
one year ago
Show more results questions