chain-registry 2.0.56 → 2.0.57

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 (38) 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/mainnet/gonka/index.js +4 -0
  9. package/esm/mainnet/terra/asset-list.js +26 -0
  10. package/esm/mainnet/terra/chain.js +25 -41
  11. package/esm/testnet/ibc-data.js +2 -0
  12. package/esm/testnet/lumeratestnet/asset-list.js +43 -0
  13. package/esm/testnet/lumeratestnet/chain.js +3 -3
  14. package/esm/testnet/lumeratestnet/ibc-data.js +31 -0
  15. package/esm/testnet/lumeratestnet/index.js +2 -0
  16. package/esm/testnet/osmosistestnet/ibc-data.js +30 -0
  17. package/mainnet/asset-lists.js +2 -0
  18. package/mainnet/atomone/chain.js +18 -0
  19. package/mainnet/chain4energy/chain.js +18 -0
  20. package/mainnet/chains.js +2 -0
  21. package/mainnet/doravota/chain.js +17 -0
  22. package/mainnet/gonka/asset-list.d.ts +3 -0
  23. package/mainnet/gonka/asset-list.js +40 -0
  24. package/mainnet/gonka/chain.d.ts +3 -0
  25. package/mainnet/gonka/chain.js +156 -0
  26. package/mainnet/gonka/index.d.ts +2 -0
  27. package/mainnet/gonka/index.js +10 -0
  28. package/mainnet/terra/asset-list.js +26 -0
  29. package/mainnet/terra/chain.js +25 -41
  30. package/package.json +3 -3
  31. package/testnet/ibc-data.js +2 -0
  32. package/testnet/lumeratestnet/asset-list.js +43 -0
  33. package/testnet/lumeratestnet/chain.js +3 -3
  34. package/testnet/lumeratestnet/ibc-data.d.ts +3 -0
  35. package/testnet/lumeratestnet/ibc-data.js +33 -0
  36. package/testnet/lumeratestnet/index.d.ts +1 -0
  37. package/testnet/lumeratestnet/index.js +3 -1
  38. package/testnet/osmosistestnet/ibc-data.js +30 -0
@@ -698,6 +698,36 @@ const info = [
698
698
  }
699
699
  }]
700
700
  },
701
+ {
702
+ $schema: '../../ibc_data.schema.json',
703
+ chain1: {
704
+ chainName: 'lumeratestnet',
705
+ clientId: '07-tendermint-2',
706
+ connectionId: 'connection-1'
707
+ },
708
+ chain2: {
709
+ chainName: 'osmosistestnet',
710
+ clientId: '07-tendermint-4899',
711
+ connectionId: 'connection-4268'
712
+ },
713
+ channels: [{
714
+ chain1: {
715
+ channelId: 'channel-0',
716
+ portId: 'transfer'
717
+ },
718
+ chain2: {
719
+ channelId: 'channel-10884',
720
+ portId: 'transfer'
721
+ },
722
+ ordering: 'unordered',
723
+ version: 'ics20-1',
724
+ tags: {
725
+ status: 'live',
726
+ preferred: true,
727
+ dex: 'osmosis'
728
+ }
729
+ }]
730
+ },
701
731
  {
702
732
  $schema: '../../ibc_data.schema.json',
703
733
  chain1: {
@@ -101,6 +101,7 @@ const _gateway = __importStar(require("./gateway"));
101
101
  const _genesisl1 = __importStar(require("./genesisl1"));
102
102
  const _ggezchain = __importStar(require("./ggezchain"));
103
103
  const _gitopia = __importStar(require("./gitopia"));
104
+ const _gonka = __importStar(require("./gonka"));
104
105
  const _govgen = __importStar(require("./govgen"));
105
106
  const _gravitybridge = __importStar(require("./gravitybridge"));
106
107
  const _haqq = __importStar(require("./haqq"));
@@ -315,6 +316,7 @@ const assetList = [
315
316
  _genesisl1.assetList,
316
317
  _ggezchain.assetList,
317
318
  _gitopia.assetList,
319
+ _gonka.assetList,
318
320
  _govgen.assetList,
319
321
  _gravitybridge.assetList,
320
322
  _haqq.assetList,
@@ -152,6 +152,10 @@ const info = {
152
152
  {
153
153
  address: 'https://rpc-atomone.22node.xyz',
154
154
  provider: '22node'
155
+ },
156
+ {
157
+ address: 'https://m-atomone-rpc.ruangnode.com:443',
158
+ provider: 'ruangnode'
155
159
  }
156
160
  ],
157
161
  rest: [
@@ -242,6 +246,10 @@ const info = {
242
246
  {
243
247
  address: 'https://rest-atomone.22node.xyz',
244
248
  provider: '22node'
249
+ },
250
+ {
251
+ address: 'https://m-atomone-api.ruangnode.com:443',
252
+ provider: 'ruangnode'
245
253
  }
246
254
  ],
247
255
  grpc: [
@@ -304,6 +312,10 @@ const info = {
304
312
  {
305
313
  address: 'grpc-atomone.22node.xyz',
306
314
  provider: 'Shazoes'
315
+ },
316
+ {
317
+ address: 'm-atomone-grpc.ruangnode.com:12090',
318
+ provider: 'ruangnode'
307
319
  }
308
320
  ]
309
321
  },
@@ -379,6 +391,12 @@ const info = {
379
391
  url: 'https://explorer.chainroot.io/atomone',
380
392
  txPage: 'https://explorer.chainroot.io/atomone/transactions/${txHash}',
381
393
  accountPage: 'https://explorer.chainroot.io/atomone/accounts/${accountAddress}'
394
+ },
395
+ {
396
+ kind: 'Ruangnode Explorer',
397
+ url: 'https://explorer.ruangnode.com/atomone',
398
+ txPage: 'https://explorer.ruangnode.com/atomone/tx/${txHash}',
399
+ accountPage: 'https://explorer.ruangnode.com/atomone/account/${accountAddress}'
382
400
  }
383
401
  ],
384
402
  images: [{
@@ -160,6 +160,10 @@ const info = {
160
160
  {
161
161
  address: 'https://chain4energy_mainnet_rpc.chain.whenmoonwhenlambo.money',
162
162
  provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
163
+ },
164
+ {
165
+ address: 'https://rpc.polcrypto.pl:443',
166
+ provider: 'POLCRYPTO.PL'
163
167
  }
164
168
  ],
165
169
  rest: [
@@ -266,6 +270,10 @@ const info = {
266
270
  {
267
271
  address: 'https://chain4energy_mainnet_api.chain.whenmoonwhenlambo.money',
268
272
  provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
273
+ },
274
+ {
275
+ address: 'https://rest.polcrypto.pl:443',
276
+ provider: 'POLCRYPTO.PL'
269
277
  }
270
278
  ],
271
279
  grpc: [
@@ -368,6 +376,10 @@ const info = {
368
376
  {
369
377
  address: 'http://207.180.208.47:46657',
370
378
  provider: 'NakoTurk'
379
+ },
380
+ {
381
+ address: 'grpc.polcrypto.pl:443',
382
+ provider: 'POLCRYPTO.PL'
371
383
  }
372
384
  ]
373
385
  },
@@ -454,6 +466,12 @@ const info = {
454
466
  url: 'https://explorer.whenmoonwhenlambo.money/chain4energy',
455
467
  txPage: 'https://explorer.whenmoonwhenlambo.money/chain4energy/tx/${txHash}',
456
468
  accountPage: 'https://explorer.whenmoonwhenlambo.money/chain4energy/account/${accountAddress}'
469
+ },
470
+ {
471
+ kind: 'POLCRYPTO.PL',
472
+ url: 'https://explorer.polcrypto.pl',
473
+ txPage: 'https://explorer.polcrypto.pl/tx/${txHash}',
474
+ accountPage: 'https://explorer.polcrypto.pl/account/${accountAddress}'
457
475
  }
458
476
  ],
459
477
  images: [{
package/mainnet/chains.js CHANGED
@@ -101,6 +101,7 @@ const _gateway = __importStar(require("./gateway"));
101
101
  const _genesisl1 = __importStar(require("./genesisl1"));
102
102
  const _ggezchain = __importStar(require("./ggezchain"));
103
103
  const _gitopia = __importStar(require("./gitopia"));
104
+ const _gonka = __importStar(require("./gonka"));
104
105
  const _govgen = __importStar(require("./govgen"));
105
106
  const _gravitybridge = __importStar(require("./gravitybridge"));
106
107
  const _haqq = __importStar(require("./haqq"));
@@ -315,6 +316,7 @@ const chains = [
315
316
  _genesisl1.chain,
316
317
  _ggezchain.chain,
317
318
  _gitopia.chain,
319
+ _gonka.chain,
318
320
  _govgen.chain,
319
321
  _gravitybridge.chain,
320
322
  _haqq.chain,
@@ -52,6 +52,10 @@ const info = {
52
52
  {
53
53
  address: 'https://doravota-mainnet-rpc.itrocket.net:443',
54
54
  provider: 'ITRocket'
55
+ },
56
+ {
57
+ address: 'https://m-dora-rpc.ruangnode.com:443',
58
+ provider: 'ruangnode'
55
59
  }
56
60
  ],
57
61
  rest: [
@@ -70,6 +74,10 @@ const info = {
70
74
  {
71
75
  address: 'https://doravota-mainnet-api.itrocket.net',
72
76
  provider: 'ITRocket'
77
+ },
78
+ {
79
+ address: 'https://m-dora-api.ruangnode.com',
80
+ provider: 'ruangnode'
73
81
  }
74
82
  ],
75
83
  grpc: [
@@ -84,6 +92,10 @@ const info = {
84
92
  {
85
93
  address: 'doravota-mainnet-grpc.itrocket.net:443',
86
94
  provider: 'ITRocket'
95
+ },
96
+ {
97
+ address: 'm-dora-grpc.ruangnode.com:30090',
98
+ provider: 'ruangnode'
87
99
  }
88
100
  ]
89
101
  },
@@ -125,6 +137,11 @@ const info = {
125
137
  url: 'https://dora.valopers.com/',
126
138
  txPage: 'https://dora.valopers.com/transactions/${txHash}',
127
139
  accountPage: 'https://dora.valopers.com/account/${accountAddress}'
140
+ },
141
+ {
142
+ kind: 'Ruangnode Explorers',
143
+ url: 'https://explorer.ruangnode.com/dora/staking',
144
+ txPage: 'https://explorer.ruangnode.com/dora/tx/${txHash}'
128
145
  }
129
146
  ]
130
147
  };
@@ -0,0 +1,3 @@
1
+ import { AssetList } from '@chain-registry/types';
2
+ declare const info: AssetList;
3
+ export default info;
@@ -0,0 +1,40 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../assetlist.schema.json',
5
+ chainName: 'gonka',
6
+ assets: [{
7
+ description: 'Coins for the Gonka network.',
8
+ denomUnits: [
9
+ {
10
+ denom: 'ngonka',
11
+ exponent: 0,
12
+ aliases: ['nanogonka']
13
+ },
14
+ {
15
+ denom: 'ugonka',
16
+ exponent: 3,
17
+ aliases: ['microgonka']
18
+ },
19
+ {
20
+ denom: 'mgonka',
21
+ exponent: 6,
22
+ aliases: ['milligonka']
23
+ },
24
+ {
25
+ denom: 'gonka',
26
+ exponent: 9
27
+ }
28
+ ],
29
+ base: 'ngonka',
30
+ name: 'Gonka',
31
+ display: 'gonka',
32
+ symbol: 'GNK',
33
+ typeAsset: 'sdk.coin',
34
+ images: [{
35
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gonka/images/gonka_logo.png',
36
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gonka/images/gonka_logo.svg'
37
+ }]
38
+ }]
39
+ };
40
+ exports.default = info;
@@ -0,0 +1,3 @@
1
+ import { Chain } from '@chain-registry/types';
2
+ declare const info: Chain;
3
+ export default info;
@@ -0,0 +1,156 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../chain.schema.json',
5
+ chainName: 'gonka',
6
+ status: 'live',
7
+ networkType: 'mainnet',
8
+ prettyName: 'Gonka',
9
+ chainType: 'cosmos',
10
+ chainId: 'gonka-mainnet',
11
+ bech32Prefix: 'gonka',
12
+ daemonName: 'inferenced',
13
+ nodeHome: '$HOME/.inference',
14
+ keyAlgos: ['secp256k1'],
15
+ slip44: 1200,
16
+ fees: {
17
+ feeTokens: [{
18
+ denom: 'ngonka',
19
+ fixedMinGasPrice: 0,
20
+ lowGasPrice: 0,
21
+ averageGasPrice: 0,
22
+ highGasPrice: 0
23
+ }]
24
+ },
25
+ staking: {
26
+ stakingTokens: [{
27
+ denom: 'ngonka'
28
+ }]
29
+ },
30
+ codebase: {
31
+ gitRepo: 'https://github.com/gonka-ai/gonka',
32
+ recommendedVersion: 'v0.2.0',
33
+ genesis: {
34
+ genesisUrl: 'https://github.com/gonka-ai/gonka/blob/main/genesis/genesis.json'
35
+ }
36
+ },
37
+ images: [{
38
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gonka/images/gonka_logo.svg',
39
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gonka/images/gonka_logo.png',
40
+ theme: {
41
+ circle: true
42
+ }
43
+ }],
44
+ logoURIs: {
45
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gonka/images/gonka_logo.svg',
46
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gonka/images/gonka_logo.png'
47
+ },
48
+ 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.',
49
+ apis: {
50
+ rpc: [
51
+ {
52
+ address: 'http://47.236.19.22:18000/chain-rpc/',
53
+ provider: '6block'
54
+ },
55
+ {
56
+ address: 'http://gonka.spv.re:8000/chain-rpc/',
57
+ provider: 'Hyperfusion'
58
+ },
59
+ {
60
+ address: 'http://185.216.21.98:8000/chain-rpc/',
61
+ provider: 'HardYaka'
62
+ },
63
+ {
64
+ address: 'http://93.119.168.58:8000/chain-rpc/',
65
+ provider: 'GCore'
66
+ },
67
+ {
68
+ address: 'http:// :8000/chain-rpc/',
69
+ provider: 'PS on Nebius'
70
+ }
71
+ ],
72
+ rest: [
73
+ {
74
+ address: 'http://47.236.19.22:18000/chain-api/',
75
+ provider: '6block'
76
+ },
77
+ {
78
+ address: 'http://gonka.spv.re:8000/chain-api/',
79
+ provider: 'Hyperfusion'
80
+ },
81
+ {
82
+ address: 'http://185.216.21.98:8000/chain-api/',
83
+ provider: 'HardYaka'
84
+ },
85
+ {
86
+ address: 'http://93.119.168.58:8000/chain-api/',
87
+ provider: 'GCore'
88
+ },
89
+ {
90
+ address: 'http://node1.gonka.ai:8000/chain-api/',
91
+ provider: 'PS on Nebius'
92
+ }
93
+ ],
94
+ grpc: [
95
+ {
96
+ address: 'http://47.236.19.22:18000/chain-grpc/',
97
+ provider: '6block'
98
+ },
99
+ {
100
+ address: 'http://gonka.spv.re:8000/chain-grpc/',
101
+ provider: 'Hyperfusion'
102
+ },
103
+ {
104
+ address: 'http://185.216.21.98:8000/chain-grpc/',
105
+ provider: 'HardYaka'
106
+ },
107
+ {
108
+ address: 'http://93.119.168.58:8000/chain-grpc/',
109
+ provider: 'GCore'
110
+ },
111
+ {
112
+ address: 'http://node1.gonka.ai:8000/chain-grpc/',
113
+ provider: 'PS on Nebius'
114
+ }
115
+ ]
116
+ },
117
+ explorers: [
118
+ {
119
+ kind: 'ping.pub',
120
+ url: 'http://47.236.19.22:18000/dashboard',
121
+ txPage: 'http://47.236.19.22:18000/dashboard/gonka/txs/${txHash}',
122
+ accountPage: 'http://47.236.19.22:18000/dashboard/gonka/account/${accountAddress}'
123
+ },
124
+ {
125
+ kind: 'ping.pub',
126
+ url: 'http://gonka.spv.re:8000/dashboard',
127
+ txPage: 'http://gonka.spv.re:8000/dashboard/gonka/txs/${txHash}',
128
+ accountPage: 'http://gonka.spv.re:8000/dashboard/gonka/account/${accountAddress}'
129
+ },
130
+ {
131
+ kind: 'ping.pub',
132
+ url: 'http://185.216.21.98:8000/dashboard',
133
+ txPage: 'http://185.216.21.98:8000/dashboard/gonka/txs/${txHash}',
134
+ accountPage: 'http://185.216.21.98:8000/dashboard/gonka/account/${accountAddress}'
135
+ },
136
+ {
137
+ kind: 'ping.pub',
138
+ url: 'http://93.119.168.58:8000/dashboard',
139
+ txPage: 'http://93.119.168.58:8000/dashboard/gonka/txs/${txHash}',
140
+ accountPage: 'http://93.119.168.58:8000/dashboard/gonka/account/${accountAddress}'
141
+ },
142
+ {
143
+ kind: 'ping.pub',
144
+ url: 'http://node1.gonka.ai:8000/dashboard',
145
+ txPage: 'http://node1.gonka.ai:8000/dashboard/gonka/txs/${txHash}',
146
+ accountPage: 'http://node1.gonka.ai:8000/dashboard/gonka/account/${accountAddress}'
147
+ }
148
+ ],
149
+ keywords: [
150
+ 'gonka',
151
+ 'inference',
152
+ 'training',
153
+ 'compute'
154
+ ]
155
+ };
156
+ exports.default = info;
@@ -0,0 +1,2 @@
1
+ export declare const assetList: 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.assetList = void 0;
7
+ const asset_list_1 = __importDefault(require("./asset-list"));
8
+ const chain_1 = __importDefault(require("./chain"));
9
+ exports.assetList = asset_list_1.default;
10
+ exports.chain = chain_1.default;
@@ -4847,6 +4847,32 @@ const info = {
4847
4847
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.png',
4848
4848
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/noble/images/USDCoin.svg'
4849
4849
  }]
4850
+ },
4851
+ {
4852
+ description: 'An eco-friendly token for sustainable projects and green initiatives on Terra Luna Classic',
4853
+ socials: {
4854
+ website: 'https://www.greenfriendlylabs.com/',
4855
+ twitter: 'https://x.com/GreenFrndLabs'
4856
+ },
4857
+ typeAsset: 'cw20',
4858
+ address: 'terra17hnu4prwa3varxrws0sy9hffkmqv8tfmfpldg4e9fq58flrmuz2qlhymr5',
4859
+ denomUnits: [{
4860
+ denom: 'cw20:terra17hnu4prwa3varxrws0sy9hffkmqv8tfmfpldg4e9fq58flrmuz2qlhymr5',
4861
+ exponent: 0
4862
+ }, {
4863
+ denom: 'gft',
4864
+ exponent: 6
4865
+ }],
4866
+ base: 'cw20:terra17hnu4prwa3varxrws0sy9hffkmqv8tfmfpldg4e9fq58flrmuz2qlhymr5',
4867
+ name: 'Greenfriendly Token',
4868
+ display: 'gft',
4869
+ symbol: 'GFT',
4870
+ logoURIs: {
4871
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/greenfriendlylabs.png'
4872
+ },
4873
+ images: [{
4874
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra/images/greenfriendlylabs.png'
4875
+ }]
4850
4876
  }
4851
4877
  ]
4852
4878
  };
@@ -162,11 +162,11 @@ const info = {
162
162
  },
163
163
  codebase: {
164
164
  gitRepo: 'https://github.com/classic-terra/core',
165
- recommendedVersion: 'v2.1.1',
166
- compatibleVersions: ['v2.1.1'],
165
+ recommendedVersion: 'v3.5.0',
166
+ compatibleVersions: ['v3.5.0'],
167
167
  genesis: {
168
168
  name: '1.0.5',
169
- genesisUrl: 'https://tfl-columbus-5.s3.amazonaws.com/genesis.json'
169
+ genesisUrl: 'https://snapshots.hexxagon.io/cosmos/terra-classic/columbus-5/genesis.json'
170
170
  }
171
171
  },
172
172
  logoURIs: {
@@ -180,20 +180,16 @@ const info = {
180
180
  provider: 'Allnodes ⚡️ Nodes & Staking'
181
181
  },
182
182
  {
183
- address: 'https://rpc-terra-ia.cosmosia.notional.ventures/',
184
- provider: 'Notional'
183
+ address: 'https://rpc.terra-classic.hexxagon.io/',
184
+ provider: 'Hexxagon'
185
185
  },
186
186
  {
187
- address: 'https://terraclassic-mainnet-rpc.autostake.com:443',
188
- provider: 'AutoStake 🛡️ Slash Protected'
187
+ address: 'https://api-lunc-rpc.binodes.com',
188
+ provider: 'BInodes'
189
189
  },
190
190
  {
191
191
  address: 'https://terraclassic-rpc-server-01.stakely.io',
192
192
  provider: 'Stakely'
193
- },
194
- {
195
- address: 'https://api-lunc-rpc.binodes.com',
196
- provider: 'BInodes'
197
193
  }
198
194
  ],
199
195
  rest: [
@@ -202,17 +198,13 @@ const info = {
202
198
  provider: 'Allnodes ⚡️ Nodes & Staking'
203
199
  },
204
200
  {
205
- address: 'https://api-terra-ia.cosmosia.notional.ventures/',
206
- provider: 'Notional'
201
+ address: 'https://lcd.terra-classic.hexxagon.io/',
202
+ provider: 'Hexxagon'
207
203
  },
208
204
  {
209
205
  address: 'https://terraclassic-mainnet-lcd.autostake.com:443',
210
206
  provider: 'AutoStake 🛡️ Slash Protected'
211
207
  },
212
- {
213
- address: 'https://terraclassic-lcd-server-01.stakely.io',
214
- provider: 'Stakely'
215
- },
216
208
  {
217
209
  address: 'https://api-lunc-lcd.binodes.com',
218
210
  provider: 'BInodes'
@@ -220,21 +212,13 @@ const info = {
220
212
  ],
221
213
  grpc: [
222
214
  {
223
- address: 'grpc.terrarebels.net',
224
- provider: 'Terra Rebels'
215
+ address: 'grpc.terra-classic.hexxagon.io/',
216
+ provider: 'Hexxagon'
225
217
  },
226
218
  {
227
219
  address: 'terra-classic-grpc.publicnode.com:443',
228
220
  provider: 'Allnodes ⚡️ Nodes & Staking'
229
221
  },
230
- {
231
- address: 'grpc-terra-ia.cosmosia.notional.ventures:443',
232
- provider: 'Notional'
233
- },
234
- {
235
- address: 'terraclassic-mainnet-grpc.autostake.com:443',
236
- provider: 'AutoStake 🛡️ Slash Protected'
237
- },
238
222
  {
239
223
  address: 'api-lunc-grpc.binodes.com:443',
240
224
  provider: 'BInodes'
@@ -243,10 +227,16 @@ const info = {
243
227
  },
244
228
  explorers: [
245
229
  {
246
- kind: 'ezstaking',
247
- url: 'https://ezstaking.app/terra',
248
- txPage: 'https://ezstaking.app/terra/txs/${txHash}',
249
- accountPage: 'https://ezstaking.app/terra/account/${accountAddress}'
230
+ kind: 'hexxagon-finder',
231
+ url: 'https://finder.terra-classic.hexxagon.io/',
232
+ txPage: 'https://finder.terra-classic.hexxagon.io/mainnet/tx/${txHash}',
233
+ accountPage: 'https://finder.terra-classic.hexxagon.io/mainnet/address/${accountAddress}'
234
+ },
235
+ {
236
+ kind: 'hexxagon2-finder',
237
+ url: 'https://finder.terraclassic.community/',
238
+ txPage: 'https://finder.terraclassic.community/mainnet/tx/${txHash}',
239
+ accountPage: 'https://finder.terraclassic.community/mainnet/address/${accountAddress}'
250
240
  },
251
241
  {
252
242
  kind: 'ping.pub',
@@ -266,16 +256,10 @@ const info = {
266
256
  accountPage: 'https://staking-explorer.com/account.php?chain=terra&addr=${accountAddress}'
267
257
  },
268
258
  {
269
- kind: 'finder',
270
- url: 'https://finder.terra.money/classic',
271
- txPage: 'https://finder.terra.money/classic/tx/${txHash}',
272
- accountPage: 'https://finder.terra.money/classic/address/${accountAddress}'
273
- },
274
- {
275
- kind: 'finder',
276
- url: 'https://finder.terrarebels.net/classic',
277
- txPage: 'https://finder.terrarebels.net/classic/tx/${txHash}',
278
- accountPage: 'https://finder.terrarebels.net/classic/address/${accountAddress}'
259
+ kind: 'terraport-finder',
260
+ url: 'https://finder.terraport.finance/',
261
+ txPage: 'https://finder.terraport.finance/mainnet/tx/${txHash}',
262
+ accountPage: 'https://finder.terraport.finance/mainnet/address/${accountAddress}'
279
263
  }
280
264
  ],
281
265
  images: [{
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chain-registry",
3
- "version": "2.0.56",
3
+ "version": "2.0.57",
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.56"
32
+ "@chain-registry/types": "^2.0.57"
33
33
  },
34
34
  "keywords": [
35
35
  "chain-registry",
@@ -39,5 +39,5 @@
39
39
  "interchain",
40
40
  "tokens"
41
41
  ],
42
- "gitHead": "b6bacc582e13d21926aa07549a188f99d75229c9"
42
+ "gitHead": "7613a580c3e750567447c4e7b4c5cac32ea4e3cc"
43
43
  }
@@ -48,6 +48,7 @@ const _kujiratestnet = __importStar(require("./kujiratestnet"));
48
48
  const _kyvetestnet = __importStar(require("./kyvetestnet"));
49
49
  const _lavatestnet = __importStar(require("./lavatestnet"));
50
50
  const _likecointestnet = __importStar(require("./likecointestnet"));
51
+ const _lumeratestnet = __importStar(require("./lumeratestnet"));
51
52
  const _manifesttestnet = __importStar(require("./manifesttestnet"));
52
53
  const _mantrachaintestnet = __importStar(require("./mantrachaintestnet"));
53
54
  const _mantrachaintestnet2 = __importStar(require("./mantrachaintestnet2"));
@@ -98,6 +99,7 @@ const ibcData = [
98
99
  ..._kyvetestnet.ibcData,
99
100
  ..._lavatestnet.ibcData,
100
101
  ..._likecointestnet.ibcData,
102
+ ..._lumeratestnet.ibcData,
101
103
  ..._manifesttestnet.ibcData,
102
104
  ..._mantrachaintestnet.ibcData,
103
105
  ..._mantrachaintestnet2.ibcData,