experimental chains cleanup. osmosis testnet added (#25)

This commit is contained in:
Gustavo Mauricio
2022-10-13 11:20:04 +01:00
committed by GitHub
parent 3022ae9a6a
commit 53eca46b6c
2 changed files with 50 additions and 261 deletions
+1 -26
View File
@@ -1,14 +1,4 @@
// ENUMS
export enum EthereumChainId {
Mainnet = 1,
Ropsten = 3,
Rinkeby = 4,
Goerli = 5,
Kovan = 42,
Injective = 888,
Ganache = 1337,
HardHat = 31337,
}
export enum ChainId {
Mainnet = 'injective-1',
@@ -29,25 +19,10 @@ export enum Wallet {
// COSMOS
export enum CosmosChainId {
Injective = 'injective-1',
Cosmoshub = 'cosmoshub-4',
Juno = 'juno-1',
Osmosis = 'osmosis-1',
Terra = 'columbus-5',
TerraUST = 'columbus-5',
Chihuahua = 'chihuahua-1',
Axelar = 'axelar-dojo-1',
Evmos = 'evmos_9001-2',
Persistence = 'core-1',
Secret = 'secret-4',
Stride = 'stride-1',
}
export enum TestnetCosmosChainId {
Injective = 'injective-888',
Osmosis = 'osmo-test-4',
Cosmoshub = 'cosmoshub-testnet',
}
export enum DevnetCosmosChainId {
Injective = 'injective-777',
Injective1 = 'injective-777',
}