chain-registry 2.0.213 → 2.0.215
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.
- package/esm/mainnet/agoric/ibc-data.js +31 -0
- package/esm/mainnet/axelar/asset-list.js +0 -1
- package/esm/mainnet/dyson/asset-list.js +1 -2
- package/esm/mainnet/hippoprotocol/asset-list.js +4 -1
- package/esm/mainnet/hippoprotocol/ibc-data.js +6 -6
- package/esm/mainnet/ibc-data.js +2 -0
- package/esm/mainnet/initia/ibc-data.js +31 -0
- package/esm/mainnet/injective/ibc-data.js +93 -0
- package/esm/mainnet/namada/asset-list.js +0 -1
- package/esm/mainnet/neutron/asset-list.js +1 -2
- package/esm/mainnet/nolus/asset-list.js +1 -2
- package/esm/mainnet/osmosis/asset-list.js +10 -8
- package/esm/mainnet/osmosis/ibc-data.js +37 -6
- package/esm/mainnet/stoc/chain.js +1 -1
- package/esm/mainnet/turkchain/chain.js +4 -0
- package/esm/mainnet/turkchain/ibc-data.js +32 -0
- package/esm/mainnet/turkchain/index.js +2 -0
- package/esm/mainnet/zigchain/ibc-data.js +31 -0
- package/esm/testnet/hippoprotocoltestnet/asset-list.js +12 -2
- package/esm/testnet/tstoctestnet/chain.js +2 -2
- package/mainnet/agoric/ibc-data.js +31 -0
- package/mainnet/axelar/asset-list.js +0 -1
- package/mainnet/dyson/asset-list.js +1 -2
- package/mainnet/hippoprotocol/asset-list.js +4 -1
- package/mainnet/hippoprotocol/ibc-data.js +6 -6
- package/mainnet/ibc-data.js +2 -0
- package/mainnet/initia/ibc-data.js +31 -0
- package/mainnet/injective/ibc-data.js +93 -0
- package/mainnet/namada/asset-list.js +0 -1
- package/mainnet/neutron/asset-list.js +1 -2
- package/mainnet/nolus/asset-list.js +1 -2
- package/mainnet/osmosis/asset-list.js +10 -8
- package/mainnet/osmosis/ibc-data.js +37 -6
- package/mainnet/stoc/chain.js +1 -1
- package/mainnet/turkchain/chain.js +4 -0
- package/mainnet/turkchain/ibc-data.d.ts +3 -0
- package/mainnet/turkchain/ibc-data.js +34 -0
- package/mainnet/turkchain/index.d.ts +1 -0
- package/mainnet/turkchain/index.js +3 -1
- package/mainnet/zigchain/ibc-data.js +31 -0
- package/package.json +3 -3
- package/testnet/hippoprotocoltestnet/asset-list.js +12 -2
- package/testnet/tstoctestnet/chain.js +2 -2
|
@@ -215,6 +215,37 @@ const info = [
|
|
|
215
215
|
}
|
|
216
216
|
}]
|
|
217
217
|
},
|
|
218
|
+
{
|
|
219
|
+
$schema: '../ibc_data.schema.json',
|
|
220
|
+
chain1: {
|
|
221
|
+
chainName: 'agoric',
|
|
222
|
+
chainId: 'agoric-3',
|
|
223
|
+
clientId: '07-tendermint-126',
|
|
224
|
+
connectionId: 'connection-118'
|
|
225
|
+
},
|
|
226
|
+
chain2: {
|
|
227
|
+
chainName: 'injective',
|
|
228
|
+
chainId: 'injective-1',
|
|
229
|
+
clientId: '07-tendermint-328',
|
|
230
|
+
connectionId: 'connection-333'
|
|
231
|
+
},
|
|
232
|
+
channels: [{
|
|
233
|
+
chain1: {
|
|
234
|
+
channelId: 'channel-492',
|
|
235
|
+
portId: 'transfer'
|
|
236
|
+
},
|
|
237
|
+
chain2: {
|
|
238
|
+
channelId: 'channel-454',
|
|
239
|
+
portId: 'transfer'
|
|
240
|
+
},
|
|
241
|
+
ordering: 'unordered',
|
|
242
|
+
version: 'ics20-1',
|
|
243
|
+
tags: {
|
|
244
|
+
status: 'ACTIVE',
|
|
245
|
+
preferred: true
|
|
246
|
+
}
|
|
247
|
+
}]
|
|
248
|
+
},
|
|
218
249
|
{
|
|
219
250
|
$schema: '../ibc_data.schema.json',
|
|
220
251
|
chain1: {
|
|
@@ -110,8 +110,7 @@ const info = {
|
|
|
110
110
|
logoURIs: {
|
|
111
111
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png',
|
|
112
112
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg'
|
|
113
|
-
}
|
|
114
|
-
coingeckoId: 'axlwbtc'
|
|
113
|
+
}
|
|
115
114
|
},
|
|
116
115
|
{
|
|
117
116
|
denomUnits: [{
|
|
@@ -6,11 +6,14 @@ const info = {
|
|
|
6
6
|
denomUnits: [{
|
|
7
7
|
denom: 'ahp',
|
|
8
8
|
exponent: 0
|
|
9
|
+
}, {
|
|
10
|
+
denom: 'hp',
|
|
11
|
+
exponent: 18
|
|
9
12
|
}],
|
|
10
13
|
typeAsset: 'sdk.coin',
|
|
11
14
|
base: 'ahp',
|
|
12
15
|
name: 'Hippo',
|
|
13
|
-
display: '
|
|
16
|
+
display: 'hp',
|
|
14
17
|
symbol: 'HP',
|
|
15
18
|
logoURIs: {
|
|
16
19
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/hippoprotocol/images/logo.svg'
|
|
@@ -3,22 +3,22 @@ const info = [{
|
|
|
3
3
|
chain1: {
|
|
4
4
|
chainName: 'hippoprotocol',
|
|
5
5
|
chainId: 'hippo-protocol-1',
|
|
6
|
-
clientId: '07-tendermint-
|
|
7
|
-
connectionId: 'connection-
|
|
6
|
+
clientId: '07-tendermint-1',
|
|
7
|
+
connectionId: 'connection-2'
|
|
8
8
|
},
|
|
9
9
|
chain2: {
|
|
10
10
|
chainName: 'osmosis',
|
|
11
11
|
chainId: 'osmosis-1',
|
|
12
|
-
clientId: '07-tendermint-
|
|
13
|
-
connectionId: 'connection-
|
|
12
|
+
clientId: '07-tendermint-3711',
|
|
13
|
+
connectionId: 'connection-11064'
|
|
14
14
|
},
|
|
15
15
|
channels: [{
|
|
16
16
|
chain1: {
|
|
17
|
-
channelId: 'channel-
|
|
17
|
+
channelId: 'channel-1',
|
|
18
18
|
portId: 'transfer'
|
|
19
19
|
},
|
|
20
20
|
chain2: {
|
|
21
|
-
channelId: 'channel-
|
|
21
|
+
channelId: 'channel-110277',
|
|
22
22
|
portId: 'transfer'
|
|
23
23
|
},
|
|
24
24
|
ordering: 'unordered',
|
package/esm/mainnet/ibc-data.js
CHANGED
|
@@ -170,6 +170,7 @@ import * as _terra2 from './terra2';
|
|
|
170
170
|
import * as _tgrade from './tgrade';
|
|
171
171
|
import * as _thejaynetwork from './thejaynetwork';
|
|
172
172
|
import * as _titan from './titan';
|
|
173
|
+
import * as _turkchain from './turkchain';
|
|
173
174
|
import * as _umee from './umee';
|
|
174
175
|
import * as _unification from './unification';
|
|
175
176
|
import * as _uptick from './uptick';
|
|
@@ -352,6 +353,7 @@ const ibcData = [
|
|
|
352
353
|
..._tgrade.ibcData,
|
|
353
354
|
..._thejaynetwork.ibcData,
|
|
354
355
|
..._titan.ibcData,
|
|
356
|
+
..._turkchain.ibcData,
|
|
355
357
|
..._umee.ibcData,
|
|
356
358
|
..._unification.ibcData,
|
|
357
359
|
..._uptick.ibcData,
|
|
@@ -1,4 +1,35 @@
|
|
|
1
1
|
const info = [
|
|
2
|
+
{
|
|
3
|
+
$schema: '../ibc_data.schema.json',
|
|
4
|
+
chain1: {
|
|
5
|
+
chainName: 'initia',
|
|
6
|
+
chainId: 'interwoven-1',
|
|
7
|
+
clientId: '07-tendermint-64',
|
|
8
|
+
connectionId: 'connection-55'
|
|
9
|
+
},
|
|
10
|
+
chain2: {
|
|
11
|
+
chainName: 'injective',
|
|
12
|
+
chainId: 'injective-1',
|
|
13
|
+
clientId: '07-tendermint-329',
|
|
14
|
+
connectionId: 'connection-334'
|
|
15
|
+
},
|
|
16
|
+
channels: [{
|
|
17
|
+
chain1: {
|
|
18
|
+
channelId: 'channel-112',
|
|
19
|
+
portId: 'transfer'
|
|
20
|
+
},
|
|
21
|
+
chain2: {
|
|
22
|
+
channelId: 'channel-455',
|
|
23
|
+
portId: 'transfer'
|
|
24
|
+
},
|
|
25
|
+
ordering: 'unordered',
|
|
26
|
+
version: 'ics20-1',
|
|
27
|
+
tags: {
|
|
28
|
+
status: 'ACTIVE',
|
|
29
|
+
preferred: true
|
|
30
|
+
}
|
|
31
|
+
}]
|
|
32
|
+
},
|
|
2
33
|
{
|
|
3
34
|
$schema: '../ibc_data.schema.json',
|
|
4
35
|
chain1: {
|
|
@@ -1,4 +1,35 @@
|
|
|
1
1
|
const info = [
|
|
2
|
+
{
|
|
3
|
+
$schema: '../ibc_data.schema.json',
|
|
4
|
+
chain1: {
|
|
5
|
+
chainName: 'agoric',
|
|
6
|
+
chainId: 'agoric-3',
|
|
7
|
+
clientId: '07-tendermint-126',
|
|
8
|
+
connectionId: 'connection-118'
|
|
9
|
+
},
|
|
10
|
+
chain2: {
|
|
11
|
+
chainName: 'injective',
|
|
12
|
+
chainId: 'injective-1',
|
|
13
|
+
clientId: '07-tendermint-328',
|
|
14
|
+
connectionId: 'connection-333'
|
|
15
|
+
},
|
|
16
|
+
channels: [{
|
|
17
|
+
chain1: {
|
|
18
|
+
channelId: 'channel-492',
|
|
19
|
+
portId: 'transfer'
|
|
20
|
+
},
|
|
21
|
+
chain2: {
|
|
22
|
+
channelId: 'channel-454',
|
|
23
|
+
portId: 'transfer'
|
|
24
|
+
},
|
|
25
|
+
ordering: 'unordered',
|
|
26
|
+
version: 'ics20-1',
|
|
27
|
+
tags: {
|
|
28
|
+
status: 'ACTIVE',
|
|
29
|
+
preferred: true
|
|
30
|
+
}
|
|
31
|
+
}]
|
|
32
|
+
},
|
|
2
33
|
{
|
|
3
34
|
$schema: '../ibc_data.schema.json',
|
|
4
35
|
chain1: {
|
|
@@ -278,6 +309,37 @@ const info = [
|
|
|
278
309
|
}
|
|
279
310
|
}]
|
|
280
311
|
},
|
|
312
|
+
{
|
|
313
|
+
$schema: '../ibc_data.schema.json',
|
|
314
|
+
chain1: {
|
|
315
|
+
chainName: 'initia',
|
|
316
|
+
chainId: 'interwoven-1',
|
|
317
|
+
clientId: '07-tendermint-64',
|
|
318
|
+
connectionId: 'connection-55'
|
|
319
|
+
},
|
|
320
|
+
chain2: {
|
|
321
|
+
chainName: 'injective',
|
|
322
|
+
chainId: 'injective-1',
|
|
323
|
+
clientId: '07-tendermint-329',
|
|
324
|
+
connectionId: 'connection-334'
|
|
325
|
+
},
|
|
326
|
+
channels: [{
|
|
327
|
+
chain1: {
|
|
328
|
+
channelId: 'channel-112',
|
|
329
|
+
portId: 'transfer'
|
|
330
|
+
},
|
|
331
|
+
chain2: {
|
|
332
|
+
channelId: 'channel-455',
|
|
333
|
+
portId: 'transfer'
|
|
334
|
+
},
|
|
335
|
+
ordering: 'unordered',
|
|
336
|
+
version: 'ics20-1',
|
|
337
|
+
tags: {
|
|
338
|
+
status: 'ACTIVE',
|
|
339
|
+
preferred: true
|
|
340
|
+
}
|
|
341
|
+
}]
|
|
342
|
+
},
|
|
281
343
|
{
|
|
282
344
|
$schema: '../ibc_data.schema.json',
|
|
283
345
|
chain1: {
|
|
@@ -1117,6 +1179,37 @@ const info = [
|
|
|
1117
1179
|
status: 'ACTIVE'
|
|
1118
1180
|
}
|
|
1119
1181
|
}]
|
|
1182
|
+
},
|
|
1183
|
+
{
|
|
1184
|
+
$schema: '../ibc_data.schema.json',
|
|
1185
|
+
chain1: {
|
|
1186
|
+
chainName: 'injective',
|
|
1187
|
+
chainId: 'injective-1',
|
|
1188
|
+
clientId: '07-tendermint-330',
|
|
1189
|
+
connectionId: 'connection-335'
|
|
1190
|
+
},
|
|
1191
|
+
chain2: {
|
|
1192
|
+
chainName: 'zigchain',
|
|
1193
|
+
chainId: 'zigchain-1',
|
|
1194
|
+
clientId: '07-tendermint-5',
|
|
1195
|
+
connectionId: 'connection-5'
|
|
1196
|
+
},
|
|
1197
|
+
channels: [{
|
|
1198
|
+
chain1: {
|
|
1199
|
+
channelId: 'channel-456',
|
|
1200
|
+
portId: 'transfer'
|
|
1201
|
+
},
|
|
1202
|
+
chain2: {
|
|
1203
|
+
channelId: 'channel-12',
|
|
1204
|
+
portId: 'transfer'
|
|
1205
|
+
},
|
|
1206
|
+
ordering: 'unordered',
|
|
1207
|
+
version: 'ics20-1',
|
|
1208
|
+
tags: {
|
|
1209
|
+
status: 'ACTIVE',
|
|
1210
|
+
preferred: true
|
|
1211
|
+
}
|
|
1212
|
+
}]
|
|
1120
1213
|
}
|
|
1121
1214
|
];
|
|
1122
1215
|
export default info;
|
|
@@ -1227,8 +1227,7 @@ const info = {
|
|
|
1227
1227
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg'
|
|
1228
1228
|
}, {
|
|
1229
1229
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png'
|
|
1230
|
-
}]
|
|
1231
|
-
coingeckoId: 'axlwbtc'
|
|
1230
|
+
}]
|
|
1232
1231
|
},
|
|
1233
1232
|
{
|
|
1234
1233
|
description: 'IBC Axelar weth-wei through axelar-dojo-1 transfer/channel-2',
|
|
@@ -394,8 +394,7 @@ const info = {
|
|
|
394
394
|
logoURIs: {
|
|
395
395
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png',
|
|
396
396
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg'
|
|
397
|
-
}
|
|
398
|
-
coingeckoId: 'axlwbtc'
|
|
397
|
+
}
|
|
399
398
|
},
|
|
400
399
|
{
|
|
401
400
|
description: 'AKT transferred from the Osmosis mainnet that is supported on the Nolus chain',
|
|
@@ -206,8 +206,7 @@ const info = {
|
|
|
206
206
|
},
|
|
207
207
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png',
|
|
208
208
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg'
|
|
209
|
-
}]
|
|
210
|
-
coingeckoId: 'axlwbtc'
|
|
209
|
+
}]
|
|
211
210
|
},
|
|
212
211
|
{
|
|
213
212
|
description: 'Tether\'s USD stablecoin on Axelar',
|
|
@@ -21603,25 +21602,28 @@ const info = {
|
|
|
21603
21602
|
{
|
|
21604
21603
|
description: 'The native token of Hippo Protocol.',
|
|
21605
21604
|
denomUnits: [{
|
|
21606
|
-
denom: 'ibc/
|
|
21605
|
+
denom: 'ibc/24C3429B835A84801EFEFC28C8CBDF787C4067D971CB6E510BB525FA462CCE1C',
|
|
21607
21606
|
exponent: 0,
|
|
21608
21607
|
aliases: ['ahp']
|
|
21608
|
+
}, {
|
|
21609
|
+
denom: 'hp',
|
|
21610
|
+
exponent: 18
|
|
21609
21611
|
}],
|
|
21610
21612
|
typeAsset: 'ics20',
|
|
21611
|
-
base: 'ibc/
|
|
21613
|
+
base: 'ibc/24C3429B835A84801EFEFC28C8CBDF787C4067D971CB6E510BB525FA462CCE1C',
|
|
21612
21614
|
name: 'Hippo Protocol',
|
|
21613
|
-
display: '
|
|
21615
|
+
display: 'hp',
|
|
21614
21616
|
symbol: 'HP',
|
|
21615
21617
|
traces: [{
|
|
21616
21618
|
type: 'ibc',
|
|
21617
21619
|
counterparty: {
|
|
21618
21620
|
chainName: 'hippoprotocol',
|
|
21619
21621
|
baseDenom: 'ahp',
|
|
21620
|
-
channelId: 'channel-
|
|
21622
|
+
channelId: 'channel-1'
|
|
21621
21623
|
},
|
|
21622
21624
|
chain: {
|
|
21623
|
-
channelId: 'channel-
|
|
21624
|
-
path: 'transfer/channel-
|
|
21625
|
+
channelId: 'channel-110277',
|
|
21626
|
+
path: 'transfer/channel-110277/ahp'
|
|
21625
21627
|
}
|
|
21626
21628
|
}],
|
|
21627
21629
|
logoURIs: {
|
|
@@ -2202,22 +2202,22 @@ const info = [
|
|
|
2202
2202
|
chain1: {
|
|
2203
2203
|
chainName: 'hippoprotocol',
|
|
2204
2204
|
chainId: 'hippo-protocol-1',
|
|
2205
|
-
clientId: '07-tendermint-
|
|
2206
|
-
connectionId: 'connection-
|
|
2205
|
+
clientId: '07-tendermint-1',
|
|
2206
|
+
connectionId: 'connection-2'
|
|
2207
2207
|
},
|
|
2208
2208
|
chain2: {
|
|
2209
2209
|
chainName: 'osmosis',
|
|
2210
2210
|
chainId: 'osmosis-1',
|
|
2211
|
-
clientId: '07-tendermint-
|
|
2212
|
-
connectionId: 'connection-
|
|
2211
|
+
clientId: '07-tendermint-3711',
|
|
2212
|
+
connectionId: 'connection-11064'
|
|
2213
2213
|
},
|
|
2214
2214
|
channels: [{
|
|
2215
2215
|
chain1: {
|
|
2216
|
-
channelId: 'channel-
|
|
2216
|
+
channelId: 'channel-1',
|
|
2217
2217
|
portId: 'transfer'
|
|
2218
2218
|
},
|
|
2219
2219
|
chain2: {
|
|
2220
|
-
channelId: 'channel-
|
|
2220
|
+
channelId: 'channel-110277',
|
|
2221
2221
|
portId: 'transfer'
|
|
2222
2222
|
},
|
|
2223
2223
|
ordering: 'unordered',
|
|
@@ -5531,6 +5531,37 @@ const info = [
|
|
|
5531
5531
|
}
|
|
5532
5532
|
}]
|
|
5533
5533
|
},
|
|
5534
|
+
{
|
|
5535
|
+
$schema: '../ibc_data.schema.json',
|
|
5536
|
+
chain1: {
|
|
5537
|
+
chainName: 'osmosis',
|
|
5538
|
+
chainId: 'osmosis-1',
|
|
5539
|
+
clientId: '07-tendermint-3712',
|
|
5540
|
+
connectionId: 'connection-11065'
|
|
5541
|
+
},
|
|
5542
|
+
chain2: {
|
|
5543
|
+
chainName: 'turkchain',
|
|
5544
|
+
chainId: '1919',
|
|
5545
|
+
clientId: '07-tendermint-0',
|
|
5546
|
+
connectionId: 'connection-2'
|
|
5547
|
+
},
|
|
5548
|
+
channels: [{
|
|
5549
|
+
chain1: {
|
|
5550
|
+
channelId: 'channel-110319',
|
|
5551
|
+
portId: 'transfer'
|
|
5552
|
+
},
|
|
5553
|
+
chain2: {
|
|
5554
|
+
channelId: 'channel-1',
|
|
5555
|
+
portId: 'transfer'
|
|
5556
|
+
},
|
|
5557
|
+
ordering: 'unordered',
|
|
5558
|
+
version: 'ics20-1',
|
|
5559
|
+
tags: {
|
|
5560
|
+
preferred: true,
|
|
5561
|
+
status: 'ACTIVE'
|
|
5562
|
+
}
|
|
5563
|
+
}]
|
|
5564
|
+
},
|
|
5534
5565
|
{
|
|
5535
5566
|
$schema: '../ibc_data.schema.json',
|
|
5536
5567
|
chain1: {
|
|
@@ -72,7 +72,7 @@ const info = {
|
|
|
72
72
|
explorers: [{
|
|
73
73
|
kind: 'stochainscan',
|
|
74
74
|
url: 'https://stochainscan.io/en',
|
|
75
|
-
txPage: 'https://stochainscan.io/en/
|
|
75
|
+
txPage: 'https://stochainscan.io/en/tx/${txHash}',
|
|
76
76
|
accountPage: 'https://stochainscan.io/en/address/${accountAddress}'
|
|
77
77
|
}],
|
|
78
78
|
images: [{
|
|
@@ -0,0 +1,32 @@
|
|
|
1
|
+
const info = [{
|
|
2
|
+
$schema: '../ibc_data.schema.json',
|
|
3
|
+
chain1: {
|
|
4
|
+
chainName: 'osmosis',
|
|
5
|
+
chainId: 'osmosis-1',
|
|
6
|
+
clientId: '07-tendermint-3712',
|
|
7
|
+
connectionId: 'connection-11065'
|
|
8
|
+
},
|
|
9
|
+
chain2: {
|
|
10
|
+
chainName: 'turkchain',
|
|
11
|
+
chainId: '1919',
|
|
12
|
+
clientId: '07-tendermint-0',
|
|
13
|
+
connectionId: 'connection-2'
|
|
14
|
+
},
|
|
15
|
+
channels: [{
|
|
16
|
+
chain1: {
|
|
17
|
+
channelId: 'channel-110319',
|
|
18
|
+
portId: 'transfer'
|
|
19
|
+
},
|
|
20
|
+
chain2: {
|
|
21
|
+
channelId: 'channel-1',
|
|
22
|
+
portId: 'transfer'
|
|
23
|
+
},
|
|
24
|
+
ordering: 'unordered',
|
|
25
|
+
version: 'ics20-1',
|
|
26
|
+
tags: {
|
|
27
|
+
preferred: true,
|
|
28
|
+
status: 'ACTIVE'
|
|
29
|
+
}
|
|
30
|
+
}]
|
|
31
|
+
}];
|
|
32
|
+
export default info;
|
|
@@ -61,6 +61,37 @@ const info = [
|
|
|
61
61
|
}
|
|
62
62
|
}]
|
|
63
63
|
},
|
|
64
|
+
{
|
|
65
|
+
$schema: '../ibc_data.schema.json',
|
|
66
|
+
chain1: {
|
|
67
|
+
chainName: 'injective',
|
|
68
|
+
chainId: 'injective-1',
|
|
69
|
+
clientId: '07-tendermint-330',
|
|
70
|
+
connectionId: 'connection-335'
|
|
71
|
+
},
|
|
72
|
+
chain2: {
|
|
73
|
+
chainName: 'zigchain',
|
|
74
|
+
chainId: 'zigchain-1',
|
|
75
|
+
clientId: '07-tendermint-5',
|
|
76
|
+
connectionId: 'connection-5'
|
|
77
|
+
},
|
|
78
|
+
channels: [{
|
|
79
|
+
chain1: {
|
|
80
|
+
channelId: 'channel-456',
|
|
81
|
+
portId: 'transfer'
|
|
82
|
+
},
|
|
83
|
+
chain2: {
|
|
84
|
+
channelId: 'channel-12',
|
|
85
|
+
portId: 'transfer'
|
|
86
|
+
},
|
|
87
|
+
ordering: 'unordered',
|
|
88
|
+
version: 'ics20-1',
|
|
89
|
+
tags: {
|
|
90
|
+
status: 'ACTIVE',
|
|
91
|
+
preferred: true
|
|
92
|
+
}
|
|
93
|
+
}]
|
|
94
|
+
},
|
|
64
95
|
{
|
|
65
96
|
$schema: '../ibc_data.schema.json',
|
|
66
97
|
chain1: {
|
|
@@ -6,19 +6,29 @@ const info = {
|
|
|
6
6
|
denomUnits: [{
|
|
7
7
|
denom: 'ahp',
|
|
8
8
|
exponent: 0
|
|
9
|
+
}, {
|
|
10
|
+
denom: 'hp',
|
|
11
|
+
exponent: 18
|
|
9
12
|
}],
|
|
10
13
|
typeAsset: 'sdk.coin',
|
|
11
14
|
base: 'ahp',
|
|
12
15
|
name: 'Hippo',
|
|
13
|
-
display: '
|
|
16
|
+
display: 'hp',
|
|
14
17
|
symbol: 'HP',
|
|
18
|
+
traces: [{
|
|
19
|
+
type: 'test-mintage',
|
|
20
|
+
counterparty: {
|
|
21
|
+
chainName: 'hippoprotocol',
|
|
22
|
+
baseDenom: 'ahp'
|
|
23
|
+
},
|
|
24
|
+
provider: 'Hippo Protocol'
|
|
25
|
+
}],
|
|
15
26
|
logoURIs: {
|
|
16
27
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/hippoprotocol/images/logo.svg'
|
|
17
28
|
},
|
|
18
29
|
images: [{
|
|
19
30
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/hippoprotocol/images/logo.svg'
|
|
20
31
|
}],
|
|
21
|
-
coingeckoId: 'hippo-protocol',
|
|
22
32
|
socials: {
|
|
23
33
|
website: 'https://hippoprotocol.ai/',
|
|
24
34
|
x: 'https://x.com/Hippo_Protocol'
|
|
@@ -6,7 +6,7 @@ const info = {
|
|
|
6
6
|
website: 'https://www.stochain.io/',
|
|
7
7
|
prettyName: 'STO Chain Testnet',
|
|
8
8
|
chainType: 'cosmos',
|
|
9
|
-
chainId: '
|
|
9
|
+
chainId: 'tstoc_1999-1',
|
|
10
10
|
bech32Prefix: 'stoc',
|
|
11
11
|
daemonName: 'stocd',
|
|
12
12
|
nodeHome: '$HOME/.stoc',
|
|
@@ -67,7 +67,7 @@ const info = {
|
|
|
67
67
|
explorers: [{
|
|
68
68
|
kind: 'stochainscan',
|
|
69
69
|
url: 'https://stochainscan.io/en',
|
|
70
|
-
txPage: 'https://stochainscan.io/en/
|
|
70
|
+
txPage: 'https://stochainscan.io/en/tx/${txHash}',
|
|
71
71
|
accountPage: 'https://stochainscan.io/en/address/${accountAddress}'
|
|
72
72
|
}],
|
|
73
73
|
images: [{
|
|
@@ -217,6 +217,37 @@ const info = [
|
|
|
217
217
|
}
|
|
218
218
|
}]
|
|
219
219
|
},
|
|
220
|
+
{
|
|
221
|
+
$schema: '../ibc_data.schema.json',
|
|
222
|
+
chain1: {
|
|
223
|
+
chainName: 'agoric',
|
|
224
|
+
chainId: 'agoric-3',
|
|
225
|
+
clientId: '07-tendermint-126',
|
|
226
|
+
connectionId: 'connection-118'
|
|
227
|
+
},
|
|
228
|
+
chain2: {
|
|
229
|
+
chainName: 'injective',
|
|
230
|
+
chainId: 'injective-1',
|
|
231
|
+
clientId: '07-tendermint-328',
|
|
232
|
+
connectionId: 'connection-333'
|
|
233
|
+
},
|
|
234
|
+
channels: [{
|
|
235
|
+
chain1: {
|
|
236
|
+
channelId: 'channel-492',
|
|
237
|
+
portId: 'transfer'
|
|
238
|
+
},
|
|
239
|
+
chain2: {
|
|
240
|
+
channelId: 'channel-454',
|
|
241
|
+
portId: 'transfer'
|
|
242
|
+
},
|
|
243
|
+
ordering: 'unordered',
|
|
244
|
+
version: 'ics20-1',
|
|
245
|
+
tags: {
|
|
246
|
+
status: 'ACTIVE',
|
|
247
|
+
preferred: true
|
|
248
|
+
}
|
|
249
|
+
}]
|
|
250
|
+
},
|
|
220
251
|
{
|
|
221
252
|
$schema: '../ibc_data.schema.json',
|
|
222
253
|
chain1: {
|
|
@@ -112,8 +112,7 @@ const info = {
|
|
|
112
112
|
logoURIs: {
|
|
113
113
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png',
|
|
114
114
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg'
|
|
115
|
-
}
|
|
116
|
-
coingeckoId: 'axlwbtc'
|
|
115
|
+
}
|
|
117
116
|
},
|
|
118
117
|
{
|
|
119
118
|
denomUnits: [{
|
|
@@ -8,11 +8,14 @@ const info = {
|
|
|
8
8
|
denomUnits: [{
|
|
9
9
|
denom: 'ahp',
|
|
10
10
|
exponent: 0
|
|
11
|
+
}, {
|
|
12
|
+
denom: 'hp',
|
|
13
|
+
exponent: 18
|
|
11
14
|
}],
|
|
12
15
|
typeAsset: 'sdk.coin',
|
|
13
16
|
base: 'ahp',
|
|
14
17
|
name: 'Hippo',
|
|
15
|
-
display: '
|
|
18
|
+
display: 'hp',
|
|
16
19
|
symbol: 'HP',
|
|
17
20
|
logoURIs: {
|
|
18
21
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/hippoprotocol/images/logo.svg'
|
|
@@ -5,22 +5,22 @@ const info = [{
|
|
|
5
5
|
chain1: {
|
|
6
6
|
chainName: 'hippoprotocol',
|
|
7
7
|
chainId: 'hippo-protocol-1',
|
|
8
|
-
clientId: '07-tendermint-
|
|
9
|
-
connectionId: 'connection-
|
|
8
|
+
clientId: '07-tendermint-1',
|
|
9
|
+
connectionId: 'connection-2'
|
|
10
10
|
},
|
|
11
11
|
chain2: {
|
|
12
12
|
chainName: 'osmosis',
|
|
13
13
|
chainId: 'osmosis-1',
|
|
14
|
-
clientId: '07-tendermint-
|
|
15
|
-
connectionId: 'connection-
|
|
14
|
+
clientId: '07-tendermint-3711',
|
|
15
|
+
connectionId: 'connection-11064'
|
|
16
16
|
},
|
|
17
17
|
channels: [{
|
|
18
18
|
chain1: {
|
|
19
|
-
channelId: 'channel-
|
|
19
|
+
channelId: 'channel-1',
|
|
20
20
|
portId: 'transfer'
|
|
21
21
|
},
|
|
22
22
|
chain2: {
|
|
23
|
-
channelId: 'channel-
|
|
23
|
+
channelId: 'channel-110277',
|
|
24
24
|
portId: 'transfer'
|
|
25
25
|
},
|
|
26
26
|
ordering: 'unordered',
|
package/mainnet/ibc-data.js
CHANGED
|
@@ -195,6 +195,7 @@ const _terra2 = __importStar(require("./terra2"));
|
|
|
195
195
|
const _tgrade = __importStar(require("./tgrade"));
|
|
196
196
|
const _thejaynetwork = __importStar(require("./thejaynetwork"));
|
|
197
197
|
const _titan = __importStar(require("./titan"));
|
|
198
|
+
const _turkchain = __importStar(require("./turkchain"));
|
|
198
199
|
const _umee = __importStar(require("./umee"));
|
|
199
200
|
const _unification = __importStar(require("./unification"));
|
|
200
201
|
const _uptick = __importStar(require("./uptick"));
|
|
@@ -377,6 +378,7 @@ const ibcData = [
|
|
|
377
378
|
..._tgrade.ibcData,
|
|
378
379
|
..._thejaynetwork.ibcData,
|
|
379
380
|
..._titan.ibcData,
|
|
381
|
+
..._turkchain.ibcData,
|
|
380
382
|
..._umee.ibcData,
|
|
381
383
|
..._unification.ibcData,
|
|
382
384
|
..._uptick.ibcData,
|
|
@@ -1,6 +1,37 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const info = [
|
|
4
|
+
{
|
|
5
|
+
$schema: '../ibc_data.schema.json',
|
|
6
|
+
chain1: {
|
|
7
|
+
chainName: 'initia',
|
|
8
|
+
chainId: 'interwoven-1',
|
|
9
|
+
clientId: '07-tendermint-64',
|
|
10
|
+
connectionId: 'connection-55'
|
|
11
|
+
},
|
|
12
|
+
chain2: {
|
|
13
|
+
chainName: 'injective',
|
|
14
|
+
chainId: 'injective-1',
|
|
15
|
+
clientId: '07-tendermint-329',
|
|
16
|
+
connectionId: 'connection-334'
|
|
17
|
+
},
|
|
18
|
+
channels: [{
|
|
19
|
+
chain1: {
|
|
20
|
+
channelId: 'channel-112',
|
|
21
|
+
portId: 'transfer'
|
|
22
|
+
},
|
|
23
|
+
chain2: {
|
|
24
|
+
channelId: 'channel-455',
|
|
25
|
+
portId: 'transfer'
|
|
26
|
+
},
|
|
27
|
+
ordering: 'unordered',
|
|
28
|
+
version: 'ics20-1',
|
|
29
|
+
tags: {
|
|
30
|
+
status: 'ACTIVE',
|
|
31
|
+
preferred: true
|
|
32
|
+
}
|
|
33
|
+
}]
|
|
34
|
+
},
|
|
4
35
|
{
|
|
5
36
|
$schema: '../ibc_data.schema.json',
|
|
6
37
|
chain1: {
|
|
@@ -1,6 +1,37 @@
|
|
|
1
1
|
"use strict";
|
|
2
2
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
3
|
const info = [
|
|
4
|
+
{
|
|
5
|
+
$schema: '../ibc_data.schema.json',
|
|
6
|
+
chain1: {
|
|
7
|
+
chainName: 'agoric',
|
|
8
|
+
chainId: 'agoric-3',
|
|
9
|
+
clientId: '07-tendermint-126',
|
|
10
|
+
connectionId: 'connection-118'
|
|
11
|
+
},
|
|
12
|
+
chain2: {
|
|
13
|
+
chainName: 'injective',
|
|
14
|
+
chainId: 'injective-1',
|
|
15
|
+
clientId: '07-tendermint-328',
|
|
16
|
+
connectionId: 'connection-333'
|
|
17
|
+
},
|
|
18
|
+
channels: [{
|
|
19
|
+
chain1: {
|
|
20
|
+
channelId: 'channel-492',
|
|
21
|
+
portId: 'transfer'
|
|
22
|
+
},
|
|
23
|
+
chain2: {
|
|
24
|
+
channelId: 'channel-454',
|
|
25
|
+
portId: 'transfer'
|
|
26
|
+
},
|
|
27
|
+
ordering: 'unordered',
|
|
28
|
+
version: 'ics20-1',
|
|
29
|
+
tags: {
|
|
30
|
+
status: 'ACTIVE',
|
|
31
|
+
preferred: true
|
|
32
|
+
}
|
|
33
|
+
}]
|
|
34
|
+
},
|
|
4
35
|
{
|
|
5
36
|
$schema: '../ibc_data.schema.json',
|
|
6
37
|
chain1: {
|
|
@@ -280,6 +311,37 @@ const info = [
|
|
|
280
311
|
}
|
|
281
312
|
}]
|
|
282
313
|
},
|
|
314
|
+
{
|
|
315
|
+
$schema: '../ibc_data.schema.json',
|
|
316
|
+
chain1: {
|
|
317
|
+
chainName: 'initia',
|
|
318
|
+
chainId: 'interwoven-1',
|
|
319
|
+
clientId: '07-tendermint-64',
|
|
320
|
+
connectionId: 'connection-55'
|
|
321
|
+
},
|
|
322
|
+
chain2: {
|
|
323
|
+
chainName: 'injective',
|
|
324
|
+
chainId: 'injective-1',
|
|
325
|
+
clientId: '07-tendermint-329',
|
|
326
|
+
connectionId: 'connection-334'
|
|
327
|
+
},
|
|
328
|
+
channels: [{
|
|
329
|
+
chain1: {
|
|
330
|
+
channelId: 'channel-112',
|
|
331
|
+
portId: 'transfer'
|
|
332
|
+
},
|
|
333
|
+
chain2: {
|
|
334
|
+
channelId: 'channel-455',
|
|
335
|
+
portId: 'transfer'
|
|
336
|
+
},
|
|
337
|
+
ordering: 'unordered',
|
|
338
|
+
version: 'ics20-1',
|
|
339
|
+
tags: {
|
|
340
|
+
status: 'ACTIVE',
|
|
341
|
+
preferred: true
|
|
342
|
+
}
|
|
343
|
+
}]
|
|
344
|
+
},
|
|
283
345
|
{
|
|
284
346
|
$schema: '../ibc_data.schema.json',
|
|
285
347
|
chain1: {
|
|
@@ -1119,6 +1181,37 @@ const info = [
|
|
|
1119
1181
|
status: 'ACTIVE'
|
|
1120
1182
|
}
|
|
1121
1183
|
}]
|
|
1184
|
+
},
|
|
1185
|
+
{
|
|
1186
|
+
$schema: '../ibc_data.schema.json',
|
|
1187
|
+
chain1: {
|
|
1188
|
+
chainName: 'injective',
|
|
1189
|
+
chainId: 'injective-1',
|
|
1190
|
+
clientId: '07-tendermint-330',
|
|
1191
|
+
connectionId: 'connection-335'
|
|
1192
|
+
},
|
|
1193
|
+
chain2: {
|
|
1194
|
+
chainName: 'zigchain',
|
|
1195
|
+
chainId: 'zigchain-1',
|
|
1196
|
+
clientId: '07-tendermint-5',
|
|
1197
|
+
connectionId: 'connection-5'
|
|
1198
|
+
},
|
|
1199
|
+
channels: [{
|
|
1200
|
+
chain1: {
|
|
1201
|
+
channelId: 'channel-456',
|
|
1202
|
+
portId: 'transfer'
|
|
1203
|
+
},
|
|
1204
|
+
chain2: {
|
|
1205
|
+
channelId: 'channel-12',
|
|
1206
|
+
portId: 'transfer'
|
|
1207
|
+
},
|
|
1208
|
+
ordering: 'unordered',
|
|
1209
|
+
version: 'ics20-1',
|
|
1210
|
+
tags: {
|
|
1211
|
+
status: 'ACTIVE',
|
|
1212
|
+
preferred: true
|
|
1213
|
+
}
|
|
1214
|
+
}]
|
|
1122
1215
|
}
|
|
1123
1216
|
];
|
|
1124
1217
|
exports.default = info;
|
|
@@ -1229,8 +1229,7 @@ const info = {
|
|
|
1229
1229
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg'
|
|
1230
1230
|
}, {
|
|
1231
1231
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/axelar/images/wbtc.png'
|
|
1232
|
-
}]
|
|
1233
|
-
coingeckoId: 'axlwbtc'
|
|
1232
|
+
}]
|
|
1234
1233
|
},
|
|
1235
1234
|
{
|
|
1236
1235
|
description: 'IBC Axelar weth-wei through axelar-dojo-1 transfer/channel-2',
|
|
@@ -396,8 +396,7 @@ const info = {
|
|
|
396
396
|
logoURIs: {
|
|
397
397
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png',
|
|
398
398
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg'
|
|
399
|
-
}
|
|
400
|
-
coingeckoId: 'axlwbtc'
|
|
399
|
+
}
|
|
401
400
|
},
|
|
402
401
|
{
|
|
403
402
|
description: 'AKT transferred from the Osmosis mainnet that is supported on the Nolus chain',
|
|
@@ -208,8 +208,7 @@ const info = {
|
|
|
208
208
|
},
|
|
209
209
|
png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.png',
|
|
210
210
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/wbtc.svg'
|
|
211
|
-
}]
|
|
212
|
-
coingeckoId: 'axlwbtc'
|
|
211
|
+
}]
|
|
213
212
|
},
|
|
214
213
|
{
|
|
215
214
|
description: 'Tether\'s USD stablecoin on Axelar',
|
|
@@ -21605,25 +21604,28 @@ const info = {
|
|
|
21605
21604
|
{
|
|
21606
21605
|
description: 'The native token of Hippo Protocol.',
|
|
21607
21606
|
denomUnits: [{
|
|
21608
|
-
denom: 'ibc/
|
|
21607
|
+
denom: 'ibc/24C3429B835A84801EFEFC28C8CBDF787C4067D971CB6E510BB525FA462CCE1C',
|
|
21609
21608
|
exponent: 0,
|
|
21610
21609
|
aliases: ['ahp']
|
|
21610
|
+
}, {
|
|
21611
|
+
denom: 'hp',
|
|
21612
|
+
exponent: 18
|
|
21611
21613
|
}],
|
|
21612
21614
|
typeAsset: 'ics20',
|
|
21613
|
-
base: 'ibc/
|
|
21615
|
+
base: 'ibc/24C3429B835A84801EFEFC28C8CBDF787C4067D971CB6E510BB525FA462CCE1C',
|
|
21614
21616
|
name: 'Hippo Protocol',
|
|
21615
|
-
display: '
|
|
21617
|
+
display: 'hp',
|
|
21616
21618
|
symbol: 'HP',
|
|
21617
21619
|
traces: [{
|
|
21618
21620
|
type: 'ibc',
|
|
21619
21621
|
counterparty: {
|
|
21620
21622
|
chainName: 'hippoprotocol',
|
|
21621
21623
|
baseDenom: 'ahp',
|
|
21622
|
-
channelId: 'channel-
|
|
21624
|
+
channelId: 'channel-1'
|
|
21623
21625
|
},
|
|
21624
21626
|
chain: {
|
|
21625
|
-
channelId: 'channel-
|
|
21626
|
-
path: 'transfer/channel-
|
|
21627
|
+
channelId: 'channel-110277',
|
|
21628
|
+
path: 'transfer/channel-110277/ahp'
|
|
21627
21629
|
}
|
|
21628
21630
|
}],
|
|
21629
21631
|
logoURIs: {
|
|
@@ -2204,22 +2204,22 @@ const info = [
|
|
|
2204
2204
|
chain1: {
|
|
2205
2205
|
chainName: 'hippoprotocol',
|
|
2206
2206
|
chainId: 'hippo-protocol-1',
|
|
2207
|
-
clientId: '07-tendermint-
|
|
2208
|
-
connectionId: 'connection-
|
|
2207
|
+
clientId: '07-tendermint-1',
|
|
2208
|
+
connectionId: 'connection-2'
|
|
2209
2209
|
},
|
|
2210
2210
|
chain2: {
|
|
2211
2211
|
chainName: 'osmosis',
|
|
2212
2212
|
chainId: 'osmosis-1',
|
|
2213
|
-
clientId: '07-tendermint-
|
|
2214
|
-
connectionId: 'connection-
|
|
2213
|
+
clientId: '07-tendermint-3711',
|
|
2214
|
+
connectionId: 'connection-11064'
|
|
2215
2215
|
},
|
|
2216
2216
|
channels: [{
|
|
2217
2217
|
chain1: {
|
|
2218
|
-
channelId: 'channel-
|
|
2218
|
+
channelId: 'channel-1',
|
|
2219
2219
|
portId: 'transfer'
|
|
2220
2220
|
},
|
|
2221
2221
|
chain2: {
|
|
2222
|
-
channelId: 'channel-
|
|
2222
|
+
channelId: 'channel-110277',
|
|
2223
2223
|
portId: 'transfer'
|
|
2224
2224
|
},
|
|
2225
2225
|
ordering: 'unordered',
|
|
@@ -5533,6 +5533,37 @@ const info = [
|
|
|
5533
5533
|
}
|
|
5534
5534
|
}]
|
|
5535
5535
|
},
|
|
5536
|
+
{
|
|
5537
|
+
$schema: '../ibc_data.schema.json',
|
|
5538
|
+
chain1: {
|
|
5539
|
+
chainName: 'osmosis',
|
|
5540
|
+
chainId: 'osmosis-1',
|
|
5541
|
+
clientId: '07-tendermint-3712',
|
|
5542
|
+
connectionId: 'connection-11065'
|
|
5543
|
+
},
|
|
5544
|
+
chain2: {
|
|
5545
|
+
chainName: 'turkchain',
|
|
5546
|
+
chainId: '1919',
|
|
5547
|
+
clientId: '07-tendermint-0',
|
|
5548
|
+
connectionId: 'connection-2'
|
|
5549
|
+
},
|
|
5550
|
+
channels: [{
|
|
5551
|
+
chain1: {
|
|
5552
|
+
channelId: 'channel-110319',
|
|
5553
|
+
portId: 'transfer'
|
|
5554
|
+
},
|
|
5555
|
+
chain2: {
|
|
5556
|
+
channelId: 'channel-1',
|
|
5557
|
+
portId: 'transfer'
|
|
5558
|
+
},
|
|
5559
|
+
ordering: 'unordered',
|
|
5560
|
+
version: 'ics20-1',
|
|
5561
|
+
tags: {
|
|
5562
|
+
preferred: true,
|
|
5563
|
+
status: 'ACTIVE'
|
|
5564
|
+
}
|
|
5565
|
+
}]
|
|
5566
|
+
},
|
|
5536
5567
|
{
|
|
5537
5568
|
$schema: '../ibc_data.schema.json',
|
|
5538
5569
|
chain1: {
|
package/mainnet/stoc/chain.js
CHANGED
|
@@ -74,7 +74,7 @@ const info = {
|
|
|
74
74
|
explorers: [{
|
|
75
75
|
kind: 'stochainscan',
|
|
76
76
|
url: 'https://stochainscan.io/en',
|
|
77
|
-
txPage: 'https://stochainscan.io/en/
|
|
77
|
+
txPage: 'https://stochainscan.io/en/tx/${txHash}',
|
|
78
78
|
accountPage: 'https://stochainscan.io/en/address/${accountAddress}'
|
|
79
79
|
}],
|
|
80
80
|
images: [{
|
|
@@ -0,0 +1,34 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
3
|
+
const info = [{
|
|
4
|
+
$schema: '../ibc_data.schema.json',
|
|
5
|
+
chain1: {
|
|
6
|
+
chainName: 'osmosis',
|
|
7
|
+
chainId: 'osmosis-1',
|
|
8
|
+
clientId: '07-tendermint-3712',
|
|
9
|
+
connectionId: 'connection-11065'
|
|
10
|
+
},
|
|
11
|
+
chain2: {
|
|
12
|
+
chainName: 'turkchain',
|
|
13
|
+
chainId: '1919',
|
|
14
|
+
clientId: '07-tendermint-0',
|
|
15
|
+
connectionId: 'connection-2'
|
|
16
|
+
},
|
|
17
|
+
channels: [{
|
|
18
|
+
chain1: {
|
|
19
|
+
channelId: 'channel-110319',
|
|
20
|
+
portId: 'transfer'
|
|
21
|
+
},
|
|
22
|
+
chain2: {
|
|
23
|
+
channelId: 'channel-1',
|
|
24
|
+
portId: 'transfer'
|
|
25
|
+
},
|
|
26
|
+
ordering: 'unordered',
|
|
27
|
+
version: 'ics20-1',
|
|
28
|
+
tags: {
|
|
29
|
+
preferred: true,
|
|
30
|
+
status: 'ACTIVE'
|
|
31
|
+
}
|
|
32
|
+
}]
|
|
33
|
+
}];
|
|
34
|
+
exports.default = info;
|
|
@@ -3,8 +3,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
|
3
3
|
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
4
4
|
};
|
|
5
5
|
Object.defineProperty(exports, "__esModule", { value: true });
|
|
6
|
-
exports.chain = exports.assetList = void 0;
|
|
6
|
+
exports.ibcData = exports.chain = exports.assetList = void 0;
|
|
7
7
|
const asset_list_1 = __importDefault(require("./asset-list"));
|
|
8
8
|
const chain_1 = __importDefault(require("./chain"));
|
|
9
|
+
const ibc_data_1 = __importDefault(require("./ibc-data"));
|
|
9
10
|
exports.assetList = asset_list_1.default;
|
|
10
11
|
exports.chain = chain_1.default;
|
|
12
|
+
exports.ibcData = ibc_data_1.default;
|
|
@@ -63,6 +63,37 @@ const info = [
|
|
|
63
63
|
}
|
|
64
64
|
}]
|
|
65
65
|
},
|
|
66
|
+
{
|
|
67
|
+
$schema: '../ibc_data.schema.json',
|
|
68
|
+
chain1: {
|
|
69
|
+
chainName: 'injective',
|
|
70
|
+
chainId: 'injective-1',
|
|
71
|
+
clientId: '07-tendermint-330',
|
|
72
|
+
connectionId: 'connection-335'
|
|
73
|
+
},
|
|
74
|
+
chain2: {
|
|
75
|
+
chainName: 'zigchain',
|
|
76
|
+
chainId: 'zigchain-1',
|
|
77
|
+
clientId: '07-tendermint-5',
|
|
78
|
+
connectionId: 'connection-5'
|
|
79
|
+
},
|
|
80
|
+
channels: [{
|
|
81
|
+
chain1: {
|
|
82
|
+
channelId: 'channel-456',
|
|
83
|
+
portId: 'transfer'
|
|
84
|
+
},
|
|
85
|
+
chain2: {
|
|
86
|
+
channelId: 'channel-12',
|
|
87
|
+
portId: 'transfer'
|
|
88
|
+
},
|
|
89
|
+
ordering: 'unordered',
|
|
90
|
+
version: 'ics20-1',
|
|
91
|
+
tags: {
|
|
92
|
+
status: 'ACTIVE',
|
|
93
|
+
preferred: true
|
|
94
|
+
}
|
|
95
|
+
}]
|
|
96
|
+
},
|
|
66
97
|
{
|
|
67
98
|
$schema: '../ibc_data.schema.json',
|
|
68
99
|
chain1: {
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "chain-registry",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.215",
|
|
4
4
|
"description": "Cosmos chain registry ⚛️",
|
|
5
5
|
"author": "Dan Lynch <pyramation@gmail.com>",
|
|
6
6
|
"homepage": "https://github.com/hyperweb-io/chain-registry/tree/master/packages/chain-registry#readme",
|
|
@@ -29,7 +29,7 @@
|
|
|
29
29
|
"test:watch": "jest --watch"
|
|
30
30
|
},
|
|
31
31
|
"dependencies": {
|
|
32
|
-
"@chain-registry/types": "^2.0.
|
|
32
|
+
"@chain-registry/types": "^2.0.215"
|
|
33
33
|
},
|
|
34
34
|
"keywords": [
|
|
35
35
|
"chain-registry",
|
|
@@ -39,5 +39,5 @@
|
|
|
39
39
|
"interchain",
|
|
40
40
|
"tokens"
|
|
41
41
|
],
|
|
42
|
-
"gitHead": "
|
|
42
|
+
"gitHead": "e2767394ef7a135b0c5ad4bf06f452370f1b8003"
|
|
43
43
|
}
|
|
@@ -8,19 +8,29 @@ const info = {
|
|
|
8
8
|
denomUnits: [{
|
|
9
9
|
denom: 'ahp',
|
|
10
10
|
exponent: 0
|
|
11
|
+
}, {
|
|
12
|
+
denom: 'hp',
|
|
13
|
+
exponent: 18
|
|
11
14
|
}],
|
|
12
15
|
typeAsset: 'sdk.coin',
|
|
13
16
|
base: 'ahp',
|
|
14
17
|
name: 'Hippo',
|
|
15
|
-
display: '
|
|
18
|
+
display: 'hp',
|
|
16
19
|
symbol: 'HP',
|
|
20
|
+
traces: [{
|
|
21
|
+
type: 'test-mintage',
|
|
22
|
+
counterparty: {
|
|
23
|
+
chainName: 'hippoprotocol',
|
|
24
|
+
baseDenom: 'ahp'
|
|
25
|
+
},
|
|
26
|
+
provider: 'Hippo Protocol'
|
|
27
|
+
}],
|
|
17
28
|
logoURIs: {
|
|
18
29
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/hippoprotocol/images/logo.svg'
|
|
19
30
|
},
|
|
20
31
|
images: [{
|
|
21
32
|
svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/hippoprotocol/images/logo.svg'
|
|
22
33
|
}],
|
|
23
|
-
coingeckoId: 'hippo-protocol',
|
|
24
34
|
socials: {
|
|
25
35
|
website: 'https://hippoprotocol.ai/',
|
|
26
36
|
x: 'https://x.com/Hippo_Protocol'
|
|
@@ -8,7 +8,7 @@ const info = {
|
|
|
8
8
|
website: 'https://www.stochain.io/',
|
|
9
9
|
prettyName: 'STO Chain Testnet',
|
|
10
10
|
chainType: 'cosmos',
|
|
11
|
-
chainId: '
|
|
11
|
+
chainId: 'tstoc_1999-1',
|
|
12
12
|
bech32Prefix: 'stoc',
|
|
13
13
|
daemonName: 'stocd',
|
|
14
14
|
nodeHome: '$HOME/.stoc',
|
|
@@ -69,7 +69,7 @@ const info = {
|
|
|
69
69
|
explorers: [{
|
|
70
70
|
kind: 'stochainscan',
|
|
71
71
|
url: 'https://stochainscan.io/en',
|
|
72
|
-
txPage: 'https://stochainscan.io/en/
|
|
72
|
+
txPage: 'https://stochainscan.io/en/tx/${txHash}',
|
|
73
73
|
accountPage: 'https://stochainscan.io/en/address/${accountAddress}'
|
|
74
74
|
}],
|
|
75
75
|
images: [{
|