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 I send TON to an inactive address?

I tried to send some TON to a new address. An exeption was raised: the wallet was inactive.

Do I need first to create wallet contract into new wallet and then send ton? Is this creation possible from sender side?

  
  
Posted one year ago
Edited one year ago
Votes Newest

Answers


You can send message with state_init cell to deploy wallet contract if it is not deployed yet.

You can refer to example TypeScript based code in the tonstarter contracts repository:
https://github.com/ton-defi-org/tonstarter-contracts/blob/main/build/_deploy.ts#L105-L123