-
Notifications
You must be signed in to change notification settings - Fork 110
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add native support of exotic cells #343
base: main
Are you sure you want to change the base?
Conversation
I saw in TON dev chats interest from Tact users regarding the exotic cells support -- they would like to implement cNFTs in Tact. |
@Gusarich Any progress on this? |
I'm rewriting this thing because at the current state it's easier than trying to resolve all the conflicts with main branch |
stdlib/stdlib.fc
Outdated
(slice, int) begin_parse_exotic(cell c) asm "XCTOS"; | ||
cell end_cell_exotic(slice s) asm "ENDXC"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
We should probably also(?) add these as Tact stdlib asm-functions
src/test/features/merkle-trees.tact
Outdated
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This looks just awesome!
rewrote the whole thing, it kind of works (compiles at least), but it's incomplete and doesn't work properly because I didn't finish yet. I think we should move this to 1.6.0 due to a deadline |
Closes #154
[WORK IN PROGRESS]