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
Slava Fomin
Administrator Moderator
1 Question, 2 Answers
  Active since 28 September 2022
  Last activity one year ago

Reputation

77 + 25 this April 0 1

Badges 2

Editor Eureka!
3 Votes
2 Answers
21K Views
3 Votes 2 Answers 21K Views
Consider I have a highload wallet smart contract deployed to the TON network and I send an external message to it in order to deliver 100 value transfers to ...
one year ago
3 Guaranteed message delivery with send_raw_message()

As client software and the smart contract in question are two separate entities it would be better to actually verify that transaction was actually processed and the outgoing messages were created and submitted for processing.

What you should do is:

1). Create an external message for your highload wallet with the list of value transfers that need to be done. Get the hash of the external message or it's body.

2). Submit the message to the network.

3). Poll for the latest transa...

one year ago
2 How to decode data of TON smart-contract?

There is no single data-storage format in TON. Each smart contract could have it's own way of storing/encoding it's data. Take the NFT item smart contract as an example. It stores it's data in the following format:

;;
;;  Storage
;;
;;  uint64 index
;;  MsgAddressInt collection_address
;;  MsgAddressInt owner_address
;;  cell content
;;

And the contract has two internal functions to ac...

one year ago