Skip to content

Commit

Permalink
Return custom local chain genesis account (#1346)
Browse files Browse the repository at this point in the history
  • Loading branch information
Dinonard authored Aug 30, 2024
1 parent 4f74868 commit 2d0aa10
Showing 1 changed file with 7 additions and 0 deletions.
7 changes: 7 additions & 0 deletions runtime/local/src/genesis_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ use astar_primitives::{
evm::EVM_REVERT_CODE,
genesis::{get_from_seed, GenesisAccount},
};
use sp_core::crypto::Ss58Codec;

/// Provides the JSON representation of predefined genesis config for given `id`.
pub fn get_preset(id: &sp_genesis_builder::PresetId) -> Option<Vec<u8>> {
Expand Down Expand Up @@ -54,6 +55,12 @@ pub fn default_config() -> serde_json::Value {
CommunityTreasuryPalletId::get().into_account_truncating(),
1_000_000_000 * AST,
),
(
// Private key: 0x01ab6e801c06e59ca97a14fc0a1978b27fa366fc87450e0b65459dd3515b7391
// H160 public address: 0xaaafB3972B05630fCceE866eC69CdADd9baC2771
AccountId::from_ss58check("5FQedkNQcF2fJPwkB6Z1ZcMgGti4vcJQNs6x85YPv3VhjBBT").unwrap(),
1_000_000_000 * AST,
),
];

let accounts = vec![&alice, &bob, &charlie, &dave, &eve]
Expand Down

0 comments on commit 2d0aa10

Please sign in to comment.