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 there any call to get the contract address inside it? I cant find anything like that in tvm

Is there any call to get the contract address inside it? I cant find anything like that in tvm

https://t.me/tondev_eng/363

1
1
Posted one year ago
  
  

yes

Howard   one year ago Report
Votes Newest

Answers


I assume you are inquiring about the programming language for Smart Contracts. Currently, you can opt for either FunC (https://ton.org/docs/develop/func) or Tact (https://docs.tact-lang.org/), both of which are human-readable languages used to build Smart Contracts.

Both of these languages offer a plugin module to display your current address, similar to address(this) in Solidity.

In FunC, you can use:

slice my_address() asm "MYADDR";

In Tact, you can use:

myAddress(): Address;
  
  
wiki
Posted one year ago
Edited one year ago
17K Views
1 Answer
one year ago
one year ago
Tags