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 do you create a TON Wallet using C# and .NET?

How can I programmatically create a TON wallet using .NET Core?

Votes Newest

Answers


Check this to work with mnemonics/keys and this to deploy a wallet and send a transaction.

Please make a note that wallet is deployed by first outgoing tx (not incoming one), so you need some TON to be on your acc before you'll start deploying it.

For brand new wallet your sequence is like this:

  • create key, compute an init data and convert this to your (future) wallet address as in line 49. If you open your address in explorer at this moment - you'll see zero balance and inactive state.
  • transfer some TON (from Exchange or whatever) to your new (still inactive) address. Explorers will show "in" tx and non-zero balance, but state of your acc will be "inactive" still.
  • make outgoing transaction (to your own or other address) as in lines 58+ - this will make your acc Active.
  
  
Posted one year ago
22K Views
1 Answer
2 years ago
one year ago
Tags