-
Notifications
You must be signed in to change notification settings - Fork 123
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
local-interchain: Rust Driver #785
Merged
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
2 tasks
5 tasks
misko9
reviewed
Oct 10, 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.
Super cool, need to play around with this and get it in some flows.
misko9
approved these changes
Oct 11, 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.
Looking good!
mergify bot
pushed a commit
that referenced
this pull request
Oct 11, 2023
* cli: add app overrides for port and address * init: rust client base * request resp: use JSON * minor: fmt * bin builder * feat: add query & binary actions + simple examples * Add cw_std * feat: tx, get_tx_hash, and query_tx_hash * add: localic-std library * condense main.rs to use new std lib * use file_path for uploader instead * lib misc: bank_send, errors, libs, bals * CW: Store, Init, Query, Better ActionBuilder * minor: test path cleanup * ci: attempt basic local-ic + rust e2e * ci: set manifest-path to sub-dir * ci: fix manifest path * cw: get_contract_address * cw store: if err, return exact (may not be JSON) * add execute_contract * feat: Upload-Type for cosmwasm contracts * better uploader error handling for debugging * more test, get_files func, * backup; more info queries * move GetInfo into their own funcs * query: get ibc config (denom, bin, etc) * minor: more general test for node name * recover-key, overwrite genesis, add-full-node * format * add relayer support * upgrade old docker values * tweaks, relayer Channel type * CW: instantiate, execute, and query with mut CW object * move CW & Bank -> a modules mod * on Tx, poll for Tx hash resp. 5x before failure * codebase lint * ci: clippy lint workflow * Move dump-contract-state to POST * ci: fix lint * add: `get_sdk_status_code` * ci: change clippy working-directory * `query_value`, Debug for CRBuilder * remove old println, add err to fet_files * migrate to a workspace * mod tidy * add back flags to start_chain * abstract away required flags * remove old panic, fmt * move old rest server to be cli arg only * Add setup documentation (cherry picked from commit ea7ce03) # Conflicts: # local-interchain/go.mod # local-interchain/go.sum
Reecepbcups
added a commit
that referenced
this pull request
Oct 11, 2023
* local-interchain: Rust Driver (#785) * cli: add app overrides for port and address * init: rust client base * request resp: use JSON * minor: fmt * bin builder * feat: add query & binary actions + simple examples * Add cw_std * feat: tx, get_tx_hash, and query_tx_hash * add: localic-std library * condense main.rs to use new std lib * use file_path for uploader instead * lib misc: bank_send, errors, libs, bals * CW: Store, Init, Query, Better ActionBuilder * minor: test path cleanup * ci: attempt basic local-ic + rust e2e * ci: set manifest-path to sub-dir * ci: fix manifest path * cw: get_contract_address * cw store: if err, return exact (may not be JSON) * add execute_contract * feat: Upload-Type for cosmwasm contracts * better uploader error handling for debugging * more test, get_files func, * backup; more info queries * move GetInfo into their own funcs * query: get ibc config (denom, bin, etc) * minor: more general test for node name * recover-key, overwrite genesis, add-full-node * format * add relayer support * upgrade old docker values * tweaks, relayer Channel type * CW: instantiate, execute, and query with mut CW object * move CW & Bank -> a modules mod * on Tx, poll for Tx hash resp. 5x before failure * codebase lint * ci: clippy lint workflow * Move dump-contract-state to POST * ci: fix lint * add: `get_sdk_status_code` * ci: change clippy working-directory * `query_value`, Debug for CRBuilder * remove old println, add err to fet_files * migrate to a workspace * mod tidy * add back flags to start_chain * abstract away required flags * remove old panic, fmt * move old rest server to be cli arg only * Add setup documentation (cherry picked from commit ea7ce03) # Conflicts: # local-interchain/go.mod # local-interchain/go.sum * fix go.mod & v8 namespace (-> v7) --------- Co-authored-by: Reece Williams <[email protected]> Co-authored-by: Reece Williams <[email protected]>
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.
Closes #762
summary
Adds a rust driver to local-interchain & ci testing (for those who do not want to write Go)
reference - outside repo example
considerations
TODO:
todo after merge
Upload-Type: cosmwasm
header for store_code uploads. (per 3aab50a)