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
Answered
How to get all the jettons

Suppose I have a TON wallet address and I want to get all its jetton wallet addresses. How do I get it? Do I need to index all the blockchain for that?


This question was imported from Telegram Chat: https://t.me/tondev/129724

  
  
Posted one year ago
Votes Newest

Answers


It's best practice for jetton transfer to include "forward_ton_amount" into transfer message, resulting sending "transfer_notification" message to "main" wallet address, so you can scan incoming tx of your wallet in question and find jetton transfers. But that behavior is not mandatory.

If you have whitelist of all Jetton (Master accounts) you want to support/display - you may call get_wallet_address method on all of them and get list of jetton wallets to check.

Otherwise, you need to index all blockchain or use 3rdparty indexing service.

1
1
Posted one year ago
14K Views
1 Answer
one year ago
one year ago
Tags