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
use std::convert::TryInto;
use crate::service::darwinia::types::ScanDataWrapper;
pub struct ScanAuthoritiesChangeSignedEvent<'a> {
data: &'a mut ScanDataWrapper,
}
impl<'a> ScanAuthoritiesChangeSignedEvent<'a> {
pub fn new(data: &'a mut ScanDataWrapper) -> Self {
Self { data }
}
}
impl<'a> ScanAuthoritiesChangeSignedEvent<'a> {
pub async fn handle(&mut self) -> color_eyre::Result<Option<u32>> {
let client = &self.data.darwinia;
let current_term = client
.ethereum()
.ethereum_relay_authorities_next_term()
.await?;
let events = self
.data
.subquery
.query_authorities_change_signed_event(self.data.from, self.data.limit)
.await?;
tracing::debug!(
target: "darwinia-ethereum",
"[darwinia] [authorities-change] Track darwinia AuthoritiesChangeSignedEvent block: {} and limit: {}",
self.data.from,
self.data.limit
);
if events.is_empty() {
tracing::info!(
target: "darwinia-ethereum",
"[darwinia] [authorities-change] Not have more AuthoritiesChangeSignedEvent"
);
return Ok(None);
}
for event in &events {
if event.term != current_term {
tracing::info!(
target: "darwinia-ethereum",
"[darwinia] [authorities-change] Queried AuthoritiesChangeSignedEvent but not in current term. the event term is {} and current term is {}. skip this.",
event.term,
current_term
);
continue;
}
tracing::trace!(
target: "darwinia-ethereum",
"[darwinia] [authorities-change] Processing authorities change signed event in block {}",
event.at_block_number
);
let mut new_authorities = Vec::with_capacity(event.new_authorities.len());
for item in &event.new_authorities {
let message = item.as_slice().try_into()?;
new_authorities.push(message);
}
let spec_name = client.spec_name().await?;
let message = client_darwinia::helpers::encode_authorities_message(
spec_name,
event.term,
new_authorities,
);
let raw_signatures = &event.signatures.nodes;
let mut signatures = Vec::with_capacity(raw_signatures.len());
for signature in raw_signatures {
let ecdsa_signature = signature.relay_authority_signature.as_slice().try_into()?;
signatures.push(ecdsa_signature);
}
let tx_hash = self
.data
.ethereum
.submit_authorities_set(message, signatures)
.await?;
tracing::info!(
target: "darwinia-ethereum",
"[darwinia] [authorities-change] Submit authorities to ethereum at block {} with tx: {}",
event.at_block_number,
tx_hash
);
}
let latest = events.last().unwrap();
Ok(Some(latest.at_block_number))
}
}