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
use client_darwinia::component::DarwiniaClientComponent;
use client_darwinia::types::EthereumAccount;
use support_common::config::{Config, Names};
use support_common::error::BridgerError;
use support_terminal::output;
use crate::bridge::DarwiniaEthereumConfig;
use crate::command::types::EcdsaOpts;
pub async fn handle_ecdsa(opts: EcdsaOpts) -> color_eyre::Result<()> {
let message = opts.message;
let bridge_config: DarwiniaEthereumConfig = Config::restore(Names::BridgeDarwiniaEthereum)?;
let config_darwinia = bridge_config.darwinia;
let config_web3 = bridge_config.web3;
let client = DarwiniaClientComponent::component(config_darwinia.clone()).await?;
let ethereum_account = EthereumAccount::new(
config_web3.endpoint,
config_darwinia.ecdsa_authority_private_key,
);
let message = array_bytes::hex2bytes(&message[2..])
.map_err(|_| BridgerError::Custom("message[2..]".into()))?;
let mut buffer = [0u8; 32];
buffer.copy_from_slice(&message);
let tx = client
.ethereum()
.ecdsa_sign_and_submit_signed_authorities(ethereum_account, buffer)
.await?;
output::output_text(format!("{:?}", tx));
output::output_text("Success");
Ok(())
}