Skip to content

Commit

Permalink
chore: disable substrate based chains
Browse files Browse the repository at this point in the history
  • Loading branch information
pedrxlz committed Jan 28, 2025
1 parent 9cddfc1 commit e023d8f
Showing 1 changed file with 9 additions and 9 deletions.
18 changes: 9 additions & 9 deletions packages/kos/src/chains/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -369,14 +369,14 @@ impl ChainRegistry {
constants::DOT,
ChainInfo {
factory: || Box::new(substrate::Substrate::new(21, 0, "DOT", "Polkadot")),
supported: true,
supported: false,
},
),
(
constants::KSM,
ChainInfo {
factory: || Box::new(substrate::Substrate::new(27, 2, "KSM", "Kusama")),
supported: true,
supported: false,
},
),
(
Expand All @@ -390,28 +390,28 @@ impl ChainRegistry {
constants::REEF,
ChainInfo {
factory: || Box::new(substrate::Substrate::new(29, 42, "REEF", "Reef")),
supported: true,
supported: false,
},
),
(
constants::SDN,
ChainInfo {
factory: || Box::new(substrate::Substrate::new(35, 5, "SDN", "Shiden")),
supported: true,
supported: false,
},
),
(
constants::ASTR,
ChainInfo {
factory: || Box::new(substrate::Substrate::new(36, 5, "ASTR", "Astar")),
supported: true,
supported: false,
},
),
(
constants::CFG,
ChainInfo {
factory: || Box::new(substrate::Substrate::new(47, 36, "CFG", "Centrifuge")),
supported: true,
supported: false,
},
),
(
Expand All @@ -425,14 +425,14 @@ impl ChainRegistry {
constants::KILT,
ChainInfo {
factory: || Box::new(substrate::Substrate::new(44, 38, "KILT", "KILT")),
supported: true,
supported: false,
},
),
(
constants::ALTAIR,
ChainInfo {
factory: || Box::new(substrate::Substrate::new(42, 136, "ALTAIR", "Altair")),
supported: true,
supported: false,
},
),
(
Expand Down Expand Up @@ -572,7 +572,7 @@ impl ChainRegistry {
constants::AVAIL,
ChainInfo {
factory: || Box::new(substrate::Substrate::new(62, 42, "AVAIL", "Avail")),
supported: true,
supported: false,
},
),
(
Expand Down

0 comments on commit e023d8f

Please sign in to comment.