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 145

Questions 145

Tags
Sorting
Results
per page
Filter

   
0 Votes
0 Answers
12K Views
0 Votes 0 Answers 12K Views
Suppose I use getTransactions, but instead of getting all of them I'm interested only ones that happened during the current month. How do I do that? --- > Th...
12 months ago
0 Votes
0 Answers
12K Views
0 Votes 0 Answers 12K Views
Consider a situatiton where your Toncoins are used in staking, and someone malicious gets to know your seed phrase. This person can access the wallet, but ca...
12 months ago
0 Votes
0 Answers
13K Views
0 Votes 0 Answers 13K 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...
12 months ago
1 Votes
0 Answers
12K Views
1 Votes 0 Answers 12K Views
Has anyone ever written test cases for Telemint (also known as the Telegram anonymous phone number)? GitHub Link to Telemint The code is quite complex. I hop...
11 months ago
0 Votes
0 Answers
12K Views
0 Votes 0 Answers 12K Views
here is my FunC code: C-like forall X -> int is_null (X x) asm "ISNULL"; forall X -> (tuple, ()) push_back (tuple tail, X head) asm "CONS"; forall X -> (tupl...
11 months ago
0 Votes
0 Answers
12K Views
0 Votes 0 Answers 12K Views
According to the documentation, we find the commit() FunC code described as follows: Commits the current state of registers c4 (“persistent data”) and c5 (“a...
11 months ago
0 Votes
0 Answers
12K Views
0 Votes 0 Answers 12K Views
I want to make sure that transfer was success using this method response tonConnectUI.sendTransaction() I am using : React js @tonconnect/ui-react @ton/ton E...
11 months ago
0 Votes
0 Answers
11K Views
0 Votes 0 Answers 11K Views
It's known that Tick and Tock transactions are special, they are invoked at the beginning and end of each masterchain block. But does that mean they are for ...
11 months ago
0 Votes
0 Answers
11K Views
0 Votes 0 Answers 11K Views
In the TON blockchain each NFT makes use of its own smart contract. And storing things in TON requires paying storage fees deducted from any smart contract. ...
11 months ago
0 Votes
0 Answers
11K Views
0 Votes 0 Answers 11K Views
Suppose I send an external message to some smart contract, and it reacts by sending several internal messages. These messages were generated "together" and w...
11 months ago
0 Votes
0 Answers
11K Views
0 Votes 0 Answers 11K Views
It's often suggested to use TypeScript for developing on TON. Tutorials for using libraries such as ton from npm are full of TS examples. What if I'm willing...
11 months ago
0 Votes
0 Answers
11K Views
0 Votes 0 Answers 11K Views
TON Center (toncenter.com) is possibly the best-known service for making API requests, but lately it was not accessible when I needed it. What can be used in...
11 months ago
0 Votes
0 Answers
11K Views
0 Votes 0 Answers 11K Views
TON Connect is a convenient way to authorize a user in a TON dApp. But does it require a website to be used at? Or is it possible to create some dApp that in...
11 months ago
0 Votes
0 Answers
11K Views
0 Votes 0 Answers 11K Views
There are different wallet contract versions on TON, currently going up to the v4r2. Some of the differences between them are well-known, such as plugin supp...
11 months ago
0 Votes
0 Answers
11K Views
0 Votes 0 Answers 11K Views
I'd like to get updates regarding transactions as soon as possible. Do I get it right that the validators are the first to know about the new transactions, a...
11 months ago
0 Votes
0 Answers
11K Views
0 Votes 0 Answers 11K Views
There is no native auto-renewal of .ton domains, which can lead to unwanted security issues: if someone fails to renew a domain and another person acquires i...
11 months ago
0 Votes
0 Answers
11K Views
0 Votes 0 Answers 11K Views
It would be convenient to pay in Toncoins for hosting the offchain parts of a TON project. Is there currently any hosting company allowing that? --- > This q...
11 months ago
0 Votes
0 Answers
11K Views
0 Votes 0 Answers 11K Views
TON documentation provides all the necessary information for running TON Sites. But since there are not many of them for now, it would be good too see some a...
11 months ago
0 Votes
0 Answers
11K Views
0 Votes 0 Answers 11K Views
I've came to TON ecosystem from Ethereum, and I have Ethereum testnet coins. I know there is Ethereum-TON bridge for mainnet coins. Is there something like t...
0 Votes
0 Answers
11K Views
0 Votes 0 Answers 11K Views
In the Ethereum ecosystem there are "lootboxes" that contain several NFTs and can be "opened" to reveal tokens inside. Was that mechanic already implemented ...
nft
11 months ago
0 Votes
0 Answers
11K Views
0 Votes 0 Answers 11K Views
In TON software development, everything is a cell. Every cell can reference up to 4 other cells, creating a parent-child relationship. What if I have a speci...
11 months ago
0 Votes
0 Answers
12K Views
0 Votes 0 Answers 12K 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...
11 months ago
0 Votes
0 Answers
11K Views
0 Votes 0 Answers 11K Views
When you implement flow control in your program and you have a loop, sometimes you need to let the execution path out of that loop while its condition is not...
11 months ago
0 Votes
0 Answers
11K Views
0 Votes 0 Answers 11K Views
Let func "call" such as: int call((int -> int) f, int x) { return f(x); } But I need to store "f" on smc deployment stage, as initial state. How can I store ...
10 months ago
0 Votes
0 Answers
12K Views
0 Votes 0 Answers 12K Views
i want to know which address is optional because i have define main wallet address many time. this is working example. i want to short this method if possibl...
1 Votes
0 Answers
11K Views
1 Votes 0 Answers 11K 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...
10 months ago
0 Votes
0 Answers
9K Views
0 Votes 0 Answers 9K Views
What makes TON a game changer in competition with numerous Layer 1 competitors is its synergy with Telegram. ? This is because it is tailored to . One of the...
9 months ago
0 Votes
0 Answers
9K Views
0 Votes 0 Answers 9K 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 ...
9 months ago
0 Votes
0 Answers
8K Views
0 Votes 0 Answers 8K 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...
8 months ago
0 Votes
0 Answers
7K Views
0 Votes 0 Answers 7K Views
Hi there. In my app I allow deposit and withdraw some Jetton. I would like to implement withdrawal in such way that user compensate transaction fee (somethin...
Show more results questions