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
use client_darwinia::component::DarwiniaClientComponent;
use client_darwinia::types::runtime_types::darwinia_bridge_ethereum::EthereumRelayHeaderParcel;
use colored::Colorize;
use component_ethereum::errors::BizError;
use shadow_liketh::component::ShadowComponent;
use shadow_liketh::types::BridgeName;
use support_common::config::{Config, Names};
use support_common::error::BridgerError;
use support_terminal::output;
use crate::bridge::DarwiniaEthereumConfig;
use crate::command::types::{AffirmMode, AffirmOpts};
pub async fn handle_affirm(opts: AffirmOpts) -> color_eyre::Result<()> {
match opts {
AffirmOpts::Do {
mode,
block,
raw_json,
} => handle_do(mode, block, raw_json).await,
AffirmOpts::State => handle_state().await,
}
}
async fn handle_do(
mode: AffirmMode,
block: Option<u32>,
_raw_json: Option<String>,
) -> color_eyre::Result<()> {
let bridge_config: DarwiniaEthereumConfig = Config::restore(Names::BridgeDarwiniaEthereum)?;
let config_darwinia = bridge_config.darwinia;
let client = DarwiniaClientComponent::component(config_darwinia.clone()).await?;
let parcel: EthereumRelayHeaderParcel = match mode {
AffirmMode::Block => {
let block = block.ok_or_else(|| {
BridgerError::Custom("You are missing `--block` parameter".to_string())
})?;
let shadow = ShadowComponent::component(
bridge_config.shadow,
bridge_config.ethereum,
bridge_config.web3,
BridgeName::DarwiniaEthereum,
)?;
let expected_block = block + 1;
shadow.parcel(expected_block as u64).await?.try_into()?
}
AffirmMode::Raw => {
return Err(BridgerError::Custom("Not support this feature now".to_string()).into());
}
};
match mode {
AffirmMode::Block => {
let block_number = parcel.header.number;
if parcel.parent_mmr_root.to_fixed_bytes() == [0u8; 32] {
return Err(BizError::ParcelFromShadowIsEmpty(block.unwrap()).into());
}
let ex_hash = client.ethereum().affirm(parcel).await?;
output::output_text(format!(
"Affirmed ethereum block {} in extrinsic {:?}",
block_number, ex_hash
));
}
AffirmMode::Raw => {
return Err(BridgerError::Custom("Not support this feature now".to_string()).into());
}
}
Ok(())
}
async fn handle_state() -> color_eyre::Result<()> {
let bridge_config: DarwiniaEthereumConfig = Config::restore(Names::BridgeDarwiniaEthereum)?;
let client = DarwiniaClientComponent::component(bridge_config.darwinia).await?;
let mut output = vec![];
for (game_id, game) in client.ethereum().affirmations().await?.iter() {
output.push(format!("{}", &format!("--- GAME {} ---", game_id).bold()));
for (round_id, affirmations) in game.iter() {
output.push(format!("ROUND {}", round_id));
for affirmation in affirmations {
output.push(format!("{} {:?}\n", "affirmation:".blue(), affirmation));
}
}
}
if output.is_empty() {
output::output_text("Not have affirm data");
} else {
output::output_text(output.join("\n"));
}
Ok(())
}