Skip to content
This repository has been archived by the owner on Jun 24, 2024. It is now read-only.

Commit

Permalink
imp: use ibc-client-cw for CosmWasm contract implementation (#142)
Browse files Browse the repository at this point in the history
* imp: use ibc-client-cw for CW contract implementation

* chore: use generic hasher for verify_client_message

* chore: update basecoin rev

* deps: update ibc revision

* chore: update basecoin rev + clean-ups

* deps: update ibc rev

* chore: update basecoin rev + deny unused_variables

* fix: update Nix hashes

* chore: format cargo.toml + add comment for cosmwasm deps
  • Loading branch information
Farhad-Shabani authored Apr 17, 2024
1 parent 9185601 commit 8fe4fa1
Show file tree
Hide file tree
Showing 40 changed files with 294 additions and 1,616 deletions.
23 changes: 12 additions & 11 deletions .cargo/config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -6,18 +6,19 @@ sov-ibc-transfer = { path = "modules/sov-ibc-transfer" }
sov-consensus-state-tracker = { path = "modules/sov-consensus-state-tracker" }
sov-celestia-client = { path = "clients/sov-celestia" }

ibc = { git = "https://github.com/cosmos/ibc-rs.git", rev = "c579628c67" }
ibc-core = { git = "https://github.com/cosmos/ibc-rs.git", rev = "c579628c67" }
ibc-core-client = { git = "https://github.com/cosmos/ibc-rs.git", rev = "c579628c67" }
ibc-core-host-cosmos = { git = "https://github.com/cosmos/ibc-rs.git", rev = "c579628c67" }
ibc-client-tendermint = { git = "https://github.com/cosmos/ibc-rs.git", rev = "c579628c67" }
ibc-client-wasm-types = { git = "https://github.com/cosmos/ibc-rs.git", rev = "c579628c67" }
ibc-app-transfer = { git = "https://github.com/cosmos/ibc-rs.git", rev = "c579628c67" }
ibc-primitives = { git = "https://github.com/cosmos/ibc-rs.git", rev = "c579628c67" }
ibc-query = { git = "https://github.com/cosmos/ibc-rs.git", rev = "c579628c67" }
ibc-testkit = { git = "https://github.com/cosmos/ibc-rs.git", rev = "c579628c67" }
ibc = { git = "https://github.com/cosmos/ibc-rs.git", rev = "d5e3887770" }
ibc-core = { git = "https://github.com/cosmos/ibc-rs.git", rev = "d5e3887770" }
ibc-core-client = { git = "https://github.com/cosmos/ibc-rs.git", rev = "d5e3887770" }
ibc-core-host-cosmos = { git = "https://github.com/cosmos/ibc-rs.git", rev = "d5e3887770" }
ibc-client-tendermint = { git = "https://github.com/cosmos/ibc-rs.git", rev = "d5e3887770" }
ibc-client-wasm-types = { git = "https://github.com/cosmos/ibc-rs.git", rev = "d5e3887770" }
ibc-client-cw = { git = "https://github.com/cosmos/ibc-rs.git", rev = "d5e3887770" }
ibc-app-transfer = { git = "https://github.com/cosmos/ibc-rs.git", rev = "d5e3887770" }
ibc-primitives = { git = "https://github.com/cosmos/ibc-rs.git", rev = "d5e3887770" }
ibc-query = { git = "https://github.com/cosmos/ibc-rs.git", rev = "d5e3887770" }
ibc-testkit = { git = "https://github.com/cosmos/ibc-rs.git", rev = "d5e3887770" }

basecoin = { git = "https://github.com/informalsystems/basecoin-rs.git", rev = "c996c41" }
basecoin = { git = "https://github.com/informalsystems/basecoin-rs.git", rev = "bedac3f" }
jmt = { git = "https://github.com/penumbra-zone/jmt.git", rev = "1d007e11cb68aa5ca13e9a5af4a12e6439d5f7b6" }

sov-modules-api = { path = "vendor/sovereign-sdk/module-system/sov-modules-api" }
Expand Down
2 changes: 1 addition & 1 deletion .vscode/settings.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"rust-analyzer.linkedProjects": [
"./clients/sov-celestia-cw/Cargo.toml",
"./clients/sov-celestia/cw-contract/Cargo.toml",
"./ci/risc0-check/methods/guest/Cargo.toml",
"./ci/risc0-check/host/Cargo.toml",
],
Expand Down
94 changes: 51 additions & 43 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 8fe4fa1

Please sign in to comment.