Skip to content

Commit

Permalink
build(proto): update sub modules and regenerate files
Browse files Browse the repository at this point in the history
  • Loading branch information
aelesbao committed Oct 30, 2024
1 parent 9d1e7da commit f8803fb
Show file tree
Hide file tree
Showing 17 changed files with 4,920 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .gitmodules
Original file line number Diff line number Diff line change
Expand Up @@ -9,4 +9,4 @@
url = https://github.com/cosmos/ibc-go
[submodule "external/wasmd"]
path = external/wasmd
url = https://github.com/cosmwasm/wasmd
url = https://github.com/archway-network/archway-wasmd
2 changes: 1 addition & 1 deletion external/cosmos-sdk
Submodule cosmos-sdk updated 99 files
+23 −1 CHANGELOG.md
+2 −2 Makefile
+5 −4 RELEASE_NOTES.md
+6 −6 UPGRADING.md
+1 −2 api/go.mod
+2 −4 api/go.sum
+2 −2 baseapp/abci.go
+5 −3 baseapp/abci_test.go
+24 −13 baseapp/abci_utils.go
+1 −1 baseapp/baseapp.go
+1 −1 client/cmd.go
+11 −13 client/debug/main.go
+6 −0 client/v2/CHANGELOG.md
+1 −1 client/v2/README.md
+6 −5 client/v2/autocli/query.go
+31 −29 client/v2/go.mod
+69 −63 client/v2/go.sum
+21 −0 core/CHANGELOG.md
+5 −110 core/appconfig/config.go
+0 −223 core/appconfig/config_test.go
+23 −0 core/appmodule/module.go
+4 −22 core/appmodule/option.go
+2 −20 core/appmodule/register.go
+6 −0 core/coins/format.go
+1 −0 core/genesis/source_test.go
+29 −27 core/go.mod
+57 −51 core/go.sum
+1 −0 core/header/service.go
+0 −11 core/internal/buf.gen.yaml
+0 −9 core/internal/buf.yaml
+0 −58 core/internal/registry.go
+0 −36 core/internal/testpb/test.proto
+0 −2,483 core/internal/testpb/test.pulsar.go
+1 −1 docs/docs/build/building-apps/03-app-upgrade.md
+1 −1 docs/docs/build/building-modules/01-module-manager.md
+1 −1 docs/docs/build/tooling/00-protobuf.md
+31 −29 go.mod
+67 −61 go.sum
+1 −1 orm/go.mod
+2 −2 orm/go.sum
+11 −2 runtime/builder.go
+4 −0 runtime/store.go
+101 −0 server/module_hash.go
+1 −0 server/util.go
+4 −2 simapp/app_config.go
+29 −2 simapp/app_di.go
+1 −1 simapp/app_test.go
+31 −31 simapp/go.mod
+67 −65 simapp/go.sum
+0 −0 simapp/simd/cmd/root_di.go
+6 −0 store/CHANGELOG.md
+21 −19 store/go.mod
+46 −42 store/go.sum
+31 −31 tests/go.mod
+67 −65 tests/go.sum
+2 −1 testutil/integration/router.go
+4 −0 tools/confix/CHANGELOG.md
+30 −28 tools/confix/go.mod
+67 −61 tools/confix/go.sum
+13 −5 tools/confix/migrations.go
+11 −11 tools/cosmovisor/go.mod
+22 −22 tools/cosmovisor/go.sum
+11 −11 tools/hubl/go.mod
+26 −26 tools/hubl/go.sum
+43 −0 types/collections.go
+26 −2 types/mempool/mempool.go
+6 −5 types/mempool/noop.go
+18 −3 types/mempool/priority_nonce.go
+86 −1 types/mempool/priority_nonce_test.go
+18 −3 types/mempool/sender_nonce.go
+0 −1 types/module/module.go
+19 −2 x/authz/README.md
+3 −6 x/bank/keeper/keeper_test.go
+1 −0 x/bank/keeper/send.go
+3 −3 x/circuit/autocli.go
+30 −28 x/circuit/go.mod
+67 −61 x/circuit/go.sum
+6 −0 x/consensus/keeper/keeper.go
+2 −2 x/evidence/autocli.go
+30 −28 x/evidence/go.mod
+67 −61 x/evidence/go.sum
+30 −28 x/feegrant/go.mod
+67 −61 x/feegrant/go.sum
+1 −0 x/genutil/client/cli/commands.go
+67 −0 x/genutil/client/cli/genaccount.go
+161 −0 x/genutil/client/cli/genaccount_test.go
+22 −4 x/genutil/client/cli/validate_genesis.go
+51 −8 x/genutil/client/cli/validate_genesis_test.go
+150 −0 x/genutil/genaccounts.go
+30 −28 x/nft/go.mod
+67 −61 x/nft/go.sum
+6 −0 x/tx/CHANGELOG.md
+1 −1 x/tx/go.mod
+4 −2 x/tx/go.sum
+20 −6 x/tx/signing/aminojson/json_marshal.go
+59 −0 x/tx/signing/aminojson/json_marshal_test.go
+5 −1 x/tx/signing/aminojson/options.go
+28 −28 x/upgrade/go.mod
+63 −61 x/upgrade/go.sum
2 changes: 1 addition & 1 deletion external/wasmd
Submodule wasmd updated 159 files
250 changes: 250 additions & 0 deletions packages/proto/src/gen/capability.v1.rs

Large diffs are not rendered by default.

55 changes: 55 additions & 0 deletions packages/proto/src/gen/cosmos.circuit.module.v1.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,55 @@
// @generated
/// Module is the config object of the circuit module.
#[derive(::serde::Serialize, ::serde::Deserialize)]
#[allow(clippy::derive_partial_eq_without_eq)]
#[derive(Clone, PartialEq, ::prost::Message)]
pub struct Module {
/// authority defines the custom module authority. If not set, defaults to the governance module.
#[prost(string, tag = "1")]
pub authority: ::prost::alloc::string::String,
}
impl ::prost::Name for Module {
const NAME: &'static str = "Module";
const PACKAGE: &'static str = "cosmos.circuit.module.v1";
fn full_name() -> ::prost::alloc::string::String {
::prost::alloc::format!("cosmos.circuit.module.v1.{}", Self::NAME)
}
}
/// Encoded file descriptor set for the `cosmos.circuit.module.v1` package
#[cfg(feature = "proto-descriptor")]
#[cfg_attr(docsrs, doc(cfg(feature = "proto-descriptor")))]
pub const FILE_DESCRIPTOR_SET: &[u8] = &[
0x0a, 0xf2, 0x03, 0x0a, 0x25, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2f, 0x63, 0x69, 0x72, 0x63,
0x75, 0x69, 0x74, 0x2f, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x2f, 0x76, 0x31, 0x2f, 0x6d, 0x6f,
0x64, 0x75, 0x6c, 0x65, 0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x12, 0x18, 0x63, 0x6f, 0x73, 0x6d,
0x6f, 0x73, 0x2e, 0x63, 0x69, 0x72, 0x63, 0x75, 0x69, 0x74, 0x2e, 0x6d, 0x6f, 0x64, 0x75, 0x6c,
0x65, 0x2e, 0x76, 0x31, 0x1a, 0x20, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x2f, 0x61, 0x70, 0x70,
0x2f, 0x76, 0x31, 0x61, 0x6c, 0x70, 0x68, 0x61, 0x31, 0x2f, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65,
0x2e, 0x70, 0x72, 0x6f, 0x74, 0x6f, 0x22, 0x46, 0x0a, 0x06, 0x4d, 0x6f, 0x64, 0x75, 0x6c, 0x65,
0x12, 0x1c, 0x0a, 0x09, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x18, 0x01, 0x20,
0x01, 0x28, 0x09, 0x52, 0x09, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x3a, 0x1e,
0xba, 0xc0, 0x96, 0xda, 0x01, 0x18, 0x0a, 0x16, 0x63, 0x6f, 0x73, 0x6d, 0x6f, 0x73, 0x73, 0x64,
0x6b, 0x2e, 0x69, 0x6f, 0x2f, 0x78, 0x2f, 0x63, 0x69, 0x72, 0x63, 0x75, 0x69, 0x74, 0x4a, 0xbc,
0x02, 0x0a, 0x06, 0x12, 0x04, 0x00, 0x00, 0x0e, 0x01, 0x0a, 0x08, 0x0a, 0x01, 0x0c, 0x12, 0x03,
0x00, 0x00, 0x12, 0x0a, 0x08, 0x0a, 0x01, 0x02, 0x12, 0x03, 0x02, 0x00, 0x21, 0x0a, 0x09, 0x0a,
0x02, 0x03, 0x00, 0x12, 0x03, 0x04, 0x00, 0x2a, 0x0a, 0x40, 0x0a, 0x02, 0x04, 0x00, 0x12, 0x04,
0x07, 0x00, 0x0e, 0x01, 0x1a, 0x34, 0x20, 0x4d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x20, 0x69, 0x73,
0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x6f, 0x6e, 0x66, 0x69, 0x67, 0x20, 0x6f, 0x62, 0x6a, 0x65,
0x63, 0x74, 0x20, 0x6f, 0x66, 0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x69, 0x72, 0x63, 0x75, 0x69,
0x74, 0x20, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x2e, 0x0a, 0x0a, 0x0a, 0x0a, 0x03, 0x04, 0x00,
0x01, 0x12, 0x03, 0x07, 0x08, 0x0e, 0x0a, 0x0b, 0x0a, 0x03, 0x04, 0x00, 0x07, 0x12, 0x04, 0x08,
0x02, 0x0a, 0x04, 0x0a, 0x0f, 0x0a, 0x07, 0x04, 0x00, 0x07, 0x87, 0xe8, 0xa2, 0x1b, 0x12, 0x04,
0x08, 0x02, 0x0a, 0x04, 0x0a, 0x0f, 0x0a, 0x08, 0x04, 0x00, 0x07, 0x87, 0xe8, 0xa2, 0x1b, 0x01,
0x12, 0x03, 0x09, 0x04, 0x27, 0x0a, 0x6c, 0x0a, 0x04, 0x04, 0x00, 0x02, 0x00, 0x12, 0x03, 0x0d,
0x02, 0x17, 0x1a, 0x5f, 0x20, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69, 0x74, 0x79, 0x20, 0x64,
0x65, 0x66, 0x69, 0x6e, 0x65, 0x73, 0x20, 0x74, 0x68, 0x65, 0x20, 0x63, 0x75, 0x73, 0x74, 0x6f,
0x6d, 0x20, 0x6d, 0x6f, 0x64, 0x75, 0x6c, 0x65, 0x20, 0x61, 0x75, 0x74, 0x68, 0x6f, 0x72, 0x69,
0x74, 0x79, 0x2e, 0x20, 0x49, 0x66, 0x20, 0x6e, 0x6f, 0x74, 0x20, 0x73, 0x65, 0x74, 0x2c, 0x20,
0x64, 0x65, 0x66, 0x61, 0x75, 0x6c, 0x74, 0x73, 0x20, 0x74, 0x6f, 0x20, 0x74, 0x68, 0x65, 0x20,
0x67, 0x6f, 0x76, 0x65, 0x72, 0x6e, 0x61, 0x6e, 0x63, 0x65, 0x20, 0x6d, 0x6f, 0x64, 0x75, 0x6c,
0x65, 0x2e, 0x0a, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x00, 0x02, 0x00, 0x05, 0x12, 0x03, 0x0d, 0x02,
0x08, 0x0a, 0x0c, 0x0a, 0x05, 0x04, 0x00, 0x02, 0x00, 0x01, 0x12, 0x03, 0x0d, 0x09, 0x12, 0x0a,
0x0c, 0x0a, 0x05, 0x04, 0x00, 0x02, 0x00, 0x03, 0x12, 0x03, 0x0d, 0x15, 0x16, 0x62, 0x06, 0x70,
0x72, 0x6f, 0x74, 0x6f, 0x33,
];
// @@protoc_insertion_point(module)
Loading

0 comments on commit f8803fb

Please sign in to comment.