forked from Gravity-Bridge/Gravity-Bridge
-
Notifications
You must be signed in to change notification settings - Fork 0
/
send.rs
461 lines (430 loc) · 16.6 KB
/
send.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
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
use clarity::{constants::ZERO_ADDRESS, Address as EthAddress};
use clarity::{PrivateKey as EthPrivateKey, Signature};
use deep_space::address::Address;
use deep_space::error::CosmosGrpcError;
use deep_space::private_key::PrivateKey;
use deep_space::Contact;
use deep_space::Msg;
use deep_space::{coin::Coin, utils::bytes_to_hex_str};
use ethereum_gravity::message_signatures::{
encode_logic_call_confirm, encode_tx_batch_confirm, encode_valset_confirm,
};
use gravity_proto::cosmos_sdk_proto::cosmos::base::abci::v1beta1::TxResponse;
use gravity_proto::gravity::MsgConfirmLogicCall;
use gravity_proto::gravity::MsgErc20DeployedClaim;
use gravity_proto::gravity::MsgLogicCallExecutedClaim;
use gravity_proto::gravity::MsgRequestBatch;
use gravity_proto::gravity::MsgSendToCosmosClaim;
use gravity_proto::gravity::MsgSendToEth;
use gravity_proto::gravity::MsgSetOrchestratorAddress;
use gravity_proto::gravity::MsgValsetConfirm;
use gravity_proto::gravity::MsgValsetUpdatedClaim;
use gravity_proto::gravity::{MsgBatchSendToEthClaim, MsgSubmitBadSignatureEvidence};
use gravity_proto::gravity::{MsgCancelSendToEth, MsgConfirmBatch};
use gravity_utils::num_conversion::downcast_uint256;
use gravity_utils::types::*;
use std::{collections::HashMap, time::Duration};
use crate::utils::BadSignatureEvidence;
pub const MEMO: &str = "Sent using Althea Gravity Bridge Orchestrator";
pub const TIMEOUT: Duration = Duration::from_secs(60);
/// Send a transaction updating the eth address for the sending
/// Cosmos address. The sending Cosmos address should be a validator
/// this can only be called once! Key rotation code is possible but
/// not currently implemented
pub async fn set_gravity_delegate_addresses(
contact: &Contact,
delegate_eth_address: EthAddress,
delegate_cosmos_address: Address,
private_key: PrivateKey,
fee: Coin,
) -> Result<TxResponse, CosmosGrpcError> {
trace!("Updating Gravity Delegate addresses");
let our_valoper_address = private_key
.to_address(&contact.get_prefix())
.unwrap()
// This works so long as the format set by the cosmos hub is maintained
// having a main prefix followed by a series of titles for specific keys
// this will not work if that convention is broken. This will be resolved when
// GRPC exposes prefix endpoints (coming to upstream cosmos sdk soon)
.to_bech32(format!("{}valoper", contact.get_prefix()))
.unwrap();
let msg_set_orch_address = MsgSetOrchestratorAddress {
validator: our_valoper_address.to_string(),
orchestrator: delegate_cosmos_address.to_string(),
eth_address: delegate_eth_address.to_string(),
};
let msg = Msg::new(
"/gravity.v1.MsgSetOrchestratorAddress",
msg_set_orch_address,
);
contact
.send_message(
&[msg],
Some(MEMO.to_string()),
&[fee],
Some(TIMEOUT),
private_key,
)
.await
}
/// Send in a confirmation for an array of validator sets, it's far more efficient to send these
/// as a single message
#[allow(clippy::too_many_arguments)]
pub async fn send_valset_confirms(
contact: &Contact,
eth_private_key: EthPrivateKey,
fee: Coin,
valsets: Vec<Valset>,
private_key: PrivateKey,
gravity_id: String,
) -> Result<TxResponse, CosmosGrpcError> {
let our_address = private_key.to_address(&contact.get_prefix()).unwrap();
let our_eth_address = eth_private_key.to_address();
let mut messages = Vec::new();
for valset in valsets {
trace!("Submitting signature for valset {:?}", valset);
let message = encode_valset_confirm(gravity_id.clone(), valset.clone());
let eth_signature = eth_private_key.sign_ethereum_msg(&message);
trace!(
"Sending valset update with address {} and sig {}",
our_eth_address,
bytes_to_hex_str(ð_signature.to_bytes())
);
let confirm = MsgValsetConfirm {
orchestrator: our_address.to_string(),
eth_address: our_eth_address.to_string(),
nonce: valset.nonce,
signature: bytes_to_hex_str(ð_signature.to_bytes()),
};
let msg = Msg::new("/gravity.v1.MsgValsetConfirm", confirm);
messages.push(msg);
}
let res = contact
.send_message(
&messages,
Some(MEMO.to_string()),
&[fee],
Some(TIMEOUT),
private_key,
)
.await;
info!("Valset confirm res is {:?}", res);
res
}
/// Send in a confirmation for a specific transaction batch
pub async fn send_batch_confirm(
contact: &Contact,
eth_private_key: EthPrivateKey,
fee: Coin,
transaction_batches: Vec<TransactionBatch>,
private_key: PrivateKey,
gravity_id: String,
) -> Result<TxResponse, CosmosGrpcError> {
let our_address = private_key.to_address(&contact.get_prefix()).unwrap();
let our_eth_address = eth_private_key.to_address();
let mut messages = Vec::new();
for batch in transaction_batches {
trace!("Submitting signature for batch {:?}", batch);
let message = encode_tx_batch_confirm(gravity_id.clone(), batch.clone());
let eth_signature = eth_private_key.sign_ethereum_msg(&message);
trace!(
"Sending batch update with address {} and sig {}",
our_eth_address,
bytes_to_hex_str(ð_signature.to_bytes())
);
let confirm = MsgConfirmBatch {
token_contract: batch.token_contract.to_string(),
orchestrator: our_address.to_string(),
eth_signer: our_eth_address.to_string(),
nonce: batch.nonce,
signature: bytes_to_hex_str(ð_signature.to_bytes()),
};
let msg = Msg::new("/gravity.v1.MsgConfirmBatch", confirm);
messages.push(msg);
}
contact
.send_message(
&messages,
Some(MEMO.to_string()),
&[fee],
Some(TIMEOUT),
private_key,
)
.await
}
/// Send in a confirmation for a specific logic call
pub async fn send_logic_call_confirm(
contact: &Contact,
eth_private_key: EthPrivateKey,
fee: Coin,
logic_calls: Vec<LogicCall>,
private_key: PrivateKey,
gravity_id: String,
) -> Result<TxResponse, CosmosGrpcError> {
let our_address = private_key.to_address(&contact.get_prefix()).unwrap();
let our_eth_address = eth_private_key.to_address();
let mut messages = Vec::new();
for call in logic_calls {
trace!("Submitting signature for LogicCall {:?}", call);
let message = encode_logic_call_confirm(gravity_id.clone(), call.clone());
let eth_signature = eth_private_key.sign_ethereum_msg(&message);
trace!(
"Sending LogicCall update with address {} and sig {}",
our_eth_address,
bytes_to_hex_str(ð_signature.to_bytes())
);
let confirm = MsgConfirmLogicCall {
orchestrator: our_address.to_string(),
eth_signer: our_eth_address.to_string(),
signature: bytes_to_hex_str(ð_signature.to_bytes()),
invalidation_id: bytes_to_hex_str(&call.invalidation_id),
invalidation_nonce: call.invalidation_nonce,
};
let msg = Msg::new("/gravity.v1.MsgConfirmLogicCall", confirm);
messages.push(msg);
}
contact
.send_message(
&messages,
Some(MEMO.to_string()),
&[fee],
Some(TIMEOUT),
private_key,
)
.await
}
#[allow(clippy::too_many_arguments)]
pub async fn send_ethereum_claims(
contact: &Contact,
private_key: PrivateKey,
deposits: Vec<SendToCosmosEvent>,
withdraws: Vec<TransactionBatchExecutedEvent>,
erc20_deploys: Vec<Erc20DeployedEvent>,
logic_calls: Vec<LogicCallExecutedEvent>,
valsets: Vec<ValsetUpdatedEvent>,
fee: Coin,
) -> Result<TxResponse, CosmosGrpcError> {
let our_address = private_key.to_address(&contact.get_prefix()).unwrap();
// This sorts oracle messages by event nonce before submitting them. It's not a pretty implementation because
// we're missing an intermediary layer of abstraction. We could implement 'EventTrait' and then implement sort
// for it, but then when we go to transform 'EventTrait' objects into GravityMsg enum values we'll have all sorts
// of issues extracting the inner object from the TraitObject. Likewise we could implement sort of GravityMsg but that
// would require a truly horrendous (nearly 100 line) match statement to deal with all combinations. That match statement
// could be reduced by adding two traits to sort against but really this is the easiest option.
//
// We index the events by event nonce in an unordered hashmap and then play them back in order into a vec
let mut unordered_msgs = HashMap::new();
for deposit in deposits {
let claim = MsgSendToCosmosClaim {
event_nonce: deposit.event_nonce,
block_height: downcast_uint256(deposit.block_height).unwrap(),
token_contract: deposit.erc20.to_string(),
amount: deposit.amount.to_string(),
cosmos_receiver: deposit.destination,
ethereum_sender: deposit.sender.to_string(),
orchestrator: our_address.to_string(),
};
let msg = Msg::new("/gravity.v1.MsgSendToCosmosClaim", claim);
assert!(unordered_msgs.insert(deposit.event_nonce, msg).is_none());
}
for withdraw in withdraws {
let claim = MsgBatchSendToEthClaim {
event_nonce: withdraw.event_nonce,
block_height: downcast_uint256(withdraw.block_height).unwrap(),
token_contract: withdraw.erc20.to_string(),
batch_nonce: withdraw.batch_nonce,
orchestrator: our_address.to_string(),
};
let msg = Msg::new("/gravity.v1.MsgBatchSendToEthClaim", claim);
assert!(unordered_msgs.insert(withdraw.event_nonce, msg).is_none());
}
for deploy in erc20_deploys {
let claim = MsgErc20DeployedClaim {
event_nonce: deploy.event_nonce,
block_height: downcast_uint256(deploy.block_height).unwrap(),
cosmos_denom: deploy.cosmos_denom,
token_contract: deploy.erc20_address.to_string(),
name: deploy.name,
symbol: deploy.symbol,
decimals: deploy.decimals as u64,
orchestrator: our_address.to_string(),
};
let msg = Msg::new("/gravity.v1.MsgERC20DeployedClaim", claim);
assert!(unordered_msgs.insert(deploy.event_nonce, msg).is_none());
}
for call in logic_calls {
let claim = MsgLogicCallExecutedClaim {
event_nonce: call.event_nonce,
block_height: downcast_uint256(call.block_height).unwrap(),
invalidation_id: call.invalidation_id,
invalidation_nonce: call.invalidation_nonce,
orchestrator: our_address.to_string(),
};
let msg = Msg::new("/gravity.v1.MsgLogicCallExecutedClaim", claim);
assert!(unordered_msgs.insert(call.event_nonce, msg).is_none());
}
for valset in valsets {
let claim = MsgValsetUpdatedClaim {
event_nonce: valset.event_nonce,
valset_nonce: valset.valset_nonce,
block_height: downcast_uint256(valset.block_height).unwrap(),
members: valset.members.iter().map(|v| v.into()).collect(),
reward_amount: valset.reward_amount.to_string(),
reward_token: valset
.reward_token
.unwrap_or_else(|| *ZERO_ADDRESS)
.to_string(),
orchestrator: our_address.to_string(),
};
let msg = Msg::new("/gravity.v1.MsgValsetUpdatedClaim", claim);
assert!(unordered_msgs.insert(valset.event_nonce, msg).is_none());
}
let mut keys = Vec::new();
for (key, _) in unordered_msgs.iter() {
keys.push(*key);
}
keys.sort_unstable();
let mut msgs = Vec::new();
for i in keys {
msgs.push(unordered_msgs.remove_entry(&i).unwrap().1);
}
Ok(contact
.send_message(&msgs, None, &[fee], Some(TIMEOUT), private_key)
.await?)
}
/// Sends tokens from Cosmos to Ethereum. These tokens will not be sent immediately instead
/// they will require some time to be included in a batch. Note that there are two fees
/// one is the fee to be sent to Ethereum, which must be the same denom as the amount
/// the other is the Cosmos chain fee, which can be any allowed coin
pub async fn send_to_eth(
private_key: PrivateKey,
destination: EthAddress,
amount: Coin,
bridge_fee: Coin,
fee: Coin,
contact: &Contact,
) -> Result<TxResponse, CosmosGrpcError> {
let our_address = private_key.to_address(&contact.get_prefix()).unwrap();
if amount.denom != bridge_fee.denom {
return Err(CosmosGrpcError::BadInput(format!(
"{} {} is an invalid denom set for SendToEth you must pay fees in the same token your sending",
amount.denom, bridge_fee.denom,
)));
}
let balances = contact.get_balances(our_address).await.unwrap();
let mut found = false;
for balance in balances {
if balance.denom == amount.denom {
let total_amount = amount.amount.clone() + (fee.amount.clone() * 2u8.into());
if balance.amount < total_amount {
return Err(CosmosGrpcError::BadInput(format!(
"Insufficient balance of {} to send {}",
amount.denom, total_amount,
)));
}
found = true;
}
}
if !found {
return Err(CosmosGrpcError::BadInput(format!(
"No balance of {} to send",
amount.denom,
)));
}
let msg_send_to_eth = MsgSendToEth {
sender: our_address.to_string(),
eth_dest: destination.to_string(),
amount: Some(amount.into()),
bridge_fee: Some(bridge_fee.clone().into()),
};
let msg = Msg::new("/gravity.v1.MsgSendToEth", msg_send_to_eth);
contact
.send_message(
&[msg],
Some(MEMO.to_string()),
&[fee],
Some(TIMEOUT),
private_key,
)
.await
}
pub async fn send_request_batch(
private_key: PrivateKey,
denom: String,
fee: Option<Coin>,
contact: &Contact,
) -> Result<TxResponse, CosmosGrpcError> {
let our_address = private_key.to_address(&contact.get_prefix()).unwrap();
let msg_request_batch = MsgRequestBatch {
sender: our_address.to_string(),
denom,
};
let msg = Msg::new("/gravity.v1.MsgRequestBatch", msg_request_batch);
let fee: Vec<Coin> = match fee {
Some(fee) => vec![fee],
None => vec![],
};
contact
.send_message(
&[msg],
Some(MEMO.to_string()),
&fee,
Some(TIMEOUT),
private_key,
)
.await
}
/// Sends evidence of a bad signature to the chain to slash the malicious validator
/// who signed an invalid message with their Ethereum key
pub async fn submit_bad_signature_evidence(
private_key: PrivateKey,
fee: Coin,
contact: &Contact,
signed_object: BadSignatureEvidence,
signature: Signature,
) -> Result<TxResponse, CosmosGrpcError> {
let our_address = private_key.to_address(&contact.get_prefix()).unwrap();
let any = signed_object.to_any();
let msg_submit_bad_signature_evidence = MsgSubmitBadSignatureEvidence {
subject: Some(any),
signature: bytes_to_hex_str(&signature.to_bytes()),
sender: our_address.to_string(),
};
let msg = Msg::new(
"/gravity.v1.MsgSubmitBadSignatureEvidence",
msg_submit_bad_signature_evidence,
);
contact
.send_message(
&[msg],
Some(MEMO.to_string()),
&[fee],
Some(TIMEOUT),
private_key,
)
.await
}
/// Cancels a user provided SendToEth transaction, provided it's not already in a batch
/// you should check with `QueryPendingSendToEth`
pub async fn cancel_send_to_eth(
private_key: PrivateKey,
fee: Coin,
contact: &Contact,
transaction_id: u64,
) -> Result<TxResponse, CosmosGrpcError> {
let our_address = private_key.to_address(&contact.get_prefix()).unwrap();
let msg_cancel_send_to_eth = MsgCancelSendToEth {
transaction_id,
sender: our_address.to_string(),
};
let msg = Msg::new("/gravity.v1.MsgCancelSendToEth", msg_cancel_send_to_eth);
contact
.send_message(
&[msg],
Some(MEMO.to_string()),
&[fee],
Some(TIMEOUT),
private_key,
)
.await
}