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
use std::{net::SocketAddr, time::Duration};
use async_trait::async_trait;
use cubist_config::{
network::{CommonConfig, CredConfig, EthereumConfig, MnemonicConfig},
secret::SecretUrl,
};
use cubist_proxy::transformer::eth_creds::EthProxyConfig;
use cubist_util::net::next_available_port;
use secrecy::ExposeSecret;
use tokio::process::{Child, Command};
use tracing::trace;
use crate::{
config::Config,
error::Result,
proxy::Proxy,
resource::{resource_for_current_machine, Downloadable},
start_error, to_uri, UrlExt,
};
use super::{eth_available, Provider, Server, WhileRunning};
use crate::tracing::{child_stdio, trace_stdout};
const DEFAULT_ETHEREUM_PORT: u16 = 8545;
const DEFAULT_ETHEREUM_CHAIN_ID: u32 = 31337;
impl Config for EthereumConfig {
fn name(&self) -> &str {
"ethereum"
}
fn common(&self) -> CommonConfig {
self.common.clone()
}
fn local_provider(&self) -> Result<Box<dyn Provider>> {
assert!(
self.common.url.is_loopback()?,
"Cannot start node on remote machine."
);
let prov = AnvilProvider {
exe: resource_for_current_machine("anvil")?,
config: AnvilConfig {
url: self.common.url.clone(),
mnemonic: self.bootstrap_mnemonic.clone(),
},
};
Ok(Box::new(prov))
}
}
struct AnvilProvider {
exe: Downloadable,
config: AnvilConfig,
}
struct AnvilConfig {
url: SecretUrl,
mnemonic: MnemonicConfig,
}
#[async_trait]
impl Provider for AnvilProvider {
fn name(&self) -> &str {
"ethereum"
}
fn bootstrap_eta(&self) -> Duration {
Duration::from_secs(2)
}
fn url(&self) -> SecretUrl {
self.config.url.clone()
}
fn preflight(&self) -> Result<Vec<&Downloadable>> {
Ok(vec![&self.exe])
}
fn credentials(&self) -> Vec<CredConfig> {
vec![CredConfig::Mnemonic(self.config.mnemonic.clone())]
}
async fn start(&self) -> Result<Box<dyn super::Server>> {
let proxy_port = self.config.url.port().unwrap_or(DEFAULT_ETHEREUM_PORT);
let anvil_port = next_available_port(proxy_port);
let mut child = Command::new(&self.exe.destination())
.arg("--chain-id")
.arg(DEFAULT_ETHEREUM_CHAIN_ID.to_string())
.arg("--port")
.arg(&anvil_port.to_string())
.arg("--accounts")
.arg(self.config.mnemonic.account_count.to_string())
.arg("--mnemonic")
.arg(&self.config.mnemonic.seed.load()?.expose_secret())
.arg("--derivation-path")
.arg(&self.config.mnemonic.derivation_path)
.stdout(child_stdio())
.stderr(child_stdio())
.kill_on_drop(true)
.spawn()
.map_err(|e| {
start_error!(
"Unable to start anvil server (at {}): {}",
&self.exe.destination().display(),
e
)
})?;
trace_stdout("anvil", &mut child).await;
let anvil_url_exposed =
self.config
.url
.expose_url_and_update(None, Some(anvil_port), None)?;
let proxy = Proxy::new(
SocketAddr::from(([127, 0, 0, 1], proxy_port)),
&anvil_url_exposed,
EthProxyConfig {
onchain_uri: Some(to_uri(&anvil_url_exposed)),
chain_id: DEFAULT_ETHEREUM_CHAIN_ID,
creds: self.credentials(),
},
)?;
Ok(Box::new(AnvilServer {
anvil_url: self.url(),
_proxy: proxy,
process: child,
}))
}
}
struct AnvilServer {
process: Child,
_proxy: Proxy,
anvil_url: SecretUrl,
}
#[async_trait]
impl Server for AnvilServer {
fn pid(&self) -> Option<u32> {
self.process.id()
}
async fn kill(&mut self) -> Result<()> {
let result = self.process.kill().await;
trace!("Killing anvil process returned {result:?}");
Ok(())
}
async fn available(&mut self) -> Result<()> {
let name = "anvil".to_string();
self.process
.while_running(eth_available(self.anvil_url.clone(), name.clone()), name)
.await??;
Ok(())
}
async fn initialize(&mut self) -> Result<()> {
Ok(())
}
}
impl Drop for AnvilServer {
fn drop(&mut self) {
let _ = self.kill();
}
}