diff --git a/crates/subspace-node/src/chain_spec_utils.rs b/crates/subspace-node/src/chain_spec_utils.rs index 56d3bad992..2658b5fdf7 100644 --- a/crates/subspace-node/src/chain_spec_utils.rs +++ b/crates/subspace-node/src/chain_spec_utils.rs @@ -20,7 +20,7 @@ pub(crate) fn chain_spec_properties() -> Properties { >::get().into(), ); properties.insert("tokenDecimals".to_string(), DECIMAL_PLACES.into()); - properties.insert("tokenSymbol".to_string(), "tSSC".into()); + properties.insert("tokenSymbol".to_string(), "AI3".into()); properties.insert( "domainsBootstrapNodes".to_string(), serde_json::to_value(HashMap::>::new()) diff --git a/crates/subspace-runtime/src/lib.rs b/crates/subspace-runtime/src/lib.rs index 340e47df39..de63358110 100644 --- a/crates/subspace-runtime/src/lib.rs +++ b/crates/subspace-runtime/src/lib.rs @@ -197,7 +197,7 @@ parameter_types! { pub SubspaceBlockLength: BlockLength = maximum_normal_block_length(); } -pub type SS58Prefix = ConstU16<2254>; +pub type SS58Prefix = ConstU16<6094>; // Configure FRAME pallets to include in runtime. diff --git a/domains/runtime/auto-id/src/lib.rs b/domains/runtime/auto-id/src/lib.rs index 51a1b07c06..e756ff5a53 100644 --- a/domains/runtime/auto-id/src/lib.rs +++ b/domains/runtime/auto-id/src/lib.rs @@ -175,7 +175,7 @@ impl frame_system::Config for Runtime { type BlockWeights = RuntimeBlockWeights; /// The maximum length of a block (in bytes). type BlockLength = RuntimeBlockLength; - type SS58Prefix = ConstU16<2254>; + type SS58Prefix = ConstU16<6094>; /// The action to take on a Runtime Upgrade type OnSetCode = (); type SingleBlockMigrations = (); diff --git a/domains/runtime/evm/src/lib.rs b/domains/runtime/evm/src/lib.rs index 46c0980075..f513197152 100644 --- a/domains/runtime/evm/src/lib.rs +++ b/domains/runtime/evm/src/lib.rs @@ -310,7 +310,7 @@ impl frame_system::Config for Runtime { type BlockWeights = RuntimeBlockWeights; /// The maximum length of a block (in bytes). type BlockLength = RuntimeBlockLength; - type SS58Prefix = ConstU16<2254>; + type SS58Prefix = ConstU16<6094>; /// The action to take on a Runtime Upgrade type OnSetCode = (); type SingleBlockMigrations = (); diff --git a/domains/test/runtime/auto-id/src/lib.rs b/domains/test/runtime/auto-id/src/lib.rs index fba43fcfb9..04fbfb82eb 100644 --- a/domains/test/runtime/auto-id/src/lib.rs +++ b/domains/test/runtime/auto-id/src/lib.rs @@ -175,7 +175,7 @@ impl frame_system::Config for Runtime { type BlockWeights = RuntimeBlockWeights; /// The maximum length of a block (in bytes). type BlockLength = RuntimeBlockLength; - type SS58Prefix = ConstU16<2254>; + type SS58Prefix = ConstU16<6094>; /// The action to take on a Runtime Upgrade type OnSetCode = (); type SingleBlockMigrations = (); diff --git a/domains/test/runtime/evm/src/lib.rs b/domains/test/runtime/evm/src/lib.rs index c2ab54e204..60e6979802 100644 --- a/domains/test/runtime/evm/src/lib.rs +++ b/domains/test/runtime/evm/src/lib.rs @@ -309,7 +309,7 @@ impl frame_system::Config for Runtime { type BlockWeights = RuntimeBlockWeights; /// The maximum length of a block (in bytes). type BlockLength = RuntimeBlockLength; - type SS58Prefix = ConstU16<2254>; + type SS58Prefix = ConstU16<6094>; /// The action to take on a Runtime Upgrade type OnSetCode = (); type SingleBlockMigrations = (); diff --git a/test/subspace-test-runtime/src/lib.rs b/test/subspace-test-runtime/src/lib.rs index 80d5a2c46b..7f526d38fc 100644 --- a/test/subspace-test-runtime/src/lib.rs +++ b/test/subspace-test-runtime/src/lib.rs @@ -210,7 +210,7 @@ parameter_types! { pub SubspaceBlockLength: BlockLength = BlockLength::max_with_normal_ratio(MAX_BLOCK_LENGTH, NORMAL_DISPATCH_RATIO); } -pub type SS58Prefix = ConstU16<2254>; +pub type SS58Prefix = ConstU16<6094>; // Configure FRAME pallets to include in runtime.