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

Questions with tag func

Questions with tag func

Tags
Sorting
Results
per page
Filter

   
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K Views
What happens if we verify the source code in the explorer, but the contract's code gets updated using set_code() instruction? Does the verified source code d...
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K Views
I have a smart contract that accepts messages from users. I would like to keep a history of requests. How can I save a list of pairs (address, text of the me...
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K Views
There are TIP standards, but are there interfaces (libraries) that I can use when writing smart contracts with FunC? Or should I just attept to follow the st...
2 years ago
0 Votes
1 Answers
19K Views
0 Votes 1 Answers 19K Views
I am getting an error with TonWeb - "tonweb/src/boc/Cell.js:347 const prefix = serializedBoc.slice(0, 4); TypeError: serializedBoc.slice is not a function." ...
2 years ago
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K Views
What would be your suggestions on some basic pet projects for studying main concepts of ton? These would be smart contracts to write immidiately after doing ...
2 years ago
1 Votes
2 Answers
19K Views
1 Votes 2 Answers 19K Views
I've heard from the TON Spanish DevChat that there exists "Ten Lessons for learning FunC". Are those video lessons? --- > This question was imported from Tel...
2 years ago
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K Views
Does anyone know or have an example how can I store a static address in FunC? I'm thinking about using the asm command, but I'm not sure what the syntax is f...
1 Votes
2 Answers
21K Views
1 Votes 2 Answers 21K Views
Is the function recv_internal required to have certain arguments or is it completely up to what you want the message sender to send you? I've noticed some Fu...
2 years ago
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K Views
How do you install the FunC plugin in Sublime and Visual Studio? > This question was imported from Telegram Chat: https://t.me/tondev_eng/970 https://t.me/to...
2 years ago
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K Views
Do I get it right that FunC treats int and (int) (a tuple with only one integer in it) as two different types even though they both are really integers? I ha...
2 years ago
1 Votes
0 Answers
19K Views
1 Votes 0 Answers 19K Views
In developing for blockchain it's important to save space, so it seems better to store the dates using 32-bit timestamps instead of 64-bit. But blockchain is...
2 years ago
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K Views
Is there any specific reason why single line comments in FunC start with ;; and not something more common like //? It feels very odd. --- > This question was...
2 years ago
1 Votes
2 Answers
20K Views
1 Votes 2 Answers 20K Views
Is my understanding correct that smart contracts are written in FunC, then compiled into Fift, and deployed on the blockchain, and they can later be interact...
1 Votes
1 Answers
19K Views
1 Votes 1 Answers 19K Views
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
2 years ago
1 Votes
1 Answers
19K Views
1 Votes 1 Answers 19K Views
There are extensions for code editors like Visual Studio Code providing syntax highlighting for FunC. Is there anything like that for the vim editor? --- > T...
2 years ago
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K Views
Is there a built-in way to exponentiate numbers in FunC? If there isn't and it is up to developer to write a function, probably the community has already wri...
2 years ago
0 Votes
0 Answers
19K Views
0 Votes 0 Answers 19K Views
It is probably a silly question, but it is confusing for a newcomer. What is the difference between msg and msg_body, aside from the type difference? --- > T...
2 years ago
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K Views
The TON documentation states that "a variable can be dumped to the debug log by the ~dump function". But where exactly it that log? How can I see it? --- > T...
2 years ago
1 Votes
1 Answers
18K Views
1 Votes 1 Answers 18K Views
Many programming languages have a ternary operator, such as booleanExpression ? expression1 : expression2 in Java (if booleanExpression equals true, than exp...
2 years ago
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K Views
In general-purpose languages there often is some form of try. Is there anything like that in FunC I could use to validate data in msg_body? > This question w...
2 years ago
0 Votes
1 Answers
19K Views
0 Votes 1 Answers 19K Views
In general-purpose languages like Java it is possible to get server time by using things like System.currentTimeMills(). Is there a way to retrieve server ti...
2 years ago
0 Votes
1 Answers
7K Views
0 Votes 1 Answers 7K Views
It is well known that code written in FunC gets compiled to the Fift language (which is more low-level). But is there a way to go back and turn Fift code fil...
2 years ago
0 Votes
1 Answers
19K Views
0 Votes 1 Answers 19K Views
I would like to take a look at the source code of wallet contracts (wallet v3 and v4). As far as I understand, both these contracts are open source, but wher...
2 years ago
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K Views
Do I get it right that there is no implementation of a floating-point numbers type such as float in FunC? --- > This question was imported from Telegram Chat...
2 years ago
0 Votes
1 Answers
19K Views
0 Votes 1 Answers 19K Views
We have a project written in Solidity. How much effort would it take to move such a project to TON? Does it mean a total rewrite from scratch in FunC, or is ...
2 years ago
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K Views
What determines the purity of a function? A) It must only read the function parameters. B) It can read values outside of the function parameters and return a...
2 years ago
0 Votes
2 Answers
19K Views
0 Votes 2 Answers 19K Views
How do you hardcode an address in a smart contract? An example in both FunC would be helpful. https://t.me/tondev_eng/4099
0 Votes
1 Answers
19K Views
0 Votes 1 Answers 19K Views
I see that there is a touch method in the wallet v4 contract: https://github.com/ton-blockchain/wallet-contract/blob/main/func/wallet-v4-code.fc#L90 What exa...
2 years ago
0 Votes
1 Answers
18K Views
0 Votes 1 Answers 18K Views
How can I print out something in FunC? https://t.me/tondev_eng/9305
2 years ago
0 Votes
1 Answers
19K Views
0 Votes 1 Answers 19K Views
What's the difference between addr, and Addr, by the way? https://t.me/tondev_eng/9063
2 years ago
Show more results questions