chain-registry 2.0.41 → 2.0.43

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 (68) hide show
  1. package/esm/mainnet/asset-lists.js +2 -0
  2. package/esm/mainnet/axelar/ibc-data.js +29 -0
  3. package/esm/mainnet/bandchain/chain.js +9 -9
  4. package/esm/mainnet/chains.js +2 -0
  5. package/esm/mainnet/conscious/asset-list.js +0 -1
  6. package/esm/mainnet/cosmoshub/ibc-data.js +29 -0
  7. package/esm/mainnet/dymension/asset-list.js +1 -2
  8. package/esm/mainnet/ethereum/asset-list.js +0 -1
  9. package/esm/mainnet/ibc-data.js +2 -0
  10. package/esm/mainnet/lambda/asset-list.js +0 -1
  11. package/esm/mainnet/mande/asset-list.js +0 -1
  12. package/esm/mainnet/noble/ibc-data.js +29 -0
  13. package/esm/mainnet/odin/asset-list.js +0 -1
  14. package/esm/mainnet/onomy/asset-list.js +0 -1
  15. package/esm/mainnet/osmosis/asset-list.js +708 -3144
  16. package/esm/mainnet/paxi/asset-list.js +30 -0
  17. package/esm/mainnet/paxi/chain.js +72 -0
  18. package/esm/mainnet/paxi/index.js +4 -0
  19. package/esm/mainnet/rebus/asset-list.js +0 -1
  20. package/esm/mainnet/scorum/asset-list.js +0 -1
  21. package/esm/mainnet/sge/asset-list.js +0 -1
  22. package/esm/mainnet/starname/asset-list.js +0 -1
  23. package/esm/mainnet/stride/asset-list.js +0 -1
  24. package/esm/mainnet/sunrise/chain.js +32 -9
  25. package/esm/mainnet/sunrise/ibc-data.js +58 -0
  26. package/esm/mainnet/sunrise/index.js +2 -0
  27. package/esm/mainnet/terra2/asset-list.js +31 -0
  28. package/esm/mainnet/thorchain/asset-list.js +66 -0
  29. package/esm/mainnet/xpla/ibc-data.js +35 -3
  30. package/esm/noncosmos/0l/asset-list.js +0 -1
  31. package/esm/testnet/mantrachaintestnet2/asset-list.js +24 -0
  32. package/mainnet/asset-lists.js +2 -0
  33. package/mainnet/axelar/ibc-data.js +29 -0
  34. package/mainnet/bandchain/chain.js +9 -9
  35. package/mainnet/chains.js +2 -0
  36. package/mainnet/conscious/asset-list.js +0 -1
  37. package/mainnet/cosmoshub/ibc-data.js +29 -0
  38. package/mainnet/dymension/asset-list.js +1 -2
  39. package/mainnet/ethereum/asset-list.js +0 -1
  40. package/mainnet/ibc-data.js +2 -0
  41. package/mainnet/lambda/asset-list.js +0 -1
  42. package/mainnet/mande/asset-list.js +0 -1
  43. package/mainnet/noble/ibc-data.js +29 -0
  44. package/mainnet/odin/asset-list.js +0 -1
  45. package/mainnet/onomy/asset-list.js +0 -1
  46. package/mainnet/osmosis/asset-list.js +708 -3144
  47. package/mainnet/paxi/asset-list.d.ts +3 -0
  48. package/mainnet/paxi/asset-list.js +32 -0
  49. package/mainnet/paxi/chain.d.ts +3 -0
  50. package/mainnet/paxi/chain.js +74 -0
  51. package/mainnet/paxi/index.d.ts +2 -0
  52. package/mainnet/paxi/index.js +10 -0
  53. package/mainnet/rebus/asset-list.js +0 -1
  54. package/mainnet/scorum/asset-list.js +0 -1
  55. package/mainnet/sge/asset-list.js +0 -1
  56. package/mainnet/starname/asset-list.js +0 -1
  57. package/mainnet/stride/asset-list.js +0 -1
  58. package/mainnet/sunrise/chain.js +32 -9
  59. package/mainnet/sunrise/ibc-data.d.ts +3 -0
  60. package/mainnet/sunrise/ibc-data.js +60 -0
  61. package/mainnet/sunrise/index.d.ts +1 -0
  62. package/mainnet/sunrise/index.js +3 -1
  63. package/mainnet/terra2/asset-list.js +31 -0
  64. package/mainnet/thorchain/asset-list.js +66 -0
  65. package/mainnet/xpla/ibc-data.js +35 -3
  66. package/noncosmos/0l/asset-list.js +0 -1
  67. package/package.json +3 -3
  68. package/testnet/mantrachaintestnet2/asset-list.js +24 -0
@@ -0,0 +1,3 @@
1
+ import { AssetList } from '@chain-registry/types';
2
+ declare const info: AssetList;
3
+ export default info;
@@ -0,0 +1,32 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = {
4
+ $schema: '../assetlist.schema.json',
5
+ chainName: 'paxi',
6
+ assets: [{
7
+ description: 'PAXI is the native token of the Paxi blockchain.',
8
+ denomUnits: [{
9
+ denom: 'upaxi',
10
+ exponent: 0
11
+ }, {
12
+ denom: 'PAXI',
13
+ exponent: 6
14
+ }],
15
+ typeAsset: 'sdk.coin',
16
+ base: 'upaxi',
17
+ name: 'Paxi',
18
+ display: 'PAXI',
19
+ symbol: 'PAXI',
20
+ images: [{
21
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/paxi/images/paxi.png',
22
+ theme: {
23
+ circle: false
24
+ }
25
+ }],
26
+ keywords: ['staking'],
27
+ socials: {
28
+ website: 'https://paxinet.io'
29
+ }
30
+ }]
31
+ };
32
+ 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,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;
@@ -20,7 +20,6 @@ const info = {
20
20
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.png',
21
21
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.svg'
22
22
  },
23
- coingeckoId: 'rebus',
24
23
  images: [{
25
24
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.png',
26
25
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/rebus/images/rebus.svg'
@@ -21,7 +21,6 @@ const info = {
21
21
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/scorum/images/scr.png',
22
22
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/scorum/images/scr.svg'
23
23
  },
24
- coingeckoId: 'scorum',
25
24
  images: [{
26
25
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/scorum/images/scr.png',
27
26
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/scorum/images/scr.svg'
@@ -21,7 +21,6 @@ const info = {
21
21
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png',
22
22
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg'
23
23
  },
24
- coingeckoId: 'six-sigma',
25
24
  images: [{
26
25
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.png',
27
26
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sge/images/sge.svg',
@@ -20,7 +20,6 @@ const info = {
20
20
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.png',
21
21
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg'
22
22
  },
23
- coingeckoId: 'starname',
24
23
  images: [{
25
24
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.png',
26
25
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/starname/images/iov.svg'
@@ -425,7 +425,6 @@ const info = {
425
425
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png',
426
426
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg'
427
427
  },
428
- coingeckoId: 'stride-staked-sommelier',
429
428
  images: [{
430
429
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.png',
431
430
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/stride/images/stsomm.svg'
@@ -56,20 +56,34 @@ 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
+ rest: [
74
+ {
67
75
  address: 'https://a.consensus.sunrise-1.sunriselayer.io:1318',
68
76
  provider: 'Sunrise Team'
69
- }, {
77
+ },
78
+ {
79
+ address: 'https://sunrise-mainnet-api.mekonglabs.tech',
80
+ provider: 'MekongLabs'
81
+ },
82
+ {
70
83
  address: 'https://api-sunrise.nodeist.net',
71
84
  provider: 'Nodeist'
72
- }],
85
+ }
86
+ ],
73
87
  grpc: [{
74
88
  address: 'https://a.consensus.sunrise-1.sunriselayer.io:9092',
75
89
  provider: 'Sunrise Team'
@@ -78,17 +92,26 @@ const info = {
78
92
  provider: 'Nodeist'
79
93
  }]
80
94
  },
81
- explorers: [{
95
+ explorers: [
96
+ {
82
97
  kind: 'Risescan',
83
98
  url: 'https://risescan.sunriselayer.io',
84
99
  txPage: 'https://risescan.sunriselayer.io/txs/${txHash}',
85
100
  accountPage: 'https://risescan.sunriselayer.io/accounts/${accountAddress}'
86
- }, {
101
+ },
102
+ {
103
+ kind: 'MekongLabs Explorer',
104
+ url: 'https://explorer.mekonglabs.tech/sunrise/staking',
105
+ txPage: 'https://explorer.mekonglabs.tech/sunrise/tx/${txHash}',
106
+ accountPage: 'https://explorer.mekonglabs.tech/sunrise/account/${accountAddress}'
107
+ },
108
+ {
87
109
  kind: 'Explorer.ist',
88
110
  url: 'https://explorer.ist/sunrise',
89
111
  txPage: 'https://explorer.ist/sunrise/tx/${txHash}',
90
112
  accountPage: 'https://explorer.ist/sunrise/account/${accountAddress}'
91
- }],
113
+ }
114
+ ],
92
115
  images: [{
93
116
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.svg',
94
117
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/sunrise/images/sunrise.png'
@@ -0,0 +1,3 @@
1
+ import { IBCData } from '@chain-registry/types';
2
+ declare const info: IBCData[];
3
+ export default info;
@@ -0,0 +1,60 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = [{
4
+ $schema: '../ibc_data.schema.json',
5
+ chain1: {
6
+ chainName: 'cosmoshub',
7
+ clientId: '07-tendermint-1430',
8
+ connectionId: 'connection-1148'
9
+ },
10
+ chain2: {
11
+ chainName: 'sunrise',
12
+ clientId: '07-tendermint-7',
13
+ connectionId: 'connection-2'
14
+ },
15
+ channels: [{
16
+ chain1: {
17
+ channelId: 'channel-1421',
18
+ portId: 'transfer'
19
+ },
20
+ chain2: {
21
+ channelId: 'channel-1',
22
+ portId: 'transfer'
23
+ },
24
+ ordering: 'unordered',
25
+ version: 'ics20-1',
26
+ tags: {
27
+ status: 'live',
28
+ preferred: true
29
+ }
30
+ }]
31
+ }, {
32
+ $schema: '../ibc_data.schema.json',
33
+ chain1: {
34
+ chainName: 'noble',
35
+ clientId: '07-tendermint-180',
36
+ connectionId: 'connection-174'
37
+ },
38
+ chain2: {
39
+ chainName: 'sunrise',
40
+ clientId: '07-tendermint-2',
41
+ connectionId: 'connection-0'
42
+ },
43
+ channels: [{
44
+ chain1: {
45
+ channelId: 'channel-168',
46
+ portId: 'transfer'
47
+ },
48
+ chain2: {
49
+ channelId: 'channel-0',
50
+ portId: 'transfer'
51
+ },
52
+ ordering: 'unordered',
53
+ version: 'ics20-1',
54
+ tags: {
55
+ status: 'live',
56
+ preferred: true
57
+ }
58
+ }]
59
+ }];
60
+ exports.default = info;
@@ -1,2 +1,3 @@
1
1
  export declare const assetList: import("@chain-registry/types").AssetList;
2
2
  export declare const chain: import("@chain-registry/types").Chain;
3
+ export declare const ibcData: import("@chain-registry/types").IBCData[];
@@ -3,8 +3,10 @@ var __importDefault = (this && this.__importDefault) || function (mod) {
3
3
  return (mod && mod.__esModule) ? mod : { "default": mod };
4
4
  };
5
5
  Object.defineProperty(exports, "__esModule", { value: true });
6
- exports.chain = exports.assetList = void 0;
6
+ exports.ibcData = exports.chain = exports.assetList = void 0;
7
7
  const asset_list_1 = __importDefault(require("./asset-list"));
8
8
  const chain_1 = __importDefault(require("./chain"));
9
+ const ibc_data_1 = __importDefault(require("./ibc-data"));
9
10
  exports.assetList = asset_list_1.default;
10
11
  exports.chain = chain_1.default;
12
+ exports.ibcData = ibc_data_1.default;
@@ -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;
@@ -26,7 +26,6 @@ const info = {
26
26
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/0l/images/libra.png',
27
27
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/0l/images/libra.svg'
28
28
  }],
29
- coingeckoId: 'libra-3',
30
29
  socials: {
31
30
  website: 'https://0l.network/',
32
31
  twitter: 'https://twitter.com/0LNetwork'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chain-registry",
3
- "version": "2.0.41",
3
+ "version": "2.0.43",
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.41"
32
+ "@chain-registry/types": "^2.0.43"
33
33
  },
34
34
  "keywords": [
35
35
  "chain-registry",
@@ -39,5 +39,5 @@
39
39
  "interchain",
40
40
  "tokens"
41
41
  ],
42
- "gitHead": "6d71cbc2a1acbd50449b7edd33f9aec3e7654133"
42
+ "gitHead": "2a6ae629bb4cd3fa00ce91e2373582fc92849b9e"
43
43
  }
@@ -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
  };