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
Profile picture
Mahdi Bagheri
Moderator
1 Question, 1 Answer
  Active since 01 February 2024
  Last activity 5 months ago

Reputation

5 + 5 this July 0 4
1 Votes
1 Answers
4K Views
1 Votes 1 Answers 4K Views
Is there any implementation of VRF like what Chainlink brought to work in The Open Network? If there is no such contract working in mainnet can anybody help ...
5 months ago
0 Access TONs in Jetton contract type wallet

If those TONs are locked in your contract you do not have any other option other than having a receiver to withdraw contract's balance. So you need to implement a new operation to withdraw desired amount of TON coins to a specific receptient.

for example:

if (op == op::withdraw()) {
		throw_unless(73, equal_slices(sender_address, admin_address));
		slice to_address = in_msg_body~load_msg_addr();
		int amount = in_msg_body~load_coins();
		
		;; send raw message to "to_address" ...
5 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
1 Answers
1K Views
0 Votes 1 Answers 1K Views
It's a basic question that's probably answered somewhere in the documentation, but for some people it's easier to ask this way. So, what are the masterchain ...