-
Notifications
You must be signed in to change notification settings - Fork 124
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 x/programs
#360
Merged
Merged
Add x/programs
#360
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
95ce0d3
to
e44b80f
Compare
hexfusion
commented
Aug 17, 2023
Can you also post a benchmark without metering? |
You can fix the static issue by running |
Co-authored-by: Sam Liokumovich <[email protected]> Signed-off-by: Sam Batschelet <[email protected]>
yes will add a few more example tests and these benches as a followup. |
Signed-off-by: Sam Batschelet <[email protected]>
patrick-ogrady
approved these changes
Aug 17, 2023
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.
Houston, we have lift off
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR adds
WebAssembly
(WASM) based program support and examples to the HyperSDK.Rational: Why have the host in Go?
While there are many performance reasons to choose Rust as the host. AvalancheGo and HyperSDK are in Go. While we are making strides in many areas of Rust in the ecosystem (IE
firewood
) it made sense for us to build this solution on top of the existing HyperSDK. This will allow for devs to build upon our existing and very performance focused HyperSDK.Rational: Why have the guest in Rust?
Rust was chosen because of its amazing crypto community and much like
WebAssembly
itself Rust developers tend to enjoy lower level programming. We find that Rust provides efficient handling of bytes and compiles down to very efficientWebAssembly
.Rational: Why name this programs?
Because that is exactly what they are autonomous programs that live on chain. They technically are not all that smart and also not always a contracts. We hope that by using the term programs developers and non technical folks can more easily understand the term.
Performance: Initial benchmarks for the token program using metering shows ~16ms. More work is required to improve/understand overall performance.