-
Notifications
You must be signed in to change notification settings - Fork 31
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
feat: create a script generator #65
Comments
Hey @tdelabro |
Hey @varun-doshi! |
Hey @89oso, as this is an advanced issue and you have not contributed yet to the project, I will assign it to @varun-doshi and ask you to start with an easier, smaller issue. |
I see this Line 11 in d11b780
Would it be right to assume our ScriptBuilder will only hold max of 201 opcodes at any given time? |
Also something to note @tdelabro I've come up with 2 ways to use the ScriptBuilder. Will clarify in my PR. |
Currently we create scripts in order to test our opcodes implementation.
It is done with a []u8 looking like this:
Where everything (opcode and data) is written as u8.
This is unreadable and unmaintainable.
I want it to look like this:
Create in as an independent lib,
script/
The text was updated successfully, but these errors were encountered: