TON - The Open Network
TON - The Open Network
This pull request appears to be a nice implementation of a debug feature in Fift that different people needed before. You are really becoming an expert in Fift and FunC...
Well, you are not completely right when you think that Fift is not interactive. Try to run the following program: ``` { { 0 word (number) dup 1 } {...
Remove last line `game` from the file `game.fif`, and execute it separately: ``` $ cat > game.fif { { 0 word (number) dup 1 } { ' 2drop if ."not...
There is no typo in this line. I could guess it is somehow related to your other changes.
Oh, there seems to be a lot of confusion mostly due to lack of documentation in tonlib. 0. User can't choose mnemonic words. They are generated by tonlib and are...
This is about right. mnemonic words and a private key are stored on the disk. And are encrypted with secret and local_password. We use seed generation which is similar to...
@APshenkin I should note that it is possible to use externally generated ed25519 private key in tonlib. And it is possible to run tonlib in-memory, without touching the filesystem.
A nice and simple commit. These implicit functions are somewhat similar to properties in Delphi and some other object-oriented languages. An interesting question is whether it would be also useful...
Well, the idea to implement better tuples and records (tuples with named fields) was indeed one of the things we considered. Some comments: 1) The first stage is to implement...