Skip to content

Commit b79a4fa

Browse files
authored
cosmos-sdk-proto: add more IBC related names (#457)
1 parent bd3a7d9 commit b79a4fa

File tree

2 files changed

+59
-2
lines changed

2 files changed

+59
-2
lines changed

cosmos-sdk-proto/src/type_names.rs

+58-1
Original file line numberDiff line numberDiff line change
@@ -18,22 +18,62 @@ macro_rules! impl_name {
1818
};
1919
}
2020

21+
impl_name!(
22+
ibc::core::connection::v1::MsgConnectionOpenTry,
23+
"ibc.core.connection.v1",
24+
"MsgConnectionOpenTry"
25+
);
26+
impl_name!(
27+
ibc::core::connection::v1::MsgConnectionOpenInit,
28+
"ibc.core.connection.v1",
29+
"MsgConnectionOpenInit"
30+
);
31+
impl_name!(
32+
ibc::core::connection::v1::MsgConnectionOpenAck,
33+
"ibc.core.connection.v1",
34+
"MsgConnectionOpenAck"
35+
);
36+
impl_name!(
37+
ibc::core::connection::v1::MsgConnectionOpenConfirm,
38+
"ibc.core.connection.v1",
39+
"MsgConnectionOpenConfirm"
40+
);
41+
impl_name!(
42+
ibc::core::channel::v1::MsgChannelOpenInit,
43+
"ibc.core.channel.v1",
44+
"MsgChannelOpenInit"
45+
);
46+
2147
impl_name!(
2248
ibc::core::client::v1::ClientUpdateProposal,
2349
"ibc.core.client.v1",
2450
"ClientUpdateProposal"
2551
);
52+
impl_name!(
53+
ibc::core::client::v1::MsgCreateClient,
54+
"ibc.core.client.v1",
55+
"MsgCreateClient"
56+
);
2657
impl_name!(
2758
ibc::core::client::v1::MsgUpdateClient,
2859
"ibc.core.client.v1",
2960
"MsgUpdateClient"
3061
);
31-
62+
impl_name!(
63+
ibc::core::channel::v1::MsgChannelCloseConfirm,
64+
"ibc.core.channel.v1",
65+
"MsgChannelCloseConfirm"
66+
);
3267
impl_name!(
3368
ibc::core::channel::v1::MsgChannelOpenConfirm,
3469
"ibc.core.channel.v1",
3570
"MsgChannelOpenConfirm"
3671
);
72+
impl_name!(
73+
ibc::core::channel::v1::MsgChannelOpenTry,
74+
"ibc.core.channel.v1",
75+
"MsgChannelOpenTry"
76+
);
3777
impl_name!(
3878
ibc::core::channel::v1::MsgAcknowledgement,
3979
"ibc.core.channel.v1",
@@ -73,6 +113,17 @@ impl_name!(
73113
"ParameterChangeProposal"
74114
);
75115

116+
impl_name!(
117+
cosmos::gov::v1::MsgSubmitProposal,
118+
"cosmos.gov.v1",
119+
"MsgSubmitProposal"
120+
);
121+
impl_name!(cosmos::gov::v1::MsgDeposit, "cosmos.gov.v1", "MsgDeposit");
122+
impl_name!(
123+
cosmos::gov::v1::MsgVoteWeighted,
124+
"cosmos.gov.v1",
125+
"MsgVoteWeighted"
126+
);
76127
impl_name!(
77128
cosmos::gov::v1beta1::TextProposal,
78129
"cosmos.gov.v1beta1",
@@ -88,6 +139,7 @@ impl_name!(
88139
"cosmos.gov.v1beta1",
89140
"MsgDeposit"
90141
);
142+
impl_name!(cosmos::gov::v1::MsgVote, "cosmos.gov.v1", "MsgVote");
91143
impl_name!(
92144
cosmos::gov::v1beta1::MsgVote,
93145
"cosmos.gov.v1beta1",
@@ -303,6 +355,11 @@ impl_name!(
303355
"ModuleAccount"
304356
);
305357

358+
impl_name!(
359+
cosmos::authz::v1beta1::MsgGrant,
360+
"cosmos.authz.v1beta1",
361+
"MsgGrant"
362+
);
306363
impl_name!(
307364
cosmos::authz::v1beta1::MsgExec,
308365
"cosmos.authz.v1beta1",

cosmrs/src/error.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
//! Error types
22
3-
pub use eyre::{Report, Result};
3+
pub use eyre::Result;
44

55
use tendermint::Hash;
66
use thiserror::Error;

0 commit comments

Comments
 (0)