mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-06-20 11:41:02 +00:00
Endow accounts and add bridgeIds to chainspec. (#951)
* Endow more accounts. * Add bridge ids to properties. * Change accounts on Millau.
This commit is contained in:
committed by
Bastian Köcher
parent
c8db52672f
commit
d85240b539
@@ -71,6 +71,9 @@ impl Alternative {
|
|||||||
serde_json::json!({
|
serde_json::json!({
|
||||||
"tokenDecimals": 9,
|
"tokenDecimals": 9,
|
||||||
"tokenSymbol": "MLAU",
|
"tokenSymbol": "MLAU",
|
||||||
|
"bridgeIds": {
|
||||||
|
"Rialto": bp_runtime::RIALTO_BRIDGE_INSTANCE,
|
||||||
|
}
|
||||||
})
|
})
|
||||||
.as_object()
|
.as_object()
|
||||||
.expect("Map given; qed")
|
.expect("Map given; qed")
|
||||||
@@ -90,6 +93,9 @@ impl Alternative {
|
|||||||
get_account_id_from_seed::<sr25519::Public>("Bob"),
|
get_account_id_from_seed::<sr25519::Public>("Bob"),
|
||||||
get_account_id_from_seed::<sr25519::Public>("Alice//stash"),
|
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>("Bob//stash"),
|
||||||
|
derive_account_from_rialto_id(bp_runtime::SourceAccount::Account(
|
||||||
|
get_account_id_from_seed::<sr25519::Public>("Alice"),
|
||||||
|
)),
|
||||||
],
|
],
|
||||||
true,
|
true,
|
||||||
)
|
)
|
||||||
@@ -136,7 +142,13 @@ impl Alternative {
|
|||||||
pallet_bridge_messages::DefaultInstance,
|
pallet_bridge_messages::DefaultInstance,
|
||||||
>::relayer_fund_account_id(),
|
>::relayer_fund_account_id(),
|
||||||
derive_account_from_rialto_id(bp_runtime::SourceAccount::Account(
|
derive_account_from_rialto_id(bp_runtime::SourceAccount::Account(
|
||||||
get_account_id_from_seed::<sr25519::Public>("Dave"),
|
get_account_id_from_seed::<sr25519::Public>("Alice"),
|
||||||
|
)),
|
||||||
|
derive_account_from_rialto_id(bp_runtime::SourceAccount::Account(
|
||||||
|
get_account_id_from_seed::<sr25519::Public>("Charlie"),
|
||||||
|
)),
|
||||||
|
derive_account_from_rialto_id(bp_runtime::SourceAccount::Account(
|
||||||
|
get_account_id_from_seed::<sr25519::Public>("Eve"),
|
||||||
)),
|
)),
|
||||||
],
|
],
|
||||||
true,
|
true,
|
||||||
@@ -168,7 +180,7 @@ fn testnet_genesis(
|
|||||||
changes_trie_config: Default::default(),
|
changes_trie_config: Default::default(),
|
||||||
},
|
},
|
||||||
pallet_balances: BalancesConfig {
|
pallet_balances: BalancesConfig {
|
||||||
balances: endowed_accounts.iter().cloned().map(|k| (k, 1 << 50)).collect(),
|
balances: endowed_accounts.iter().cloned().map(|k| (k, 1 << 20)).collect(),
|
||||||
},
|
},
|
||||||
pallet_aura: AuraConfig {
|
pallet_aura: AuraConfig {
|
||||||
authorities: Vec::new(),
|
authorities: Vec::new(),
|
||||||
|
|||||||
@@ -72,6 +72,9 @@ impl Alternative {
|
|||||||
json!({
|
json!({
|
||||||
"tokenDecimals": 9,
|
"tokenDecimals": 9,
|
||||||
"tokenSymbol": "RLT",
|
"tokenSymbol": "RLT",
|
||||||
|
"bridgeIds": {
|
||||||
|
"Millau": bp_runtime::MILLAU_BRIDGE_INSTANCE,
|
||||||
|
}
|
||||||
})
|
})
|
||||||
.as_object()
|
.as_object()
|
||||||
.expect("Map given; qed")
|
.expect("Map given; qed")
|
||||||
@@ -91,6 +94,9 @@ impl Alternative {
|
|||||||
get_account_id_from_seed::<sr25519::Public>("Bob"),
|
get_account_id_from_seed::<sr25519::Public>("Bob"),
|
||||||
get_account_id_from_seed::<sr25519::Public>("Alice//stash"),
|
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>("Bob//stash"),
|
||||||
|
derive_account_from_millau_id(bp_runtime::SourceAccount::Account(
|
||||||
|
get_account_id_from_seed::<sr25519::Public>("Bob"),
|
||||||
|
)),
|
||||||
],
|
],
|
||||||
true,
|
true,
|
||||||
)
|
)
|
||||||
@@ -136,9 +142,15 @@ impl Alternative {
|
|||||||
rialto_runtime::Runtime,
|
rialto_runtime::Runtime,
|
||||||
pallet_bridge_messages::DefaultInstance,
|
pallet_bridge_messages::DefaultInstance,
|
||||||
>::relayer_fund_account_id(),
|
>::relayer_fund_account_id(),
|
||||||
|
derive_account_from_millau_id(bp_runtime::SourceAccount::Account(
|
||||||
|
get_account_id_from_seed::<sr25519::Public>("Bob"),
|
||||||
|
)),
|
||||||
derive_account_from_millau_id(bp_runtime::SourceAccount::Account(
|
derive_account_from_millau_id(bp_runtime::SourceAccount::Account(
|
||||||
get_account_id_from_seed::<sr25519::Public>("Dave"),
|
get_account_id_from_seed::<sr25519::Public>("Dave"),
|
||||||
)),
|
)),
|
||||||
|
derive_account_from_millau_id(bp_runtime::SourceAccount::Account(
|
||||||
|
get_account_id_from_seed::<sr25519::Public>("Ferdie"),
|
||||||
|
)),
|
||||||
],
|
],
|
||||||
true,
|
true,
|
||||||
)
|
)
|
||||||
@@ -169,7 +181,7 @@ fn testnet_genesis(
|
|||||||
changes_trie_config: Default::default(),
|
changes_trie_config: Default::default(),
|
||||||
},
|
},
|
||||||
pallet_balances: BalancesConfig {
|
pallet_balances: BalancesConfig {
|
||||||
balances: endowed_accounts.iter().cloned().map(|k| (k, 1 << 50)).collect(),
|
balances: endowed_accounts.iter().cloned().map(|k| (k, 1 << 20)).collect(),
|
||||||
},
|
},
|
||||||
pallet_aura: AuraConfig {
|
pallet_aura: AuraConfig {
|
||||||
authorities: Vec::new(),
|
authorities: Vec::new(),
|
||||||
|
|||||||
Reference in New Issue
Block a user