-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #32 from AstarNetwork/fix/disable-unused-networks
disable unused networks
- Loading branch information
Showing
1 changed file
with
8 additions
and
30 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,37 +1,15 @@ | ||
import { Config } from './types' | ||
|
||
import acalaConfig from './acala' | ||
import astarConfig from './astar' | ||
import astarNextConfig from './astar-next' | ||
import bifrostConfig from './bifrost' | ||
import centrifugeConfig from './centrifuge' | ||
import crustConfig from './crust' | ||
import darwiniaConfig from './darwinia' | ||
import hydraDXConfig from './hydraDX' | ||
import interlayConfig from './interlay' | ||
import moonbeamConfig from './moonbeam' | ||
import parallelConfig from './parallel' | ||
import phalaConfig from './phala' | ||
import polkadotConfig from './polkadot' | ||
import statemintConfig from './statemint' | ||
import uniqueConfig from './unique' | ||
import astar from './astar' | ||
import astarNext from './astar-next' | ||
import polkadot from './polkadot' | ||
import statemint from './statemint' | ||
|
||
const all = { | ||
polkadot: polkadotConfig, | ||
statemint: statemintConfig, | ||
acala: acalaConfig, | ||
astar: astarConfig, | ||
astarNext: astarNextConfig, | ||
moonbeam: moonbeamConfig, | ||
hydraDX: hydraDXConfig, | ||
bifrost: bifrostConfig, | ||
centrifuge: centrifugeConfig, | ||
parallel: parallelConfig, | ||
crust: crustConfig, | ||
unique: uniqueConfig, | ||
interlay: interlayConfig, | ||
phala: phalaConfig, | ||
darwinia: darwiniaConfig, | ||
polkadot, | ||
statemint, | ||
astar, | ||
astarNext, | ||
} satisfies Record<string, Config> | ||
|
||
export default all |