mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-07-22 14:55:41 +00:00
Fix deployments again (#1452)
* Revert "try to fix nonces collisions (#1450)" This reverts commit 5a91ddf4cca0b81f9b04fe7a362298c3863851fa. * Revert "Revert "try to fix nonces collisions (#1450)"" This reverts commit e6350e839b97946541c1468235575c4bad4c75c1. * added some accounts to RialtoParachain
This commit is contained in:
committed by
Bastian Köcher
parent
19c73ce0b7
commit
4d36321e77
@@ -62,6 +62,33 @@ where
|
|||||||
AccountPublic::from(get_from_seed::<TPublic>(seed)).into_account()
|
AccountPublic::from(get_from_seed::<TPublic>(seed)).into_account()
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/// We're using the same set of endowed accounts on all RialtoParachain chains (dev/local) to make
|
||||||
|
/// sure that all accounts, required for bridge to be functional (e.g. relayers fund account,
|
||||||
|
/// accounts used by relayers in our test deployments, accounts used for demonstration
|
||||||
|
/// purposes), are all available on these chains.
|
||||||
|
fn endowed_accounts() -> Vec<AccountId> {
|
||||||
|
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>("George"),
|
||||||
|
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"),
|
||||||
|
get_account_id_from_seed::<sr25519::Public>("George//stash"),
|
||||||
|
pallet_bridge_messages::relayer_fund_account_id::<
|
||||||
|
bp_rialto_parachain::AccountId,
|
||||||
|
bp_rialto_parachain::AccountIdConverter,
|
||||||
|
>(),
|
||||||
|
]
|
||||||
|
}
|
||||||
|
|
||||||
pub fn development_config(id: ParaId) -> ChainSpec {
|
pub fn development_config(id: ParaId) -> ChainSpec {
|
||||||
// Give your base currency a unit name and decimal places
|
// Give your base currency a unit name and decimal places
|
||||||
let mut properties = sc_chain_spec::Properties::new();
|
let mut properties = sc_chain_spec::Properties::new();
|
||||||
@@ -78,16 +105,7 @@ pub fn development_config(id: ParaId) -> ChainSpec {
|
|||||||
testnet_genesis(
|
testnet_genesis(
|
||||||
get_account_id_from_seed::<sr25519::Public>("Alice"),
|
get_account_id_from_seed::<sr25519::Public>("Alice"),
|
||||||
vec![get_from_seed::<AuraId>("Alice"), get_from_seed::<AuraId>("Bob")],
|
vec![get_from_seed::<AuraId>("Alice"), get_from_seed::<AuraId>("Bob")],
|
||||||
vec![
|
endowed_accounts(),
|
||||||
get_account_id_from_seed::<sr25519::Public>("Alice"),
|
|
||||||
get_account_id_from_seed::<sr25519::Public>("Bob"),
|
|
||||||
get_account_id_from_seed::<sr25519::Public>("Alice//stash"),
|
|
||||||
get_account_id_from_seed::<sr25519::Public>("Bob//stash"),
|
|
||||||
pallet_bridge_messages::relayer_fund_account_id::<
|
|
||||||
bp_rialto_parachain::AccountId,
|
|
||||||
bp_rialto_parachain::AccountIdConverter,
|
|
||||||
>(),
|
|
||||||
],
|
|
||||||
id,
|
id,
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
@@ -119,24 +137,7 @@ pub fn local_testnet_config(id: ParaId) -> ChainSpec {
|
|||||||
testnet_genesis(
|
testnet_genesis(
|
||||||
get_account_id_from_seed::<sr25519::Public>("Alice"),
|
get_account_id_from_seed::<sr25519::Public>("Alice"),
|
||||||
vec![get_from_seed::<AuraId>("Alice"), get_from_seed::<AuraId>("Bob")],
|
vec![get_from_seed::<AuraId>("Alice"), get_from_seed::<AuraId>("Bob")],
|
||||||
vec![
|
endowed_accounts(),
|
||||||
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//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"),
|
|
||||||
pallet_bridge_messages::relayer_fund_account_id::<
|
|
||||||
bp_rialto_parachain::AccountId,
|
|
||||||
bp_rialto_parachain::AccountIdConverter,
|
|
||||||
>(),
|
|
||||||
],
|
|
||||||
id,
|
id,
|
||||||
)
|
)
|
||||||
},
|
},
|
||||||
|
|||||||
Reference in New Issue
Block a user