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 145

Questions 145

Tags
Sorting
Results
per page
Filter

   
0 Votes
0 Answers
2K Views
0 Votes 0 Answers 2K Views
Sometimes NFTs are used for granting access to some exclusive content. Let's say there is a Telegram channel or chat that should be available only to owners ...
one year ago
0 Votes
0 Answers
2K Views
0 Votes 0 Answers 2K Views
I already have a game made with Unity. Can it be "imported" into TON? If it is possible, how do I do that and where do I start? --- > This question was impor...
one year ago
0 Votes
0 Answers
2K Views
0 Votes 0 Answers 2K Views
Is it possible to programmatically monitor what smart contracts were deployed on TON on any given day? Not just general statistics "how much contracts were d...
one year ago
0 Votes
0 Answers
15K Views
0 Votes 0 Answers 15K Views
Could you help me a bit? root@hz-ton:~# sudo docker-compose up [+] Running 1/1 ⠿ Container root-ton-node-1 Recreated 0.2s Attaching to root-ton-node-1 root-t...
one year ago
0 Votes
0 Answers
14K Views
0 Votes 0 Answers 14K 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
14K Views
0 Votes 0 Answers 14K Views
A good way to learn in development is to study code written by other people. There are open source smart contracts written in FunC that people can use for le...
one year ago
0 Votes
0 Answers
14K Views
0 Votes 0 Answers 14K Views
I have a question that might be silly. If I get it right, declined transactions do not increment the seqno of the sender wallet. Can it lead to a situation w...
one year ago
0 Votes
0 Answers
14K Views
0 Votes 0 Answers 14K Views
Can an NFT collection on TON consist of a million items or it's too much? Is there a size limit and how big is it? --- > This question was imported from Tele...
nft
one year ago
0 Votes
0 Answers
14K Views
0 Votes 0 Answers 14K Views
Seqno is meant to increment when transactions happen. But does it always change with each one transaction, or is it possible that some smart contract is invo...
one year ago
0 Votes
0 Answers
14K Views
0 Votes 0 Answers 14K Views
I would like to track every change regarding Telegram anonymous numbers. They exist as NFTs, so any transaction such as ownership change is stored in the TON...
nft
one year ago
0 Votes
0 Answers
15K Views
0 Votes 0 Answers 15K Views
TON API provides REST API access to TON Blockchain. Some of its methods require to fill the {account-id} variable. What should I put there, what value format...
api
one year ago
0 Votes
0 Answers
14K Views
0 Votes 0 Answers 14K Views
In the NFT world usually only a link to the image is stored on-chain, and the image file itself is stored somewhere else. It can possibly lead to "link rot" ...
nft
one year ago
0 Votes
0 Answers
14K Views
0 Votes 0 Answers 14K Views
I use Visual Studio Code with the "FunC Language Support" extension by Whales Corp. This setup is convenient and often helps with the autocompletion in FunC....
one year ago
0 Votes
0 Answers
14K Views
0 Votes 0 Answers 14K Views
Currently TON blockchain consists of only one workchain and the masterchain. All the smart-contract code in masterchain and basic workchain is executed by TV...
one year ago
0 Votes
0 Answers
14K Views
0 Votes 0 Answers 14K Views
On other blockchains such as Ethereum I've encountered a concept of "block confirmations". It means that transaction is considered "complete" and irreversibl...
one year ago
0 Votes
0 Answers
14K Views
0 Votes 0 Answers 14K Views
There are numerous APIs that let you get information on TON wallets, NFTs and so on. But is there a known API with methods that provide information on the va...
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
0 Answers
14K Views
0 Votes 0 Answers 14K Views
TON Storage isn't meant to be a hosting for all kinds of websites, but it can host static content. Are there any real-life examples of static TON Sites that ...
one year ago
0 Votes
0 Answers
12K Views
0 Votes 0 Answers 12K Views
In modular arithmetic there is such a thing as modular multiplication. Does it have a built-in support in FunC? --- > This question was imported from Telegra...
12 months ago
0 Votes
0 Answers
12K Views
0 Votes 0 Answers 12K 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
0 Answers
13K Views
0 Votes 0 Answers 13K Views
I'd like to learn developing on TON by creating some small pet projects. What kinds of such projects would be the most helpful and give the most useful exper...
12 months ago
0 Votes
0 Answers
12K Views
0 Votes 0 Answers 12K Views
Could I run a TON Proxy on a Raspberry Pi 400? And what are its minimum system requirements in general? --- > This question was imported from Telegram Chat: ...
12 months ago
0 Votes
0 Answers
13K Views
0 Votes 0 Answers 13K Views
I need to send Toncoins to many different wallets at once. So instead of sending lots of transactions one by one, I would be happy to use something that lets...
12 months ago
0 Votes
0 Answers
12K Views
0 Votes 0 Answers 12K Views
Nodes typically use SSDs, because they have faster access speed than HDDs. But an archive node needs lots of space, and SSDs storage is expensive. So maybe t...
12 months ago
0 Votes
0 Answers
12K Views
0 Votes 0 Answers 12K Views
The cell structure on TON has strict limitations, it can contain up to 1023 bits and up to 4 references to other cells. But where does this reference limitat...
12 months ago
0 Votes
0 Answers
12K Views
0 Votes 0 Answers 12K Views
For many applications it's not reasonable to put all their data on the blockchain. So they need separate hosting for the things like a database, but they mig...
12 months ago
0 Votes
0 Answers
12K Views
0 Votes 0 Answers 12K Views
Is there a conventional way to concatenate two strings using FunC? --- > This question was imported from Telegram Chat: https://t.me/tondev/130472
12 months ago
0 Votes
0 Answers
12K Views
0 Votes 0 Answers 12K Views
Recently a TON update allowed users to send transactions with end-to-end encrypted text messages. Do I get it right that the encryption happens client-side a...
12 months ago
0 Votes
0 Answers
13K Views
0 Votes 0 Answers 13K Views
On the Tonscan and Tonviewer explorers you can find some general stats numbers on TON. But those two websites provide different numbers of addresses. What ca...
12 months 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....
12 months ago
Show more results questions