-
Notifications
You must be signed in to change notification settings - Fork 0
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
Created initial code for the vanadium_client_sdk
; deleted the host
crate.
#30
Merged
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
bigspider
force-pushed
the
client-sdk
branch
from
September 19, 2024 07:15
0acfa5a
to
9bfaaf3
Compare
…' crate. The 'host' crate was split among the 'vanadium_client_sdk' and the vnd-test-client executable crate.
bigspider
force-pushed
the
client-sdk
branch
from
September 19, 2024 07:22
9bfaaf3
to
dd33908
Compare
Unfinished things:
It might be worth trying to restructure the
This might simplify building the asynchronous version on top. |
bigspider
force-pushed
the
client-sdk
branch
from
September 20, 2024 13:50
bd84eea
to
bb6f71b
Compare
…cution of the app client with any interface; allow running the test app natively
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.
Initial attempt at separating the
host
crate's code that should go into thevanadium_client_sdk
.Added a
Callbacks
trait that allows to inject the V-App-specific logic a V-App client needs to interact with an app execution.As the current test V-App is extremely simple, the client is currently an executable binary. Real V-Apps will most likely have a proper client library that is not an executable (for example to abstract the V-App's API from its communication protocol).
Closes: #29