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
Back to post

Revisions 2

one year ago
How I can get transfer transaction data (hash, lt and etc...)? What is the EXTRA means when I using js-sdk
How I can get transfer transaction data (hash, lt and etc...)? What is the EXTRA means when I using js-sdk
With TON and TVM, you can't obtain the hash immediately. The hash and the **"lt"**(Logical Time) value will only be available once the transaction has been added to a block by validators. There are **two ways** to verify if a transaction has been successfully sent: 1. Check the sequence number (seqno) of the wallet. If it has increased, the transaction has likely been sent. 2. Check the address for the transaction. This will confirm if the transaction has been recorded on the blockchain.
With TON and TVM, you can't obtain the hash immediately. The hash and the "lt"(Logical Time) value will only be available once the transaction has been added to a block by validators. There are **two ways** to verify if a transaction has been successfully sent: 1. Check the sequence number (seqno) of the wallet. If it has increased, the transaction has likely been sent. 2. Check the address for the transaction. This will confirm if the transaction has been recorded on the blockchain.
one year ago
Original
How I can get transfer transaction data (hash, lt and etc...)? What is the EXTRA means when I using js-sdk

With TON and TVM, you can't obtain the hash immediately. The hash and the "lt"(Logical Time) value will only be available once the transaction has been added to a block by validators. There are **two ways** to verify if a transaction has been successfully sent: 1. Check the sequence number (seqno) of the wallet. If it has increased, the transaction has likely been sent. 2. Check the address for the transaction. This will confirm if the transaction has been recorded on the blockchain.