-
Notifications
You must be signed in to change notification settings - Fork 351
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
Upgrade to SDK v0.43+ #948
Merged
Merged
Changes from all commits
Commits
Show all changes
45 commits
Select commit
Hold shift + click to select a range
f896b01
Adapted proto compiler. Regenerated Rust files
adizere 33a0e19
Adapt to newer namespace for apps.
adizere fc0eab5
Manual fix for Staking erroneous compilation
adizere 30688a4
Workaround: disabled chain upgrade
adizere abf6dba
Added specific GRPC-web port to prevent conflict on 9091.
adizere 2d1e51a
Merge branch 'master' into adi/ibc-go-1-proto
ancazamfir 9c64b9f
Upgrade protos
ancazamfir b824869
Add support for new message action strings
ancazamfir 0e9bdb8
Improved output for one-chain script
adizere c06fc0c
Merge branch 'master' into adi/ibc-go-1-proto
adizere d4ec4a8
CLI for chain upgrade proposal adapted to gaia v5.
adizere cb77abe
Merge branch 'master' into adi/ibc-go-1-proto
adizere b32e28b
Re-generated proto files with updated proto-compiler (fmt enabled).
adizere 261e5ec
Manual fix for staking::Validators erroneous compilation; added the .…
adizere 03abf7a
Quick feature for parametrizing upgraded chain
adizere 8592959
Clippy fix. Meta for params for better display.
adizere f103b96
Merge branch 'master' into adi/ibc-go-1-proto
adizere c306530
Adapted query_upgraded_client_state
adizere 16228aa
Adapted query_upgraded_consensus_state to ibc-go-v1
adizere 75f3fc2
Moved from gRPC to ABCI
adizere e460126
Merge branch 'master' into adi/ibc-go-1-proto
adizere ac4899f
Adapted send_tx_simulate to new def of SimulateRequest
adizere 800aa3d
Added parametrizable upgrade plan name
adizere d26d80d
Fix unwraps. Retain unbonding period if none specified.
adizere 8c42e3b
Merge branch 'master' into adi/ibc-go-1-proto
adizere edfc21b
Missing post-merge bracket
adizere 09ad7b8
Removed register and send match arms for rpc events
adizere b912347
Support for new message.actions strings of ICS27
adizere 5e0639a
Merge branch 'master' into adi/ibc-go-1-proto
adizere 0027ce5
Update protos sdk(v0.43.0-rc2) & ibc-go(v1.0.0-rc3)
hu55a1n1 56b8cdd
Revert "Added specific GRPC-web port to prevent conflict on 9091."
hu55a1n1 324bb06
Add missing fields in upgrade Plan
hu55a1n1 a395bb5
Fix clippy warnings
hu55a1n1 01bc67d
Merge branch 'master' into adi/ibc-go-1-proto
adizere 97360a0
Added another action field to match intertx MsgSend
adizere e173d74
Merge branch 'adi/ibc-go-1-proto' of github.com:informalsystems/ibc-r…
hu55a1n1 bd8cdb4
Update protos sdk(v0.43.0) & ibc-go(v1.0.0)
hu55a1n1 ac7f92d
Update cosmos SDK module version requirement in compatibility.rs
hu55a1n1 a44193d
Merge branch 'master' into adi/ibc-go-1-proto
hu55a1n1 7e38aff
Merge branch 'master' into adi/ibc-go-1-proto
hu55a1n1 4bf511c
Add legacy upgrade support (#1289)
hu55a1n1 1b32a0c
Merge branch 'adi/ibc-go-1-proto' of github.com:informalsystems/ibc-r…
hu55a1n1 abca556
Apply suggestions
hu55a1n1 147cc35
Update .changelog
hu55a1n1 61642a5
Fix .changelog entry
hu55a1n1 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
- Add `--legacy | -l` flag to support upgrades for chains built with Cosmos SDK < v0.43.0 ([#1287]) | ||
|
||
[#1287]: https://github.com/informalsystems/ibc-rs/issues/1287 |
3 changes: 3 additions & 0 deletions
3
.changelog/unreleased/features/948-upgrade-to-cosmos-sdk-v0.43.md
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
- Upgrade to Cosmos SDK proto (v0.43.0) & ibc-go proto (v1.0.0) ([#948]) | ||
|
||
- [#948]: https://github.com/informalsystems/ibc-rs/pull/948 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1,6 @@ | ||
pub mod ics20_fungible_token_transfer; | ||
|
||
// TODO: These consts should move into the ICS27 namespace | ||
pub const ICS27_BANK_SEND_TYPE_URL: &str = "/cosmos.bank.v1beta1.MsgSend"; | ||
pub const ICS27_SEND_TYPE_URL: &str = "/intertx.MsgSend"; | ||
pub const ICS27_REGISTER_TYPE_URL: &str = "/intertx.MsgRegister"; |
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
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
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
e9f1dc2a4f8631749c72e48957848cab3eb10762 |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1 +1 @@ | ||
7648bfca45b9d0897103ec739210607dce77c4fb | ||
v0.43.0 |
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
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
Oops, something went wrong.
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.
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.
FYI to share context: this is necessary for the Interchain Accounts module that @seantking is doing. Adding these lines is a temporary fix, so we'll need a permanent fix instead. Will open an issue for tracking that and detailing the problem.
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.
Later edit: these constants should be deleted with PR https://github.com/informalsystems/ibc-rs/pull/1172/files.