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 show all the possible wallet addresses for a specific public key?

On TON the wallet address is derived from the combination of a key and a wallet contract. So the same key used with different wallet versions (v4r1, v3r2 and so on) gets different addresses.

Sometimes there is a need to see all the possible wallet addresses for a specific public key at once. Is there a tool for that?


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

  
  
Posted 11 months ago
Votes Newest

Answers


I haven't heard of such a tool, but it seems that for a developer it should be easy to create one. Libraries like ton-core let anyone programmatically get an address for any specific key/wallet contract combo, they don't even require internet for that. So a program that asks for a key and prints out the addresses of all the wallet contracts with that key would be just dozens lines of code.

This manual has the information needed to write it: https://ton-community.github.io/tutorials/01-wallet/

  
  
Posted 11 months ago
Edited 11 months ago