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
@@ -0,0 +1,74 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../chain.schema.json',
5
+ chainName: 'paxi',
6
+ status: 'live',
7
+ website: 'https://paxinet.io',
8
+ networkType: 'mainnet',
9
+ chainType: 'cosmos',
10
+ prettyName: 'Paxi',
11
+ chainId: 'paxi-mainnet',
12
+ bech32Prefix: 'paxi',
13
+ daemonName: 'paxid',
14
+ nodeHome: '$HOME/.paxi',
15
+ keyAlgos: ['secp256k1'],
16
+ slip44: 118,
17
+ fees: {
18
+ feeTokens: [{
19
+ denom: 'upaxi',
20
+ fixedMinGasPrice: 0.05,
21
+ lowGasPrice: 0.05,
22
+ averageGasPrice: 0.1,
23
+ highGasPrice: 0.25
24
+ }]
25
+ },
26
+ staking: {
27
+ stakingTokens: [{
28
+ denom: 'upaxi'
29
+ }],
30
+ lockDuration: {
31
+ time: '604800s'
32
+ }
33
+ },
34
+ codebase: {
35
+ gitRepo: 'https://github.com/paxi-web3/paxi',
36
+ genesis: {
37
+ name: 'paxi-mainnet',
38
+ genesisUrl: 'https://mainnet-rpc.paxinet.io/genesis'
39
+ }
40
+ },
41
+ images: [{
42
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/paxi/images/paxi.png',
43
+ theme: {
44
+ circle: false
45
+ }
46
+ }],
47
+ apis: {
48
+ rpc: [{
49
+ address: 'https://mainnet-rpc.paxinet.io',
50
+ provider: 'Paxi Foundation'
51
+ }],
52
+ rest: [{
53
+ address: 'https://mainnet-lcd.paxinet.io',
54
+ provider: 'Paxi Foundation'
55
+ }],
56
+ grpc: [{
57
+ address: 'mainnet-rpc.paxinet.io:443',
58
+ provider: 'Paxi Foundation'
59
+ }]
60
+ },
61
+ explorers: [{
62
+ kind: 'paxi-explorer',
63
+ url: 'https://explorer.paxinet.io',
64
+ txPage: 'https://explorer.paxinet.io/tx/${txHash}',
65
+ accountPage: 'https://explorer.paxinet.io/address/${accountAddress}'
66
+ }],
67
+ keywords: [
68
+ 'ibc',
69
+ 'staking',
70
+ 'dex',
71
+ 'wasm'
72
+ ]
73
+ };
74
+ 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;
@@ -139,6 +139,10 @@ const info = {
139
139
  {
140
140
  address: 'https://seda.rpc.cumulo.org.es',
141
141
  provider: 'Cumulo'
142
+ },
143
+ {
144
+ address: 'https://rpc.seda.tcnetwork.io',
145
+ provider: 'TC Network'
142
146
  }
143
147
  ],
144
148
  rest: [
@@ -213,6 +217,10 @@ const info = {
213
217
  {
214
218
  address: 'https://seda.api.cumulo.org.es',
215
219
  provider: 'Cumulo'
220
+ },
221
+ {
222
+ address: 'https://rest.seda.tcnetwork.io',
223
+ provider: 'TC Network'
216
224
  }
217
225
  ],
218
226
  grpc: [
@@ -263,6 +271,11 @@ const info = {
263
271
  ]
264
272
  },
265
273
  explorers: [
274
+ {
275
+ kind: 'TC Network',
276
+ url: 'https://explorer.tcnetwork.io/seda',
277
+ txPage: 'https://explorer.tcnetwork.io/seda/transaction/${txHash}'
278
+ },
266
279
  {
267
280
  kind: 'Chainroot',
268
281
  url: 'https://explorer.chainroot.io/seda',
@@ -60,6 +60,35 @@ const info = [
60
60
  }
61
61
  }]
62
62
  },
63
+ {
64
+ $schema: '../ibc_data.schema.json',
65
+ chain1: {
66
+ chainName: 'atomone',
67
+ clientId: '07-tendermint-6',
68
+ connectionId: 'connection-7'
69
+ },
70
+ chain2: {
71
+ chainName: 'stargaze',
72
+ clientId: '07-tendermint-380',
73
+ connectionId: 'connection-337'
74
+ },
75
+ channels: [{
76
+ chain1: {
77
+ channelId: 'channel-3',
78
+ portId: 'transfer'
79
+ },
80
+ chain2: {
81
+ channelId: 'channel-448',
82
+ portId: 'transfer'
83
+ },
84
+ ordering: 'unordered',
85
+ version: 'ics20-1',
86
+ tags: {
87
+ status: 'live',
88
+ preferred: true
89
+ }
90
+ }]
91
+ },
63
92
  {
64
93
  $schema: '../ibc_data.schema.json',
65
94
  chain1: {
@@ -56,20 +56,42 @@ const info = {
56
56
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.svg'
57
57
  },
58
58
  apis: {
59
- rpc: [{
59
+ rpc: [
60
+ {
60
61
  address: 'https://a.consensus.sunrise-1.sunriselayer.io',
61
62
  provider: 'Sunrise Team'
62
- }, {
63
+ },
64
+ {
65
+ address: 'https://sunrise-mainnet-rpc.mekonglabs.tech',
66
+ provider: 'MekongLabs'
67
+ },
68
+ {
63
69
  address: 'https://rpc-sunrise.nodeist.net',
64
70
  provider: 'Nodeist'
65
- }],
66
- rest: [{
71
+ },
72
+ {
73
+ address: 'https://rpc.sunrise.tcnetwork.io',
74
+ provider: 'TC Network'
75
+ }
76
+ ],
77
+ rest: [
78
+ {
67
79
  address: 'https://a.consensus.sunrise-1.sunriselayer.io:1318',
68
80
  provider: 'Sunrise Team'
69
- }, {
81
+ },
82
+ {
83
+ address: 'https://sunrise-mainnet-api.mekonglabs.tech',
84
+ provider: 'MekongLabs'
85
+ },
86
+ {
70
87
  address: 'https://api-sunrise.nodeist.net',
71
88
  provider: 'Nodeist'
72
- }],
89
+ },
90
+ {
91
+ address: 'https://rest.sunrise.tcnetwork.io',
92
+ provider: 'TC Network'
93
+ }
94
+ ],
73
95
  grpc: [{
74
96
  address: 'https://a.consensus.sunrise-1.sunriselayer.io:9092',
75
97
  provider: 'Sunrise Team'
@@ -78,17 +100,31 @@ const info = {
78
100
  provider: 'Nodeist'
79
101
  }]
80
102
  },
81
- explorers: [{
103
+ explorers: [
104
+ {
105
+ kind: 'TC Network',
106
+ url: 'https://explorer.tcnetwork.io/sunrise',
107
+ txPage: 'https://explorer.tcnetwork.io/sunrise/transaction/${txHash}'
108
+ },
109
+ {
82
110
  kind: 'Risescan',
83
111
  url: 'https://risescan.sunriselayer.io',
84
112
  txPage: 'https://risescan.sunriselayer.io/txs/${txHash}',
85
113
  accountPage: 'https://risescan.sunriselayer.io/accounts/${accountAddress}'
86
- }, {
114
+ },
115
+ {
116
+ kind: 'MekongLabs Explorer',
117
+ url: 'https://explorer.mekonglabs.tech/sunrise/staking',
118
+ txPage: 'https://explorer.mekonglabs.tech/sunrise/tx/${txHash}',
119
+ accountPage: 'https://explorer.mekonglabs.tech/sunrise/account/${accountAddress}'
120
+ },
121
+ {
87
122
  kind: 'Explorer.ist',
88
123
  url: 'https://explorer.ist/sunrise',
89
124
  txPage: 'https://explorer.ist/sunrise/tx/${txHash}',
90
125
  accountPage: 'https://explorer.ist/sunrise/account/${accountAddress}'
91
- }],
126
+ }
127
+ ],
92
128
  images: [{
93
129
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.svg',
94
130
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.png'
@@ -1403,6 +1403,37 @@ const info = {
1403
1403
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/Capapult.png',
1404
1404
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/Capapult.svg'
1405
1405
  }]
1406
+ },
1407
+ {
1408
+ description: 'ampCAPA is the liquid staking governance token of SOLID ecosystem, powered by ERIS Protocol',
1409
+ denomUnits: [{
1410
+ denom: 'factory/terra186rpfczl7l2kugdsqqedegl4es4hp624phfc7ddy8my02a4e8lgq5rlx7y/ampCAPA',
1411
+ exponent: 0
1412
+ }, {
1413
+ denom: 'ampCAPA',
1414
+ exponent: 6
1415
+ }],
1416
+ base: 'factory/terra186rpfczl7l2kugdsqqedegl4es4hp624phfc7ddy8my02a4e8lgq5rlx7y/ampCAPA',
1417
+ name: 'ERIS Amplified CAPA',
1418
+ display: 'ampCAPA',
1419
+ symbol: 'ampCAPA',
1420
+ logoURIs: {
1421
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ampCapa.png',
1422
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ampCapa.svg'
1423
+ },
1424
+ images: [{
1425
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ampCapa.png',
1426
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/terra2/images/ampCapa.svg'
1427
+ }],
1428
+ typeAsset: 'sdk.coin',
1429
+ traces: [{
1430
+ type: 'liquid-stake',
1431
+ counterparty: {
1432
+ chainName: 'terra2',
1433
+ baseDenom: 'uluna'
1434
+ },
1435
+ provider: 'ERIS Protocol'
1436
+ }]
1406
1437
  }
1407
1438
  ]
1408
1439
  };
@@ -269,6 +269,72 @@ const info = {
269
269
  telegram: 'https://t.me/NAMIProtocol',
270
270
  twitter: 'https://twitter.com/NamiProtocol'
271
271
  }
272
+ },
273
+ {
274
+ base: 'x/nami-index-nav-thor1mlphkryw5g54yfkrp6xpqzlpv4f8wh6hyw27yyg4z2els8a9gxpqhfhekt-rcpt',
275
+ typeAsset: 'sdk.coin',
276
+ description: 'The Yield Bearing RUNE Index (yRUNE) is an auto-rebalancing index that tracks the performance of RUNE and TCY while generating yield from TCY staking.',
277
+ denomUnits: [{
278
+ denom: 'YRUNE',
279
+ exponent: 8
280
+ }, {
281
+ denom: 'x/nami-index-nav-thor1mlphkryw5g54yfkrp6xpqzlpv4f8wh6hyw27yyg4z2els8a9gxpqhfhekt-rcpt',
282
+ exponent: 0
283
+ }],
284
+ name: 'YRUNE',
285
+ display: 'YRUNE',
286
+ symbol: 'YRUNE',
287
+ logoURIs: {
288
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/thorchain/images/yrune.png'
289
+ },
290
+ images: [{
291
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/thorchain/images/yrune.png'
292
+ }],
293
+ keywords: [
294
+ 'index',
295
+ 'rujira',
296
+ 'defi',
297
+ 'nami'
298
+ ],
299
+ socials: {
300
+ website: 'https://rujira.network/index',
301
+ discord: 'https://discord.gg/WGgUADfxXR',
302
+ telegram: 'https://t.me/NAMIProtocol',
303
+ twitter: 'https://x.com/Nami_Index_'
304
+ }
305
+ },
306
+ {
307
+ base: 'x/nami-index-nav-thor1h0hr0rm3dawkedh44hlrmgvya6plsryehcr46yda2vj0wfwgq5xqrs86px-rcpt',
308
+ typeAsset: 'sdk.coin',
309
+ description: 'The Yield Bearing TCY Index (yTCY) is an auto-rebalancing index designed to track the performance of both RUNE and TCY, with a strategic overweight on TCY to maximize yield potential.',
310
+ denomUnits: [{
311
+ denom: 'YTCY',
312
+ exponent: 8
313
+ }, {
314
+ denom: 'x/nami-index-nav-thor1h0hr0rm3dawkedh44hlrmgvya6plsryehcr46yda2vj0wfwgq5xqrs86px-rcpt',
315
+ exponent: 0
316
+ }],
317
+ name: 'YTCY',
318
+ display: 'YTCY',
319
+ symbol: 'YTCY',
320
+ logoURIs: {
321
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/thorchain/images/ytcy.png'
322
+ },
323
+ images: [{
324
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/thorchain/images/ytcy.png'
325
+ }],
326
+ keywords: [
327
+ 'index',
328
+ 'rujira',
329
+ 'defi',
330
+ 'nami'
331
+ ],
332
+ socials: {
333
+ website: 'https://rujira.network/index',
334
+ discord: 'https://discord.gg/WGgUADfxXR',
335
+ telegram: 'https://t.me/NAMIProtocol',
336
+ twitter: 'https://x.com/Nami_Index_'
337
+ }
272
338
  }
273
339
  ]
274
340
  };
@@ -1,6 +1,36 @@
1
1
  "use strict";
2
2
  Object.defineProperty(exports, "__esModule", { value: true });
3
- const info = [{
3
+ const info = [
4
+ {
5
+ $schema: '../ibc_data.schema.json',
6
+ chain1: {
7
+ chainName: 'axelar',
8
+ clientId: '07-tendermint-75',
9
+ connectionId: 'connection-62'
10
+ },
11
+ chain2: {
12
+ chainName: 'xpla',
13
+ clientId: '07-tendermint-0',
14
+ connectionId: 'connection-0'
15
+ },
16
+ channels: [{
17
+ chain1: {
18
+ channelId: 'channel-49',
19
+ portId: 'transfer'
20
+ },
21
+ chain2: {
22
+ channelId: 'channel-0',
23
+ portId: 'transfer'
24
+ },
25
+ ordering: 'unordered',
26
+ version: 'ics20-1',
27
+ tags: {
28
+ status: 'live',
29
+ preferred: true
30
+ }
31
+ }]
32
+ },
33
+ {
4
34
  $schema: '../ibc_data.schema.json',
5
35
  chain1: {
6
36
  chainName: 'injective',
@@ -28,7 +58,8 @@ const info = [{
28
58
  preferred: true
29
59
  }
30
60
  }]
31
- }, {
61
+ },
62
+ {
32
63
  $schema: '../ibc_data.schema.json',
33
64
  chain1: {
34
65
  chainName: 'osmosis',
@@ -57,5 +88,6 @@ const info = [{
57
88
  dex: 'osmosis'
58
89
  }
59
90
  }]
60
- }];
91
+ }
92
+ ];
61
93
  exports.default = info;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chain-registry",
3
- "version": "2.0.42",
3
+ "version": "2.0.44",
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.42"
32
+ "@chain-registry/types": "^2.0.44"
33
33
  },
34
34
  "keywords": [
35
35
  "chain-registry",
@@ -39,5 +39,5 @@
39
39
  "interchain",
40
40
  "tokens"
41
41
  ],
42
- "gitHead": "0b1251d9acc5f467f8f64b5698bdbe23b3aa15cd"
42
+ "gitHead": "8ea6af0b365c89957b36189f92d3559913ff8120"
43
43
  }
@@ -23,17 +23,17 @@ const info = {
23
23
  },
24
24
  codebase: {
25
25
  gitRepo: 'https://github.com/cheqd/cheqd-node',
26
- recommendedVersion: 'v3.1.6',
27
- compatibleVersions: ['v3.1.5', 'v3.1.6'],
26
+ recommendedVersion: 'v4.1.1',
27
+ compatibleVersions: ['v4.1.0', 'v4.1.1'],
28
28
  binaries: {
29
- "linux/amd64": 'https://github.com/cheqd/cheqd-node/releases/download/v3.1.6/cheqd-noded-3.1.6-linux-amd64.tar.gz',
30
- "linux/arm64": 'https://github.com/cheqd/cheqd-node/releases/download/v3.1.6/cheqd-noded-3.1.6-linux-arm64.tar.gz',
31
- "darwin/amd64": 'https://github.com/cheqd/cheqd-node/releases/download/v3.1.6/cheqd-noded-3.1.6-darwin-amd64.tar.gz',
32
- "darwin/arm64": 'https://github.com/cheqd/cheqd-node/releases/download/v3.1.6/cheqd-noded-3.1.6-darwin-arm64.tar.gz'
29
+ "linux/amd64": 'https://github.com/cheqd/cheqd-node/releases/download/v4.1.1/cheqd-noded-4.1.1-linux-amd64.tar.gz',
30
+ "linux/arm64": 'https://github.com/cheqd/cheqd-node/releases/download/v4.1.1/cheqd-noded-4.1.1-linux-arm64.tar.gz',
31
+ "darwin/amd64": 'https://github.com/cheqd/cheqd-node/releases/download/v4.1.1/cheqd-noded-4.1.1-darwin-amd64.tar.gz',
32
+ "darwin/arm64": 'https://github.com/cheqd/cheqd-node/releases/download/v4.1.1/cheqd-noded-4.1.1-darwin-arm64.tar.gz'
33
33
  },
34
34
  consensus: {
35
35
  type: 'cometbft',
36
- version: '0.37.5'
36
+ version: '0.38.12'
37
37
  },
38
38
  genesis: {
39
39
  genesisUrl: 'https://raw.githubusercontent.com/cheqd/cheqd-node/main/networks/testnet/genesis.json'
@@ -41,12 +41,12 @@ const info = {
41
41
  sdk: {
42
42
  type: 'cosmos',
43
43
  repo: 'https://github.com/cheqd/cosmos-sdk',
44
- version: 'v0.47.10',
45
- tag: 'v0.47.10-height-mismatch'
44
+ version: 'v0.50.14',
45
+ tag: 'v0.50.14-height-mismatch-iavl'
46
46
  },
47
47
  ibc: {
48
48
  type: 'go',
49
- version: 'v7.4.0'
49
+ version: 'v8.7.0'
50
50
  }
51
51
  },
52
52
  apis: {
@@ -222,6 +222,30 @@ const info = {
222
222
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
223
223
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg'
224
224
  }]
225
+ },
226
+ {
227
+ description: 'This tThe ultimate snack-based meme coin for loyal degens. Earn them, trade them, and feed your inner Shibe — no utility, just tasty vibes.',
228
+ extendedDescription: 'This tThe ultimate snack-based meme coin for loyal degens. Earn them, trade them, and feed your inner Shibe — no utility, just tasty vibes.',
229
+ denomUnits: [{
230
+ denom: 'factory/mantra1uvn4qgh96lc83dzu8mpf3u93lk605ls0vg0nf2/TREATS',
231
+ exponent: 0,
232
+ aliases: []
233
+ }, {
234
+ denom: 'TREATS',
235
+ exponent: 18,
236
+ aliases: ['treats']
237
+ }],
238
+ base: 'factory/mantra1uvn4qgh96lc83dzu8mpf3u93lk605ls0vg0nf2/TREATS',
239
+ name: 'Shibe Inu Treats',
240
+ display: 'TREATS',
241
+ symbol: 'TREATS',
242
+ logoURIs: {
243
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/mantrachaintestnet2/images/treats.png'
244
+ },
245
+ images: [{
246
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/testnets/mantrachaintestnet2/images/treats.png'
247
+ }],
248
+ typeAsset: 'sdk.coin'
225
249
  }
226
250
  ]
227
251
  };