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
Is it possible to turn a seed phrase into a private key and vice versa?

As far as I understand, a seed phrase (mnemonic words) and a private key are dependent on each other. If I know one of them, can I generate the other from it?

  1. If I have a seed phrase, how can I get its private key?
  2. If I have a private key, how can I get its seed phrase?

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

  
  
Posted one year ago
Votes Newest

Answers


  1. For generate private key from seed pharse you can use this library. From mnemonic you will recieve a secret(private) + public keys

  2. It's impossible. You can't get seed phrase of pair keys.