chain-registry 2.0.56 → 2.0.58

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 (70) hide show
  1. package/esm/mainnet/asset-lists.js +2 -0
  2. package/esm/mainnet/atomone/chain.js +18 -0
  3. package/esm/mainnet/chain4energy/chain.js +18 -0
  4. package/esm/mainnet/chains.js +2 -0
  5. package/esm/mainnet/doravota/chain.js +17 -0
  6. package/esm/mainnet/gonka/asset-list.js +38 -0
  7. package/esm/mainnet/gonka/chain.js +154 -0
  8. package/esm/{testnet/mantrachaintestnet → mainnet/gonka}/index.js +0 -2
  9. package/esm/mainnet/ibc-data.js +2 -0
  10. package/esm/mainnet/lumera/asset-list.js +43 -0
  11. package/esm/mainnet/lumera/chain.js +4 -4
  12. package/esm/mainnet/lumera/ibc-data.js +31 -0
  13. package/esm/mainnet/lumera/index.js +2 -0
  14. package/esm/mainnet/neutron/asset-list.js +22 -0
  15. package/esm/mainnet/osmosis/ibc-data.js +30 -0
  16. package/esm/mainnet/terra/asset-list.js +26 -0
  17. package/esm/mainnet/terra/chain.js +25 -41
  18. package/esm/mainnet/umee/chain.js +4 -9
  19. package/esm/testnet/asset-lists.js +0 -2
  20. package/esm/testnet/chains.js +0 -2
  21. package/esm/testnet/ibc-data.js +2 -2
  22. package/esm/testnet/lumeratestnet/asset-list.js +43 -0
  23. package/esm/testnet/lumeratestnet/chain.js +3 -3
  24. package/esm/testnet/lumeratestnet/ibc-data.js +31 -0
  25. package/esm/testnet/lumeratestnet/index.js +2 -0
  26. package/esm/testnet/mantrachaintestnet2/chain.js +20 -4
  27. package/esm/testnet/osmosistestnet/ibc-data.js +30 -0
  28. package/esm/testnet/xplatestnet/chain.js +2 -2
  29. package/mainnet/asset-lists.js +2 -0
  30. package/mainnet/atomone/chain.js +18 -0
  31. package/mainnet/chain4energy/chain.js +18 -0
  32. package/mainnet/chains.js +2 -0
  33. package/mainnet/doravota/chain.js +17 -0
  34. package/mainnet/gonka/asset-list.js +40 -0
  35. package/mainnet/gonka/chain.js +156 -0
  36. package/{testnet/mantrachaintestnet → mainnet/gonka}/index.d.ts +0 -1
  37. package/{testnet/mantrachaintestnet → mainnet/gonka}/index.js +1 -3
  38. package/mainnet/ibc-data.js +2 -0
  39. package/mainnet/lumera/asset-list.js +43 -0
  40. package/mainnet/lumera/chain.js +4 -4
  41. package/mainnet/lumera/ibc-data.js +33 -0
  42. package/mainnet/lumera/index.d.ts +1 -0
  43. package/mainnet/lumera/index.js +3 -1
  44. package/mainnet/neutron/asset-list.js +22 -0
  45. package/mainnet/osmosis/ibc-data.js +30 -0
  46. package/mainnet/terra/asset-list.js +26 -0
  47. package/mainnet/terra/chain.js +25 -41
  48. package/mainnet/umee/chain.js +4 -9
  49. package/package.json +3 -3
  50. package/testnet/asset-lists.js +0 -2
  51. package/testnet/chains.js +0 -2
  52. package/testnet/ibc-data.js +2 -2
  53. package/testnet/lumeratestnet/asset-list.js +43 -0
  54. package/testnet/lumeratestnet/chain.js +3 -3
  55. package/testnet/lumeratestnet/ibc-data.d.ts +3 -0
  56. package/testnet/lumeratestnet/ibc-data.js +33 -0
  57. package/testnet/lumeratestnet/index.d.ts +1 -0
  58. package/testnet/lumeratestnet/index.js +3 -1
  59. package/testnet/mantrachaintestnet2/chain.js +20 -4
  60. package/testnet/osmosistestnet/ibc-data.js +30 -0
  61. package/testnet/xplatestnet/chain.js +2 -2
  62. package/esm/testnet/mantrachaintestnet/asset-list.js +0 -48
  63. package/esm/testnet/mantrachaintestnet/chain.js +0 -81
  64. package/esm/testnet/mantrachaintestnet/ibc-data.js +0 -90
  65. package/testnet/mantrachaintestnet/asset-list.js +0 -50
  66. package/testnet/mantrachaintestnet/chain.js +0 -83
  67. package/testnet/mantrachaintestnet/ibc-data.js +0 -92
  68. /package/{testnet/mantrachaintestnet → mainnet/gonka}/asset-list.d.ts +0 -0
  69. /package/{testnet/mantrachaintestnet → mainnet/gonka}/chain.d.ts +0 -0
  70. /package/{testnet/mantrachaintestnet → mainnet/lumera}/ibc-data.d.ts +0 -0
@@ -76,6 +76,7 @@ import * as _gateway from './gateway';
76
76
  import * as _genesisl1 from './genesisl1';
77
77
  import * as _ggezchain from './ggezchain';
78
78
  import * as _gitopia from './gitopia';
79
+ import * as _gonka from './gonka';
79
80
  import * as _govgen from './govgen';
80
81
  import * as _gravitybridge from './gravitybridge';
81
82
  import * as _haqq from './haqq';
@@ -290,6 +291,7 @@ const assetList = [
290
291
  _genesisl1.assetList,
291
292
  _ggezchain.assetList,
292
293
  _gitopia.assetList,
294
+ _gonka.assetList,
293
295
  _govgen.assetList,
294
296
  _gravitybridge.assetList,
295
297
  _haqq.assetList,
@@ -150,6 +150,10 @@ const info = {
150
150
  {
151
151
  address: 'https://rpc-atomone.22node.xyz',
152
152
  provider: '22node'
153
+ },
154
+ {
155
+ address: 'https://m-atomone-rpc.ruangnode.com:443',
156
+ provider: 'ruangnode'
153
157
  }
154
158
  ],
155
159
  rest: [
@@ -240,6 +244,10 @@ const info = {
240
244
  {
241
245
  address: 'https://rest-atomone.22node.xyz',
242
246
  provider: '22node'
247
+ },
248
+ {
249
+ address: 'https://m-atomone-api.ruangnode.com:443',
250
+ provider: 'ruangnode'
243
251
  }
244
252
  ],
245
253
  grpc: [
@@ -302,6 +310,10 @@ const info = {
302
310
  {
303
311
  address: 'grpc-atomone.22node.xyz',
304
312
  provider: 'Shazoes'
313
+ },
314
+ {
315
+ address: 'm-atomone-grpc.ruangnode.com:12090',
316
+ provider: 'ruangnode'
305
317
  }
306
318
  ]
307
319
  },
@@ -377,6 +389,12 @@ const info = {
377
389
  url: 'https://explorer.chainroot.io/atomone',
378
390
  txPage: 'https://explorer.chainroot.io/atomone/transactions/${txHash}',
379
391
  accountPage: 'https://explorer.chainroot.io/atomone/accounts/${accountAddress}'
392
+ },
393
+ {
394
+ kind: 'Ruangnode Explorer',
395
+ url: 'https://explorer.ruangnode.com/atomone',
396
+ txPage: 'https://explorer.ruangnode.com/atomone/tx/${txHash}',
397
+ accountPage: 'https://explorer.ruangnode.com/atomone/account/${accountAddress}'
380
398
  }
381
399
  ],
382
400
  images: [{
@@ -158,6 +158,10 @@ const info = {
158
158
  {
159
159
  address: 'https://chain4energy_mainnet_rpc.chain.whenmoonwhenlambo.money',
160
160
  provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
161
+ },
162
+ {
163
+ address: 'https://rpc.polcrypto.pl:443',
164
+ provider: 'POLCRYPTO.PL'
161
165
  }
162
166
  ],
163
167
  rest: [
@@ -264,6 +268,10 @@ const info = {
264
268
  {
265
269
  address: 'https://chain4energy_mainnet_api.chain.whenmoonwhenlambo.money',
266
270
  provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
271
+ },
272
+ {
273
+ address: 'https://rest.polcrypto.pl:443',
274
+ provider: 'POLCRYPTO.PL'
267
275
  }
268
276
  ],
269
277
  grpc: [
@@ -366,6 +374,10 @@ const info = {
366
374
  {
367
375
  address: 'http://207.180.208.47:46657',
368
376
  provider: 'NakoTurk'
377
+ },
378
+ {
379
+ address: 'grpc.polcrypto.pl:443',
380
+ provider: 'POLCRYPTO.PL'
369
381
  }
370
382
  ]
371
383
  },
@@ -452,6 +464,12 @@ const info = {
452
464
  url: 'https://explorer.whenmoonwhenlambo.money/chain4energy',
453
465
  txPage: 'https://explorer.whenmoonwhenlambo.money/chain4energy/tx/${txHash}',
454
466
  accountPage: 'https://explorer.whenmoonwhenlambo.money/chain4energy/account/${accountAddress}'
467
+ },
468
+ {
469
+ kind: 'POLCRYPTO.PL',
470
+ url: 'https://explorer.polcrypto.pl',
471
+ txPage: 'https://explorer.polcrypto.pl/tx/${txHash}',
472
+ accountPage: 'https://explorer.polcrypto.pl/account/${accountAddress}'
455
473
  }
456
474
  ],
457
475
  images: [{
@@ -76,6 +76,7 @@ import * as _gateway from './gateway';
76
76
  import * as _genesisl1 from './genesisl1';
77
77
  import * as _ggezchain from './ggezchain';
78
78
  import * as _gitopia from './gitopia';
79
+ import * as _gonka from './gonka';
79
80
  import * as _govgen from './govgen';
80
81
  import * as _gravitybridge from './gravitybridge';
81
82
  import * as _haqq from './haqq';
@@ -290,6 +291,7 @@ const chains = [
290
291
  _genesisl1.chain,
291
292
  _ggezchain.chain,
292
293
  _gitopia.chain,
294
+ _gonka.chain,
293
295
  _govgen.chain,
294
296
  _gravitybridge.chain,
295
297
  _haqq.chain,
@@ -50,6 +50,10 @@ const info = {
50
50
  {
51
51
  address: 'https://doravota-mainnet-rpc.itrocket.net:443',
52
52
  provider: 'ITRocket'
53
+ },
54
+ {
55
+ address: 'https://m-dora-rpc.ruangnode.com:443',
56
+ provider: 'ruangnode'
53
57
  }
54
58
  ],
55
59
  rest: [
@@ -68,6 +72,10 @@ const info = {
68
72
  {
69
73
  address: 'https://doravota-mainnet-api.itrocket.net',
70
74
  provider: 'ITRocket'
75
+ },
76
+ {
77
+ address: 'https://m-dora-api.ruangnode.com',
78
+ provider: 'ruangnode'
71
79
  }
72
80
  ],
73
81
  grpc: [
@@ -82,6 +90,10 @@ const info = {
82
90
  {
83
91
  address: 'doravota-mainnet-grpc.itrocket.net:443',
84
92
  provider: 'ITRocket'
93
+ },
94
+ {
95
+ address: 'm-dora-grpc.ruangnode.com:30090',
96
+ provider: 'ruangnode'
85
97
  }
86
98
  ]
87
99
  },
@@ -123,6 +135,11 @@ const info = {
123
135
  url: 'https://dora.valopers.com/',
124
136
  txPage: 'https://dora.valopers.com/transactions/${txHash}',
125
137
  accountPage: 'https://dora.valopers.com/account/${accountAddress}'
138
+ },
139
+ {
140
+ kind: 'Ruangnode Explorers',
141
+ url: 'https://explorer.ruangnode.com/dora/staking',
142
+ txPage: 'https://explorer.ruangnode.com/dora/tx/${txHash}'
126
143
  }
127
144
  ]
128
145
  };
@@ -0,0 +1,38 @@
1
+ const info = {
2
+ $schema: '../assetlist.schema.json',
3
+ chainName: 'gonka',
4
+ assets: [{
5
+ description: 'Coins for the Gonka network.',
6
+ denomUnits: [
7
+ {
8
+ denom: 'ngonka',
9
+ exponent: 0,
10
+ aliases: ['nanogonka']
11
+ },
12
+ {
13
+ denom: 'ugonka',
14
+ exponent: 3,
15
+ aliases: ['microgonka']
16
+ },
17
+ {
18
+ denom: 'mgonka',
19
+ exponent: 6,
20
+ aliases: ['milligonka']
21
+ },
22
+ {
23
+ denom: 'gonka',
24
+ exponent: 9
25
+ }
26
+ ],
27
+ base: 'ngonka',
28
+ name: 'Gonka',
29
+ display: 'gonka',
30
+ symbol: 'GNK',
31
+ typeAsset: 'sdk.coin',
32
+ images: [{
33
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gonka/images/gonka_logo.png',
34
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gonka/images/gonka_logo.svg'
35
+ }]
36
+ }]
37
+ };
38
+ export default info;
@@ -0,0 +1,154 @@
1
+ const info = {
2
+ $schema: '../chain.schema.json',
3
+ chainName: 'gonka',
4
+ status: 'live',
5
+ networkType: 'mainnet',
6
+ prettyName: 'Gonka',
7
+ chainType: 'cosmos',
8
+ chainId: 'gonka-mainnet',
9
+ bech32Prefix: 'gonka',
10
+ daemonName: 'inferenced',
11
+ nodeHome: '$HOME/.inference',
12
+ keyAlgos: ['secp256k1'],
13
+ slip44: 1200,
14
+ fees: {
15
+ feeTokens: [{
16
+ denom: 'ngonka',
17
+ fixedMinGasPrice: 0,
18
+ lowGasPrice: 0,
19
+ averageGasPrice: 0,
20
+ highGasPrice: 0
21
+ }]
22
+ },
23
+ staking: {
24
+ stakingTokens: [{
25
+ denom: 'ngonka'
26
+ }]
27
+ },
28
+ codebase: {
29
+ gitRepo: 'https://github.com/gonka-ai/gonka',
30
+ recommendedVersion: 'v0.2.0',
31
+ genesis: {
32
+ genesisUrl: 'https://github.com/gonka-ai/gonka/blob/main/genesis/genesis.json'
33
+ }
34
+ },
35
+ images: [{
36
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gonka/images/gonka_logo.svg',
37
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gonka/images/gonka_logo.png',
38
+ theme: {
39
+ circle: true
40
+ }
41
+ }],
42
+ logoURIs: {
43
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gonka/images/gonka_logo.svg',
44
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gonka/images/gonka_logo.png'
45
+ },
46
+ description: 'Gonka is a decentralized AI infrastructure designed to optimize computational power for AI model training and inference, offering an alternative to monopolistic, high-cost, centralized cloud providers. As AI models become increasingly complex, their computational demands surge, presenting significant challenges for developers and businesses that rely on costly, centralized resources.',
47
+ apis: {
48
+ rpc: [
49
+ {
50
+ address: 'http://47.236.19.22:18000/chain-rpc/',
51
+ provider: '6block'
52
+ },
53
+ {
54
+ address: 'http://gonka.spv.re:8000/chain-rpc/',
55
+ provider: 'Hyperfusion'
56
+ },
57
+ {
58
+ address: 'http://185.216.21.98:8000/chain-rpc/',
59
+ provider: 'HardYaka'
60
+ },
61
+ {
62
+ address: 'http://93.119.168.58:8000/chain-rpc/',
63
+ provider: 'GCore'
64
+ },
65
+ {
66
+ address: 'http:// :8000/chain-rpc/',
67
+ provider: 'PS on Nebius'
68
+ }
69
+ ],
70
+ rest: [
71
+ {
72
+ address: 'http://47.236.19.22:18000/chain-api/',
73
+ provider: '6block'
74
+ },
75
+ {
76
+ address: 'http://gonka.spv.re:8000/chain-api/',
77
+ provider: 'Hyperfusion'
78
+ },
79
+ {
80
+ address: 'http://185.216.21.98:8000/chain-api/',
81
+ provider: 'HardYaka'
82
+ },
83
+ {
84
+ address: 'http://93.119.168.58:8000/chain-api/',
85
+ provider: 'GCore'
86
+ },
87
+ {
88
+ address: 'http://node1.gonka.ai:8000/chain-api/',
89
+ provider: 'PS on Nebius'
90
+ }
91
+ ],
92
+ grpc: [
93
+ {
94
+ address: 'http://47.236.19.22:18000/chain-grpc/',
95
+ provider: '6block'
96
+ },
97
+ {
98
+ address: 'http://gonka.spv.re:8000/chain-grpc/',
99
+ provider: 'Hyperfusion'
100
+ },
101
+ {
102
+ address: 'http://185.216.21.98:8000/chain-grpc/',
103
+ provider: 'HardYaka'
104
+ },
105
+ {
106
+ address: 'http://93.119.168.58:8000/chain-grpc/',
107
+ provider: 'GCore'
108
+ },
109
+ {
110
+ address: 'http://node1.gonka.ai:8000/chain-grpc/',
111
+ provider: 'PS on Nebius'
112
+ }
113
+ ]
114
+ },
115
+ explorers: [
116
+ {
117
+ kind: 'ping.pub',
118
+ url: 'http://47.236.19.22:18000/dashboard',
119
+ txPage: 'http://47.236.19.22:18000/dashboard/gonka/txs/${txHash}',
120
+ accountPage: 'http://47.236.19.22:18000/dashboard/gonka/account/${accountAddress}'
121
+ },
122
+ {
123
+ kind: 'ping.pub',
124
+ url: 'http://gonka.spv.re:8000/dashboard',
125
+ txPage: 'http://gonka.spv.re:8000/dashboard/gonka/txs/${txHash}',
126
+ accountPage: 'http://gonka.spv.re:8000/dashboard/gonka/account/${accountAddress}'
127
+ },
128
+ {
129
+ kind: 'ping.pub',
130
+ url: 'http://185.216.21.98:8000/dashboard',
131
+ txPage: 'http://185.216.21.98:8000/dashboard/gonka/txs/${txHash}',
132
+ accountPage: 'http://185.216.21.98:8000/dashboard/gonka/account/${accountAddress}'
133
+ },
134
+ {
135
+ kind: 'ping.pub',
136
+ url: 'http://93.119.168.58:8000/dashboard',
137
+ txPage: 'http://93.119.168.58:8000/dashboard/gonka/txs/${txHash}',
138
+ accountPage: 'http://93.119.168.58:8000/dashboard/gonka/account/${accountAddress}'
139
+ },
140
+ {
141
+ kind: 'ping.pub',
142
+ url: 'http://node1.gonka.ai:8000/dashboard',
143
+ txPage: 'http://node1.gonka.ai:8000/dashboard/gonka/txs/${txHash}',
144
+ accountPage: 'http://node1.gonka.ai:8000/dashboard/gonka/account/${accountAddress}'
145
+ }
146
+ ],
147
+ keywords: [
148
+ 'gonka',
149
+ 'inference',
150
+ 'training',
151
+ 'compute'
152
+ ]
153
+ };
154
+ export default info;
@@ -1,6 +1,4 @@
1
1
  import _assetList from './asset-list';
2
2
  import _chain from './chain';
3
- import _ibcData from './ibc-data';
4
3
  export const assetList = _assetList;
5
4
  export const chain = _chain;
6
- export const ibcData = _ibcData;
@@ -85,6 +85,7 @@ import * as _lava from './lava';
85
85
  import * as _likecoin from './likecoin';
86
86
  import * as _lombardledger from './lombardledger';
87
87
  import * as _lorenzo from './lorenzo';
88
+ import * as _lumera from './lumera';
88
89
  import * as _lumnetwork from './lumnetwork';
89
90
  import * as _mande from './mande';
90
91
  import * as _manifest from './manifest';
@@ -252,6 +253,7 @@ const ibcData = [
252
253
  ..._likecoin.ibcData,
253
254
  ..._lombardledger.ibcData,
254
255
  ..._lorenzo.ibcData,
256
+ ..._lumera.ibcData,
255
257
  ..._lumnetwork.ibcData,
256
258
  ..._mande.ibcData,
257
259
  ..._manifest.ibcData,
@@ -28,6 +28,49 @@ const info = {
28
28
  telegram: 'https://t.me/lumeraprotocol',
29
29
  website: 'https://lumera.io'
30
30
  }
31
+ }, {
32
+ denomUnits: [{
33
+ denom: 'ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518',
34
+ exponent: 0,
35
+ aliases: ['uosmo']
36
+ }, {
37
+ denom: 'osmo',
38
+ exponent: 6
39
+ }],
40
+ typeAsset: 'ics20',
41
+ base: 'ibc/ED07A3391A112B175915CD8FAF43A2DA8E4790EDE12566649D0C2F97716B8518',
42
+ name: 'Osmosis OSMO Token',
43
+ display: 'osmo',
44
+ symbol: 'OSMO',
45
+ traces: [{
46
+ type: 'ibc',
47
+ counterparty: {
48
+ chainName: 'osmosis',
49
+ baseDenom: 'uosmo',
50
+ channelId: 'channel-106313'
51
+ },
52
+ chain: {
53
+ channelId: 'channel-0',
54
+ path: 'transfer/channel-0/uosmo'
55
+ }
56
+ }],
57
+ images: [{
58
+ imageSync: {
59
+ chainName: 'osmosis',
60
+ baseDenom: 'uosmo'
61
+ },
62
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
63
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
64
+ }],
65
+ logoURIs: {
66
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png',
67
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg'
68
+ },
69
+ keywords: [
70
+ 'dex',
71
+ 'ibc',
72
+ 'osmosis'
73
+ ]
31
74
  }]
32
75
  };
33
76
  export default info;
@@ -36,18 +36,18 @@ const info = {
36
36
  },
37
37
  codebase: {
38
38
  gitRepo: 'https://github.com/LumeraProtocol/lumera',
39
- tag: 'v1.5.0',
40
- recommendedVersion: 'v1.5.0',
39
+ tag: 'v1.6.1',
40
+ recommendedVersion: 'v1.6.1',
41
41
  language: {
42
42
  type: 'go',
43
43
  version: 'v1.24'
44
44
  },
45
45
  binaries: {
46
- "linux/amd64": 'https://github.com/LumeraProtocol/lumera/releases/download/v1.5.0/lumera_v1.5.0_linux_amd64.tar.gz?checksum=sha256:3d33c600ad35b94c72acf4ce81247f6171b79169f5b84a6e415df1ec30d690dc'
46
+ "linux/amd64": 'https://github.com/LumeraProtocol/lumera/releases/download/v1.6.1/lumera_v1.6.1_linux_amd64.tar.gz?checksum=sha256:3d33c600ad35b94c72acf4ce81247f6171b79169f5b84a6e415df1ec30d690dc'
47
47
  },
48
48
  sdk: {
49
49
  type: 'cosmos',
50
- version: 'v0.50.13'
50
+ version: 'v0.50.12'
51
51
  },
52
52
  consensus: {
53
53
  type: 'cometbft',
@@ -0,0 +1,31 @@
1
+ const info = [{
2
+ $schema: '../ibc_data.schema.json',
3
+ chain1: {
4
+ chainName: 'lumera',
5
+ clientId: '07-tendermint-1',
6
+ connectionId: 'connection-0'
7
+ },
8
+ chain2: {
9
+ chainName: 'osmosis',
10
+ clientId: '07-tendermint-3589',
11
+ connectionId: 'connection-10931'
12
+ },
13
+ channels: [{
14
+ chain1: {
15
+ channelId: 'channel-0',
16
+ portId: 'transfer'
17
+ },
18
+ chain2: {
19
+ channelId: 'channel-106313',
20
+ portId: 'transfer'
21
+ },
22
+ ordering: 'unordered',
23
+ version: 'ics20-1',
24
+ tags: {
25
+ status: 'live',
26
+ preferred: true,
27
+ dex: 'osmosis'
28
+ }
29
+ }]
30
+ }];
31
+ export default info;
@@ -1,4 +1,6 @@
1
1
  import _assetList from './asset-list';
2
2
  import _chain from './chain';
3
+ import _ibcData from './ibc-data';
3
4
  export const assetList = _assetList;
4
5
  export const chain = _chain;
6
+ export const ibcData = _ibcData;
@@ -1640,6 +1640,28 @@ const info = {
1640
1640
  website: 'https://TabCo.in'
1641
1641
  },
1642
1642
  typeAsset: 'sdk.coin'
1643
+ },
1644
+ {
1645
+ description: 'EHO is the native token powering Cognitive Echo — a VR + AI ecosystem where thoughts become visual, insights resonate, and cognitive echo transforms ideas into reality. The infinity symbol (∞) represents infinite resonance and community-driven growth.',
1646
+ denomUnits: [{
1647
+ denom: 'cw20:neutron15e56mauwr8n2cma56f78cvtnd9c2pr0y7f4mffdwda7z49sksyvqh2hke2',
1648
+ exponent: 0
1649
+ }, {
1650
+ denom: 'eho',
1651
+ exponent: 6
1652
+ }],
1653
+ typeAsset: 'cw20',
1654
+ address: 'neutron15e56mauwr8n2cma56f78cvtnd9c2pr0y7f4mffdwda7z49sksyvqh2hke2',
1655
+ base: 'cw20:neutron15e56mauwr8n2cma56f78cvtnd9c2pr0y7f4mffdwda7z49sksyvqh2hke2',
1656
+ name: 'Cognitive Echo',
1657
+ display: 'eho',
1658
+ symbol: 'EHO',
1659
+ logoURIs: {
1660
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/eho.svg'
1661
+ },
1662
+ images: [{
1663
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/eho.svg'
1664
+ }]
1643
1665
  }
1644
1666
  ]
1645
1667
  };
@@ -2648,6 +2648,36 @@ const info = [
2648
2648
  }
2649
2649
  }]
2650
2650
  },
2651
+ {
2652
+ $schema: '../ibc_data.schema.json',
2653
+ chain1: {
2654
+ chainName: 'lumera',
2655
+ clientId: '07-tendermint-1',
2656
+ connectionId: 'connection-0'
2657
+ },
2658
+ chain2: {
2659
+ chainName: 'osmosis',
2660
+ clientId: '07-tendermint-3589',
2661
+ connectionId: 'connection-10931'
2662
+ },
2663
+ channels: [{
2664
+ chain1: {
2665
+ channelId: 'channel-0',
2666
+ portId: 'transfer'
2667
+ },
2668
+ chain2: {
2669
+ channelId: 'channel-106313',
2670
+ portId: 'transfer'
2671
+ },
2672
+ ordering: 'unordered',
2673
+ version: 'ics20-1',
2674
+ tags: {
2675
+ status: 'live',
2676
+ preferred: true,
2677
+ dex: 'osmosis'
2678
+ }
2679
+ }]
2680
+ },
2651
2681
  {
2652
2682
  $schema: '../ibc_data.schema.json',
2653
2683
  chain1: {
@@ -4845,6 +4845,32 @@ const info = {
4845
4845
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png',
4846
4846
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg'
4847
4847
  }]
4848
+ },
4849
+ {
4850
+ description: 'An eco-friendly token for sustainable projects and green initiatives on Terra Luna Classic',
4851
+ socials: {
4852
+ website: 'https://www.greenfriendlylabs.com/',
4853
+ twitter: 'https://x.com/GreenFrndLabs'
4854
+ },
4855
+ typeAsset: 'cw20',
4856
+ address: 'terra17hnu4prwa3varxrws0sy9hffkmqv8tfmfpldg4e9fq58flrmuz2qlhymr5',
4857
+ denomUnits: [{
4858
+ denom: 'cw20:terra17hnu4prwa3varxrws0sy9hffkmqv8tfmfpldg4e9fq58flrmuz2qlhymr5',
4859
+ exponent: 0
4860
+ }, {
4861
+ denom: 'gft',
4862
+ exponent: 6
4863
+ }],
4864
+ base: 'cw20:terra17hnu4prwa3varxrws0sy9hffkmqv8tfmfpldg4e9fq58flrmuz2qlhymr5',
4865
+ name: 'Greenfriendly Token',
4866
+ display: 'gft',
4867
+ symbol: 'GFT',
4868
+ logoURIs: {
4869
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/greenfriendlylabs.png'
4870
+ },
4871
+ images: [{
4872
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/greenfriendlylabs.png'
4873
+ }]
4848
4874
  }
4849
4875
  ]
4850
4876
  };