-
Notifications
You must be signed in to change notification settings - Fork 696
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'master' into mku-presets-for-templates-parachain
- Loading branch information
Showing
42 changed files
with
664 additions
and
391 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -237,8 +237,48 @@ jobs: | |
echo "RUNNER=ubuntu-latest" >> $GITHUB_OUTPUT | ||
fi | ||
cmd: | ||
# Get PR branch name, because the issue_comment event does not contain the PR branch name | ||
get-pr-branch: | ||
needs: [ set-image ] | ||
runs-on: ubuntu-latest | ||
outputs: | ||
pr-branch: ${{ steps.get-pr.outputs.pr_branch }} | ||
repo: ${{ steps.get-pr.outputs.repo }} | ||
steps: | ||
- name: Check if the issue is a PR | ||
id: check-pr | ||
run: | | ||
if [ -n "${{ github.event.issue.pull_request.url }}" ]; then | ||
echo "This is a pull request comment" | ||
else | ||
echo "This is not a pull request comment" | ||
exit 1 | ||
fi | ||
- name: Get PR Branch Name and Repo | ||
if: steps.check-pr.outcome == 'success' | ||
id: get-pr | ||
uses: actions/github-script@v7 | ||
with: | ||
script: | | ||
const pr = await github.rest.pulls.get({ | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
pull_number: context.issue.number, | ||
}); | ||
const prBranch = pr.data.head.ref; | ||
const repo = pr.data.head.repo.full_name; | ||
console.log(prBranch, repo) | ||
core.setOutput('pr_branch', prBranch); | ||
core.setOutput('repo', repo); | ||
- name: Use PR Branch Name and Repo | ||
run: | | ||
echo "The PR branch is ${{ steps.get-pr.outputs.pr_branch }}" | ||
echo "The repository is ${{ steps.get-pr.outputs.repo }}" | ||
cmd: | ||
needs: [ set-image, get-pr-branch ] | ||
env: | ||
JOB_NAME: 'cmd' | ||
runs-on: ${{ needs.set-image.outputs.RUNNER }} | ||
|
@@ -291,7 +331,8 @@ jobs: | |
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: ${{ github.head_ref }} | ||
repository: ${{ needs.get-pr-branch.outputs.repo }} | ||
ref: ${{ needs.get-pr-branch.outputs.pr-branch }} | ||
|
||
- name: Install dependencies for bench | ||
if: startsWith(steps.get-pr-comment.outputs.group2, 'bench') | ||
|
@@ -317,11 +358,11 @@ jobs: | |
git config --local user.email "[email protected]" | ||
git config --local user.name "GitHub Action" | ||
git pull origin ${{ github.head_ref }} | ||
git pull origin ${{ needs.get-pr-branch.outputs.pr-branch }} | ||
git add . | ||
git restore --staged Cargo.lock # ignore changes in Cargo.lock | ||
git commit -m "Update from ${{ github.actor }} running command '${{ steps.get-pr-comment.outputs.group2 }}'" || true | ||
git push origin ${{ github.head_ref }} | ||
git push origin ${{ needs.get-pr-branch.outputs.pr-branch }} | ||
else | ||
echo "Nothing to commit"; | ||
fi | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Inform of new command action | ||
|
||
on: | ||
issue_comment: | ||
types: [ created ] | ||
|
||
jobs: | ||
comment: | ||
runs-on: ubuntu-latest | ||
# Temporary disable the bot until the new command bot works properly | ||
if: github.event.issue.pull_request && startsWith(github.event.comment.body, 'bot ') && false # disabled for now, until tested | ||
steps: | ||
- name: Inform that the new command exist | ||
uses: actions/github-script@v7 | ||
with: | ||
script: | | ||
github.rest.issues.createComment({ | ||
issue_number: context.issue.number, | ||
owner: context.repo.owner, | ||
repo: context.repo.repo, | ||
body: 'We have migrated the command bot to GHA<br/><br/>Please, see the new usage instructions <a href="https://github.com/paritytech/polkadot-sdk/blob/master/docs/contributor/commands-readme.md">here</a>. Soon the old commands will be disabled.' | ||
}) |
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
// Copyright (C) Parity Technologies (UK) Ltd. | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
//! Some common helpers for declaring runtime's presets | ||
// note: copied from: cumulus/polkadot-parachain/src/chain_spec/mod.rs | ||
|
||
use crate::{AccountId, Signature}; | ||
#[cfg(not(feature = "std"))] | ||
use alloc::format; | ||
use sp_core::{Pair, Public}; | ||
use sp_runtime::traits::{IdentifyAccount, Verify}; | ||
|
||
/// 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() | ||
} | ||
|
||
type AccountPublic = <Signature as Verify>::Signer; | ||
|
||
/// 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() | ||
} | ||
|
||
/// Generate collator keys from seed. | ||
/// | ||
/// This function's return type must always match the session keys of the chain in tuple format. | ||
pub fn get_collator_keys_from_seed<AuraId: Public>(seed: &str) -> <AuraId::Pair as Pair>::Public { | ||
get_from_seed::<AuraId>(seed) | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
183 changes: 183 additions & 0 deletions
183
cumulus/parachains/runtimes/assets/asset-hub-rococo/src/genesis_config_presets.rs
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,183 @@ | ||
// Copyright (C) Parity Technologies (UK) Ltd. | ||
// SPDX-License-Identifier: Apache-2.0 | ||
|
||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
//! # Asset Hub Rococo Runtime genesis config presets | ||
|
||
use alloc::{vec, vec::Vec}; | ||
use cumulus_primitives_core::ParaId; | ||
use hex_literal::hex; | ||
use parachains_common::{genesis_config_helpers::*, AccountId, AuraId, Balance as AssetHubBalance}; | ||
use sp_core::{crypto::UncheckedInto, sr25519}; | ||
use sp_genesis_builder::PresetId; | ||
use testnet_parachains_constants::rococo::xcm_version::SAFE_XCM_VERSION; | ||
|
||
const ASSET_HUB_ROCOCO_ED: AssetHubBalance = crate::ExistentialDeposit::get(); | ||
|
||
/// 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). | ||
pub fn asset_hub_rococo_session_keys(keys: AuraId) -> crate::SessionKeys { | ||
crate::SessionKeys { aura: keys } | ||
} | ||
|
||
fn asset_hub_rococo_genesis( | ||
invulnerables: Vec<(AccountId, AuraId)>, | ||
endowed_accounts: Vec<AccountId>, | ||
endowment: AssetHubBalance, | ||
id: ParaId, | ||
) -> serde_json::Value { | ||
serde_json::json!({ | ||
"balances": crate::BalancesConfig { | ||
balances: endowed_accounts | ||
.iter() | ||
.cloned() | ||
.map(|k| (k, endowment)) | ||
.collect(), | ||
}, | ||
"parachainInfo": crate::ParachainInfoConfig { | ||
parachain_id: id, | ||
..Default::default() | ||
}, | ||
"collatorSelection": crate::CollatorSelectionConfig { | ||
invulnerables: invulnerables.iter().cloned().map(|(acc, _)| acc).collect(), | ||
candidacy_bond: ASSET_HUB_ROCOCO_ED * 16, | ||
..Default::default() | ||
}, | ||
"session": crate::SessionConfig { | ||
keys: invulnerables | ||
.into_iter() | ||
.map(|(acc, aura)| { | ||
( | ||
acc.clone(), // account id | ||
acc, // validator id | ||
asset_hub_rococo_session_keys(aura), // session keys | ||
) | ||
}) | ||
.collect(), | ||
..Default::default() | ||
}, | ||
"polkadotXcm": crate::PolkadotXcmConfig { | ||
safe_xcm_version: Some(SAFE_XCM_VERSION), | ||
..Default::default() | ||
} | ||
}) | ||
} | ||
|
||
/// Encapsulates names of predefined presets. | ||
mod preset_names { | ||
pub const PRESET_DEVELOPMENT: &str = "development"; | ||
pub const PRESET_LOCAL: &str = "local"; | ||
pub const PRESET_GENESIS: &str = "genesis"; | ||
} | ||
|
||
/// Provides the JSON representation of predefined genesis config for given `id`. | ||
pub fn get_preset(id: &PresetId) -> Option<Vec<u8>> { | ||
use preset_names::*; | ||
let patch = match id.try_into() { | ||
Ok(PRESET_GENESIS) => asset_hub_rococo_genesis( | ||
// initial collators. | ||
vec![ | ||
// E8XC6rTJRsioKCp6KMy6zd24ykj4gWsusZ3AkSeyavpVBAG | ||
( | ||
hex!("44cb62d1d6cdd2fff2a5ef3bb7ef827be5b3e117a394ecaa634d8dd9809d5608").into(), | ||
hex!("44cb62d1d6cdd2fff2a5ef3bb7ef827be5b3e117a394ecaa634d8dd9809d5608") | ||
.unchecked_into(), | ||
), | ||
// G28iWEybndgGRbhfx83t7Q42YhMPByHpyqWDUgeyoGF94ri | ||
( | ||
hex!("9864b85e23aa4506643db9879c3dbbeabaa94d269693a4447f537dd6b5893944").into(), | ||
hex!("9864b85e23aa4506643db9879c3dbbeabaa94d269693a4447f537dd6b5893944") | ||
.unchecked_into(), | ||
), | ||
// G839e2eMiq7UXbConsY6DS1XDAYG2XnQxAmLuRLGGQ3Px9c | ||
( | ||
hex!("9ce5741ee2f1ac3bdedbde9f3339048f4da2cb88ddf33a0977fa0b4cf86e2948").into(), | ||
hex!("9ce5741ee2f1ac3bdedbde9f3339048f4da2cb88ddf33a0977fa0b4cf86e2948") | ||
.unchecked_into(), | ||
), | ||
// GLao4ukFUW6qhexuZowdFrKa2NLCfnEjZMftSXXfvGv1vvt | ||
( | ||
hex!("a676ed15f5a325eab49ed8d5f8c00f3f814b19bb58cda14ad10894c078dd337f").into(), | ||
hex!("a676ed15f5a325eab49ed8d5f8c00f3f814b19bb58cda14ad10894c078dd337f") | ||
.unchecked_into(), | ||
), | ||
], | ||
Vec::new(), | ||
ASSET_HUB_ROCOCO_ED * 524_288, | ||
1000.into(), | ||
), | ||
Ok(PRESET_LOCAL) => asset_hub_rococo_genesis( | ||
// initial collators. | ||
vec![ | ||
( | ||
get_account_id_from_seed::<sr25519::Public>("Alice"), | ||
get_collator_keys_from_seed::<AuraId>("Alice"), | ||
), | ||
( | ||
get_account_id_from_seed::<sr25519::Public>("Bob"), | ||
get_collator_keys_from_seed::<AuraId>("Bob"), | ||
), | ||
], | ||
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//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"), | ||
], | ||
testnet_parachains_constants::rococo::currency::UNITS * 1_000_000, | ||
1000.into(), | ||
), | ||
Ok(PRESET_DEVELOPMENT) => asset_hub_rococo_genesis( | ||
// initial collators. | ||
vec![( | ||
get_account_id_from_seed::<sr25519::Public>("Alice"), | ||
get_collator_keys_from_seed::<AuraId>("Alice"), | ||
)], | ||
vec![ | ||
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"), | ||
], | ||
testnet_parachains_constants::rococo::currency::UNITS * 1_000_000, | ||
1000.into(), | ||
), | ||
Err(_) | Ok(_) => return None, | ||
}; | ||
|
||
Some( | ||
serde_json::to_string(&patch) | ||
.expect("serialization to json is expected to work. qed.") | ||
.into_bytes(), | ||
) | ||
} | ||
|
||
/// List of supported presets. | ||
pub fn preset_names() -> Vec<PresetId> { | ||
use preset_names::*; | ||
vec![ | ||
PresetId::from(PRESET_GENESIS), | ||
PresetId::from(PRESET_DEVELOPMENT), | ||
PresetId::from(PRESET_LOCAL), | ||
] | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.