chain-registry 1.69.60 → 1.69.62

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (45) hide show
  1. package/esm/mainnet/agoric/ibc.js +29 -0
  2. package/esm/mainnet/assetmantle/assets.js +2 -2
  3. package/esm/mainnet/assetmantle/chain.js +7 -7
  4. package/esm/mainnet/assets.js +2 -0
  5. package/esm/mainnet/chains.js +2 -0
  6. package/esm/mainnet/dungeon/chain.js +0 -4
  7. package/esm/mainnet/elys/assets.js +198 -0
  8. package/esm/mainnet/elys/chain.js +143 -0
  9. package/esm/mainnet/elys/index.js +4 -0
  10. package/esm/mainnet/impacthub/assets.js +1 -1
  11. package/esm/mainnet/impacthub/chain.js +0 -6
  12. package/esm/mainnet/named.js +1 -0
  13. package/esm/mainnet/neutron/ibc.js +29 -0
  14. package/esm/mainnet/nibiru/assets.js +32 -0
  15. package/esm/mainnet/osmosis/assets.js +37 -0
  16. package/esm/testnet/axelartestnet/ibc.js +6 -6
  17. package/esm/testnet/elystestnet/assets.js +10 -10
  18. package/esm/testnet/elystestnet/chain.js +10 -51
  19. package/esm/testnet/sagatestnet/chain.js +1 -1
  20. package/esm/testnet/sagatestnet/ibc.js +6 -6
  21. package/mainnet/agoric/ibc.js +29 -0
  22. package/mainnet/assetmantle/assets.js +2 -2
  23. package/mainnet/assetmantle/chain.js +7 -7
  24. package/mainnet/assets.js +2 -0
  25. package/mainnet/chains.js +2 -0
  26. package/mainnet/dungeon/chain.js +0 -4
  27. package/mainnet/elys/assets.d.ts +3 -0
  28. package/mainnet/elys/assets.js +200 -0
  29. package/mainnet/elys/chain.d.ts +3 -0
  30. package/mainnet/elys/chain.js +145 -0
  31. package/mainnet/elys/index.d.ts +2 -0
  32. package/mainnet/elys/index.js +10 -0
  33. package/mainnet/impacthub/assets.js +1 -1
  34. package/mainnet/impacthub/chain.js +0 -6
  35. package/mainnet/named.d.ts +1 -0
  36. package/mainnet/named.js +4 -3
  37. package/mainnet/neutron/ibc.js +29 -0
  38. package/mainnet/nibiru/assets.js +32 -0
  39. package/mainnet/osmosis/assets.js +37 -0
  40. package/package.json +4 -4
  41. package/testnet/axelartestnet/ibc.js +6 -6
  42. package/testnet/elystestnet/assets.js +10 -10
  43. package/testnet/elystestnet/chain.js +10 -51
  44. package/testnet/sagatestnet/chain.js +1 -1
  45. package/testnet/sagatestnet/ibc.js +6 -6
@@ -0,0 +1,145 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../chain.schema.json',
5
+ chain_name: 'elys',
6
+ status: 'live',
7
+ network_type: 'mainnet',
8
+ pretty_name: 'Elys Network',
9
+ chain_type: 'cosmos',
10
+ chain_id: 'elys-1',
11
+ bech32_prefix: 'elys',
12
+ daemon_name: 'elysd',
13
+ node_home: '$HOME/.elys',
14
+ key_algos: ['secp256k1'],
15
+ slip44: 118,
16
+ staking: {
17
+ staking_tokens: [{
18
+ denom: 'uelys'
19
+ }],
20
+ lock_duration: {
21
+ time: '1209600s'
22
+ }
23
+ },
24
+ fees: {
25
+ fee_tokens: [
26
+ {
27
+ denom: 'uelys',
28
+ fixed_min_gas_price: 0.01,
29
+ low_gas_price: 0.01,
30
+ average_gas_price: 0.025,
31
+ high_gas_price: 0.03
32
+ },
33
+ {
34
+ denom: 'ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349',
35
+ fixed_min_gas_price: 0.01,
36
+ low_gas_price: 0.01,
37
+ average_gas_price: 0.025,
38
+ high_gas_price: 0.03
39
+ },
40
+ {
41
+ denom: 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9',
42
+ fixed_min_gas_price: 0.01,
43
+ low_gas_price: 0.01,
44
+ average_gas_price: 0.025,
45
+ high_gas_price: 0.03
46
+ }
47
+ ]
48
+ },
49
+ codebase: {},
50
+ apis: {
51
+ rpc: [
52
+ {
53
+ address: 'https://rpc.elys.network:443',
54
+ provider: 'Elys Network'
55
+ },
56
+ {
57
+ address: 'https://elys-rpc.polkachu.com:443',
58
+ provider: 'Polkachu'
59
+ },
60
+ {
61
+ address: 'https://elys-rpc.publicnode.com:443',
62
+ provider: 'Allnodes ⚡️ Nodes & Staking'
63
+ },
64
+ {
65
+ address: 'https://elys-mainnet-rpc.itrocket.net:443',
66
+ provider: 'itrocket'
67
+ },
68
+ {
69
+ address: 'https://rpc.elys.nodestake.org:443',
70
+ provider: 'NodeStake'
71
+ }
72
+ ],
73
+ rest: [
74
+ {
75
+ address: 'https://api.elys.network',
76
+ provider: 'Elys Network'
77
+ },
78
+ {
79
+ address: 'https://elys-api.polkachu.com',
80
+ provider: 'Polkachu'
81
+ },
82
+ {
83
+ address: 'https://elys-rest.publicnode.com',
84
+ provider: 'Allnodes ⚡️ Nodes & Staking'
85
+ },
86
+ {
87
+ address: 'https://elys-mainnet-api.itrocket.net',
88
+ provider: 'itrocket'
89
+ },
90
+ {
91
+ address: 'https://api.elys.nodestake.org',
92
+ provider: 'NodeStake'
93
+ }
94
+ ],
95
+ grpc: [
96
+ {
97
+ address: 'elys-grpc.polkachu.com:22090',
98
+ provider: 'Polkachu'
99
+ },
100
+ {
101
+ address: 'elys-testnet-grpc.itrocket.net:38090',
102
+ provider: 'itrocket'
103
+ },
104
+ {
105
+ address: 'elys-grpc.publicnode.com:443',
106
+ provider: 'Allnodes ⚡️ Nodes & Staking'
107
+ },
108
+ {
109
+ address: 'elys-mainnet-grpc.itrocket.net:443',
110
+ provider: 'itrocket'
111
+ },
112
+ {
113
+ address: 'grpc.elys.nodestake.org:443',
114
+ provider: 'NodeStake'
115
+ }
116
+ ]
117
+ },
118
+ explorers: [
119
+ {
120
+ kind: 'NodeStake',
121
+ url: 'https://explorer.nodestake.org/elys',
122
+ tx_page: 'https://explorer.nodestake.org/elys/tx/${txHash}',
123
+ account_page: 'https://explorer.nodestake.org/elys/account/${accountAddress}'
124
+ },
125
+ {
126
+ kind: 'Moonlet',
127
+ url: 'https://explorer.moonlet.cloud/elys',
128
+ tx_page: 'https://explorer.moonlet.cloud/elys/tx/${txHash}',
129
+ account_page: 'https://explorer.moonlet.cloud/elys/account/${accountAddress}'
130
+ },
131
+ {
132
+ kind: 'ping.pub',
133
+ url: 'https://ping.pub/elys',
134
+ tx_page: 'https://ping.pub/elys/tx/${txHash}',
135
+ account_page: 'https://ping.pub/elys/account/${accountAddress}'
136
+ },
137
+ {
138
+ kind: 'itrocket',
139
+ url: 'https://mainnet.itrocket.net/elys',
140
+ tx_page: 'https://mainnet.itrocket.net/elys/staking/tx/${txHash}',
141
+ account_page: 'https://mainnet.itrocket.net/elys/account/${accountAddress}'
142
+ }
143
+ ]
144
+ };
145
+ exports.default = info;
@@ -0,0 +1,2 @@
1
+ export declare const assets: import("@chain-registry/types").AssetList;
2
+ export declare const chain: import("@chain-registry/types").Chain;
@@ -0,0 +1,10 @@
1
+ "use strict";
2
+ var __importDefault = (this && this.__importDefault) || function (mod) {
3
+ return (mod && mod.__esModule) ? mod : { "default": mod };
4
+ };
5
+ Object.defineProperty(exports, "__esModule", { value: true });
6
+ exports.chain = exports.assets = void 0;
7
+ const assets_1 = __importDefault(require("./assets"));
8
+ const chain_1 = __importDefault(require("./chain"));
9
+ exports.assets = assets_1.default;
10
+ exports.chain = chain_1.default;
@@ -4,7 +4,7 @@ const info = {
4
4
  $schema: '../assetlist.schema.json',
5
5
  chain_name: 'impacthub',
6
6
  assets: [{
7
- description: 'The native token of IXO Chain',
7
+ description: 'The native token of the Internet of Impacts of inter-connected networks, powered by IXO Protocol blockchains.',
8
8
  denom_units: [{
9
9
  denom: 'uixo',
10
10
  exponent: 0
@@ -152,12 +152,6 @@ const info = {
152
152
  tx_page: 'https://atomscan.com/ixo/transactions/${txHash}',
153
153
  account_page: 'https://atomscan.com/ixo/accounts/${accountAddress}'
154
154
  },
155
- {
156
- kind: 'Mintscan',
157
- url: 'https://www.mintscan.io/ixo',
158
- tx_page: 'https://www.mintscan.io/ixo/transactions/${txHash}',
159
- account_page: 'https://www.mintscan.io/ixo/accounts/${accountAddress}'
160
- },
161
155
  {
162
156
  kind: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥',
163
157
  url: 'https://explorer.whenmoonwhenlambo.money/ixo',
@@ -54,6 +54,7 @@ export * as dydx from './dydx';
54
54
  export * as dymension from './dymension';
55
55
  export * as dyson from './dyson';
56
56
  export * as echelon from './echelon';
57
+ export * as elys from './elys';
57
58
  export * as emoney from './emoney';
58
59
  export * as empowerchain from './empowerchain';
59
60
  export * as epix from './epix';
package/mainnet/named.js CHANGED
@@ -24,9 +24,9 @@ var __importStar = (this && this.__importStar) || function (mod) {
24
24
  };
25
25
  Object.defineProperty(exports, "__esModule", { value: true });
26
26
  exports.dhealth = exports.desmos = exports.decentr = exports.cryptoorgchain = exports.cronos = exports.crescent = exports.coss = exports.cosmoshub = exports.coreum = exports.conscious = exports.composable = exports.commercionetwork = exports.comdex = exports.cnhostables = exports.cifer = exports.chimba = exports.chihuahua = exports.cheqd = exports.chain4energy = exports.celestia = exports.carbon = exports.canto = exports.bouachain = exports.bostrom = exports.bluzelle = exports.bluechip = exports.blockx = exports.bitsong = exports.bitcanna = exports.bitbadges = exports.beezee = exports.bandchain = exports.axelar = exports.aura = exports.atomone = exports.assetmantle = exports.arkh = exports.archway = exports.andromeda = exports.althea = exports.akash = exports.aioz = exports.agoric = exports.acrechain = exports.aaronetwork = exports.tron = exports.ton = exports.solana = exports.rootstock = exports.ethereum = void 0;
27
- exports.lumnetwork = exports.loyal = exports.lorenzo = exports.loop = exports.logos = exports.likecoin = exports.lava = exports.lambda = exports.kyve = exports.kujira = exports.kopi = exports.konstellation = exports.kimanetwork = exports.kichain = exports.kava = exports.juno = exports.joltify = exports.jackal = exports.irisnet = exports.int3face = exports.injective = exports.imversed = exports.impacthub = exports.idep = exports.humans = exports.highbury = exports.heli = exports.haqq = exports.gravitybridge = exports.govgen = exports.gitopia = exports.genesisl1 = exports.gateway = exports.galaxy = exports.fxcore = exports.furya = exports.firmachain = exports.finschia = exports.fetchhub = exports.evmos = exports.ethos = exports.epix = exports.empowerchain = exports.emoney = exports.echelon = exports.dyson = exports.dymension = exports.dydx = exports.dungeon = exports.doravota = void 0;
28
- exports.scorum = exports.saga = exports.routerchain = exports.rizon = exports.regen = exports.rebus = exports.realio = exports.qwoyn = exports.quicksilver = exports.quasar = exports.qfs = exports.pylons = exports.pundix = exports.pryzm = exports.provenance = exports.point = exports.planq = exports.persistence = exports.passage = exports.panacea = exports.paloma = exports.osmosis = exports.oraichain = exports.onomy = exports.onex = exports.omniflixhub = exports.okexchain = exports.odin = exports.octa = exports.nyx = exports.nomic = exports.nolus = exports.noble = exports.nim = exports.nibiru = exports.neutron = exports.neutaro = exports.neura = exports.mythos = exports.mun = exports.mtgbp = exports.mises = exports.milkyway = exports.migaloo = exports.meme = exports.medasdigital = exports.mayachain = exports.mars = exports.mantrachain = exports.mande = void 0;
29
- exports.zetachain = exports.xpla = exports.xion = exports.uptick = exports.ununifi = exports.unification = exports.unicorn = exports.umee = exports.titan = exports.thorchain = exports.tgrade = exports.terra2 = exports.terra = exports.terpnetwork = exports.teritori = exports.tenet = exports.taketitan = exports.synternet = exports.sunrise = exports.stride = exports.stratos = exports.starname = exports.stargaze = exports.stafihub = exports.source = exports.sommelier = exports.six = exports.sifchain = exports.shido = exports.shentu = exports.shareledger = exports.sge = exports.sentinel = exports.self = exports.sei = exports.seda = exports.secretnetwork = void 0;
27
+ exports.loyal = exports.lorenzo = exports.loop = exports.logos = exports.likecoin = exports.lava = exports.lambda = exports.kyve = exports.kujira = exports.kopi = exports.konstellation = exports.kimanetwork = exports.kichain = exports.kava = exports.juno = exports.joltify = exports.jackal = exports.irisnet = exports.int3face = exports.injective = exports.imversed = exports.impacthub = exports.idep = exports.humans = exports.highbury = exports.heli = exports.haqq = exports.gravitybridge = exports.govgen = exports.gitopia = exports.genesisl1 = exports.gateway = exports.galaxy = exports.fxcore = exports.furya = exports.firmachain = exports.finschia = exports.fetchhub = exports.evmos = exports.ethos = exports.epix = exports.empowerchain = exports.emoney = exports.elys = exports.echelon = exports.dyson = exports.dymension = exports.dydx = exports.dungeon = exports.doravota = void 0;
28
+ exports.saga = exports.routerchain = exports.rizon = exports.regen = exports.rebus = exports.realio = exports.qwoyn = exports.quicksilver = exports.quasar = exports.qfs = exports.pylons = exports.pundix = exports.pryzm = exports.provenance = exports.point = exports.planq = exports.persistence = exports.passage = exports.panacea = exports.paloma = exports.osmosis = exports.oraichain = exports.onomy = exports.onex = exports.omniflixhub = exports.okexchain = exports.odin = exports.octa = exports.nyx = exports.nomic = exports.nolus = exports.noble = exports.nim = exports.nibiru = exports.neutron = exports.neutaro = exports.neura = exports.mythos = exports.mun = exports.mtgbp = exports.mises = exports.milkyway = exports.migaloo = exports.meme = exports.medasdigital = exports.mayachain = exports.mars = exports.mantrachain = exports.mande = exports.lumnetwork = void 0;
29
+ exports.zetachain = exports.xpla = exports.xion = exports.uptick = exports.ununifi = exports.unification = exports.unicorn = exports.umee = exports.titan = exports.thorchain = exports.tgrade = exports.terra2 = exports.terra = exports.terpnetwork = exports.teritori = exports.tenet = exports.taketitan = exports.synternet = exports.sunrise = exports.stride = exports.stratos = exports.starname = exports.stargaze = exports.stafihub = exports.source = exports.sommelier = exports.six = exports.sifchain = exports.shido = exports.shentu = exports.shareledger = exports.sge = exports.sentinel = exports.self = exports.sei = exports.seda = exports.secretnetwork = exports.scorum = void 0;
30
30
  exports.ethereum = __importStar(require("./ethereum"));
31
31
  exports.rootstock = __importStar(require("./rootstock"));
32
32
  exports.solana = __importStar(require("./solana"));
@@ -83,6 +83,7 @@ exports.dydx = __importStar(require("./dydx"));
83
83
  exports.dymension = __importStar(require("./dymension"));
84
84
  exports.dyson = __importStar(require("./dyson"));
85
85
  exports.echelon = __importStar(require("./echelon"));
86
+ exports.elys = __importStar(require("./elys"));
86
87
  exports.emoney = __importStar(require("./emoney"));
87
88
  exports.empowerchain = __importStar(require("./empowerchain"));
88
89
  exports.epix = __importStar(require("./epix"));
@@ -1,6 +1,35 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
3
  const info = [
4
+ {
5
+ $schema: '../ibc_data.schema.json',
6
+ chain_1: {
7
+ chain_name: 'agoric',
8
+ client_id: '07-tendermint-101',
9
+ connection_id: 'connection-99'
10
+ },
11
+ chain_2: {
12
+ chain_name: 'neutron',
13
+ client_id: '07-tendermint-148',
14
+ connection_id: 'connection-108'
15
+ },
16
+ channels: [{
17
+ chain_1: {
18
+ channel_id: 'channel-146',
19
+ port_id: 'transfer'
20
+ },
21
+ chain_2: {
22
+ channel_id: 'channel-5789',
23
+ port_id: 'transfer'
24
+ },
25
+ ordering: 'unordered',
26
+ version: 'ics20-1',
27
+ tags: {
28
+ status: 'live',
29
+ preferred: true
30
+ }
31
+ }]
32
+ },
4
33
  {
5
34
  $schema: '../ibc_data.schema.json',
6
35
  chain_1: {
@@ -125,6 +125,38 @@ const info = {
125
125
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg'
126
126
  }
127
127
  },
128
+ {
129
+ description: 'AXV',
130
+ extended_description: 'AXV is the Astrovault token.',
131
+ socials: {
132
+ website: 'https://astrovault.io/',
133
+ twitter: 'https://x.com/axvdex'
134
+ },
135
+ denom_units: [{
136
+ denom: 'tf/nibi1vetfuua65frvf6f458xgtjerf0ra7wwjykrdpuyn0jur5x07awxsfka0ga/axv',
137
+ exponent: 0
138
+ }, {
139
+ denom: 'AXV',
140
+ exponent: 6
141
+ }],
142
+ base: 'tf/nibi1vetfuua65frvf6f458xgtjerf0ra7wwjykrdpuyn0jur5x07awxsfka0ga/axv',
143
+ name: 'AXV',
144
+ display: 'AXV',
145
+ symbol: 'AXV',
146
+ logo_URIs: {
147
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/axv.png',
148
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/axv.svg'
149
+ },
150
+ images: [{
151
+ image_sync: {
152
+ chain_name: 'neutron',
153
+ base_denom: 'cw20:neutron10dxyft3nv4vpxh5vrpn0xw8geej8dw3g39g7nqp8mrm307ypssksau29af'
154
+ },
155
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/axv.png',
156
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/axv.svg'
157
+ }],
158
+ type_asset: 'sdk.coin'
159
+ },
128
160
  {
129
161
  description: 'uoprek',
130
162
  denom_units: [{
@@ -22096,6 +22096,43 @@ const info = {
22096
22096
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allFIL.svg',
22097
22097
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/allFIL.png'
22098
22098
  }]
22099
+ },
22100
+ {
22101
+ description: 'Internet Computer bridged via Omnity Network.',
22102
+ denom_units: [{
22103
+ denom: 'factory/osmo10c4y9csfs8q7mtvfg4p9gd8d0acx0hpc2mte9xqzthd7rd3348tsfhaesm/sICP-native-ICP',
22104
+ exponent: 0,
22105
+ aliases: ['e8s']
22106
+ }, {
22107
+ denom: 'icp',
22108
+ exponent: 8
22109
+ }],
22110
+ type_asset: 'sdk.coin',
22111
+ address: 'osmo10c4y9csfs8q7mtvfg4p9gd8d0acx0hpc2mte9xqzthd7rd3348tsfhaesm',
22112
+ base: 'factory/osmo10c4y9csfs8q7mtvfg4p9gd8d0acx0hpc2mte9xqzthd7rd3348tsfhaesm/sICP-native-ICP',
22113
+ name: 'Internet Computer',
22114
+ display: 'icp',
22115
+ symbol: 'ICP',
22116
+ traces: [{
22117
+ type: 'bridge',
22118
+ counterparty: {
22119
+ chain_name: 'internetcomputer',
22120
+ base_denom: 'e8s'
22121
+ },
22122
+ provider: 'Omnity Network'
22123
+ }],
22124
+ logo_URIs: {
22125
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/internetcomputer/images/icp.svg',
22126
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/internetcomputer/images/icp.png'
22127
+ },
22128
+ images: [{
22129
+ image_sync: {
22130
+ chain_name: 'internetcomputer',
22131
+ base_denom: 'e8s'
22132
+ },
22133
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/internetcomputer/images/icp.svg',
22134
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/internetcomputer/images/icp.png'
22135
+ }]
22099
22136
  }
22100
22137
  ]
22101
22138
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chain-registry",
3
- "version": "1.69.60",
3
+ "version": "1.69.62",
4
4
  "description": "Cosmos chain registry ⚛️",
5
5
  "author": "Dan Lynch <pyramation@gmail.com>",
6
6
  "homepage": "https://github.com/cosmology-tech/chain-registry/tree/master/packages/chain-registry#readme",
@@ -29,11 +29,11 @@
29
29
  "test:watch": "jest --watch"
30
30
  },
31
31
  "devDependencies": {
32
- "@chain-registry/utils": "^1.51.34",
32
+ "@chain-registry/utils": "^1.51.36",
33
33
  "deepmerge": "^4.2.2"
34
34
  },
35
35
  "dependencies": {
36
- "@chain-registry/types": "^0.50.34"
36
+ "@chain-registry/types": "^0.50.36"
37
37
  },
38
38
  "keywords": [
39
39
  "chain-registry",
@@ -43,5 +43,5 @@
43
43
  "interchain",
44
44
  "tokens"
45
45
  ],
46
- "gitHead": "b68c5848d1ac693e7f989e0d1645c89126f7bfd2"
46
+ "gitHead": "1fe2363e06dfb71294ecec446c323d103ffbc52f"
47
47
  }
@@ -234,21 +234,21 @@ const info = [
234
234
  $schema: '../../ibc_data.schema.json',
235
235
  chain_1: {
236
236
  chain_name: 'axelartestnet',
237
- client_id: '07-tendermint-767',
238
- connection_id: 'connection-581'
237
+ client_id: '07-tendermint-1047',
238
+ connection_id: 'connection-808'
239
239
  },
240
240
  chain_2: {
241
241
  chain_name: 'sagatestnet',
242
- client_id: '07-tendermint-11',
243
- connection_id: 'connection-10'
242
+ client_id: '07-tendermint-2',
243
+ connection_id: 'connection-3'
244
244
  },
245
245
  channels: [{
246
246
  chain_1: {
247
- channel_id: 'channel-370',
247
+ channel_id: 'channel-566',
248
248
  port_id: 'transfer'
249
249
  },
250
250
  chain_2: {
251
- channel_id: 'channel-9',
251
+ channel_id: 'channel-3',
252
252
  port_id: 'transfer'
253
253
  },
254
254
  ordering: 'unordered',
@@ -70,14 +70,14 @@ const info = {
70
70
  {
71
71
  description: 'USDC from Noble',
72
72
  denom_units: [{
73
- denom: 'ibc/2180E84E20F5679FCC760D8C165B60F42065DEF7F46A72B447CFF1B7DC6C0A65',
73
+ denom: 'ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349',
74
74
  exponent: 0
75
75
  }, {
76
76
  denom: 'usdc',
77
77
  exponent: 6
78
78
  }],
79
79
  type_asset: 'ics20',
80
- base: 'ibc/2180E84E20F5679FCC760D8C165B60F42065DEF7F46A72B447CFF1B7DC6C0A65',
80
+ base: 'ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349',
81
81
  name: 'Noble USD Coin',
82
82
  display: 'usdc',
83
83
  symbol: 'USDC',
@@ -86,11 +86,11 @@ const info = {
86
86
  counterparty: {
87
87
  chain_name: 'nobletestnet',
88
88
  base_denom: 'uusdc',
89
- channel_id: 'channel-19'
89
+ channel_id: 'channel-287'
90
90
  },
91
91
  chain: {
92
- channel_id: 'channel-12',
93
- path: 'transfer/channel-12/uusdc'
92
+ channel_id: 'channel-2',
93
+ path: 'transfer/channel-2/uusdc'
94
94
  }
95
95
  }],
96
96
  images: [{
@@ -112,14 +112,14 @@ const info = {
112
112
  },
113
113
  {
114
114
  denom_units: [{
115
- denom: 'ibc/E2D2F6ADCC68AA3384B2F5DFACCA437923D137C14E86FB8A10207CF3BED0C8D4',
115
+ denom: 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9',
116
116
  exponent: 0
117
117
  }, {
118
118
  denom: 'atom',
119
119
  exponent: 6
120
120
  }],
121
121
  type_asset: 'ics20',
122
- base: 'ibc/E2D2F6ADCC68AA3384B2F5DFACCA437923D137C14E86FB8A10207CF3BED0C8D4',
122
+ base: 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9',
123
123
  name: 'ATOM on Elys',
124
124
  display: 'atom',
125
125
  symbol: 'ATOM',
@@ -128,11 +128,11 @@ const info = {
128
128
  counterparty: {
129
129
  chain_name: 'cosmoshubtestnet',
130
130
  base_denom: 'uatom',
131
- channel_id: 'channel-3302'
131
+ channel_id: 'channel-290'
132
132
  },
133
133
  chain: {
134
- channel_id: 'channel-16',
135
- path: 'transfer/channel-16/uatom'
134
+ channel_id: 'channel-1',
135
+ path: 'transfer/channel-1/uatom'
136
136
  }
137
137
  }],
138
138
  images: [{
@@ -7,7 +7,7 @@ const info = {
7
7
  network_type: 'testnet',
8
8
  pretty_name: 'Elys Network',
9
9
  chain_type: 'cosmos',
10
- chain_id: 'elystestnet-1',
10
+ chain_id: 'elysicstestnet-1',
11
11
  bech32_prefix: 'elys',
12
12
  daemon_name: 'elysd',
13
13
  node_home: '$HOME/.elys',
@@ -31,14 +31,14 @@ const info = {
31
31
  high_gas_price: 0.03
32
32
  },
33
33
  {
34
- denom: 'ibc/2180E84E20F5679FCC760D8C165B60F42065DEF7F46A72B447CFF1B7DC6C0A65',
34
+ denom: 'ibc/F082B65C88E4B6D5EF1DB243CDA1D331D002759E938A0F5CD3FFDC5D53B3E349',
35
35
  fixed_min_gas_price: 0.01,
36
36
  low_gas_price: 0.01,
37
37
  average_gas_price: 0.025,
38
38
  high_gas_price: 0.03
39
39
  },
40
40
  {
41
- denom: 'ibc/E2D2F6ADCC68AA3384B2F5DFACCA437923D137C14E86FB8A10207CF3BED0C8D4',
41
+ denom: 'ibc/C4CFF46FD6DE35CA4CF4CE031E643C8FDC9BA4B99AE598E9B0ED98FE3A2319F9',
42
42
  fixed_min_gas_price: 0.01,
43
43
  low_gas_price: 0.01,
44
44
  average_gas_price: 0.025,
@@ -53,18 +53,10 @@ const info = {
53
53
  address: 'https://rpc.testnet.elys.network',
54
54
  provider: 'Elys Network'
55
55
  },
56
- {
57
- address: 'https://elys-testnet-rpc.staketab.org:443',
58
- provider: 'Staketab'
59
- },
60
56
  {
61
57
  address: 'https://elys-testnet-rpc.itrocket.net:443',
62
58
  provider: 'itrocket'
63
59
  },
64
- {
65
- address: 'https://elys-rpc.kleomedes.network:443',
66
- provider: 'Kleomedes'
67
- },
68
60
  {
69
61
  address: 'https://elys-testnet-rpc.publicnode.com:443',
70
62
  provider: 'Allnodes ⚡️ Nodes & Staking'
@@ -75,60 +67,27 @@ const info = {
75
67
  address: 'https://api.testnet.elys.network',
76
68
  provider: 'Elys Network'
77
69
  },
78
- {
79
- address: 'https://elys.api.t.stavr.tech',
80
- provider: '🔥STAVR🔥'
81
- },
82
- {
83
- address: 'https://elys-testnet-rest.staketab.org',
84
- provider: 'Staketab'
85
- },
86
70
  {
87
71
  address: 'https://elys-testnet-api.itrocket.net',
88
72
  provider: 'itrocket'
89
73
  },
90
- {
91
- address: 'https://elys-api.kleomedes.network:443',
92
- provider: 'Kleomedes'
93
- },
94
74
  {
95
75
  address: 'https://elys-testnet-rest.publicnode.com',
96
76
  provider: 'Allnodes ⚡️ Nodes & Staking'
97
77
  }
98
78
  ],
99
- grpc: [
100
- {
101
- address: 'services.staketab.com:9390',
102
- provider: 'Staketab'
103
- },
104
- {
105
- address: 'elys-testnet-grpc.itrocket.net:38090',
106
- provider: 'itrocket'
107
- },
108
- {
109
- address: 'elys-testnet-grpc.publicnode.com:443',
110
- provider: 'Allnodes ⚡️ Nodes & Staking'
111
- }
112
- ]
79
+ grpc: []
113
80
  },
114
- explorers: [
115
- {
116
- kind: '🔥STAVR🔥',
117
- url: 'https://explorer.stavr.tech/Elys-Testnet',
118
- tx_page: 'https://explorer.stavr.tech/Elys-Testnet/tx/${txHash}',
119
- account_page: 'https://explorer.stavr.tech/Elys-Testnet/account/${accountAddress}'
120
- },
121
- {
81
+ explorers: [{
122
82
  kind: 'ping.pub',
123
- url: 'https://testnet.elys.network/elys',
124
- tx_page: 'https://testnet.elys.network/elys/tx/${txHash}'
125
- },
126
- {
83
+ url: 'https://testnet.ping.pub/elys',
84
+ tx_page: 'https://testnet.ping.pub/elys/tx/${txHash}',
85
+ account_page: 'https://testnet.ping.pub/elys/account/${accountAddress}'
86
+ }, {
127
87
  kind: 'itrocket',
128
88
  url: 'https://testnet.itrocket.net/elys',
129
89
  tx_page: 'https://testnet.itrocket.net/elys/staking/tx/${txHash}',
130
90
  account_page: 'https://testnet.itrocket.net/elys/account/${accountAddress}'
131
- }
132
- ]
91
+ }]
133
92
  };
134
93
  exports.default = info;
@@ -7,7 +7,7 @@ const info = {
7
7
  network_type: 'testnet',
8
8
  pretty_name: 'Saga Testnet',
9
9
  chain_type: 'cosmos',
10
- chain_id: 'ssc-testnet-1',
10
+ chain_id: 'ssc-testnet-2',
11
11
  bech32_prefix: 'saga',
12
12
  daemon_name: 'sscd',
13
13
  node_home: '$HOME/.ssc',
@@ -4,21 +4,21 @@ const info = [{
4
4
  $schema: '../../ibc_data.schema.json',
5
5
  chain_1: {
6
6
  chain_name: 'axelartestnet',
7
- client_id: '07-tendermint-767',
8
- connection_id: 'connection-581'
7
+ client_id: '07-tendermint-1047',
8
+ connection_id: 'connection-808'
9
9
  },
10
10
  chain_2: {
11
11
  chain_name: 'sagatestnet',
12
- client_id: '07-tendermint-11',
13
- connection_id: 'connection-10'
12
+ client_id: '07-tendermint-2',
13
+ connection_id: 'connection-3'
14
14
  },
15
15
  channels: [{
16
16
  chain_1: {
17
- channel_id: 'channel-370',
17
+ channel_id: 'channel-566',
18
18
  port_id: 'transfer'
19
19
  },
20
20
  chain_2: {
21
- channel_id: 'channel-9',
21
+ channel_id: 'channel-3',
22
22
  port_id: 'transfer'
23
23
  },
24
24
  ordering: 'unordered',