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
0 Answers
7K Views
0 Votes 0 Answers 7K Views
Если нода валидатора не участвует в цикле(не хватило средств для участия в выборах) она простаивает или работает как коллатор, или как фишер? В конце года об...
2 years ago
0 Votes
1 Answers
16K Views
0 Votes 1 Answers 16K Views
Is it possible to call a function in a recursive way in FunC? If so, how exactly should I do it? I haven't found it in the FunC documentation, is it covered ...
2 years ago
0 Votes
1 Answers
5K Views
0 Votes 1 Answers 5K Views
In the Bitcoin standard there is concept called "derivation path" defined in BIP32: it is used by hierarchical deterministic wallets to derive keys. How do T...
0 Votes
0 Answers
8K Views
0 Votes 0 Answers 8K 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
9K Views
0 Votes 1 Answers 9K Views
What is the byte size of a smart contract that can be deployed on TON? --------- > This question was imported from Telegram Chat: https://t.me/tondev_eng/26332
Howard Peng
10 × 1 Administrator
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K Views
I wrote a program in Fift, which included the following code: asm 1 PUSHINT I receive the following error: "PUSHINT: stack underflow" This doesn't make sense...
2 years ago
0 Votes
0 Answers
18K Views
0 Votes 0 Answers 18K Views
In many programming languages there are methods like Math.sin() in Java that return the sine of an angle. How can I calculate such value using Fift? --- > Th...
2 years ago
0 Votes
1 Answers
11K Views
0 Votes 1 Answers 11K 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
1 Votes
1 Answers
10K Views
0 Votes
0 Answers
14K Views
0 Votes 0 Answers 14K Views
Some of the wallets in TON ecosystem can open both mainnet wallets and testnet wallets, while some support mainnet only. Can MyTonWallet be switched from the...
one year ago
0 Votes
1 Answers
8K Views
0 Votes 1 Answers 8K Views
Got this in whitepaper: This appendix contains a formal description of the elliptic curve cryptography currently used in TON, particularly in the TON Blockch...
0 Votes
0 Answers
6K Views
0 Votes 0 Answers 6K Views
I've got an error with an exit code 5. TVM exit code list in the documentation says it means "Integer out of expected range": https://docs.ton.org/learn/tvm-...
tvm
2 years ago
0 Votes
1 Answers
16K Views
0 Votes 1 Answers 16K Views
Hi guys, how can I sign a Cell with ton-crypto, or ton-core or in someway, that later can be correctly verified by check_signature or check_data_signature fr...
one year ago
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K Views
The fragment.com website shows some of usernames that can be bought but hides others saying "and 1.68K+ more". Is there a way to get the full list of those 1...
one year ago
0 Votes
0 Answers
6K Views
0 Votes 0 Answers 6K Views
There's a main TON monorepo that includes cryptography: https://github.com/ton-blockchain/ton There's also TON Connect. As far as I understand, instead of th...
2 years ago
0 Votes
1 Answers
11K Views
0 Votes 1 Answers 11K Views
I've been playing around with toncli and smart-contract development, but I've been stuck on the toncli deploy command. I'm using a macbook with M1 chip, so I...
2 years ago
0 Votes
1 Answers
16K Views
0 Votes 1 Answers 16K 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
1 Answers
17K Views
0 Votes 1 Answers 17K Views
On TON blockchain there are special highload wallets that can send out multiple transactions at once. But they also have a limit — 255 transactions at once. ...
2 years ago
0 Votes
0 Answers
4K Views
0 Votes 0 Answers 4K 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
5K Views
0 Votes 1 Answers 5K Views
Hello, could you please guide me on where to find information about the fines imposed on validators and the duration of the rounds? I checked the global-conf...
2 years ago
0 Votes
1 Answers
7K Views
0 Votes 1 Answers 7K Views
The Sandbox projects allows to emulate arbitrary TON smart contracts and interact with them as if they were deployed on a real network. But is there an optio...
2 years ago
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K Views
It's said that TON blockchain is capable of processing millions of transactions per second. That sounds like it only needs to spend a small fraction of a sec...
one year ago
0 Votes
0 Answers
15K Views
0 Votes 0 Answers 15K Views
What is the minimum stake for a validator? On GitHub (https://github.com/ton-blockchain/mytonctrl/blob/master/docs/en/nominator-pool.md) I found that the min...
2 years ago
0 Votes
0 Answers
8K Views
0 Votes 0 Answers 8K 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
4K Views
0 Votes 1 Answers 4K 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
1 Answers
18K Views
0 Votes 1 Answers 18K Views
Remix is a great online code editor for developers who want to work with EVMs. Does TON have something similar for the TVM? --- > This question was imported ...
0 Votes
1 Answers
13K Views
0 Votes 1 Answers 13K Views
Is the code of smart contracts visible to the explorers? Can I use some explorer to see the code of any specific smart contract I'm interested in? --- > This...
1 Votes
1 Answers
12K Views
1 Votes 1 Answers 12K Views
I have observed an interesting behavior in wallet clients. I attempted to create a wallet using TonHub, TonKeeper, and wallet.ton.org. TonHub and TonKeeper g...
2 years ago
0 Votes
1 Answers
4K Views
0 Votes 1 Answers 4K Views
TON testnet went down for some time. Since it's the testing network (not the main one) and it was temporary, it's obviously not a critical issue. But what's ...
0 Votes
1 Answers
10K Views
0 Votes 1 Answers 10K Views
Is there a way that you can access the TON payments system via a Telegram bot? Is there an API that goes along with it? --- > This question was imported from...
2 years ago
Show more results questions