chain-registry 2.0.42 → 2.0.44

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 (48) hide show
  1. package/esm/mainnet/acrechain/chain.js +0 -12
  2. package/esm/mainnet/asset-lists.js +2 -0
  3. package/esm/mainnet/atomone/ibc-data.js +35 -3
  4. package/esm/mainnet/axelar/ibc-data.js +29 -0
  5. package/esm/mainnet/bandchain/chain.js +9 -9
  6. package/esm/mainnet/chains.js +2 -0
  7. package/esm/mainnet/cheqd/chain.js +10 -10
  8. package/esm/mainnet/desmos/chain.js +0 -13
  9. package/esm/mainnet/evmos/chain.js +0 -12
  10. package/esm/mainnet/gitopia/chain.js +0 -14
  11. package/esm/mainnet/mun/chain.js +0 -13
  12. package/esm/mainnet/paxi/asset-list.js +30 -0
  13. package/esm/mainnet/paxi/chain.js +72 -0
  14. package/esm/mainnet/paxi/index.js +4 -0
  15. package/esm/mainnet/seda/chain.js +13 -0
  16. package/esm/mainnet/stargaze/ibc-data.js +29 -0
  17. package/esm/mainnet/sunrise/chain.js +45 -9
  18. package/esm/mainnet/terra2/asset-list.js +31 -0
  19. package/esm/mainnet/thorchain/asset-list.js +66 -0
  20. package/esm/mainnet/xpla/ibc-data.js +35 -3
  21. package/esm/testnet/cheqdtestnet/chain.js +10 -10
  22. package/esm/testnet/mantrachaintestnet2/asset-list.js +24 -0
  23. package/mainnet/acrechain/chain.js +0 -12
  24. package/mainnet/asset-lists.js +2 -0
  25. package/mainnet/atomone/ibc-data.js +35 -3
  26. package/mainnet/axelar/ibc-data.js +29 -0
  27. package/mainnet/bandchain/chain.js +9 -9
  28. package/mainnet/chains.js +2 -0
  29. package/mainnet/cheqd/chain.js +10 -10
  30. package/mainnet/desmos/chain.js +0 -13
  31. package/mainnet/evmos/chain.js +0 -12
  32. package/mainnet/gitopia/chain.js +0 -14
  33. package/mainnet/mun/chain.js +0 -13
  34. package/mainnet/paxi/asset-list.d.ts +3 -0
  35. package/mainnet/paxi/asset-list.js +32 -0
  36. package/mainnet/paxi/chain.d.ts +3 -0
  37. package/mainnet/paxi/chain.js +74 -0
  38. package/mainnet/paxi/index.d.ts +2 -0
  39. package/mainnet/paxi/index.js +10 -0
  40. package/mainnet/seda/chain.js +13 -0
  41. package/mainnet/stargaze/ibc-data.js +29 -0
  42. package/mainnet/sunrise/chain.js +45 -9
  43. package/mainnet/terra2/asset-list.js +31 -0
  44. package/mainnet/thorchain/asset-list.js +66 -0
  45. package/mainnet/xpla/ibc-data.js +35 -3
  46. package/package.json +3 -3
  47. package/testnet/cheqdtestnet/chain.js +10 -10
  48. package/testnet/mantrachaintestnet2/asset-list.js +24 -0
@@ -48,10 +48,6 @@ const info = {
48
48
  address: 'https://acrechain-mainnet-rpc.autostake.com:443',
49
49
  provider: 'AutoStake 🛡️ Slash Protected'
50
50
  },
51
- {
52
- address: 'https://rpc.acre.tcnetwork.io',
53
- provider: 'TC Network'
54
- },
55
51
  {
56
52
  address: 'https://mainnet-acre-rpc.konsortech.xyz',
57
53
  provider: 'KonsorTech'
@@ -70,10 +66,6 @@ const info = {
70
66
  address: 'https://acrechain-mainnet-lcd.autostake.com:443',
71
67
  provider: 'AutoStake 🛡️ Slash Protected'
72
68
  },
73
- {
74
- address: 'https://rest.acre.tcnetwork.io',
75
- provider: 'TC Network'
76
- },
77
69
  {
78
70
  address: 'https://mainnet-acre-api.konsortech.xyz',
79
71
  provider: 'KonsorTech'
@@ -118,10 +110,6 @@ const info = {
118
110
  address: 'https://evm.acrescan.com/',
119
111
  provider: 'Anonstake'
120
112
  },
121
- {
122
- address: 'https://json-rpc.acre.tcnetwork.io',
123
- provider: 'TC Network'
124
- },
125
113
  {
126
114
  address: 'https://mainnet-acre-evm.konsortech.xyz',
127
115
  provider: 'KonsorTech'
@@ -145,6 +145,7 @@ import * as _osmosis from './osmosis';
145
145
  import * as _paloma from './paloma';
146
146
  import * as _panacea from './panacea';
147
147
  import * as _passage from './passage';
148
+ import * as _paxi from './paxi';
148
149
  import * as _persistence from './persistence';
149
150
  import * as _planq from './planq';
150
151
  import * as _pocket from './pocket';
@@ -356,6 +357,7 @@ const assetList = [
356
357
  _paloma.assetList,
357
358
  _panacea.assetList,
358
359
  _passage.assetList,
360
+ _paxi.assetList,
359
361
  _persistence.assetList,
360
362
  _planq.assetList,
361
363
  _pocket.assetList,
@@ -1,4 +1,5 @@
1
- const info = [{
1
+ const info = [
2
+ {
2
3
  $schema: '../ibc_data.schema.json',
3
4
  chain1: {
4
5
  chainName: 'atomone',
@@ -26,7 +27,8 @@ const info = [{
26
27
  preferred: true
27
28
  }
28
29
  }]
29
- }, {
30
+ },
31
+ {
30
32
  $schema: '../ibc_data.schema.json',
31
33
  chain1: {
32
34
  chainName: 'atomone',
@@ -54,5 +56,35 @@ const info = [{
54
56
  preferred: true
55
57
  }
56
58
  }]
57
- }];
59
+ },
60
+ {
61
+ $schema: '../ibc_data.schema.json',
62
+ chain1: {
63
+ chainName: 'atomone',
64
+ clientId: '07-tendermint-6',
65
+ connectionId: 'connection-7'
66
+ },
67
+ chain2: {
68
+ chainName: 'stargaze',
69
+ clientId: '07-tendermint-380',
70
+ connectionId: 'connection-337'
71
+ },
72
+ channels: [{
73
+ chain1: {
74
+ channelId: 'channel-3',
75
+ portId: 'transfer'
76
+ },
77
+ chain2: {
78
+ channelId: 'channel-448',
79
+ portId: 'transfer'
80
+ },
81
+ ordering: 'unordered',
82
+ version: 'ics20-1',
83
+ tags: {
84
+ status: 'live',
85
+ preferred: true
86
+ }
87
+ }]
88
+ }
89
+ ];
58
90
  export default info;
@@ -1466,6 +1466,35 @@ const info = [
1466
1466
  preferred: true
1467
1467
  }
1468
1468
  }]
1469
+ },
1470
+ {
1471
+ $schema: '../ibc_data.schema.json',
1472
+ chain1: {
1473
+ chainName: 'axelar',
1474
+ clientId: '07-tendermint-75',
1475
+ connectionId: 'connection-62'
1476
+ },
1477
+ chain2: {
1478
+ chainName: 'xpla',
1479
+ clientId: '07-tendermint-0',
1480
+ connectionId: 'connection-0'
1481
+ },
1482
+ channels: [{
1483
+ chain1: {
1484
+ channelId: 'channel-49',
1485
+ portId: 'transfer'
1486
+ },
1487
+ chain2: {
1488
+ channelId: 'channel-0',
1489
+ portId: 'transfer'
1490
+ },
1491
+ ordering: 'unordered',
1492
+ version: 'ics20-1',
1493
+ tags: {
1494
+ status: 'live',
1495
+ preferred: true
1496
+ }
1497
+ }]
1469
1498
  }
1470
1499
  ];
1471
1500
  export default info;
@@ -31,26 +31,26 @@ const info = {
31
31
  },
32
32
  codebase: {
33
33
  gitRepo: 'https://github.com/bandprotocol/chain',
34
- recommendedVersion: 'v2.5.4',
35
- compatibleVersions: [
36
- 'v2.5.2',
37
- 'v2.5.3',
38
- 'v2.5.4'
39
- ],
34
+ recommendedVersion: 'v3.1.0',
35
+ compatibleVersions: ['v3.1.0'],
40
36
  consensus: {
41
37
  type: 'cometbft',
42
- version: 'v0.34.29'
38
+ version: 'v0.38.17'
43
39
  },
44
40
  genesis: {
45
41
  genesisUrl: 'https://raw.githubusercontent.com/bandprotocol/launch/master/laozi-mainnet/genesis.json'
46
42
  },
47
43
  sdk: {
48
44
  type: 'cosmos',
49
- version: '0.45.16'
45
+ version: 'v0.50.14'
50
46
  },
51
47
  ibc: {
52
48
  type: 'go',
53
- version: 'v4.3.1'
49
+ version: 'v8.7.0'
50
+ },
51
+ language: {
52
+ type: 'go',
53
+ version: 'v1.24.2'
54
54
  }
55
55
  },
56
56
  logoURIs: {
@@ -145,6 +145,7 @@ import * as _osmosis from './osmosis';
145
145
  import * as _paloma from './paloma';
146
146
  import * as _panacea from './panacea';
147
147
  import * as _passage from './passage';
148
+ import * as _paxi from './paxi';
148
149
  import * as _persistence from './persistence';
149
150
  import * as _planq from './planq';
150
151
  import * as _pocket from './pocket';
@@ -356,6 +357,7 @@ const chains = [
356
357
  _paloma.chain,
357
358
  _panacea.chain,
358
359
  _passage.chain,
360
+ _paxi.chain,
359
361
  _persistence.chain,
360
362
  _planq.chain,
361
363
  _pocket.chain,
@@ -27,17 +27,17 @@ const info = {
27
27
  },
28
28
  codebase: {
29
29
  gitRepo: 'https://github.com/cheqd/cheqd-node',
30
- recommendedVersion: 'v3.1.6',
31
- compatibleVersions: ['v3.1.5', 'v3.1.6'],
30
+ recommendedVersion: 'v4.1.1',
31
+ compatibleVersions: ['v4.1.0', 'v4.1.1'],
32
32
  binaries: {
33
- "linux/amd64": 'https://github.com/cheqd/cheqd-node/releases/download/v3.1.6/cheqd-noded-3.1.6-linux-amd64.tar.gz',
34
- "linux/arm64": 'https://github.com/cheqd/cheqd-node/releases/download/v3.1.6/cheqd-noded-3.1.6-linux-arm64.tar.gz',
35
- "darwin/amd64": 'https://github.com/cheqd/cheqd-node/releases/download/v3.1.6/cheqd-noded-3.1.6-darwin-amd64.tar.gz',
36
- "darwin/arm64": 'https://github.com/cheqd/cheqd-node/releases/download/v3.1.6/cheqd-noded-3.1.6-darwin-arm64.tar.gz'
33
+ "linux/amd64": 'https://github.com/cheqd/cheqd-node/releases/download/v4.1.1/cheqd-noded-4.1.1-linux-amd64.tar.gz',
34
+ "linux/arm64": 'https://github.com/cheqd/cheqd-node/releases/download/v4.1.1/cheqd-noded-4.1.1-linux-arm64.tar.gz',
35
+ "darwin/amd64": 'https://github.com/cheqd/cheqd-node/releases/download/v4.1.1/cheqd-noded-4.1.1-darwin-amd64.tar.gz',
36
+ "darwin/arm64": 'https://github.com/cheqd/cheqd-node/releases/download/v4.1.1/cheqd-noded-4.1.1-darwin-arm64.tar.gz'
37
37
  },
38
38
  consensus: {
39
39
  type: 'cometbft',
40
- version: '0.37.5'
40
+ version: '0.38.12'
41
41
  },
42
42
  genesis: {
43
43
  genesisUrl: 'https://raw.githubusercontent.com/cheqd/cheqd-node/main/networks/mainnet/genesis.json'
@@ -45,12 +45,12 @@ const info = {
45
45
  sdk: {
46
46
  type: 'cosmos',
47
47
  repo: 'https://github.com/cheqd/cosmos-sdk',
48
- version: 'v0.47.10',
49
- tag: 'v0.47.10-height-mismatch'
48
+ version: 'v0.50.14',
49
+ tag: 'v0.50.14-height-mismatch-iavl'
50
50
  },
51
51
  ibc: {
52
52
  type: 'go',
53
- version: 'v7.4.0'
53
+ version: 'v8.7.0'
54
54
  }
55
55
  },
56
56
  apis: {
@@ -70,10 +70,6 @@ const info = {
70
70
  address: 'https://desmos-rpc.staketab.org:443',
71
71
  provider: 'Staketab'
72
72
  },
73
- {
74
- address: 'https://rpc.desmos.tcnetwork.io',
75
- provider: 'TC Network'
76
- },
77
73
  {
78
74
  address: 'https://rpc.desmos.bronbro.io:443',
79
75
  provider: 'Bro_n_Bro'
@@ -96,10 +92,6 @@ const info = {
96
92
  address: 'https://desmos-rest.staketab.org',
97
93
  provider: 'Staketab'
98
94
  },
99
- {
100
- address: 'https://rest.desmos.tcnetwork.io',
101
- provider: 'TC Network'
102
- },
103
95
  {
104
96
  address: 'https://lcd.desmos.bronbro.io:443',
105
97
  provider: 'Bro_n_Bro'
@@ -173,11 +165,6 @@ const info = {
173
165
  url: 'https://atomscan.com/desmos',
174
166
  txPage: 'https://atomscan.com/desmos/transactions/${txHash}'
175
167
  },
176
- {
177
- kind: 'TC Network',
178
- url: 'https://explorer.tcnetwork.io/desmos',
179
- txPage: 'https://explorer.tcnetwork.io/desmos/transaction/${txHash}'
180
- },
181
168
  {
182
169
  kind: 'Decloud Nodes Lab',
183
170
  url: 'https://explorer.declab.pro/Desmos',
@@ -87,10 +87,6 @@ const info = {
87
87
  address: 'https://rpc.evmos.silentvalidator.com/',
88
88
  provider: 'silent'
89
89
  },
90
- {
91
- address: 'https://rpc.evmos.tcnetwork.io',
92
- provider: 'TC Network'
93
- },
94
90
  {
95
91
  address: 'https://evmos.rpc.stakin-nodes.com',
96
92
  provider: 'Stakin'
@@ -173,10 +169,6 @@ const info = {
173
169
  address: 'https://api.evmos.silentvalidator.com/',
174
170
  provider: 'silent'
175
171
  },
176
- {
177
- address: 'https://rest.evmos.tcnetwork.io',
178
- provider: 'TC Network'
179
- },
180
172
  {
181
173
  address: 'https://evmos.rest.stakin-nodes.com',
182
174
  provider: 'Stakin'
@@ -325,10 +317,6 @@ const info = {
325
317
  address: 'https://evm-rpc.evmos.silentvalidator.com/',
326
318
  provider: 'silent'
327
319
  },
328
- {
329
- address: 'https://json-rpc.evmos.tcnetwork.io',
330
- provider: 'TC Network'
331
- },
332
320
  {
333
321
  address: 'https://evmosevm.rpc.stakin-nodes.com',
334
322
  provider: 'Stakin'
@@ -136,10 +136,6 @@ const info = {
136
136
  address: 'https://gitopia-rpc.enigma-validator.com/',
137
137
  provider: 'Enigma'
138
138
  },
139
- {
140
- address: 'https://rpc.gitopia.tcnetwork.io/',
141
- provider: 'TC Network'
142
- },
143
139
  {
144
140
  address: 'https://gitopia.nodejumper.io:443',
145
141
  provider: 'NODEJUMPER'
@@ -250,10 +246,6 @@ const info = {
250
246
  address: 'https://gitopia-lcd.enigma-validator.com/',
251
247
  provider: 'Enigma'
252
248
  },
253
- {
254
- address: 'https://rest.gitopia.tcnetwork.io/',
255
- provider: 'TC Network'
256
- },
257
249
  {
258
250
  address: 'https://gitopia.nodejumper.io:1317',
259
251
  provider: 'NODEJUMPER'
@@ -447,12 +439,6 @@ const info = {
447
439
  txPage: 'https://explorer.nodexcapital.com/gitopia/tx/${txHash}',
448
440
  accountPage: 'https://explorer.nodexcapital.com/gitopia/account/${accountAddress}'
449
441
  },
450
- {
451
- kind: 'TC Network',
452
- url: 'https://explorer.tcnetwork.io/gitopia',
453
- txPage: 'https://explorer.tcnetwork.io/gitopia/transaction/${txHash}',
454
- accountPage: 'https://explorer.tcnetwork.io/gitopia/account/${accountAddress}'
455
- },
456
442
  {
457
443
  kind: 'NodeStake',
458
444
  url: 'https://explorer.nodestake.org/gitopia',
@@ -45,10 +45,6 @@ const info = {
45
45
  address: 'https://mainnet-mun-rpc.konsortech.xyz',
46
46
  provider: 'KonsorTech'
47
47
  },
48
- {
49
- address: 'https://rpc.mun.tcnetwork.io',
50
- provider: 'TC Network'
51
- },
52
48
  {
53
49
  address: 'https://mun_mainnet_rpc.chain.whenmoonwhenlambo.money',
54
50
  provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
@@ -63,10 +59,6 @@ const info = {
63
59
  address: 'https://mainnet-mun-api.konsortech.xyz',
64
60
  provider: 'KonsorTech'
65
61
  },
66
- {
67
- address: 'https://rest.mun.tcnetwork.io',
68
- provider: 'TC Network'
69
- },
70
62
  {
71
63
  address: 'https://mun_mainnet_api.chain.whenmoonwhenlambo.money',
72
64
  provider: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥'
@@ -92,11 +84,6 @@ const info = {
92
84
  url: 'https://ping.pub/mun',
93
85
  txPage: 'https://ping.pub/mun/${txHash}'
94
86
  },
95
- {
96
- kind: 'TC Network',
97
- url: 'https://explorer.tcnetwork.io/mun',
98
- txPage: 'https://explorer.tcnetwork.io/mun/transaction/${txHash}'
99
- },
100
87
  {
101
88
  kind: '🚀 WHEN MOON 🌕 WHEN LAMBO 🔥',
102
89
  url: 'https://explorer.whenmoonwhenlambo.money/mun',
@@ -0,0 +1,30 @@
1
+ const info = {
2
+ $schema: '../assetlist.schema.json',
3
+ chainName: 'paxi',
4
+ assets: [{
5
+ description: 'PAXI is the native token of the Paxi blockchain.',
6
+ denomUnits: [{
7
+ denom: 'upaxi',
8
+ exponent: 0
9
+ }, {
10
+ denom: 'PAXI',
11
+ exponent: 6
12
+ }],
13
+ typeAsset: 'sdk.coin',
14
+ base: 'upaxi',
15
+ name: 'Paxi',
16
+ display: 'PAXI',
17
+ symbol: 'PAXI',
18
+ images: [{
19
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/paxi/images/paxi.png',
20
+ theme: {
21
+ circle: false
22
+ }
23
+ }],
24
+ keywords: ['staking'],
25
+ socials: {
26
+ website: 'https://paxinet.io'
27
+ }
28
+ }]
29
+ };
30
+ export default info;
@@ -0,0 +1,72 @@
1
+ const info = {
2
+ $schema: '../chain.schema.json',
3
+ chainName: 'paxi',
4
+ status: 'live',
5
+ website: 'https://paxinet.io',
6
+ networkType: 'mainnet',
7
+ chainType: 'cosmos',
8
+ prettyName: 'Paxi',
9
+ chainId: 'paxi-mainnet',
10
+ bech32Prefix: 'paxi',
11
+ daemonName: 'paxid',
12
+ nodeHome: '$HOME/.paxi',
13
+ keyAlgos: ['secp256k1'],
14
+ slip44: 118,
15
+ fees: {
16
+ feeTokens: [{
17
+ denom: 'upaxi',
18
+ fixedMinGasPrice: 0.05,
19
+ lowGasPrice: 0.05,
20
+ averageGasPrice: 0.1,
21
+ highGasPrice: 0.25
22
+ }]
23
+ },
24
+ staking: {
25
+ stakingTokens: [{
26
+ denom: 'upaxi'
27
+ }],
28
+ lockDuration: {
29
+ time: '604800s'
30
+ }
31
+ },
32
+ codebase: {
33
+ gitRepo: 'https://github.com/paxi-web3/paxi',
34
+ genesis: {
35
+ name: 'paxi-mainnet',
36
+ genesisUrl: 'https://mainnet-rpc.paxinet.io/genesis'
37
+ }
38
+ },
39
+ images: [{
40
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/paxi/images/paxi.png',
41
+ theme: {
42
+ circle: false
43
+ }
44
+ }],
45
+ apis: {
46
+ rpc: [{
47
+ address: 'https://mainnet-rpc.paxinet.io',
48
+ provider: 'Paxi Foundation'
49
+ }],
50
+ rest: [{
51
+ address: 'https://mainnet-lcd.paxinet.io',
52
+ provider: 'Paxi Foundation'
53
+ }],
54
+ grpc: [{
55
+ address: 'mainnet-rpc.paxinet.io:443',
56
+ provider: 'Paxi Foundation'
57
+ }]
58
+ },
59
+ explorers: [{
60
+ kind: 'paxi-explorer',
61
+ url: 'https://explorer.paxinet.io',
62
+ txPage: 'https://explorer.paxinet.io/tx/${txHash}',
63
+ accountPage: 'https://explorer.paxinet.io/address/${accountAddress}'
64
+ }],
65
+ keywords: [
66
+ 'ibc',
67
+ 'staking',
68
+ 'dex',
69
+ 'wasm'
70
+ ]
71
+ };
72
+ export default info;
@@ -0,0 +1,4 @@
1
+ import _assetList from './asset-list';
2
+ import _chain from './chain';
3
+ export const assetList = _assetList;
4
+ export const chain = _chain;
@@ -137,6 +137,10 @@ const info = {
137
137
  {
138
138
  address: 'https://seda.rpc.cumulo.org.es',
139
139
  provider: 'Cumulo'
140
+ },
141
+ {
142
+ address: 'https://rpc.seda.tcnetwork.io',
143
+ provider: 'TC Network'
140
144
  }
141
145
  ],
142
146
  rest: [
@@ -211,6 +215,10 @@ const info = {
211
215
  {
212
216
  address: 'https://seda.api.cumulo.org.es',
213
217
  provider: 'Cumulo'
218
+ },
219
+ {
220
+ address: 'https://rest.seda.tcnetwork.io',
221
+ provider: 'TC Network'
214
222
  }
215
223
  ],
216
224
  grpc: [
@@ -261,6 +269,11 @@ const info = {
261
269
  ]
262
270
  },
263
271
  explorers: [
272
+ {
273
+ kind: 'TC Network',
274
+ url: 'https://explorer.tcnetwork.io/seda',
275
+ txPage: 'https://explorer.tcnetwork.io/seda/transaction/${txHash}'
276
+ },
264
277
  {
265
278
  kind: 'Chainroot',
266
279
  url: 'https://explorer.chainroot.io/seda',
@@ -58,6 +58,35 @@ const info = [
58
58
  }
59
59
  }]
60
60
  },
61
+ {
62
+ $schema: '../ibc_data.schema.json',
63
+ chain1: {
64
+ chainName: 'atomone',
65
+ clientId: '07-tendermint-6',
66
+ connectionId: 'connection-7'
67
+ },
68
+ chain2: {
69
+ chainName: 'stargaze',
70
+ clientId: '07-tendermint-380',
71
+ connectionId: 'connection-337'
72
+ },
73
+ channels: [{
74
+ chain1: {
75
+ channelId: 'channel-3',
76
+ portId: 'transfer'
77
+ },
78
+ chain2: {
79
+ channelId: 'channel-448',
80
+ portId: 'transfer'
81
+ },
82
+ ordering: 'unordered',
83
+ version: 'ics20-1',
84
+ tags: {
85
+ status: 'live',
86
+ preferred: true
87
+ }
88
+ }]
89
+ },
61
90
  {
62
91
  $schema: '../ibc_data.schema.json',
63
92
  chain1: {
@@ -54,20 +54,42 @@ const info = {
54
54
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.svg'
55
55
  },
56
56
  apis: {
57
- rpc: [{
57
+ rpc: [
58
+ {
58
59
  address: 'https://a.consensus.sunrise-1.sunriselayer.io',
59
60
  provider: 'Sunrise Team'
60
- }, {
61
+ },
62
+ {
63
+ address: 'https://sunrise-mainnet-rpc.mekonglabs.tech',
64
+ provider: 'MekongLabs'
65
+ },
66
+ {
61
67
  address: 'https://rpc-sunrise.nodeist.net',
62
68
  provider: 'Nodeist'
63
- }],
64
- rest: [{
69
+ },
70
+ {
71
+ address: 'https://rpc.sunrise.tcnetwork.io',
72
+ provider: 'TC Network'
73
+ }
74
+ ],
75
+ rest: [
76
+ {
65
77
  address: 'https://a.consensus.sunrise-1.sunriselayer.io:1318',
66
78
  provider: 'Sunrise Team'
67
- }, {
79
+ },
80
+ {
81
+ address: 'https://sunrise-mainnet-api.mekonglabs.tech',
82
+ provider: 'MekongLabs'
83
+ },
84
+ {
68
85
  address: 'https://api-sunrise.nodeist.net',
69
86
  provider: 'Nodeist'
70
- }],
87
+ },
88
+ {
89
+ address: 'https://rest.sunrise.tcnetwork.io',
90
+ provider: 'TC Network'
91
+ }
92
+ ],
71
93
  grpc: [{
72
94
  address: 'https://a.consensus.sunrise-1.sunriselayer.io:9092',
73
95
  provider: 'Sunrise Team'
@@ -76,17 +98,31 @@ const info = {
76
98
  provider: 'Nodeist'
77
99
  }]
78
100
  },
79
- explorers: [{
101
+ explorers: [
102
+ {
103
+ kind: 'TC Network',
104
+ url: 'https://explorer.tcnetwork.io/sunrise',
105
+ txPage: 'https://explorer.tcnetwork.io/sunrise/transaction/${txHash}'
106
+ },
107
+ {
80
108
  kind: 'Risescan',
81
109
  url: 'https://risescan.sunriselayer.io',
82
110
  txPage: 'https://risescan.sunriselayer.io/txs/${txHash}',
83
111
  accountPage: 'https://risescan.sunriselayer.io/accounts/${accountAddress}'
84
- }, {
112
+ },
113
+ {
114
+ kind: 'MekongLabs Explorer',
115
+ url: 'https://explorer.mekonglabs.tech/sunrise/staking',
116
+ txPage: 'https://explorer.mekonglabs.tech/sunrise/tx/${txHash}',
117
+ accountPage: 'https://explorer.mekonglabs.tech/sunrise/account/${accountAddress}'
118
+ },
119
+ {
85
120
  kind: 'Explorer.ist',
86
121
  url: 'https://explorer.ist/sunrise',
87
122
  txPage: 'https://explorer.ist/sunrise/tx/${txHash}',
88
123
  accountPage: 'https://explorer.ist/sunrise/account/${accountAddress}'
89
- }],
124
+ }
125
+ ],
90
126
  images: [{
91
127
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.svg',
92
128
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.png'