chain-registry 2.0.73 → 2.0.74

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 (67) hide show
  1. package/devnet/seidevnet3/asset-list.js +16 -2
  2. package/esm/devnet/seidevnet3/asset-list.js +16 -2
  3. package/esm/mainnet/cryptoorgchain/chain.js +4 -11
  4. package/esm/mainnet/echelon/asset-list.js +2 -0
  5. package/esm/mainnet/echelon/chain.js +8 -4
  6. package/esm/mainnet/ggezchain/asset-list.js +4 -8
  7. package/esm/mainnet/likecoin/chain.js +8 -4
  8. package/esm/mainnet/mun/asset-list.js +2 -4
  9. package/esm/mainnet/mun/chain.js +2 -4
  10. package/esm/mainnet/neutron/chain.js +3 -3
  11. package/esm/mainnet/shareledger/chain.js +2 -2
  12. package/esm/mainnet/stafihub/chain.js +2 -2
  13. package/esm/mainnet/terpnetwork/chain.js +2 -2
  14. package/esm/mainnet/terra/asset-list.js +40 -6
  15. package/esm/mainnet/tgrade/asset-list.js +20 -2
  16. package/esm/mainnet/tgrade/chain.js +26 -4
  17. package/esm/testnet/airchainstestnet/chain.js +4 -0
  18. package/esm/testnet/airchainsvaranasitestnet/asset-list.js +14 -2
  19. package/esm/testnet/airchainsvaranasitestnet/chain.js +6 -2
  20. package/esm/testnet/archwaytestnet/chain.js +7 -4
  21. package/esm/testnet/intentotestnet/asset-list.js +16 -4
  22. package/esm/testnet/junotestnet/asset-list.js +8 -4
  23. package/esm/testnet/likecointestnet/chain.js +7 -4
  24. package/esm/testnet/neutrontestnet/asset-list.js +32 -8
  25. package/esm/testnet/neutrontestnet/chain.js +16 -4
  26. package/esm/testnet/nolustestnet/asset-list.js +16 -4
  27. package/esm/testnet/nolustestnet/chain.js +7 -4
  28. package/esm/testnet/osmosistestnet/asset-list.js +5 -5
  29. package/esm/testnet/osmosistestnet/chain.js +7 -2
  30. package/esm/testnet/planqtestnet/asset-list.js +16 -4
  31. package/esm/testnet/planqtestnet/chain.js +8 -4
  32. package/esm/testnet/seitestnet/asset-list.js +21 -1
  33. package/esm/testnet/seitestnet2/asset-list.js +16 -2
  34. package/esm/testnet/sourcetestnet/asset-list.js +16 -4
  35. package/mainnet/cryptoorgchain/chain.js +4 -11
  36. package/mainnet/echelon/asset-list.js +2 -0
  37. package/mainnet/echelon/chain.js +8 -4
  38. package/mainnet/ggezchain/asset-list.js +4 -8
  39. package/mainnet/likecoin/chain.js +8 -4
  40. package/mainnet/mun/asset-list.js +2 -4
  41. package/mainnet/mun/chain.js +2 -4
  42. package/mainnet/neutron/chain.js +3 -3
  43. package/mainnet/shareledger/chain.js +2 -2
  44. package/mainnet/stafihub/chain.js +2 -2
  45. package/mainnet/terpnetwork/chain.js +2 -2
  46. package/mainnet/terra/asset-list.js +40 -6
  47. package/mainnet/tgrade/asset-list.js +20 -2
  48. package/mainnet/tgrade/chain.js +26 -4
  49. package/package.json +3 -3
  50. package/testnet/airchainstestnet/chain.js +4 -0
  51. package/testnet/airchainsvaranasitestnet/asset-list.js +14 -2
  52. package/testnet/airchainsvaranasitestnet/chain.js +6 -2
  53. package/testnet/archwaytestnet/chain.js +7 -4
  54. package/testnet/intentotestnet/asset-list.js +16 -4
  55. package/testnet/junotestnet/asset-list.js +8 -4
  56. package/testnet/likecointestnet/chain.js +7 -4
  57. package/testnet/neutrontestnet/asset-list.js +32 -8
  58. package/testnet/neutrontestnet/chain.js +16 -4
  59. package/testnet/nolustestnet/asset-list.js +16 -4
  60. package/testnet/nolustestnet/chain.js +7 -4
  61. package/testnet/osmosistestnet/asset-list.js +5 -5
  62. package/testnet/osmosistestnet/chain.js +7 -2
  63. package/testnet/planqtestnet/asset-list.js +16 -4
  64. package/testnet/planqtestnet/chain.js +8 -4
  65. package/testnet/seitestnet/asset-list.js +21 -1
  66. package/testnet/seitestnet2/asset-list.js +16 -2
  67. package/testnet/sourcetestnet/asset-list.js +16 -4
@@ -15,13 +15,25 @@ const info = {
15
15
  name: 'Neutron Testnet',
16
16
  display: 'ntrn',
17
17
  symbol: 'NTRN',
18
+ traces: [{
19
+ type: 'test-mintage',
20
+ counterparty: {
21
+ chainName: 'neutron',
22
+ baseDenom: 'untrn'
23
+ },
24
+ provider: 'Neutron'
25
+ }],
18
26
  logoURIs: {
19
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/ntrn.png',
20
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/ntrn.svg'
27
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png',
28
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg'
21
29
  },
22
30
  images: [{
23
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/ntrn.png',
24
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/ntrn.svg'
31
+ imageSync: {
32
+ chainName: 'neutron',
33
+ baseDenom: 'untrn'
34
+ },
35
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png',
36
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg'
25
37
  }],
26
38
  typeAsset: 'sdk.coin'
27
39
  },
@@ -38,13 +50,25 @@ const info = {
38
50
  name: 'amATOM (Testnet)',
39
51
  display: 'amATOM',
40
52
  symbol: 'amATOM',
53
+ traces: [{
54
+ type: 'test-mintage',
55
+ counterparty: {
56
+ chainName: 'neutron',
57
+ baseDenom: 'factory/neutron1shwxlkpdjd8h5wdtrykypwd2v62z5glr95yp0etdcspkkjwm5meq82ndxs/amatom'
58
+ },
59
+ provider: 'Neutron'
60
+ }],
41
61
  logoURIs: {
42
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/amATOM.png',
43
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/amATOM.svg'
62
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/amATOM.png',
63
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/amATOM.svg'
44
64
  },
45
65
  images: [{
46
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/amATOM.png',
47
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/amATOM.svg'
66
+ imageSync: {
67
+ chainName: 'neutron',
68
+ baseDenom: 'factory/neutron1shwxlkpdjd8h5wdtrykypwd2v62z5glr95yp0etdcspkkjwm5meq82ndxs/amatom'
69
+ },
70
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/amATOM.png',
71
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/amATOM.svg'
48
72
  }],
49
73
  typeAsset: 'sdk.coin'
50
74
  },
@@ -44,8 +44,8 @@ const info = {
44
44
  }
45
45
  },
46
46
  logoURIs: {
47
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/neutron-black-logo.png',
48
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/neutron-black-logo.svg'
47
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/neutron-raw.png',
48
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/neutron-raw.svg'
49
49
  },
50
50
  apis: {
51
51
  rpc: [
@@ -100,8 +100,20 @@ const info = {
100
100
  accountPage: 'https://mintscan.io/neutron-testnet/account/${accountAddress}'
101
101
  }],
102
102
  images: [{
103
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/neutron-black-logo.png',
104
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/neutrontestnet/images/neutron-black-logo.svg'
103
+ imageSync: {
104
+ chainName: 'neutron'
105
+ },
106
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/neutron-raw.png',
107
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/neutron-raw.svg',
108
+ theme: {
109
+ circle: false
110
+ }
111
+ }, {
112
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/neutron.png',
113
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/neutron.svg',
114
+ theme: {
115
+ circle: false
116
+ }
105
117
  }]
106
118
  };
107
119
  export default info;
@@ -14,13 +14,25 @@ const info = {
14
14
  name: 'Nolus',
15
15
  display: 'nls',
16
16
  symbol: 'NLS',
17
+ traces: [{
18
+ type: 'test-mintage',
19
+ counterparty: {
20
+ chainName: 'nolus',
21
+ baseDenom: 'unls'
22
+ },
23
+ provider: 'Nolus'
24
+ }],
17
25
  logoURIs: {
18
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nolustestnet/images/nolus.png',
19
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nolustestnet/images/nolus.svg'
26
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png',
27
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg'
20
28
  },
21
29
  images: [{
22
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nolustestnet/images/nolus.png',
23
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nolustestnet/images/nolus.svg'
30
+ imageSync: {
31
+ chainName: 'nolus',
32
+ baseDenom: 'unls'
33
+ },
34
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png',
35
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg'
24
36
  }],
25
37
  typeAsset: 'sdk.coin'
26
38
  }]
@@ -54,8 +54,8 @@ const info = {
54
54
  }
55
55
  },
56
56
  logoURIs: {
57
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nolustestnet/images/nolus.png',
58
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nolustestnet/images/nolus.svg'
57
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png',
58
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg'
59
59
  },
60
60
  apis: {
61
61
  rpc: [{
@@ -79,8 +79,11 @@ const info = {
79
79
  }],
80
80
  keywords: ['testnet'],
81
81
  images: [{
82
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nolustestnet/images/nolus.png',
83
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/nolustestnet/images/nolus.svg'
82
+ imageSync: {
83
+ chainName: 'nolus'
84
+ },
85
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.png',
86
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/nolus/images/nolus.svg'
84
87
  }]
85
88
  };
86
89
  export default info;
@@ -261,16 +261,16 @@ const info = {
261
261
  }
262
262
  }],
263
263
  logoURIs: {
264
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/junotestnet/images/juno.png',
265
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/junotestnet/images/juno.svg'
264
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png',
265
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg'
266
266
  },
267
267
  images: [{
268
268
  imageSync: {
269
- chainName: 'junotestnet',
269
+ chainName: 'junotestnet6',
270
270
  baseDenom: 'ujunox'
271
271
  },
272
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/junotestnet/images/juno.png',
273
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/junotestnet/images/juno.svg'
272
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.png',
273
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/juno/images/juno.svg'
274
274
  }],
275
275
  coingeckoId: 'juno-network'
276
276
  },
@@ -85,7 +85,8 @@ const info = {
85
85
  }]
86
86
  },
87
87
  logoURIs: {
88
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmosis-chain-logo.png'
88
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg',
89
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png'
89
90
  },
90
91
  explorers: [{
91
92
  kind: 'mintscan',
@@ -100,7 +101,11 @@ const info = {
100
101
  }],
101
102
  keywords: ['dex', 'testnet'],
102
103
  images: [{
103
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmosis-chain-logo.png'
104
+ imageSync: {
105
+ chainName: 'osmosis'
106
+ },
107
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.svg',
108
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/osmosis/images/osmo.png'
104
109
  }]
105
110
  };
106
111
  export default info;
@@ -14,13 +14,25 @@ const info = {
14
14
  name: 'Planq Atlas Testnet',
15
15
  display: 'tplanq',
16
16
  symbol: 'tPLQ',
17
+ traces: [{
18
+ type: 'test-mintage',
19
+ counterparty: {
20
+ chainName: 'planq',
21
+ baseDenom: 'aplanq'
22
+ },
23
+ provider: 'Planq'
24
+ }],
17
25
  logoURIs: {
18
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/planqtestnet/images/planq.png',
19
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/planqtestnet/images/planq.svg'
26
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png',
27
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg'
20
28
  },
21
29
  images: [{
22
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/planqtestnet/images/planq.png',
23
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/planqtestnet/images/planq.svg'
30
+ imageSync: {
31
+ chainName: 'planq',
32
+ baseDenom: 'aplanq'
33
+ },
34
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png',
35
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg'
24
36
  }],
25
37
  typeAsset: 'sdk.coin'
26
38
  }]
@@ -54,8 +54,8 @@ const info = {
54
54
  }
55
55
  },
56
56
  logoURIs: {
57
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/planqtestnet/images/planq.png',
58
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/planqtestnet/images/planq.svg'
57
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png',
58
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg'
59
59
  },
60
60
  apis: {
61
61
  rpc: [{
@@ -102,8 +102,12 @@ const info = {
102
102
  }
103
103
  ],
104
104
  images: [{
105
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/planqtestnet/images/planq.png',
106
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/planqtestnet/images/planq.svg'
105
+ imageSync: {
106
+ chainName: 'planq',
107
+ baseDenom: 'aplanq'
108
+ },
109
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.png',
110
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/planq/images/planq.svg'
107
111
  }]
108
112
  };
109
113
  export default info;
@@ -14,7 +14,27 @@ const info = {
14
14
  name: 'Sei',
15
15
  display: 'sei',
16
16
  symbol: 'SEI',
17
- typeAsset: 'sdk.coin'
17
+ typeAsset: 'sdk.coin',
18
+ traces: [{
19
+ type: 'test-mintage',
20
+ counterparty: {
21
+ chainName: 'sei',
22
+ baseDenom: 'usei'
23
+ },
24
+ provider: 'Sei'
25
+ }],
26
+ logoURIs: {
27
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png',
28
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg'
29
+ },
30
+ images: [{
31
+ imageSync: {
32
+ chainName: 'sei',
33
+ baseDenom: 'usei'
34
+ },
35
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png',
36
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg'
37
+ }]
18
38
  }]
19
39
  };
20
40
  export default info;
@@ -14,11 +14,25 @@ const info = {
14
14
  name: 'Sei',
15
15
  display: 'sei',
16
16
  symbol: 'SEI',
17
+ traces: [{
18
+ type: 'test-mintage',
19
+ counterparty: {
20
+ chainName: 'sei',
21
+ baseDenom: 'usei'
22
+ },
23
+ provider: 'Sei'
24
+ }],
17
25
  logoURIs: {
18
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/seitestnet2/images/sei.png'
26
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png',
27
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg'
19
28
  },
20
29
  images: [{
21
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/seitestnet2/images/sei.png'
30
+ imageSync: {
31
+ chainName: 'sei',
32
+ baseDenom: 'usei'
33
+ },
34
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.png',
35
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sei/images/sei.svg'
22
36
  }],
23
37
  typeAsset: 'sdk.coin'
24
38
  }]
@@ -14,13 +14,25 @@ const info = {
14
14
  name: 'Source Testnet',
15
15
  display: 'source',
16
16
  symbol: 'SOURCE',
17
+ traces: [{
18
+ type: 'test-mintage',
19
+ counterparty: {
20
+ chainName: 'source',
21
+ baseDenom: 'usource'
22
+ },
23
+ provider: 'Source'
24
+ }],
17
25
  logoURIs: {
18
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/sourcetestnet/images/source.png',
19
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/sourcetestnet/images/source.svg'
26
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.png',
27
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.svg'
20
28
  },
21
29
  images: [{
22
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/sourcetestnet/images/source.png',
23
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/sourcetestnet/images/source.svg'
30
+ imageSync: {
31
+ chainName: 'source',
32
+ baseDenom: 'usource'
33
+ },
34
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.png',
35
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/source/images/source.svg'
24
36
  }],
25
37
  typeAsset: 'sdk.coin'
26
38
  }]
@@ -164,17 +164,10 @@ const info = {
164
164
  txPage: 'https://ping.pub/crypto-com-chain/tx/${txHash}'
165
165
  }
166
166
  ],
167
- images: [
168
- {
167
+ images: [{
169
168
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cryptoorgchain/images/cronos.png'
170
- },
171
- {
172
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cryptoorgchain/images/Cronos_POS_Chain_Colour.svg'
173
- },
174
- {
175
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cronos.png',
176
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cro.svg'
177
- }
178
- ]
169
+ }, {
170
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cronos/images/cronos.png'
171
+ }]
179
172
  };
180
173
  exports.default = info;
@@ -17,9 +17,11 @@ const info = {
17
17
  display: 'echelon',
18
18
  symbol: 'ECH',
19
19
  logoURIs: {
20
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.png',
20
21
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.svg'
21
22
  },
22
23
  images: [{
24
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.png',
23
25
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.svg'
24
26
  }],
25
27
  typeAsset: 'sdk.coin'
@@ -40,8 +40,8 @@ const info = {
40
40
  }
41
41
  },
42
42
  logoURIs: {
43
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/logo.png',
44
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/echelon.svg'
43
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.png',
44
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.svg'
45
45
  },
46
46
  apis: {
47
47
  rpc: [{
@@ -91,8 +91,12 @@ const info = {
91
91
  }
92
92
  ],
93
93
  images: [{
94
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/logo.png',
95
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/echelon.svg'
94
+ imageSync: {
95
+ chainName: 'echelon',
96
+ baseDenom: 'aechelon'
97
+ },
98
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.png',
99
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/echelon/images/ech.svg'
96
100
  }]
97
101
  };
98
102
  exports.default = info;
@@ -25,12 +25,10 @@ const info = {
25
25
  symbol: 'GGEZ1',
26
26
  coingeckoId: 'ggez1',
27
27
  logoURIs: {
28
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ggezchain/images/ggez1.png',
29
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ggezchain/images/ggez1.svg'
28
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ggezchain/images/ggez1.png'
30
29
  },
31
30
  images: [{
32
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ggezchain/images/ggez1.png',
33
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ggezchain/images/ggez1.svg'
31
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ggezchain/images/ggez1.png'
34
32
  }],
35
33
  socials: {
36
34
  website: 'https://ggez.one',
@@ -59,12 +57,10 @@ const info = {
59
57
  display: 'uggz',
60
58
  symbol: 'GGZ',
61
59
  images: [{
62
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ggezchain/images/ggz.png',
63
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ggezchain/images/ggz.svg'
60
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ggezchain/images/ggz.png'
64
61
  }],
65
62
  logoURIs: {
66
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ggezchain/images/ggz.png',
67
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ggezchain/images/ggz.svg'
63
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/ggezchain/images/ggz.png'
68
64
  },
69
65
  socials: {
70
66
  website: 'https://ggez.one',
@@ -171,8 +171,8 @@ const info = {
171
171
  }
172
172
  ],
173
173
  logoURIs: {
174
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/likecoin-chain-logo.png',
175
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/likecoin-chain-logo.svg'
174
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.png',
175
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.svg'
176
176
  },
177
177
  keywords: [
178
178
  'ebook',
@@ -184,8 +184,12 @@ const info = {
184
184
  'nft'
185
185
  ],
186
186
  images: [{
187
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/likecoin-chain-logo.png',
188
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/likecoin-chain-logo.svg'
187
+ imageSync: {
188
+ chainName: 'likecoin',
189
+ baseDenom: 'nanolike'
190
+ },
191
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.png',
192
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/likecoin/images/like.svg'
189
193
  }]
190
194
  };
191
195
  exports.default = info;
@@ -17,12 +17,10 @@ const info = {
17
17
  display: 'mun',
18
18
  symbol: 'MUN',
19
19
  logoURIs: {
20
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mun/images/mun.png',
21
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mun/images/mun.svg'
20
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mun/images/mun.png'
22
21
  },
23
22
  images: [{
24
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mun/images/mun.png',
25
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mun/images/mun.svg'
23
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mun/images/mun.png'
26
24
  }],
27
25
  typeAsset: 'sdk.coin'
28
26
  }]
@@ -34,8 +34,7 @@ const info = {
34
34
  }
35
35
  },
36
36
  logoURIs: {
37
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mun/images/mun.png',
38
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mun/images/mun.svg'
37
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mun/images/mun.png'
39
38
  },
40
39
  apis: {
41
40
  rpc: [
@@ -94,8 +93,7 @@ const info = {
94
93
  }
95
94
  ],
96
95
  images: [{
97
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mun/images/mun.png',
98
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mun/images/mun.svg'
96
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/mun/images/mun.png'
99
97
  }]
100
98
  };
101
99
  exports.default = info;
@@ -273,10 +273,10 @@ const info = {
273
273
  circle: false
274
274
  }
275
275
  }, {
276
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.png',
277
- svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/ntrn.svg',
276
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/neutron.png',
277
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/neutron/images/neutron.svg',
278
278
  theme: {
279
- circle: true
279
+ circle: false
280
280
  }
281
281
  }]
282
282
  };
@@ -84,12 +84,12 @@ const info = {
84
84
  accountPage: 'https://staking-explorer.com/account.php?chain=shareledger&addr=${accountAddress}'
85
85
  }],
86
86
  logoURIs: {
87
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shareledger/images/chain-logo.png',
87
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shareledger/images/token.png',
88
88
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shareledger/images/token.svg'
89
89
  },
90
90
  keywords: ['id'],
91
91
  images: [{
92
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shareledger/images/chain-logo.png',
92
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shareledger/images/token.png',
93
93
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/shareledger/images/token.svg'
94
94
  }]
95
95
  };
@@ -133,11 +133,11 @@ const info = {
133
133
  }
134
134
  ],
135
135
  logoURIs: {
136
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/stafihub-chain-logo.png'
136
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/stafihub.png'
137
137
  },
138
138
  keywords: ['liquid staking'],
139
139
  images: [{
140
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/stafihub-chain-logo.png'
140
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stafihub/images/stafihub.png'
141
141
  }]
142
142
  };
143
143
  exports.default = info;
@@ -45,7 +45,7 @@ const info = {
45
45
  }]
46
46
  },
47
47
  logoURIs: {
48
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/logo.png'
48
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/terp.png'
49
49
  },
50
50
  apis: {
51
51
  rpc: [
@@ -122,7 +122,7 @@ const info = {
122
122
  }
123
123
  ],
124
124
  images: [{
125
- png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/logo.png'
125
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terpnetwork/images/terp.png'
126
126
  }]
127
127
  };
128
128
  exports.default = info;