Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/neutron-std/src/types/NEUTRON_COMMIT
Original file line number Diff line number Diff line change
@@ -1 +1 @@
feat/cosmos-sdk-53
feat/ibc-transfer-encoding-support
3 changes: 3 additions & 0 deletions packages/neutron-std/src/types/neutron/transfer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -43,6 +43,9 @@ pub struct MsgTransfer {
pub memo: ::prost::alloc::string::String,
#[prost(message, optional, tag = "9")]
pub fee: ::core::option::Option<super::feerefunder::Fee>,
/// optional encoding
#[prost(string, tag = "10")]
pub encoding: ::prost::alloc::string::String,
}
/// MsgTransferResponse is the modified response type for
/// ibc-go MsgTransfer.
Expand Down
16 changes: 8 additions & 8 deletions proto-build/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,28 +21,28 @@ const SLINKY_REPO: &str = "https://github.com/neutron-org/connect.git";
const ADMIN_MODULE_REPO: &str = "https://github.com/neutron-org/admin-module.git";

/// The Cosmos SDK commit or tag to be cloned and used to build the proto files
const COSMOS_SDK_REV: &str = "releases/v0.53.x";
const COSMOS_SDK_REV: &str = "v0.53.4-neutron";

/// The Neutron commit or tag to be cloned and used to build the proto files
const NEUTRON_REV: &str = "feat/cosmos-sdk-53";
const NEUTRON_REV: &str = "feat/ibc-transfer-encoding-support";

/// The wasmd commit or tag to be cloned and used to build the proto files
const WASMD_REV: &str = "releases/v0.61.x";
const WASMD_REV: &str = "v0.61.6-neutron";

/// The cometbft commit or tag to be cloned and used to build the proto files
const COMETBFT_REV: &str = "v0.38.17";
const COMETBFT_REV: &str = "v0.38.21";

/// The ibc-go commit or tag to be cloned and used to build the proto files
const IBC_GO_REV: &str = "v10.4.0";
const IBC_GO_REV: &str = "v10.5.0";

/// The ics23 commit or tag to be cloned and used to build the proto files
const ICS23_REV: &str = "go/v0.11.0";

const FEEMARKET_REV: &str = "chore/cosmos-sdk-0.53";
const FEEMARKET_REV: &str = "v1.2.0";

const SLINKY_REV: &str = "feat/cosmos-sdk-53";
const SLINKY_REV: &str = "v1.3.0";

const ADMIN_MODULE_REV: &str = "chore/cosmos-sdk-0.53";
const ADMIN_MODULE_REV: &str = "v2.1.0";

// All paths must end with a / and either be absolute or include a ./ to reference the current
// working directory.
Expand Down
2 changes: 1 addition & 1 deletion rust-toolchain.toml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
[toolchain]
channel = "1.81.0"
channel = "1.85.0"