forked from compound-finance/gateway
-
Notifications
You must be signed in to change notification settings - Fork 0
/
chain_spec.rs
342 lines (311 loc) · 10.6 KB
/
chain_spec.rs
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
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
use gateway_runtime::{
opaque, wasm_binary_unwrap, AccountId, AuraConfig, CashConfig, GenesisConfig, GrandpaConfig,
OracleConfig, SessionConfig, Signature, SystemConfig,
};
use our_std::{convert::TryInto, str::FromStr};
use pallet_cash::{
chains::{Chain, Ethereum},
types::{AssetInfo, Timestamp, ValidatorKeys, APR},
};
use sc_service::ChainType;
use sp_consensus_aura::sr25519::AuthorityId as AuraId;
use sp_core::{sr25519, Pair, Public};
use sp_finality_grandpa::AuthorityId as GrandpaId;
use sp_runtime::traits::{IdentifyAccount, Verify};
// XXX are we going to setup our own telemetry server?
// The URL for the telemetry server.
// const STAGING_TELEMETRY_URL: &str = "wss://telemetry.polkadot.io/submit/";
/// Specialized `ChainSpec`. This is a specialization of the general Substrate ChainSpec type.
pub type ChainSpec = sc_service::GenericChainSpec<GenesisConfig>;
/// Generate a crypto pair from seed.
pub fn get_from_seed<TPublic: Public>(seed: &str) -> <TPublic::Pair as Pair>::Public {
TPublic::Pair::from_string(&format!("//{}", seed), None)
.expect("static values are valid; qed")
.public()
}
type AccountPublic = <Signature as Verify>::Signer;
/// Generate an account ID from seed.
pub fn get_account_id_from_seed<TPublic: Public>(seed: &str) -> AccountId
where
AccountPublic: From<<TPublic::Pair as Pair>::Public>,
{
AccountPublic::from(get_from_seed::<TPublic>(seed)).into_account()
}
// XXX just construct ValidatorKeys here and should include aura/grandpa?
/// Generate various keys from seed
pub fn authority_keys_from_seed(
seed: &str,
identity: &str,
) -> (AccountId, <Ethereum as Chain>::Address, AuraId, GrandpaId) {
(
get_account_id_from_seed::<sr25519::Public>(seed),
<Ethereum as Chain>::str_to_address(identity).unwrap(),
get_from_seed::<AuraId>(seed),
get_from_seed::<GrandpaId>(seed),
)
}
/// Get the properties key of the chain spec file - a basic valid configuration
fn get_properties() -> sc_service::Properties {
let value = serde_json::json! ({
"eth_starport_address" : ""
});
let as_object = value.as_object();
let unwrapped = as_object.unwrap();
unwrapped.clone()
}
fn development_genesis() -> GenesisConfig {
testnet_genesis(
// Initial PoA authorities
vec![authority_keys_from_seed(
"Alice",
"0xc77494d805d2b455686ba6a6bdf1c68ecf6e1cd7",
)],
// Initial reporters
vec![
"0x85615b076615317c80f14cbad6501eec031cd51c",
"0xfCEAdAFab14d46e20144F48824d0C09B1a03F2BC",
],
// Initial assets
vec![
AssetInfo {
liquidity_factor: FromStr::from_str("6789").unwrap(),
..AssetInfo::minimal(
FromStr::from_str("eth:0xEeeeeEeeeEeEeeEeEeEeeEEEeeeeEeeeeeeeEEeE").unwrap(),
FromStr::from_str("ETH/18").unwrap(),
)
},
AssetInfo {
ticker: FromStr::from_str("USD").unwrap(),
liquidity_factor: FromStr::from_str("6789").unwrap(),
..AssetInfo::minimal(
FromStr::from_str("eth:0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48").unwrap(),
FromStr::from_str("USDC/6").unwrap(),
)
},
],
// Initial cash yield
FromStr::from_str("0").unwrap(),
// Initial timestamp
wasm_timer::SystemTime::now()
.duration_since(wasm_timer::UNIX_EPOCH)
.expect("cannot get system time for genesis")
.as_millis() as Timestamp,
)
}
pub fn development_config() -> ChainSpec {
ChainSpec::from_genesis(
// Name
"Development",
// ID
"dev",
ChainType::Development,
development_genesis,
// Bootnodes
vec![],
// Telemetry
None,
// Protocol ID
None,
// Properties
Some(get_properties()),
// Extensions
None,
)
}
fn local_testnet_genesis() -> GenesisConfig {
testnet_genesis(
// Initial PoA authorities
vec![],
// Initial reporters
vec![],
// Initial assets
vec![],
// Initial cash yield
FromStr::from_str("0").unwrap(),
// Initial timestamp
0 as Timestamp,
)
}
pub fn local_testnet_config() -> ChainSpec {
ChainSpec::from_genesis(
// Name
"Local Testnet",
// ID
"local_testnet",
ChainType::Local,
local_testnet_genesis,
// Bootnodes
vec![],
// Telemetry
None,
// Protocol ID
Some("local"),
// Properties
Some(get_properties()),
// Extensions
None,
)
}
/// Configure initial storage state for FRAME modules.
fn testnet_genesis(
initial_authorities: Vec<(AccountId, <Ethereum as Chain>::Address, AuraId, GrandpaId)>,
reporters: Vec<&str>,
assets: Vec<AssetInfo>,
cash_yield: APR,
last_yield_timestamp: Timestamp,
) -> GenesisConfig {
GenesisConfig {
frame_system: Some(SystemConfig {
// Add Wasm runtime to storage.
code: wasm_binary_unwrap().to_vec(),
changes_trie_config: Default::default(),
}),
pallet_aura: Some(AuraConfig {
authorities: vec![],
}),
pallet_grandpa: Some(GrandpaConfig {
authorities: vec![],
}),
pallet_session: Some(SessionConfig {
keys: initial_authorities
.iter()
.map(|x| {
(
x.0.clone(),
x.0.clone(),
opaque::SessionKeys {
aura: x.2.clone(),
grandpa: x.3.clone(),
},
)
})
.collect::<Vec<_>>(),
}),
pallet_cash: Some(CashConfig {
cash_yield,
last_yield_timestamp,
assets,
// XXX initial authorities should just be Vec<ValidatorKeys>?
validators: initial_authorities
.iter()
.map(|v| ValidatorKeys {
substrate_id: v.0.clone(),
eth_address: v.1,
})
.collect::<Vec<_>>(),
}),
pallet_oracle: Some(OracleConfig {
reporters: reporters.try_into().unwrap(),
}),
}
}
/// A helper function used to extract the runtime interface configuration used for offchain workers
/// from the properties attribute of the chain spec file.
pub fn extract_configuration_from_properties(
properties: &sp_chain_spec::Properties,
) -> Option<runtime_interfaces::Config> {
let key_address = "eth_starport_address".to_owned();
let eth_starport_address = properties.get(&key_address)?;
let eth_starport_address_str = eth_starport_address.as_str()?;
// todo: eager validation of some kind here - basic sanity checking? or no?
Some(runtime_interfaces::new_config(
eth_starport_address_str.into(),
))
}
#[cfg(test)]
pub(crate) mod tests {
use super::*;
use gateway_runtime::BuildStorage;
/// Best case scenario - we have the key we need in the properties map and we _can_ return
/// the OCW configuration
#[test]
fn test_extract_configuration_from_properties_happy_path() {
let expected_starport = "hello starport";
let expected_topic = "hello topic";
let properties = serde_json::json!({ "eth_starport_address": expected_starport });
let properties = properties.as_object().unwrap();
let config = extract_configuration_from_properties(&properties);
assert!(config.is_some());
let config = config.unwrap();
let actual_eth_starport_address = config.get_eth_starport_address();
// let actual = String::from_utf8(actual).unwrap();
assert_eq!(
actual_eth_starport_address.as_slice(),
expected_starport.as_bytes()
);
}
/// Bad case - we do _not_ have the keys we need to return the OCW configuration
#[test]
fn test_extract_configuration_from_properties_missing_keys() {
let properties = serde_json::json!({ "wrong_key": "some value" });
let properties = properties.as_object().unwrap();
let config = extract_configuration_from_properties(&properties);
assert!(config.is_none());
}
/// Bad case - we do have the keys we need but we have the wrong data types
#[test]
fn test_extract_configuration_from_properties_wrong_type() {
let properties = serde_json::json!({ "eth_rpc_url": 0 });
let properties = properties.as_object().unwrap();
let config = extract_configuration_from_properties(&properties);
assert!(config.is_none());
}
#[test]
fn test_create_development_chain_spec() {
development_config().build_storage().unwrap();
}
#[test]
fn test_create_local_testnet_chain_spec() {
integration_test_config_with_single_authority()
.build_storage()
.unwrap();
}
fn local_testnet_genesis_instant_single() -> GenesisConfig {
testnet_genesis(
// Initial PoA authorities
vec![authority_keys_from_seed(
"Alice",
"0x435228f5ad6fc8ce7b4398456a72a2f14577d9cd",
)],
// Initial reporters
vec![
"0x85615b076615317c80f14cbad6501eec031cd51c",
"0xfCEAdAFab14d46e20144F48824d0C09B1a03F2BC",
],
// Initial assets
vec![],
// Initial cash yield
FromStr::from_str("0").unwrap(),
// Initial timestamp
0 as Timestamp,
)
}
/// Local testnet config (single validator - Alice)
pub fn integration_test_config_with_single_authority() -> ChainSpec {
ChainSpec::from_genesis(
"Integration Test",
"test",
ChainType::Development,
local_testnet_genesis_instant_single,
vec![],
None,
None,
None,
Default::default(),
)
}
/// Local testnet config (multivalidator Alice + Bob)
pub fn integration_test_config_with_two_authorities() -> ChainSpec {
ChainSpec::from_genesis(
"Integration Test",
"test",
ChainType::Development,
local_testnet_genesis,
vec![],
None,
None,
None,
Default::default(),
)
}
}