Skip to content

Commit

Permalink
wasmd: bump to v0.52.0 (#489)
Browse files Browse the repository at this point in the history
  • Loading branch information
tony-iqlusion authored Aug 14, 2024
1 parent 00a2b6d commit 363eaaf
Show file tree
Hide file tree
Showing 7 changed files with 408 additions and 3 deletions.
2 changes: 1 addition & 1 deletion cosmos-sdk-proto/src/prost/wasmd/WASMD_COMMIT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
v0.45.0
v0.52.0
2 changes: 2 additions & 0 deletions cosmos-sdk-proto/src/prost/wasmd/cosmos.query.v1.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
// @generated
// @@protoc_insertion_point(module)
32 changes: 32 additions & 0 deletions cosmos-sdk-proto/src/prost/wasmd/cosmwasm.wasm.v1.rs
Original file line number Diff line number Diff line change
Expand Up @@ -376,6 +376,10 @@ pub struct MsgIbcSendResponse {
#[prost(uint64, tag = "1")]
pub sequence: u64,
}
/// MsgIBCWriteAcknowledgementResponse
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct MsgIbcWriteAcknowledgementResponse {}
/// MsgIBCCloseChannel port and channel need to be owned by the contract
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
Expand Down Expand Up @@ -960,6 +964,34 @@ pub struct QueryContractsByCreatorResponse {
pub pagination:
::core::option::Option<super::super::super::cosmos::base::query::v1beta1::PageResponse>,
}
/// QueryBuildAddressRequest is the request type for the Query/BuildAddress RPC
/// method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct QueryBuildAddressRequest {
/// CodeHash is the hash of the code
#[prost(string, tag = "1")]
pub code_hash: ::prost::alloc::string::String,
/// CreatorAddress is the address of the contract instantiator
#[prost(string, tag = "2")]
pub creator_address: ::prost::alloc::string::String,
/// Salt is a hex encoded salt
#[prost(string, tag = "3")]
pub salt: ::prost::alloc::string::String,
/// InitArgs are optional json encoded init args to be used in contract address
/// building if provided
#[prost(bytes = "vec", tag = "4")]
pub init_args: ::prost::alloc::vec::Vec<u8>,
}
/// QueryBuildAddressResponse is the response type for the Query/BuildAddress RPC
/// method.
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct QueryBuildAddressResponse {
/// Address is the contract address
#[prost(string, tag = "1")]
pub address: ::prost::alloc::string::String,
}
/// MsgStoreCode submit Wasm code to the system
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
Expand Down
Loading

0 comments on commit 363eaaf

Please sign in to comment.