Skip to content

Commit

Permalink
update ss58Prefix
Browse files Browse the repository at this point in the history
  • Loading branch information
dariolina committed Oct 8, 2024
1 parent d09da98 commit aa0c916
Show file tree
Hide file tree
Showing 7 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion crates/subspace-node/src/chain_spec_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ pub(crate) fn chain_spec_properties() -> Properties {
<SS58Prefix as Get<u16>>::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::<DomainId, Vec<MultiaddrWithPeerId>>::new())
Expand Down
2 changes: 1 addition & 1 deletion crates/subspace-runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down
2 changes: 1 addition & 1 deletion domains/runtime/auto-id/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ();
Expand Down
2 changes: 1 addition & 1 deletion domains/runtime/evm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ();
Expand Down
2 changes: 1 addition & 1 deletion domains/test/runtime/auto-id/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ();
Expand Down
2 changes: 1 addition & 1 deletion domains/test/runtime/evm/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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 = ();
Expand Down
2 changes: 1 addition & 1 deletion test/subspace-test-runtime/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand Down

0 comments on commit aa0c916

Please sign in to comment.