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
5K Views
0 Votes 1 Answers 5K 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
18K Views
0 Votes 1 Answers 18K Views
There are TIP standards, but are there interfaces (libraries) that I can use when writing smart contracts with FunC? Or should I just attept to follow the st...
one year ago
0 Votes
0 Answers
5K Views
0 Votes 0 Answers 5K Views
Hello, TON recently updated the repository with the build documentation, but while building it locally, many errors are coming up , mainly the libsodium file...
one year ago
3 Votes
1 Answers
23K Views
3 Votes 1 Answers 23K 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...
2 years ago
0 Votes
0 Answers
6K Views
0 Votes 0 Answers 6K Views
I'm trying to develop on Windows 10. I've installed toncli according to the manual. It successfully finds Func but can't find Fift executable, even though it...
one year ago
0 Votes
0 Answers
18K Views
0 Votes 0 Answers 18K Views
I'm getting the following error when compiling Fift. I'm using this command: ./ton-build/crypto/fift counter.fif I followed this tutorial, but when I run fun...
one year ago
0 Votes
1 Answers
11K Views
0 Votes 1 Answers 11K Views
I was looking at some information on the network as a validator, and came across the ADNL address information. What is it, and is it supposed to be private d...
0 Votes
0 Answers
14K Views
0 Votes 0 Answers 14K Views
One of the most simple and popular ways to create a Telegram chat bot is to use aiogram framework. And one of the most popular ways to provide UI for a servi...
one year ago
0 Votes
1 Answers
11K Views
0 Votes 1 Answers 11K 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
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...
one year ago
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K Views
At the moment I am using public nodes which are quite slow. We want to speed up the TON network that we're working on - do you have any instructions on how t...
one year ago
0 Votes
1 Answers
19K Views
0 Votes 1 Answers 19K Views
Anyone can use one of TON wallet apps, manually create a new wallet with it and get its seed phrase. But what if I need to programmatically create a random s...
one year ago
1 Votes
2 Answers
13K Views
1 Votes 2 Answers 13K Views
I'm trying to send jettons from one wallet to another. For this I use the library tonweb. Whenever i send transaction, i get a zero amount of tokens. Why is ...
one year ago
1 Votes
0 Answers
12K Views
1 Votes 0 Answers 12K Views
Hi. I have Ubuntu 20.04 wget https://raw.githubusercontent.com/ton-blockchain/mytonctrl/master/scripts/install.sh - ok sudo bash install.sh -m lite - [6/6] T...
one year ago
0 Votes
1 Answers
16K Views
0 Votes 1 Answers 16K Views
Suppose there is a web3 blog platform where people follow specific writers. Each follower has its own smart contract. Usually data such as "X follows Y" woul...
0 Votes
1 Answers
6K Views
0 Votes 1 Answers 6K Views
On Ethereum, if you want to get rid of an NFT, you can send it to a special0x0000000000000000000000000000000000000000 address, and after that it can't be acc...
one year ago
0 Votes
1 Answers
14K Views
0 Votes 1 Answers 14K Views
Is there a built-in square root function in the language? And if not, maybe there is a popular library with the optimal implementation? --- > This question w...
one year ago
0 Votes
0 Answers
6K Views
0 Votes 0 Answers 6K Views
Fully on-chain services are hard to find. I've seen the opinion that business isn't interested in making them because it's much easier to put a part of the s...
0 Votes
0 Answers
5K Views
0 Votes 0 Answers 5K Views
I've read in the TON whitepaper that smart contacts in TON can change their code. But if I simply change the code myself and deploy the contract, it gets a n...
one year ago
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K 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
0 Answers
7K Views
0 Votes 0 Answers 7K Views
The pytonlib is the commonly used python package for TON, but they don't have many examples. How do I create a TON address, check the transactions of the add...
one year ago
0 Votes
1 Answers
4K Views
0 Votes 1 Answers 4K 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
424 × 5 Administrator
one year ago
0 Votes
1 Answers
19K Views
0 Votes 1 Answers 19K Views
Where can I read about the TON Keeper extension and using it for websites (logging in, signing messages)? --- > This question was imported from Telegram Chat...
one year ago
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K Views
I would like to take a look at the source code of wallet contracts (wallet v3 and v4). As far as I understand, both these contracts are open source, but wher...
one year ago
0 Votes
0 Answers
14K Views
0 Votes 0 Answers 14K 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...
one year ago
0 Votes
1 Answers
12K Views
0 Votes 1 Answers 12K Views
Are there functions for working with dates in FunC? Is it possible to get the current date or something like that? --- > This question was imported from Tele...
one year ago
0 Votes
0 Answers
10K Views
0 Votes 0 Answers 10K Views
Since there are no derivation paths, I was thinking about using the same 12 word mnemonic, with a password that would be just a string of numbers incrementin...
one year ago
0 Votes
1 Answers
13K Views
0 Votes 1 Answers 13K Views
https://toncenter.com/api/v2/getTransactions?address=UQCzwxqIw1pt41DND9pgGfAOhJKtQQEgjVcpn0rHxv-4b8Ob&limit=1<=23481826000001&hash=OBInamdujxrUx%2Fqebnhix%2F...
0 Votes
1 Answers
14K Views
0 Votes 1 Answers 14K 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...
2 Votes
1 Answers
20K Views
2 Votes 1 Answers 20K Views
I made a transfer request via the tonweb JavaScript SDK: javascript (await wallet.methods.transfer(....)) const transfer_result = await transfer.send(); retu...
one year ago
Show more results questions