-
Notifications
You must be signed in to change notification settings - Fork 15
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
Make it possible for a HostQuery
to use a Session
#327
Labels
Comments
ureeves
added
team:Core
Low Level Core Development Team (Rust)
type:feature
implementing a new feature
labels
Feb 10, 2024
ureeves
pushed a commit
that referenced
this issue
Feb 10, 2024
This will allow for downstream to make use of a `Session` while defining host functions, enabling contracts to be called during their execution. Resolves: #327
ureeves
pushed a commit
that referenced
this issue
Feb 10, 2024
This will allow for downstream to make use of a `Session` while defining host functions, enabling contracts to be called during their execution. Resolves: #327
ureeves
pushed a commit
that referenced
this issue
Feb 12, 2024
This will allow for downstream to make use of a `Session` while defining host functions, enabling contracts to be called during their execution. Resolves: #327
ureeves
pushed a commit
that referenced
this issue
Feb 12, 2024
This will allow for downstream to make use of a `Session` while defining host functions, enabling contracts to be called during their execution. Resolves: #327
ureeves
pushed a commit
that referenced
this issue
Feb 12, 2024
This will allow for downstream to make use of a `Session` while defining host functions, enabling contracts to be called during their execution. Resolves: #327
ureeves
pushed a commit
that referenced
this issue
Feb 12, 2024
This will allow for downstream to make use of a `Session` while defining host functions, enabling contracts to be called during their execution. Resolves: #327
ureeves
pushed a commit
that referenced
this issue
Feb 13, 2024
This will allow for downstream to make use of a `Session` while defining host functions, enabling contracts to be called during their execution. Resolves: #327
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
Summary
It should be possible for host functions to call contracts during execution of a program. This will allow for downstream to move all the logic of the transfer contract to outside of the WASM binary and maintain the same level of atomicity.
Possible solution design or implementation
In the definition of a
HostQuery
add a&mut Session
parameter and flow from there.Additional context
This is important to allow for moving the genesis contracts to host functions.
The text was updated successfully, but these errors were encountered: