1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
use flex_error::define_error;
use tendermint::abci::Code;
use tendermint_rpc::endpoint::broadcast::tx_commit::TxResult;
define_error! {
SdkError {
Client
[ ClientError ]
|_| { "ICS02 Client Error" },
UnexpectedOk
|_| { "Expected error code, instead got Ok" },
UnknownSdk
{
codespace: String,
code: u32,
}
| e | {
format_args!("unknown SDK error with code space: {}, code: {}", e.codespace, e.code)
},
UnknownTxSync
{ code: u32 }
| e | { format_args!("unknown TX sync response error: {}", e.code) },
OutOfGas
{ code: u32 }
|_| { "the gas requirement is higher than the configured maximum gas! please check the Hermes config.toml".to_string() },
InsufficientFee
{ code: u32 }
|_| { "the price configuration for this chain may be too low! please check the `gas_price.price` Hermes config.toml".to_string() },
}
}
define_error! {
ClientError {
LightClientAlreadyExists
|_| { "light client already exists" },
InvalidLightClient
|_| { "light client is invalid" },
LightClientNotFound
|_| { "light client not found" },
FrozenLightClient
|_| { "light client is frozen due to misbehaviour" },
InvalidClientMetadata
|_| { "invalid client metadata" },
ConsensusStateNotFound
|_| { "consensus state not found" },
InvalidConsensusState
|_| { "invalid consensus state" },
ClientTypeNotFound
|_| { "client type not found" },
InvalidClientType
|_| { "invalid client type" },
CommitmentRootNotFound
|_| { "commitment root not found" },
InvalidClientHeader
|_| { "invalid client header" },
InvalidLightClientMisbehavior
|_| { "invalid light client misbehaviour" },
ClientStateVerificationFailed
|_| { "client state verification failed" },
ClientConsensusStateVerificationFailed
|_| { "client consensus state verification failed" },
ConnectionStateVerificationFailed
|_| { "connection state verification failed" },
ChannelStateVerificationFailed
|_| { "channel state verification failed" },
PacketCommitmentVerificationFailed
|_| { "packet commitment verification failed" },
PacketAcknowledgementVerificationFailed
|_| { "packet acknowledgement verification failed" },
PacketReceiptVerificationFailed
|_| { "packet receipt verification failed" },
NextSequenceReceiveVerificationFailed
|_| { "next sequence receive verification failed" },
SelfConsensusStateNotFound
|_| { "self consensus state not found" },
UpdateLightClientFailed
|_| { "unable to update light client" },
InvalidUpdateClientProposal
|_| { "invalid update client proposal" },
InvalidClientUpgrade
|_| { "invalid client upgrade" },
InvalidHeight
|_| { "invalid height" },
InvalidClientStateSubstitute
|_| { "invalid client state substitute" },
InvalidUpgradeProposal
|_| { "invalid upgrade proposal" },
InactiveClient
|_| { "client is not active" },
UnknownClient
{ code: u32 }
|e| { format!("unknown client error: {}", e.code) },
}
}
fn client_error_from_code(code: u32) -> ClientError {
match code {
2 => ClientError::light_client_already_exists(),
3 => ClientError::invalid_light_client(),
4 => ClientError::light_client_not_found(),
5 => ClientError::frozen_light_client(),
6 => ClientError::invalid_client_metadata(),
7 => ClientError::consensus_state_not_found(),
8 => ClientError::invalid_consensus_state(),
9 => ClientError::client_type_not_found(),
10 => ClientError::invalid_client_type(),
11 => ClientError::commitment_root_not_found(),
12 => ClientError::invalid_client_header(),
13 => ClientError::invalid_light_client_misbehavior(),
14 => ClientError::client_state_verification_failed(),
15 => ClientError::client_consensus_state_verification_failed(),
16 => ClientError::connection_state_verification_failed(),
17 => ClientError::client_state_verification_failed(),
18 => ClientError::packet_commitment_verification_failed(),
19 => ClientError::packet_acknowledgement_verification_failed(),
20 => ClientError::packet_receipt_verification_failed(),
21 => ClientError::next_sequence_receive_verification_failed(),
22 => ClientError::self_consensus_state_not_found(),
23 => ClientError::update_light_client_failed(),
24 => ClientError::invalid_update_client_proposal(),
25 => ClientError::invalid_client_upgrade(),
26 => ClientError::invalid_height(),
27 => ClientError::invalid_client_state_substitute(),
28 => ClientError::invalid_upgrade_proposal(),
29 => ClientError::inactive_client(),
_ => ClientError::unknown_client(code),
}
}
pub fn sdk_error_from_tx_result(result: &TxResult) -> SdkError {
match result.code {
Code::Ok => SdkError::unexpected_ok(),
Code::Err(code) => {
let codespace = result.codespace.to_string();
if codespace == "client" {
SdkError::client(client_error_from_code(code))
} else {
SdkError::unknown_sdk(codespace, code)
}
}
}
}
pub fn sdk_error_from_tx_sync_error_code(code: u32) -> SdkError {
match code {
11 => SdkError::out_of_gas(code),
13 => SdkError::insufficient_fee(code),
_ => SdkError::unknown_tx_sync(code),
}
}