forked from Gravity-Bridge/Gravity-Bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
query.rs
307 lines (284 loc) · 10.8 KB
/
query.rs
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
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
use std::convert::TryFrom;
use clarity::Address as EthAddress;
use deep_space::address::Address;
use gravity_proto::gravity::query_client::QueryClient as GravityQueryClient;
use gravity_proto::gravity::Attestation;
use gravity_proto::gravity::Params;
use gravity_proto::gravity::QueryAttestationsRequest;
use gravity_proto::gravity::QueryBatchConfirmsRequest;
use gravity_proto::gravity::QueryBatchFeeRequest;
use gravity_proto::gravity::QueryBatchFeeResponse;
use gravity_proto::gravity::QueryCurrentValsetRequest;
use gravity_proto::gravity::QueryDenomToErc20Request;
use gravity_proto::gravity::QueryDenomToErc20Response;
use gravity_proto::gravity::QueryErc20ToDenomRequest;
use gravity_proto::gravity::QueryErc20ToDenomResponse;
use gravity_proto::gravity::QueryLastEventNonceByAddrRequest;
use gravity_proto::gravity::QueryLastPendingBatchRequestByAddrRequest;
use gravity_proto::gravity::QueryLastPendingLogicCallByAddrRequest;
use gravity_proto::gravity::QueryLastPendingValsetRequestByAddrRequest;
use gravity_proto::gravity::QueryLastValsetRequestsRequest;
use gravity_proto::gravity::QueryLogicConfirmsRequest;
use gravity_proto::gravity::QueryOutgoingLogicCallsRequest;
use gravity_proto::gravity::QueryOutgoingTxBatchesRequest;
use gravity_proto::gravity::QueryParamsRequest;
use gravity_proto::gravity::QueryPendingSendToEth;
use gravity_proto::gravity::QueryPendingSendToEthResponse;
use gravity_proto::gravity::QueryValsetConfirmsByNonceRequest;
use gravity_proto::gravity::QueryValsetRequestRequest;
use gravity_utils::error::GravityError;
use gravity_utils::types::*;
use tonic::transport::Channel;
/// Gets the Gravity module parameters from the Gravity module
pub async fn get_gravity_params(
client: &mut GravityQueryClient<Channel>,
) -> Result<Params, GravityError> {
let request = client.params(QueryParamsRequest {}).await?.into_inner();
Ok(request.params.unwrap())
}
/// get the valset for a given nonce (block) height
pub async fn get_valset(
client: &mut GravityQueryClient<Channel>,
nonce: u64,
) -> Result<Option<Valset>, GravityError> {
let request = client
.valset_request(QueryValsetRequestRequest { nonce })
.await?;
let valset = request.into_inner().valset;
let valset = valset.map(|v| v.into());
Ok(valset)
}
/// get the current valset. You should never sign this valset
/// valset requests create a consensus point around the block height
/// that transaction got in. Without that consensus point everyone trying
/// to sign the 'current' valset would run into slight differences and fail
/// to produce a viable update.
pub async fn get_current_valset(
client: &mut GravityQueryClient<Channel>,
) -> Result<Valset, GravityError> {
let request = client.current_valset(QueryCurrentValsetRequest {}).await?;
let valset = request.into_inner().valset;
if let Some(valset) = valset {
Ok(valset.into())
} else {
error!("Current valset returned None? This should be impossible");
Err(GravityError::InvalidBridgeStateError(
"Must have a current valset!".to_string(),
))
}
}
/// This hits the /pending_valset_requests endpoint and will provide
/// an array of validator sets we have not already signed
pub async fn get_oldest_unsigned_valsets(
client: &mut GravityQueryClient<Channel>,
address: Address,
prefix: String,
) -> Result<Vec<Valset>, GravityError> {
let request = client
.last_pending_valset_request_by_addr(QueryLastPendingValsetRequestByAddrRequest {
address: address.to_bech32(prefix).unwrap(),
})
.await?;
let valsets = request.into_inner().valsets;
// convert from proto valset type to rust valset type
let valsets = valsets.iter().map(|v| v.into()).collect();
Ok(valsets)
}
/// this input views the last five valset requests that have been made, useful if you're
/// a relayer looking to ferry confirmations
pub async fn get_latest_valsets(
client: &mut GravityQueryClient<Channel>,
) -> Result<Vec<Valset>, GravityError> {
let request = client
.last_valset_requests(QueryLastValsetRequestsRequest {})
.await?;
let valsets = request.into_inner().valsets;
Ok(valsets.iter().map(|v| v.into()).collect())
}
/// get all valset confirmations for a given nonce
pub async fn get_all_valset_confirms(
client: &mut GravityQueryClient<Channel>,
nonce: u64,
) -> Result<Vec<ValsetConfirmResponse>, GravityError> {
let request = client
.valset_confirms_by_nonce(QueryValsetConfirmsByNonceRequest { nonce })
.await?;
let confirms = request.into_inner().confirms;
let mut parsed_confirms = Vec::new();
for item in confirms {
let v: ValsetConfirmResponse = ValsetConfirmResponse::try_from(&item)?;
parsed_confirms.push(v)
}
Ok(parsed_confirms)
}
pub async fn get_oldest_unsigned_transaction_batches(
client: &mut GravityQueryClient<Channel>,
address: Address,
prefix: String,
) -> Result<Vec<TransactionBatch>, GravityError> {
let request = client
.last_pending_batch_request_by_addr(QueryLastPendingBatchRequestByAddrRequest {
address: address.to_bech32(prefix).unwrap(),
})
.await?;
let batches = request.into_inner().batch;
let mut ret_batches = Vec::new();
for batch in batches {
ret_batches.push(TransactionBatch::try_from(batch)?);
}
Ok(ret_batches)
}
/// gets the latest 100 transaction batches, regardless of token type
/// for relayers to consider relaying
pub async fn get_latest_transaction_batches(
client: &mut GravityQueryClient<Channel>,
) -> Result<Vec<TransactionBatch>, GravityError> {
let request = client
.outgoing_tx_batches(QueryOutgoingTxBatchesRequest {})
.await?;
let batches = request.into_inner().batches;
let mut out = Vec::new();
for batch in batches {
out.push(TransactionBatch::try_from(batch)?)
}
Ok(out)
}
/// get all batch confirmations for a given nonce and denom
pub async fn get_transaction_batch_signatures(
client: &mut GravityQueryClient<Channel>,
nonce: u64,
contract_address: EthAddress,
) -> Result<Vec<BatchConfirmResponse>, GravityError> {
let request = client
.batch_confirms(QueryBatchConfirmsRequest {
nonce,
contract_address: contract_address.to_string(),
})
.await?;
let batch_confirms = request.into_inner().confirms;
let mut out = Vec::new();
for confirm in batch_confirms {
out.push(BatchConfirmResponse::try_from(confirm)?)
}
Ok(out)
}
/// Gets the last event nonce that a given validator has attested to, this lets us
/// catch up with what the current event nonce should be if a oracle is restarted
pub async fn get_last_event_nonce_for_validator(
client: &mut GravityQueryClient<Channel>,
address: Address,
prefix: String,
) -> Result<u64, GravityError> {
let request = client
.last_event_nonce_by_addr(QueryLastEventNonceByAddrRequest {
address: address.to_bech32(prefix).unwrap(),
})
.await?;
Ok(request.into_inner().event_nonce)
}
/// Gets the 100 latest logic calls for a relayer to consider relaying
pub async fn get_latest_logic_calls(
client: &mut GravityQueryClient<Channel>,
) -> Result<Vec<LogicCall>, GravityError> {
let request = client
.outgoing_logic_calls(QueryOutgoingLogicCallsRequest {})
.await?;
let calls = request.into_inner().calls;
let mut out = Vec::new();
for call in calls {
out.push(LogicCall::try_from(call)?);
}
Ok(out)
}
pub async fn get_logic_call_signatures(
client: &mut GravityQueryClient<Channel>,
invalidation_id: Vec<u8>,
invalidation_nonce: u64,
) -> Result<Vec<LogicCallConfirmResponse>, GravityError> {
let request = client
.logic_confirms(QueryLogicConfirmsRequest {
invalidation_id,
invalidation_nonce,
})
.await?;
let call_confirms = request.into_inner().confirms;
let mut out = Vec::new();
for confirm in call_confirms {
out.push(LogicCallConfirmResponse::try_from(confirm)?)
}
Ok(out)
}
pub async fn get_oldest_unsigned_logic_calls(
client: &mut GravityQueryClient<Channel>,
address: Address,
prefix: String,
) -> Result<Vec<LogicCall>, GravityError> {
let request = client
.last_pending_logic_call_by_addr(QueryLastPendingLogicCallByAddrRequest {
address: address.to_bech32(prefix).unwrap(),
})
.await?;
let calls = request.into_inner().call;
let mut ret_calls = Vec::new();
for call in calls {
ret_calls.push(LogicCall::try_from(call)?);
}
Ok(ret_calls)
}
pub async fn get_attestations(
client: &mut GravityQueryClient<Channel>,
limit: Option<u64>,
) -> Result<Vec<Attestation>, GravityError> {
let request = client
.get_attestations(QueryAttestationsRequest {
limit: limit.or(Some(1000u64)).unwrap(),
})
.await?;
let attestations = request.into_inner().attestations;
Ok(attestations)
}
/// Get a list of transactions going to the EVM blockchain that are pending for a given user.
pub async fn get_pending_send_to_eth(
client: &mut GravityQueryClient<Channel>,
sender_address: Address,
) -> Result<QueryPendingSendToEthResponse, GravityError> {
let request = client
.get_pending_send_to_eth(QueryPendingSendToEth {
sender_address: sender_address.to_string(),
})
.await?;
Ok(request.into_inner())
}
/// Gets erc20 for a given denom, this can take two forms a gravity0x... address where it's really
/// just stripping the gravity prefix, or it can take a native asset like 'gravity' and return a erc20
/// contract that represents it. This later case is also true for IBC coins
pub async fn get_denom_to_erc20(
client: &mut GravityQueryClient<Channel>,
denom: String,
) -> Result<QueryDenomToErc20Response, GravityError> {
let request = client
.denom_to_erc20(QueryDenomToErc20Request { denom })
.await?;
Ok(request.into_inner())
}
/// looks up the correct erc20 to represent this denom, for Ethereum originated assets this is just
/// prefixing with 'gravity' but for native or IBC assets a lookup will be performed for the correct
/// adopted address
pub async fn get_erc20_to_denom(
client: &mut GravityQueryClient<Channel>,
erc20: EthAddress,
) -> Result<QueryErc20ToDenomResponse, GravityError> {
let request = client
.erc20_to_denom(QueryErc20ToDenomRequest {
erc20: erc20.to_string(),
})
.await?;
Ok(request.into_inner())
}
/// Get a list of fees for all pending batches
pub async fn get_pending_batch_fees(
client: &mut GravityQueryClient<Channel>,
) -> Result<QueryBatchFeeResponse, GravityError> {
let request = client.batch_fees(QueryBatchFeeRequest {}).await?;
Ok(request.into_inner())
}