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
12K Views
0 Votes 1 Answers 12K 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
1 Answers
10K Views
0 Votes 1 Answers 10K Views
How do I convert a TON wallet address to base64 and vice-versa? Is there a tool or script that I can use? --- > This question was imported from Telegram Chat...
2 years ago
0 Votes
1 Answers
26K Views
0 Votes 1 Answers 26K 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...
2 years ago
0 Votes
1 Answers
23K Views
0 Votes 1 Answers 23K 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
16K Views
0 Votes 1 Answers 16K Views
I'd like to see the main smart contract used by STON.fi DEX. Is it open source, and if it is, where can I look at it? --- > This question was imported from T...
0 Votes
1 Answers
7K Views
0 Votes 1 Answers 7K Views
i sent a transaction from my telegram wallet to an Exchange wallet but forgot to Comment, the transaction is not reflecting on the exchange wallet, is there ...
one year ago
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K Views
Do I get it right that FunC treats int and (int) (a tuple with only one integer in it) as two different types even though they both are really integers? I ha...
2 years ago
0 Votes
1 Answers
22K Views
0 Votes 1 Answers 22K Views
When creating a wallet, it is automatically assigned a number that you can't choose. But some addresses can look prettier than others (like having letter seq...
2 years ago
0 Votes
1 Answers
7K Views
0 Votes 1 Answers 7K Views
Suppose I'm deploying an NFT collection consisting of 1000 items. I would like to know the minting cost in advance. How can I calculate it? --- > This questi...
2 years ago
0 Votes
0 Answers
19K Views
0 Votes 0 Answers 19K 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
0 Answers
9K Views
0 Votes 0 Answers 9K Views
// Create a transfer const seqno: number = await contract.getSeqno(); const transfer = await contract.createTransfer({ seqno, secretKey: keyPair.secretKey, m...
one year ago
0 Votes
1 Answers
9K Views
0 Votes 1 Answers 9K Views
Hi, I transferred my TG NFT username to another wallet, but the transfer has not happened yet. The transaction generated exit code 206. Is this normal? Can s...
0 Votes
1 Answers
9K Views
0 Votes 1 Answers 9K Views
In the Solidity programming language on the EVM, we need to be mindful of gas usage for each line of code. For now, the difference in gas cost in TON is stil...
0 Votes
0 Answers
5K Views
0 Votes 0 Answers 5K Views
I have some Ton stuck in safepal and when I try to send it to my tonkeeper wallet it just shows the spinning progress logo forever and never changes , and th...
one year ago
0 Votes
1 Answers
12K Views
0 Votes 1 Answers 12K Views
Is it possible to delete an NFT on TON? --- > This question was imported from Telegram Chat: https://t.me/tondev_eng/8950
2 years ago
0 Votes
1 Answers
20K Views
0 Votes 1 Answers 20K 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...
2 years ago
0 Votes
1 Answers
9K Views
0 Votes 1 Answers 9K Views
When "throwing" inside a function, is the transaction cancelled? For example, if I send 10 TON from a main account but in a smart contract there an error is ...
0 Votes
1 Answers
21K Views
0 Votes 1 Answers 21K Views
We are looking to create a DAO on TON. Are there any tools available to create one for us, if not what would you recommend we do until the relevant tooling b...
0 Votes
1 Answers
19K Views
0 Votes 1 Answers 19K 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? --- >...
2 years ago
0 Votes
1 Answers
16K Views
0 Votes 1 Answers 16K Views
It's known that coins in the testnet are not "real". But are the testnet fees in those coins exactly the same as the gas fees in mainnet? If a transaction re...
one year ago
0 Votes
1 Answers
22K Views
0 Votes 1 Answers 22K 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 ...
2 years ago
0 Votes
2 Answers
21K Views
0 Votes 2 Answers 21K Views
What is the best block explorer for the TON network? I'm looking specifically for an explorer that allows developers to look at smart contract bytecode, veri...
0 Votes
1 Answers
6K Views
0 Votes 1 Answers 6K Views
I am using TonWeb to get data from a Jetton wallet: javascript let res = new TonWeb.token.jetton.JettonWallet( tonweb.provider, { ownerAddress: new TonWeb.Ad...
2 years ago
0 Votes
1 Answers
12K Views
0 Votes 1 Answers 12K Views
Where can I find wallet v3r1 and v3r2 FunC code? --- > This question was imported from Telegram Chat: https://t.me/tondev_eng/9027
2 years ago
0 Votes
1 Answers
13K Views
0 Votes 1 Answers 13K Views
For local development I can use track.collect but if I want to get all events from a deployed contract. Which js sdk method I can use?
one year ago
0 Votes
1 Answers
24K Views
0 Votes 1 Answers 24K 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 ...
2 years ago
0 Votes
0 Answers
9K Views
0 Votes 0 Answers 9K Views
I created a wallet programmatically by following this article. I just copied the code and executed it. Created a wallet and created 2 transactions (incoming ...
one year ago
0 Votes
1 Answers
17K Views
0 Votes 1 Answers 17K Views
If there are two dicts and one of them is bigger than other, would the operations like insert require more gas for the bigger one, or would the gas fees be t...
2 years ago
0 Votes
4 Answers
19K Views
0 Votes 4 Answers 19K Views
Hi there, I am looking for a linux command-line wallet for Toncoin. Is there already such a project or is the there an SDK/Whitepapper to implement it myself...
one year ago
0 Votes
0 Answers
19K Views
0 Votes 0 Answers 19K 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...
2 years ago
Show more results questions