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
16K Views
0 Votes 1 Answers 16K Views
Some projects in the TON ecosystem provide people their smart contracts to see. For example, getgems.io have a GitHub repository with their smart contracts: ...
one year ago
0 Votes
1 Answers
8K Views
0 Votes 1 Answers 8K Views
What would be the best method to check if my address received a payment with a specific message? Is 'getTransactions' method okay? ---- This question was imp...
0 Votes
1 Answers
3K Views
0 Votes 1 Answers 3K Views
There are different approaches to division: * using floating-point numbers (so 23 / 4 = 5.75) * mathematical rounding (23 / 4 = 6 since it's the closest inte...
one year ago
0 Votes
0 Answers
15K Views
0 Votes 0 Answers 15K 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
1 Answers
17K Views
0 Votes 1 Answers 17K Views
Where is the line of code that specifies the price of a jetton? Is the price of a jetton always what I choose or does it change with supply and demand? --- >...
one year ago
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
11K Views
0 Votes 1 Answers 11K Views
Are there any tips how to install/configure the smart contract development environment on an Apple M1 device? I'm having an issue with CMake here: CMake Erro...
0 Votes
1 Answers
15K Views
0 Votes 1 Answers 15K Views
I don't fully understand the masterchain/workchain distinction yet. If someone sends me Toncoins, what chain does it send it in? Do I need to use the same ch...
one year ago
0 Votes
1 Answers
15K Views
0 Votes 1 Answers 15K Views
I have experience as a developer in the EVM ecosystem and now I want do develop on TON. What do I need to learn in the first place? What things change, and w...
one year ago
0 Votes
0 Answers
15K Views
0 Votes 0 Answers 15K Views
Different Jetton tokens have different decimal precision (most use the default value is 9 digits, but some changed it). If I want to know the decimal precisi...
one year ago
0 Votes
1 Answers
6K Views
0 Votes 1 Answers 6K Views
I've tried asking ChatGPT about development on TON. It kept referring to a project called FreeTON, but I couldn't find more info on that. Are those answers r...
one year ago
0 Votes
2 Answers
20K Views
0 Votes 2 Answers 20K Views
I have a problem when deploying the contract on the console when writing the command: toncli deploy -n testnet
one year ago
0 Votes
1 Answers
12K Views
0 Votes 1 Answers 12K Views
The main source of knowledge about Fift language is the whitepaper, available at https://ton.org/fiftbase.pdf. It is useful, but are there other articles, vi...
one year ago
0 Votes
1 Answers
7K Views
0 Votes 1 Answers 7K Views
Given a smart contract, how do I deploy it using the TonWeb SDK? --- > This question was imported from Telegram Chat: https://t.me/tondev_eng/8841
0 Votes
0 Answers
8K Views
0 Votes 0 Answers 8K Views
I have a generated keypair. How to import the secretKey in code? I tried passing it as a string (hex version) but didnt work > This question was imported fro...
one year ago
0 Votes
1 Answers
13K Views
0 Votes 1 Answers 13K 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
0 Answers
10K Views
0 Votes 0 Answers 10K Views
I am trying to generate address from mnemonic, it works for tonkeeper but not working in Trust Wallet, can you help me, I tried all possible parameters from ...
11 months ago
0 Votes
1 Answers
5K Views
0 Votes 1 Answers 5K Views
I've heard there's some library by Andrey Pfau for developing on TON using the Kotlin language. What's the name of library and where can I find it? Maybe it'...
one year ago
0 Votes
1 Answers
4K Views
0 Votes 1 Answers 4K 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
17K Views
0 Votes 1 Answers 17K 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...
one year ago
0 Votes
1 Answers
15K Views
0 Votes 1 Answers 15K Views
Some of the TON wallets are mobile applications, some are Chrome extensions, some are Telegram bots. But is there any browser extension that supports Firefox...
one year ago
0 Votes
2 Answers
6K Views
0 Votes 2 Answers 6K Views
hey i wrote smart contract that allow users to send TONs to smart contract address and receive my jettons,everytime i mint new jettons and burn these on my m...
8 months ago
0 Votes
1 Answers
7K Views
0 Votes 1 Answers 7K Views
I'm trying to deploy my contract to the TON MainNet, but I get an error: bash <> The account that I'm using has a 1.5 TON balance, which should be enough! Wh...
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...
one year ago
0 Votes
0 Answers
11K Views
0 Votes 0 Answers 11K Views
Functions are called "words" in Fift, and there is a special word word. The whitepaper (https://ton.org/docs/fiftbase.pdf) explains it this way: «word (x – S...
one year ago
0 Votes
0 Answers
4K Views
0 Votes 0 Answers 4K 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...
one year ago
0 Votes
1 Answers
14K Views
0 Votes 1 Answers 14K Views
Many TON tutorials and whitepapers mention Linux/macOS-specific things like /usr/lib/fift path, terminal commands and so on. Can I develop smart contract on ...
0 Votes
1 Answers
7K Views
0 Votes 1 Answers 7K Views
In whitepaper, 2.1.1. Account addresses. we got description in below: The source address and destination address are always present in any message. Normally,...
0 Votes
1 Answers
17K Views
0 Votes 1 Answers 17K Views
How do you update tlo files? I have found an update-tlo.sh file, but it can't find tl-parser utility. --- > This question was imported from Telegram Chat: ht...
one year ago
0 Votes
1 Answers
17K Views
0 Votes 1 Answers 17K Views
It's known that smart contracts on TON have to pay storage fee, it is deducted during each transaction. And if a contract doesn't have any transactions for a...
one year ago
Show more results questions