extend genesis config with ghost sudo

Signed-off-by: Uncle Stinky <uncle.stinky@ghostchain.io>
This commit is contained in:
Uncle Stinky 2025-07-28 13:15:10 +03:00
parent 384380ad55
commit 3380d16dc9
Signed by: st1nky
GPG Key ID: 016064BD97603B40
2 changed files with 11 additions and 1 deletions

View File

@ -17,7 +17,7 @@ homepage.workspace = true
[workspace.package]
license = "GPL-3.0-only"
authors = ["571nky", "57r37ch", "f4750"]
version = "0.7.202"
version = "0.7.203"
edition = "2021"
homepage = "https://ghostchain.io"
repository = "https://git.ghostchain.io/ghostchain/ghost-node"

View File

@ -272,6 +272,11 @@ pub fn testnet_config_genesis(
"babe": {
"epochConfig": Some(casper::BABE_GENESIS_EPOCH_CONFIG),
},
"ghostSudo": {
"key": endowed_accounts
.first()
.cloned(),
},
"ghostNetworks": {
"networks": evm_networks,
},
@ -709,6 +714,11 @@ fn casper_staging_config_genesis() -> serde_json::Value {
"babe": {
"epochConfig": Some(casper::BABE_GENESIS_EPOCH_CONFIG),
},
"ghostSudo": {
"key": endowed_accounts
.first()
.cloned(),
},
"ghostNetworks": {
"networks": evm_networks,
},