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 182

Questions 182

Tags
Sorting
Results
per page
0 Votes
1 Answers
14K Views
0 Votes 1 Answers 14K 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
1 Votes
1 Answers
14K Views
1 Votes 1 Answers 14K Views
I'm currently using wallet contract v3. It was deployed for me automatically when I was using TonKeeper wallet. I saw that the core team released a new walle...
0 Votes
1 Answers
15K Views
0 Votes 1 Answers 15K Views
I'm working with the TonWeb JavaScript library. It requires a provider URL on init: js const providerEndpoint = 'https://PROVIDER-URL-HERE'; const tonweb = n...
one year ago
0 Votes
1 Answers
14K Views
0 Votes 1 Answers 14K Views
I want to create a new wallet on TON blockchain - the wallet is defined by its 24 secret words (the mnemonic phrase). How can I generate this phrase securely...
one year ago
0 Votes
1 Answers
14K Views
0 Votes 1 Answers 14K Views
Hierarchical Deterministic wallets (HD wallets) allow you to use one secret mnemonic and generate many different wallet addresses for the same user. Is this ...
one year ago
1 Votes
2 Answers
16K Views
1 Votes 2 Answers 16K Views
Is there an API that can create a new TON wallet using code? Creating and deploying are two different steps. So how I can create many uninitialized wallet ad...
one year ago
3 Votes
2 Answers
14K Views
3 Votes 2 Answers 14K Views
Consider I have a highload wallet smart contract deployed to the TON network and I send an external message to it in order to deliver 100 value transfers to ...
Slava Fomin
77 × 2 Administrator
one year ago
0 Votes
1 Answers
14K Views
0 Votes 1 Answers 14K Views
Where can I find the format of transactions returned by the TonWeb getTransactions() method? Specifically, the format of the 'message' and 'msg_data' fields ...
one year ago
0 Votes
3 Answers
14K Views
0 Votes 3 Answers 14K 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...
one year ago
0 Votes
1 Answers
14K Views
0 Votes 1 Answers 14K Views
How can I programmatically create a TON wallet using .NET Core?
one year ago
0 Votes
2 Answers
14K Views
0 Votes 2 Answers 14K Views
How can I run and launch a TON Site on windows server with IIS web server?
one year ago
0 Votes
1 Answers
13K Views
0 Votes 1 Answers 13K Views
What types of smart contracts are there in the TON blockchain? For example: raw.fullAccountState.
one year ago
0 Votes
2 Answers
13K Views
0 Votes 2 Answers 13K Views
We are developing a Web3 game project. Every day, tens of thousands of users should receive game tokens for activity in the game. At the moment, the project ...
one year ago
3 Votes
1 Answers
15K Views
3 Votes 1 Answers 15K Views
I have done all instructions from this guide: https://github.com/disintar/toncli/blob/master/INSTALLATION.md After the toncli command, I should have: Unfortu...
one year ago
0 Votes
2 Answers
14K Views
0 Votes 2 Answers 14K Views
I have a problem when deploying the contract on the console when writing the command: toncli deploy -n testnet
one year ago
2 Votes
1 Answers
12K Views
2 Votes 1 Answers 12K Views
Given contract A and contract B, is it possible for all of contract A's fees (including the storage fee) to be paid by contract B?
one year ago
0 Votes
1 Answers
12K Views
0 Votes 1 Answers 12K Views
I am working on Ubuntu 22.04. I've downloaded TON binaries from github.com/SpyCheese/ton/actions/runs/3648473538. I've tried using the toncli lib (ton develo...
12 months ago
0 Votes
1 Answers
12K Views
0 Votes 1 Answers 12K Views
When I try to install toncli using Windows I see: (venv) PS C:\Users\Maxim\Desktop\ton\ton-win64-binarie> toncli INFO: 🥰 First time run - i'll create config...
11 months ago
3 Votes
1 Answers
12K Views
3 Votes 1 Answers 12K Views
How do I sign a random hash value with the private key of a ton address? If someone claims that a signature was generated by using the private key of a publi...
11 months ago
0 Votes
1 Answers
12K Views
0 Votes 1 Answers 12K Views
I got some "wrapped TON" (ERC-20 TON equivalent) via Metamask and I want to "unwrap" it (turn it into regular TON coins). I wonder how to access the bridge s...
0 Votes
1 Answers
12K Views
0 Votes 1 Answers 12K 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?
11 months ago
0 Votes
1 Answers
12K Views
0 Votes 1 Answers 12K Views
For some reason I can't parse commentary that I receive in a transaction. This commentary is specified when sending ton coins from a wallet to a smart contra...
11 months ago
3 Votes
2 Answers
12K Views
3 Votes 2 Answers 12K Views
Are there any oracle services such as ChainLink or data aggregators such as The Graph that support the TON network?
10 months ago
0 Votes
1 Answers
11K Views
0 Votes 1 Answers 11K Views
Is there any more materials on writing those tests? Since I am just joined the TON ecosytem. As far as I understood, in order to test internal command, tests...
10 months ago
0 Votes
1 Answers
11K Views
0 Votes 1 Answers 11K Views
What's the difference between addr, and Addr, by the way? https://t.me/tondev_eng/9063
10 months ago
0 Votes
1 Answers
11K Views
0 Votes 1 Answers 11K Views
How can I print out something in FunC? https://t.me/tondev_eng/9305
10 months ago
0 Votes
1 Answers
11K Views
0 Votes 1 Answers 11K Views
I see that there is a touch method in the wallet v4 contract: https://github.com/ton-blockchain/wallet-contract/blob/main/func/wallet-v4-code.fc#L90 What exa...
10 months ago
0 Votes
2 Answers
11K Views
0 Votes 2 Answers 11K 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...
10 months ago
0 Votes
2 Answers
12K Views
0 Votes 2 Answers 12K Views
In the world of TON development, when it comes to messages, I often see references to seqno but I haven't yet understood, what exactly that is? What do we ne...
10 months ago
0 Votes
1 Answers
11K Views
0 Votes 1 Answers 11K Views
What determines the purity of a function? A) It must only read the function parameters. B) It can read values outside of the function parameters and return a...
10 months ago
Show more results questions