This repository was archived by the owner on Apr 25, 2026. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathchain_spec.rs
More file actions
343 lines (321 loc) · 11 KB
/
Copy pathchain_spec.rs
File metadata and controls
343 lines (321 loc) · 11 KB
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
343
use arkworks_setups::{common::setup_params, Curve};
use webb_primitives::{types::runtime::BabeId, AccountId, Balance, Signature};
use itertools::Itertools;
use sc_chain_spec::ChainSpecExtension;
use sc_service::ChainType;
use serde::{Deserialize, Serialize};
use sp_core::{sr25519, Pair, Public};
use sp_finality_grandpa::AuthorityId as GrandpaId;
use sp_runtime::{
traits::{IdentifyAccount, Verify},
Perbill,
};
use sp_std::convert::TryInto;
use webb_runtime::{
constants::currency::*, wasm_binary_unwrap, AssetRegistryConfig, AuthorityDiscoveryConfig,
BabeConfig, Block, CouncilConfig, DemocracyConfig, ElectionsConfig, GenesisConfig,
GrandpaConfig, HasherBn254Config, ImOnlineConfig, IndicesConfig, MerkleTreeBn254Config,
MixerBn254Config, MixerVerifierBn254Config, SessionConfig, StakerStatus, StakingConfig,
SudoConfig, VAnchorBn254Config, VAnchorVerifierConfig,
};
// ImOnline consensus authority.
pub type ImOnlineId = pallet_im_online::sr25519::AuthorityId;
// AuthorityDiscovery consensus authority.
pub type AuthorityDiscoveryId = sp_authority_discovery::AuthorityId;
/// Specialized `ChainSpec` for the normal parachain runtime.
pub type ChainSpec = sc_service::GenericChainSpec<webb_runtime::GenesisConfig, Extensions>;
#[derive(Default, Clone, Serialize, Deserialize, ChainSpecExtension)]
#[serde(rename_all = "camelCase")]
pub struct Extensions {
/// Block numbers with known hashes.
pub fork_blocks: sc_client_api::ForkBlocks<Block>,
/// Known bad block hashes.
pub bad_blocks: sc_client_api::BadBlocks<Block>,
/// The light sync state extension used by the sync-state rpc.
pub light_sync_state: sc_sync_state_rpc::LightSyncStateExtension,
}
type AccountPublic = <Signature as Verify>::Signer;
/// Helper function to 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()
}
/// Helper function to 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()
}
/// Helper function to generate stash, controller and session key from seed
pub fn authority_keys_from_seed(
seed: &str,
) -> (AccountId, AccountId, GrandpaId, BabeId, ImOnlineId, AuthorityDiscoveryId) {
(
get_account_id_from_seed::<sr25519::Public>(&format!("{seed}//stash")),
get_account_id_from_seed::<sr25519::Public>(seed),
get_from_seed::<GrandpaId>(seed),
get_from_seed::<BabeId>(seed),
get_from_seed::<ImOnlineId>(seed),
get_from_seed::<AuthorityDiscoveryId>(seed),
)
}
/// Generate the session keys from individual elements.
///
/// The input must be a tuple of individual keys (a single arg for now since we
/// have just one key).
fn webb_session_keys(
grandpa: GrandpaId,
babe: BabeId,
im_online: ImOnlineId,
authority_discovery: AuthorityDiscoveryId,
) -> webb_runtime::SessionKeys {
webb_runtime::SessionKeys { grandpa, babe, im_online, authority_discovery }
}
pub fn webb_development_config() -> Result<ChainSpec, String> {
let mut properties = sc_chain_spec::Properties::new();
properties.insert("tokenSymbol".into(), "Unit".into());
properties.insert("tokenDecimals".into(), 18u32.into());
properties.insert("ss58Format".into(), 42.into());
Ok(ChainSpec::from_genesis(
// Name
"Development",
// ID
"dev",
ChainType::Development,
move || {
testnet_genesis(
vec![authority_keys_from_seed("Alice"), authority_keys_from_seed("Bob")],
vec![
get_account_id_from_seed::<sr25519::Public>("Charlie"),
get_account_id_from_seed::<sr25519::Public>("Dave"),
get_account_id_from_seed::<sr25519::Public>("Eve"),
get_account_id_from_seed::<sr25519::Public>("Ferdie"),
get_account_id_from_seed::<sr25519::Public>("Alice//stash"),
get_account_id_from_seed::<sr25519::Public>("Bob//stash"),
get_account_id_from_seed::<sr25519::Public>("Charlie//stash"),
get_account_id_from_seed::<sr25519::Public>("Dave//stash"),
get_account_id_from_seed::<sr25519::Public>("Eve//stash"),
get_account_id_from_seed::<sr25519::Public>("Ferdie//stash"),
],
vec![
get_account_id_from_seed::<sr25519::Public>("Alice"),
get_account_id_from_seed::<sr25519::Public>("Bob"),
get_account_id_from_seed::<sr25519::Public>("Charlie"),
get_account_id_from_seed::<sr25519::Public>("Dave"),
get_account_id_from_seed::<sr25519::Public>("Eve"),
get_account_id_from_seed::<sr25519::Public>("Ferdie"),
],
get_account_id_from_seed::<sr25519::Public>("Alice"),
)
},
// Bootnodes
vec![],
// Telemetry
None,
// Protocol ID
None,
// Fork ID
None,
// Properties
Some(properties),
Default::default(),
))
}
pub fn webb_local_testnet_config() -> Result<ChainSpec, String> {
Ok(ChainSpec::from_genesis(
// Name
"Local Testnet",
// ID
"local_testnet",
ChainType::Local,
move || {
testnet_genesis(
vec![authority_keys_from_seed("Alice"), authority_keys_from_seed("Bob")],
vec![
get_account_id_from_seed::<sr25519::Public>("Charlie"),
get_account_id_from_seed::<sr25519::Public>("Dave"),
get_account_id_from_seed::<sr25519::Public>("Eve"),
get_account_id_from_seed::<sr25519::Public>("Ferdie"),
get_account_id_from_seed::<sr25519::Public>("Alice//stash"),
get_account_id_from_seed::<sr25519::Public>("Bob//stash"),
get_account_id_from_seed::<sr25519::Public>("Charlie//stash"),
get_account_id_from_seed::<sr25519::Public>("Dave//stash"),
get_account_id_from_seed::<sr25519::Public>("Eve//stash"),
get_account_id_from_seed::<sr25519::Public>("Ferdie//stash"),
],
vec![
get_account_id_from_seed::<sr25519::Public>("Alice"),
get_account_id_from_seed::<sr25519::Public>("Bob"),
get_account_id_from_seed::<sr25519::Public>("Charlie"),
get_account_id_from_seed::<sr25519::Public>("Dave"),
get_account_id_from_seed::<sr25519::Public>("Eve"),
get_account_id_from_seed::<sr25519::Public>("Ferdie"),
],
get_account_id_from_seed::<sr25519::Public>("Alice"),
)
},
// Bootnodes
vec![],
// Telemetry
None,
// Protocol ID
None,
// Fork ID
None,
// Properties
None,
// Extensions
Default::default(),
))
}
/// Configure initial storage state for FRAME modules.
fn testnet_genesis(
initial_authorities: Vec<(
AccountId,
AccountId,
GrandpaId,
BabeId,
ImOnlineId,
AuthorityDiscoveryId,
)>,
mut initial_nominators: Vec<AccountId>,
endowed_accounts: Vec<AccountId>,
root_key: AccountId,
) -> GenesisConfig {
let curve_bn254 = Curve::Bn254;
log::info!("Bn254 x5 w3 params");
let bn254_x5_3_params = setup_params::<ark_bn254::Fr>(curve_bn254, 5, 3);
log::info!("Verifier params for mixer");
let mixer_verifier_bn254_params = {
let vk_bytes = include_bytes!(
"../../../substrate-fixtures/substrate-fixtures/mixer/bn254/x5/verifying_key.bin"
);
vk_bytes.to_vec()
};
log::info!("Verifier params for vanchor");
let vanchor_verifier_2_2_bn254_params = {
let vk_bytes =
include_bytes!("../../../substrate-fixtures/substrate-fixtures/vanchor/bn254/x5/2-2-2/verifying_key.bin");
vk_bytes.to_vec()
};
let vanchor_verifier_2_16_bn254_params = {
let vk_bytes =
include_bytes!("../../../substrate-fixtures/substrate-fixtures/vanchor/bn254/x5/2-16-2/verifying_key.bin");
vk_bytes.to_vec()
};
let mut endowed_accounts: Vec<AccountId> = endowed_accounts;
// endow all authorities and nominators.
initial_authorities
.iter()
.map(|x| &x.0)
.chain(initial_nominators.iter())
.for_each(|x| {
if !endowed_accounts.contains(x) {
endowed_accounts.push(x.clone())
}
});
let mut unique = vec![];
unique.append(&mut endowed_accounts);
unique.append(&mut initial_nominators);
unique.append(&mut initial_authorities.iter().map(|x| &x.0).cloned().collect::<Vec<_>>());
unique = unique.into_iter().unique().into_iter().collect::<Vec<_>>();
// stakers: all validators and nominators.
let mut _rng = rand::thread_rng();
let num_endowed_accounts = endowed_accounts.len();
const ENDOWMENT: Balance = 10_000_000 * DOLLARS;
const STASH: Balance = ENDOWMENT / 1000;
log::info!("Genesis Config");
GenesisConfig {
system: webb_runtime::SystemConfig { code: wasm_binary_unwrap().to_vec() },
asset_registry: AssetRegistryConfig {
asset_names: vec![(b"TEST".to_vec().try_into().unwrap(), 1)],
native_asset_name: b"WEBB".to_vec().try_into().unwrap(),
native_existential_deposit: webb_runtime::constants::currency::EXISTENTIAL_DEPOSIT,
},
tokens: webb_runtime::TokensConfig {
balances: unique.iter().cloned().map(|k| (k, 1, ENDOWMENT)).collect(),
},
balances: webb_runtime::BalancesConfig {
balances: unique.iter().cloned().map(|k| (k, ENDOWMENT)).collect(),
},
indices: IndicesConfig { indices: vec![] },
session: SessionConfig {
keys: initial_authorities
.iter()
.map(|x| {
(
x.0.clone(),
x.0.clone(),
webb_session_keys(x.2.clone(), x.3.clone(), x.4.clone(), x.5.clone()),
)
})
.collect::<Vec<_>>(),
},
staking: StakingConfig {
validator_count: initial_authorities.len() as u32,
minimum_validator_count: initial_authorities.len() as u32,
invulnerables: initial_authorities.iter().map(|x| x.0.clone()).collect(),
slash_reward_fraction: Perbill::from_percent(10),
stakers: initial_authorities
.iter()
.map(|x| (x.0.clone(), x.1.clone(), STASH, StakerStatus::Validator))
.collect(),
..Default::default()
},
democracy: DemocracyConfig::default(),
elections: ElectionsConfig {
members: endowed_accounts
.iter()
.take((num_endowed_accounts + 1) / 2)
.cloned()
.map(|member| (member, STASH))
.collect(),
},
council: CouncilConfig::default(),
sudo: SudoConfig { key: Some(root_key) },
babe: BabeConfig {
authorities: vec![],
epoch_config: Some(webb_runtime::BABE_GENESIS_EPOCH_CONFIG),
},
im_online: ImOnlineConfig { keys: vec![] },
authority_discovery: AuthorityDiscoveryConfig { keys: vec![] },
grandpa: GrandpaConfig { authorities: vec![] },
treasury: Default::default(),
hasher_bn_254: HasherBn254Config {
parameters: Some(bn254_x5_3_params.to_bytes().try_into().unwrap()),
phantom: Default::default(),
},
mixer_verifier_bn_254: MixerVerifierBn254Config {
parameters: Some(mixer_verifier_bn254_params.try_into().unwrap()),
phantom: Default::default(),
},
v_anchor_verifier: VAnchorVerifierConfig {
parameters: Some(vec![
(2, 2, vanchor_verifier_2_2_bn254_params.try_into().unwrap()),
(2, 16, vanchor_verifier_2_16_bn254_params.try_into().unwrap()),
]),
phantom: Default::default(),
},
merkle_tree_bn_254: MerkleTreeBn254Config {
phantom: Default::default(),
default_hashes: None,
},
mixer_bn_254: MixerBn254Config {
mixers: vec![
(0, 10 * UNITS),
(0, 100 * UNITS),
(0, 1000 * UNITS),
(1, 10 * UNITS),
(1, 100 * UNITS),
],
},
v_anchor_bn_254: VAnchorBn254Config {
max_deposit_amount: 1_000_000 * UNITS,
min_withdraw_amount: 0,
vanchors: vec![(0, 1)],
phantom: Default::default(),
},
}
}