chain-registry 2.0.237 → 2.0.239

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 (51) hide show
  1. package/esm/mainnet/asset-lists.js +2 -0
  2. package/esm/mainnet/axone/chain.js +3 -3
  3. package/esm/mainnet/bandchain/chain.js +4 -0
  4. package/esm/mainnet/chains.js +2 -0
  5. package/esm/mainnet/cosmoshub/chain.js +4 -0
  6. package/esm/mainnet/fetchhub/chain.js +4 -0
  7. package/esm/mainnet/gonka/asset-list.js +6 -1
  8. package/esm/mainnet/gonka/chain.js +27 -15
  9. package/esm/mainnet/gonka/ibc-data.js +32 -0
  10. package/esm/mainnet/gonka/index.js +2 -0
  11. package/esm/mainnet/ibc-data.js +4 -0
  12. package/esm/mainnet/injective/chain.js +4 -0
  13. package/esm/mainnet/mucoin/asset-list.js +26 -0
  14. package/esm/mainnet/mucoin/chain.js +79 -0
  15. package/esm/mainnet/mucoin/ibc-data.js +32 -0
  16. package/esm/mainnet/mucoin/index.js +6 -0
  17. package/esm/mainnet/osmosis/ibc-data.js +62 -0
  18. package/esm/mainnet/persistence/chain.js +4 -0
  19. package/esm/mainnet/provenance/chain.js +4 -0
  20. package/esm/mainnet/tail/chain.js +5 -5
  21. package/esm/mainnet/terra2/chain.js +8 -0
  22. package/esm/mainnet/union/chain.js +4 -0
  23. package/mainnet/asset-lists.js +2 -0
  24. package/mainnet/axone/chain.js +3 -3
  25. package/mainnet/bandchain/chain.js +4 -0
  26. package/mainnet/chains.js +2 -0
  27. package/mainnet/cosmoshub/chain.js +4 -0
  28. package/mainnet/fetchhub/chain.js +4 -0
  29. package/mainnet/gonka/asset-list.js +6 -1
  30. package/mainnet/gonka/chain.js +27 -15
  31. package/mainnet/gonka/ibc-data.d.ts +3 -0
  32. package/mainnet/gonka/ibc-data.js +34 -0
  33. package/mainnet/gonka/index.d.ts +1 -0
  34. package/mainnet/gonka/index.js +3 -1
  35. package/mainnet/ibc-data.js +4 -0
  36. package/mainnet/injective/chain.js +4 -0
  37. package/mainnet/mucoin/asset-list.d.ts +3 -0
  38. package/mainnet/mucoin/asset-list.js +28 -0
  39. package/mainnet/mucoin/chain.d.ts +3 -0
  40. package/mainnet/mucoin/chain.js +81 -0
  41. package/mainnet/mucoin/ibc-data.d.ts +3 -0
  42. package/mainnet/mucoin/ibc-data.js +34 -0
  43. package/mainnet/mucoin/index.d.ts +3 -0
  44. package/mainnet/mucoin/index.js +12 -0
  45. package/mainnet/osmosis/ibc-data.js +62 -0
  46. package/mainnet/persistence/chain.js +4 -0
  47. package/mainnet/provenance/chain.js +4 -0
  48. package/mainnet/tail/chain.js +5 -5
  49. package/mainnet/terra2/chain.js +8 -0
  50. package/mainnet/union/chain.js +4 -0
  51. package/package.json +3 -3
@@ -131,6 +131,7 @@ import * as _migaloo from './migaloo';
131
131
  import * as _mirage from './mirage';
132
132
  import * as _mises from './mises';
133
133
  import * as _mtgbp from './mtgbp';
134
+ import * as _mucoin from './mucoin';
134
135
  import * as _mun from './mun';
135
136
  import * as _mythos from './mythos';
136
137
  import * as _neura from './neura';
@@ -357,6 +358,7 @@ const assetList = [
357
358
  _mirage.assetList,
358
359
  _mises.assetList,
359
360
  _mtgbp.assetList,
361
+ _mucoin.assetList,
360
362
  _mun.assetList,
361
363
  _mythos.assetList,
362
364
  _neura.assetList,
@@ -62,7 +62,7 @@ const info = {
62
62
  rpc: [
63
63
  {
64
64
  address: 'https://rpc.axone.cumulo.com.es',
65
- provider: 'cumulo'
65
+ provider: 'Cumulo'
66
66
  },
67
67
  {
68
68
  address: 'https://axone.rpc.bccnodes.com',
@@ -96,7 +96,7 @@ const info = {
96
96
  rest: [
97
97
  {
98
98
  address: 'https://api.axone.cumulo.com.es',
99
- provider: 'cumulo'
99
+ provider: 'Cumulo'
100
100
  },
101
101
  {
102
102
  address: 'https://axone.lcd.bccnodes.com',
@@ -130,7 +130,7 @@ const info = {
130
130
  grpc: [
131
131
  {
132
132
  address: 'grpc.axone.cumulo.com.es:443',
133
- provider: 'cumulo'
133
+ provider: 'Cumulo'
134
134
  },
135
135
  {
136
136
  address: 'axone.grpc.bccnodes.com:443',
@@ -212,6 +212,10 @@ const info = {
212
212
  {
213
213
  address: 'band-grpc.polkachu.com:22990',
214
214
  provider: 'Polkachu'
215
+ },
216
+ {
217
+ address: 'https://bandprotocol-grpc.highstakes.ch',
218
+ provider: 'High Stakes 🇨🇭'
215
219
  }
216
220
  ]
217
221
  },
@@ -131,6 +131,7 @@ import * as _migaloo from './migaloo';
131
131
  import * as _mirage from './mirage';
132
132
  import * as _mises from './mises';
133
133
  import * as _mtgbp from './mtgbp';
134
+ import * as _mucoin from './mucoin';
134
135
  import * as _mun from './mun';
135
136
  import * as _mythos from './mythos';
136
137
  import * as _neura from './neura';
@@ -357,6 +358,7 @@ const chains = [
357
358
  _mirage.chain,
358
359
  _mises.chain,
359
360
  _mtgbp.chain,
361
+ _mucoin.chain,
360
362
  _mun.chain,
361
363
  _mythos.chain,
362
364
  _neura.chain,
@@ -402,6 +402,10 @@ const info = {
402
402
  {
403
403
  address: 'grpc.cosmos.cumulo.com.es:9790',
404
404
  provider: 'Cumulo'
405
+ },
406
+ {
407
+ address: 'https://cosmos-grpc.highstakes.ch',
408
+ provider: 'High Stakes 🇨🇭'
405
409
  }
406
410
  ]
407
411
  },
@@ -208,6 +208,10 @@ const info = {
208
208
  {
209
209
  address: 'grpc.fetchhub-4.fetch.aviaone.com:9094',
210
210
  provider: 'AVIAONE 🟢'
211
+ },
212
+ {
213
+ address: 'https://fetch-grpc.highstakes.ch',
214
+ provider: 'High Stakes 🇨🇭'
211
215
  }
212
216
  ]
213
217
  },
@@ -3,6 +3,7 @@ const info = {
3
3
  chainName: 'gonka',
4
4
  assets: [{
5
5
  description: 'Coins for the Gonka network.',
6
+ extendedDescription: 'Gonka is a decentralized AI infrastructure designed to optimize computational power specifically for AI model training and inference, offering a competitive alternative to traditional centralized cloud providers. Centralized systems are often expensive, monopolistic, and carry risks of censorship, whereas existing decentralized networks frequently waste resources on non-productive tasks, such as network security.\n\nWe introduce an innovative consensus mechanism that ensures nearly 100% of computational resources are used for meaningful AI tasks, maximizing efficiency and minimizing operational costs.',
6
7
  denomUnits: [
7
8
  {
8
9
  denom: 'ngonka',
@@ -32,7 +33,11 @@ const info = {
32
33
  images: [{
33
34
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gonka/images/gonka_logo.png',
34
35
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/gonka/images/gonka_logo.svg'
35
- }]
36
+ }],
37
+ socials: {
38
+ x: 'https://x.com/gonka_ai',
39
+ discord: 'https://discord.com/invite/RADwCT2U6R'
40
+ }
36
41
  }]
37
42
  };
38
43
  export default info;
@@ -81,8 +81,8 @@ const info = {
81
81
  apis: {
82
82
  rpc: [
83
83
  {
84
- address: 'https://gonka04.6block.com:8443/chain-rpc/',
85
- provider: '6block'
84
+ address: 'https://gonka.hyperfusion.io/chain-rpc/',
85
+ provider: 'Hyperfusion'
86
86
  },
87
87
  {
88
88
  address: 'https://gonka03.6block.com:8443/chain-rpc/',
@@ -90,17 +90,21 @@ const info = {
90
90
  },
91
91
  {
92
92
  address: 'https://node1.gonka.ai:8443/chain-rpc/',
93
- provider: 'PS on Nebius'
93
+ provider: 'PS'
94
94
  },
95
95
  {
96
96
  address: 'https://node2.gonka.ai:8443/chain-rpc/',
97
- provider: 'PS on Nebius'
97
+ provider: 'PS'
98
+ },
99
+ {
100
+ address: 'https://rpc.gonka.gg/key/keplr/chain-rpc/',
101
+ provider: 'GonkaLabs'
98
102
  }
99
103
  ],
100
104
  rest: [
101
105
  {
102
- address: 'https://gonka04.6block.com:8443/chain-api/',
103
- provider: '6block'
106
+ address: 'https://gonka.hyperfusion.io/chain-api/',
107
+ provider: 'Hyperfusion'
104
108
  },
105
109
  {
106
110
  address: 'https://gonka03.6block.com:8443/chain-api/',
@@ -108,17 +112,21 @@ const info = {
108
112
  },
109
113
  {
110
114
  address: 'https://node1.gonka.ai:8443/chain-api/',
111
- provider: 'PS on Nebius'
115
+ provider: 'PS'
112
116
  },
113
117
  {
114
118
  address: 'https://node2.gonka.ai:8443/chain-api/',
115
- provider: 'PS on Nebius'
119
+ provider: 'PS'
120
+ },
121
+ {
122
+ address: 'https://rpc.gonka.gg/key/keplr/chain-api/',
123
+ provider: 'GonkaLabs'
116
124
  }
117
125
  ],
118
126
  grpc: [
119
127
  {
120
- address: 'https://gonka04.6block.com:8443/chain-grpc/',
121
- provider: '6block'
128
+ address: 'https://gonka.hyperfusion.io/chain-grpc/',
129
+ provider: 'Hyperfusion'
122
130
  },
123
131
  {
124
132
  address: 'https://gonka03.6block.com:8443/chain-grpc/',
@@ -126,20 +134,24 @@ const info = {
126
134
  },
127
135
  {
128
136
  address: 'https://node1.gonka.ai:8443/chain-grpc/',
129
- provider: 'PS on Nebius'
137
+ provider: 'PS'
130
138
  },
131
139
  {
132
140
  address: 'https://node2.gonka.ai:8443/chain-grpc/',
133
- provider: 'PS on Nebius'
141
+ provider: 'PS'
142
+ },
143
+ {
144
+ address: 'https://rpc.gonka.gg/key/keplr/chain-grpc/',
145
+ provider: 'GonkaLabs'
134
146
  }
135
147
  ]
136
148
  },
137
149
  explorers: [
138
150
  {
139
151
  kind: 'ping.pub',
140
- url: 'https://gonka04.6block.com:8443/dashboard',
141
- txPage: 'https://gonka04.6block.com:8443/dashboard/gonka/txs/${txHash}',
142
- accountPage: 'https://gonka04.6block.com:8443/dashboard/gonka/account/${accountAddress}'
152
+ url: 'https://gonka.hyperfusion.io/dashboard',
153
+ txPage: 'https://gonka.hyperfusion.io/dashboard/gonka/txs/${txHash}',
154
+ accountPage: 'https://gonka.hyperfusion.io/dashboard/gonka/account/${accountAddress}'
143
155
  },
144
156
  {
145
157
  kind: 'ping.pub',
@@ -0,0 +1,32 @@
1
+ const info = [{
2
+ $schema: '../ibc_data.schema.json',
3
+ chain1: {
4
+ chainName: 'gonka',
5
+ chainId: 'gonka-mainnet',
6
+ clientId: '07-tendermint-1',
7
+ connectionId: 'connection-1'
8
+ },
9
+ chain2: {
10
+ chainName: 'osmosis',
11
+ chainId: 'osmosis-1',
12
+ clientId: '07-tendermint-3637',
13
+ connectionId: 'connection-10981'
14
+ },
15
+ channels: [{
16
+ chain1: {
17
+ channelId: 'channel-1',
18
+ portId: 'transfer'
19
+ },
20
+ chain2: {
21
+ channelId: 'channel-108157',
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;
@@ -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;
@@ -62,6 +62,7 @@ import * as _gateway from './gateway';
62
62
  import * as _genesisl1 from './genesisl1';
63
63
  import * as _gitopia from './gitopia';
64
64
  import * as _gnodi from './gnodi';
65
+ import * as _gonka from './gonka';
65
66
  import * as _gravitybridge from './gravitybridge';
66
67
  import * as _haqq from './haqq';
67
68
  import * as _hazinachain from './hazinachain';
@@ -99,6 +100,7 @@ import * as _meme from './meme';
99
100
  import * as _migaloo from './migaloo';
100
101
  import * as _mirage from './mirage';
101
102
  import * as _mtgbp from './mtgbp';
103
+ import * as _mucoin from './mucoin';
102
104
  import * as _neutaro from './neutaro';
103
105
  import * as _neutron from './neutron';
104
106
  import * as _nibiru from './nibiru';
@@ -232,6 +234,7 @@ const ibcData = [
232
234
  ..._genesisl1.ibcData,
233
235
  ..._gitopia.ibcData,
234
236
  ..._gnodi.ibcData,
237
+ ..._gonka.ibcData,
235
238
  ..._gravitybridge.ibcData,
236
239
  ..._haqq.ibcData,
237
240
  ..._hazinachain.ibcData,
@@ -269,6 +272,7 @@ const ibcData = [
269
272
  ..._migaloo.ibcData,
270
273
  ..._mirage.ibcData,
271
274
  ..._mtgbp.ibcData,
275
+ ..._mucoin.ibcData,
272
276
  ..._neutaro.ibcData,
273
277
  ..._neutron.ibcData,
274
278
  ..._nibiru.ibcData,
@@ -120,6 +120,10 @@ const info = {
120
120
  {
121
121
  address: 'injective-grpc.noders.services:33090',
122
122
  provider: '[NODERS]TEAM'
123
+ },
124
+ {
125
+ address: 'https://injective-grpc.highstakes.ch',
126
+ provider: 'High Stakes 🇨🇭'
123
127
  }
124
128
  ],
125
129
  evmHttpJsonrpc: [{
@@ -0,0 +1,26 @@
1
+ const info = {
2
+ $schema: '../assetlist.schema.json',
3
+ chainName: 'mucoin',
4
+ assets: [{
5
+ description: 'MUC is the native staking, governance and transaction fee token of the MuCoin blockchain.',
6
+ denomUnits: [{
7
+ denom: 'umuc',
8
+ exponent: 0
9
+ }, {
10
+ denom: 'MUC',
11
+ exponent: 6
12
+ }],
13
+ typeAsset: 'sdk.coin',
14
+ base: 'umuc',
15
+ name: 'MuCoin',
16
+ display: 'MUC',
17
+ symbol: 'MUC',
18
+ images: [{
19
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mucoin/images/mucoin.png'
20
+ }],
21
+ socials: {
22
+ website: 'https://mucoin.org'
23
+ }
24
+ }]
25
+ };
26
+ export default info;
@@ -0,0 +1,79 @@
1
+ const info = {
2
+ $schema: '../chain.schema.json',
3
+ chainName: 'mucoin',
4
+ status: 'live',
5
+ website: 'https://mucoin.org',
6
+ networkType: 'mainnet',
7
+ prettyName: 'MuCoin',
8
+ chainType: 'cosmos',
9
+ chainId: 'mucoin-1',
10
+ bech32Prefix: 'muc',
11
+ daemonName: 'mucoind',
12
+ nodeHome: '$HOME/.mucoin',
13
+ keyAlgos: ['secp256k1'],
14
+ slip44: 118,
15
+ description: 'MuCoin is a Cosmos SDK blockchain created for the MuCoin ecosystem and inspired by the world of MU Online.',
16
+ keywords: [
17
+ 'mucoin',
18
+ 'muc',
19
+ 'cosmos',
20
+ 'ibc',
21
+ 'gaming',
22
+ 'mu-online'
23
+ ],
24
+ fees: {
25
+ feeTokens: [{
26
+ denom: 'umuc',
27
+ fixedMinGasPrice: 0.0025,
28
+ lowGasPrice: 0.0025,
29
+ averageGasPrice: 0.005,
30
+ highGasPrice: 0.01
31
+ }]
32
+ },
33
+ staking: {
34
+ stakingTokens: [{
35
+ denom: 'umuc'
36
+ }]
37
+ },
38
+ codebase: {
39
+ gitRepo: 'https://github.com/dasgrid/mucoin',
40
+ recommendedVersion: 'rewards-v0.7.0',
41
+ compatibleVersions: ['rewards-v0.7.0'],
42
+ consensus: {
43
+ type: 'cometbft',
44
+ version: 'v0.38.21'
45
+ },
46
+ language: {
47
+ type: 'go',
48
+ version: '1.26.5'
49
+ },
50
+ sdk: {
51
+ type: 'cosmos',
52
+ repo: 'https://github.com/cosmos/cosmos-sdk',
53
+ version: 'v0.53.6'
54
+ },
55
+ ibc: {
56
+ type: 'go',
57
+ version: 'v10.4.0',
58
+ icsEnabled: ['ics20-1']
59
+ },
60
+ genesis: {
61
+ name: 'mucoin-1',
62
+ genesisUrl: 'https://raw.githubusercontent.com/dasgrid/mucoin/main/networks/mucoin-1/genesis.json'
63
+ }
64
+ },
65
+ images: [{
66
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mucoin/images/mucoin.png'
67
+ }],
68
+ apis: {
69
+ rpc: [{
70
+ address: 'https://rpc.mucoin.org',
71
+ provider: 'MuCoin'
72
+ }],
73
+ rest: [{
74
+ address: 'https://rest.mucoin.org',
75
+ provider: 'MuCoin'
76
+ }]
77
+ }
78
+ };
79
+ export default info;
@@ -0,0 +1,32 @@
1
+ const info = [{
2
+ $schema: '../ibc_data.schema.json',
3
+ chain1: {
4
+ chainName: 'mucoin',
5
+ chainId: 'mucoin-1',
6
+ clientId: '07-tendermint-0',
7
+ connectionId: 'connection-0'
8
+ },
9
+ chain2: {
10
+ chainName: 'osmosis',
11
+ chainId: 'osmosis-1',
12
+ clientId: '07-tendermint-3729',
13
+ connectionId: 'connection-11080'
14
+ },
15
+ channels: [{
16
+ chain1: {
17
+ channelId: 'channel-0',
18
+ portId: 'transfer'
19
+ },
20
+ chain2: {
21
+ channelId: 'channel-110556',
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;
@@ -0,0 +1,6 @@
1
+ import _assetList from './asset-list';
2
+ import _chain from './chain';
3
+ import _ibcData from './ibc-data';
4
+ export const assetList = _assetList;
5
+ export const chain = _chain;
6
+ export const ibcData = _ibcData;
@@ -2104,6 +2104,37 @@ const info = [
2104
2104
  }
2105
2105
  }]
2106
2106
  },
2107
+ {
2108
+ $schema: '../ibc_data.schema.json',
2109
+ chain1: {
2110
+ chainName: 'gonka',
2111
+ chainId: 'gonka-mainnet',
2112
+ clientId: '07-tendermint-1',
2113
+ connectionId: 'connection-1'
2114
+ },
2115
+ chain2: {
2116
+ chainName: 'osmosis',
2117
+ chainId: 'osmosis-1',
2118
+ clientId: '07-tendermint-3637',
2119
+ connectionId: 'connection-10981'
2120
+ },
2121
+ channels: [{
2122
+ chain1: {
2123
+ channelId: 'channel-1',
2124
+ portId: 'transfer'
2125
+ },
2126
+ chain2: {
2127
+ channelId: 'channel-108157',
2128
+ portId: 'transfer'
2129
+ },
2130
+ ordering: 'unordered',
2131
+ version: 'ics20-1',
2132
+ tags: {
2133
+ preferred: true,
2134
+ status: 'ACTIVE'
2135
+ }
2136
+ }]
2137
+ },
2107
2138
  {
2108
2139
  $schema: '../ibc_data.schema.json',
2109
2140
  chain1: {
@@ -3347,6 +3378,37 @@ const info = [
3347
3378
  }
3348
3379
  }]
3349
3380
  },
3381
+ {
3382
+ $schema: '../ibc_data.schema.json',
3383
+ chain1: {
3384
+ chainName: 'mucoin',
3385
+ chainId: 'mucoin-1',
3386
+ clientId: '07-tendermint-0',
3387
+ connectionId: 'connection-0'
3388
+ },
3389
+ chain2: {
3390
+ chainName: 'osmosis',
3391
+ chainId: 'osmosis-1',
3392
+ clientId: '07-tendermint-3729',
3393
+ connectionId: 'connection-11080'
3394
+ },
3395
+ channels: [{
3396
+ chain1: {
3397
+ channelId: 'channel-0',
3398
+ portId: 'transfer'
3399
+ },
3400
+ chain2: {
3401
+ channelId: 'channel-110556',
3402
+ portId: 'transfer'
3403
+ },
3404
+ ordering: 'unordered',
3405
+ version: 'ics20-1',
3406
+ tags: {
3407
+ preferred: true,
3408
+ status: 'ACTIVE'
3409
+ }
3410
+ }]
3411
+ },
3350
3412
  {
3351
3413
  $schema: '../ibc_data.schema.json',
3352
3414
  chain1: {
@@ -300,6 +300,10 @@ const info = {
300
300
  {
301
301
  address: 'persistence.grpc.quantnode.xyz:22990',
302
302
  provider: 'QuantNode'
303
+ },
304
+ {
305
+ address: 'https://persistence-grpc.highstakes.ch',
306
+ provider: 'High Stakes 🇨🇭'
303
307
  }
304
308
  ]
305
309
  },
@@ -181,6 +181,10 @@ const info = {
181
181
  {
182
182
  address: 'provenance-grpc.polkachu.com:27090',
183
183
  provider: 'Polkachu'
184
+ },
185
+ {
186
+ address: 'https://provenance-grpc.highstakes.ch',
187
+ provider: 'High Stakes 🇨🇭'
184
188
  }
185
189
  ]
186
190
  },
@@ -5,7 +5,7 @@ const info = {
5
5
  networkType: 'mainnet',
6
6
  prettyName: 'TAIL Network',
7
7
  chainType: 'cosmos',
8
- chainId: 'tail',
8
+ chainId: 'tail-1',
9
9
  bech32Prefix: 'tail',
10
10
  daemonName: 'taild',
11
11
  nodeHome: '$HOME/.tail',
@@ -27,17 +27,17 @@ const info = {
27
27
  },
28
28
  apis: {
29
29
  rpc: [{
30
- address: 'http://rpc.trusttails.io:26657',
30
+ address: 'https://rpc.trusttails.io',
31
31
  provider: 'TrustTails'
32
32
  }],
33
33
  rest: [{
34
- address: 'http://api.trusttails.io:1317',
34
+ address: 'https://api.trusttails.io',
35
35
  provider: 'TrustTails'
36
36
  }]
37
37
  },
38
38
  explorers: [{
39
- url: 'http://explorer.trusttails.io',
40
- txPage: 'http://explorer.trusttails.io/tail/tx/${txHash}'
39
+ url: 'https://explorer.trusttails.io',
40
+ txPage: 'https://explorer.trusttails.io/tail/tx/${txHash}'
41
41
  }],
42
42
  website: 'https://trusttails.io'
43
43
  };
@@ -147,6 +147,10 @@ const info = {
147
147
  {
148
148
  address: 'https://terra-api.polkachu.com',
149
149
  provider: 'Polkachu'
150
+ },
151
+ {
152
+ address: 'https://terra-phoenix-api.highstakes.ch',
153
+ provider: 'High Stakes 🇨🇭'
150
154
  }
151
155
  ],
152
156
  grpc: [
@@ -189,6 +193,10 @@ const info = {
189
193
  {
190
194
  address: 'terra-grpc.node39.top:443',
191
195
  provider: 'Node39'
196
+ },
197
+ {
198
+ address: 'https://terra-phoenix-grpc.highstakes.ch',
199
+ provider: 'High Stakes 🇨🇭'
192
200
  }
193
201
  ]
194
202
  },
@@ -164,6 +164,10 @@ const info = {
164
164
  {
165
165
  address: 'union-mainnet-grpc.shazoes.xyz:30990',
166
166
  provider: 'Shazoes'
167
+ },
168
+ {
169
+ address: 'https://union-grpc.highstakes.ch',
170
+ provider: 'High Stakes 🇨🇭'
167
171
  }
168
172
  ]
169
173
  },
@@ -156,6 +156,7 @@ const _migaloo = __importStar(require("./migaloo"));
156
156
  const _mirage = __importStar(require("./mirage"));
157
157
  const _mises = __importStar(require("./mises"));
158
158
  const _mtgbp = __importStar(require("./mtgbp"));
159
+ const _mucoin = __importStar(require("./mucoin"));
159
160
  const _mun = __importStar(require("./mun"));
160
161
  const _mythos = __importStar(require("./mythos"));
161
162
  const _neura = __importStar(require("./neura"));
@@ -382,6 +383,7 @@ const assetList = [
382
383
  _mirage.assetList,
383
384
  _mises.assetList,
384
385
  _mtgbp.assetList,
386
+ _mucoin.assetList,
385
387
  _mun.assetList,
386
388
  _mythos.assetList,
387
389
  _neura.assetList,
@@ -64,7 +64,7 @@ const info = {
64
64
  rpc: [
65
65
  {
66
66
  address: 'https://rpc.axone.cumulo.com.es',
67
- provider: 'cumulo'
67
+ provider: 'Cumulo'
68
68
  },
69
69
  {
70
70
  address: 'https://axone.rpc.bccnodes.com',
@@ -98,7 +98,7 @@ const info = {
98
98
  rest: [
99
99
  {
100
100
  address: 'https://api.axone.cumulo.com.es',
101
- provider: 'cumulo'
101
+ provider: 'Cumulo'
102
102
  },
103
103
  {
104
104
  address: 'https://axone.lcd.bccnodes.com',
@@ -132,7 +132,7 @@ const info = {
132
132
  grpc: [
133
133
  {
134
134
  address: 'grpc.axone.cumulo.com.es:443',
135
- provider: 'cumulo'
135
+ provider: 'Cumulo'
136
136
  },
137
137
  {
138
138
  address: 'axone.grpc.bccnodes.com:443',
@@ -214,6 +214,10 @@ const info = {
214
214
  {
215
215
  address: 'band-grpc.polkachu.com:22990',
216
216
  provider: 'Polkachu'
217
+ },
218
+ {
219
+ address: 'https://bandprotocol-grpc.highstakes.ch',
220
+ provider: 'High Stakes 🇨🇭'
217
221
  }
218
222
  ]
219
223
  },