Skip to content

Commit

Permalink
feat: add 08-wasm client proto types (#170)
Browse files Browse the repository at this point in the history
* feat: add Wasm light client proto types

fix: add wasm mod to lib.rs

* chore: add unclog

* feat: derive JsonSchema on Wasm ClientMessage
  • Loading branch information
Farhad-Shabani authored Jan 5, 2024
1 parent 3cdd760 commit aecfe0d
Show file tree
Hide file tree
Showing 9 changed files with 5,584 additions and 230 deletions.
3 changes: 3 additions & 0 deletions .changelog/unreleased/features/168-add-wasm-client-protos.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
- Integrate Wasm light client proto types by updating `IBC_GO_COMMIT` to the
hash associated with the ibc-go `wasm-v8.0.0` tag
([#168](https://github.com/cosmos/ibc-proto-rs/issues/168)).
2 changes: 1 addition & 1 deletion src/IBC_GO_COMMIT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
2551dea41cd3c512845007ca895c8402afa9b79f
57fcdb9a9a9db9b206f7df2f955866dc4e10fef4
7 changes: 7 additions & 0 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -361,6 +361,13 @@ pub mod ibc {
include_proto!("ibc.lightclients.tendermint.v1.serde.rs");
}
}
pub mod wasm {
pub mod v1 {
include_proto!("ibc.lightclients.wasm.v1.rs");
#[cfg(feature = "serde")]
include_proto!("ibc.lightclients.wasm.v1.serde.rs");
}
}
}
pub mod mock {
include_proto!("ibc.mock.rs");
Expand Down
783 changes: 753 additions & 30 deletions src/prost/google.protobuf.rs

Large diffs are not rendered by default.

2,337 changes: 2,138 additions & 199 deletions src/prost/google.protobuf.serde.rs

Large diffs are not rendered by default.

Loading

0 comments on commit aecfe0d

Please sign in to comment.