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
use client_pangolin::client::PangolinClient;
use client_pangolin::component::PangolinClientComponent;
use client_pangoro::client::PangoroClient;
use client_pangoro::component::PangoroClientComponent;
use serde::{Deserialize, Serialize};
use subquery::types::BridgeName;
use subquery::{Subquery, SubqueryComponent, SubqueryConfig};
use crate::types::HexLaneId;
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct BridgeConfig {
pub pangolin: ChainInfoConfig,
pub pangoro: ChainInfoConfig,
pub relay: RelayConfig,
pub index: IndexConfig,
}
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct ChainInfoConfig {
pub endpoint: String,
pub signer: String,
}
#[derive(Clone, Debug, Deserialize, Serialize)]
pub struct RelayConfig {
pub lanes: Vec<HexLaneId>,
#[serde(default)]
pub enable_mandatory: bool,
}
#[derive(Clone, Debug, Serialize, Deserialize)]
pub struct IndexConfig {
pub pangolin: SubqueryConfig,
pub pangoro: SubqueryConfig,
}
impl From<ChainInfoConfig> for client_pangolin::config::ClientConfig {
fn from(config: ChainInfoConfig) -> Self {
client_pangolin::config::ClientConfig {
endpoint: config.endpoint,
relayer_private_key: config.signer,
relayer_real_account: None,
}
}
}
impl From<ChainInfoConfig> for client_pangoro::config::ClientConfig {
fn from(config: ChainInfoConfig) -> Self {
client_pangoro::config::ClientConfig {
endpoint: config.endpoint,
relayer_private_key: config.signer,
relayer_real_account: None,
}
}
}
impl ChainInfoConfig {
pub async fn to_pangolin_client(&self) -> color_eyre::Result<PangolinClient> {
let config = self.clone().into();
Ok(PangolinClientComponent::component(config).await?)
}
pub async fn to_pangoro_client(&self) -> color_eyre::Result<PangoroClient> {
let config = self.clone().into();
Ok(PangoroClientComponent::component(config).await?)
}
}
impl IndexConfig {
pub fn to_pangolin_subquery(&self) -> Subquery {
SubqueryComponent::component(self.pangolin.clone(), BridgeName::PangolinPangoro)
}
pub fn to_pangoro_subquery(&self) -> Subquery {
SubqueryComponent::component(self.pangoro.clone(), BridgeName::PangolinPangoro)
}
}
impl RelayConfig {
pub fn raw_lanes(&self) -> Vec<[u8; 4]> {
self.lanes.iter().map(|item| item.0).collect()
}
}