chain-registry 2.0.72 → 2.0.73

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 (38) hide show
  1. package/esm/mainnet/asset-lists.js +2 -0
  2. package/esm/mainnet/axelar/asset-list.js +32 -0
  3. package/esm/mainnet/axelar/ibc-data.js +29 -0
  4. package/esm/mainnet/chains.js +2 -0
  5. package/esm/mainnet/cosmoshub/ibc-data.js +29 -0
  6. package/esm/mainnet/ethereum/asset-list.js +24 -0
  7. package/esm/mainnet/ibc-data.js +3 -1
  8. package/esm/mainnet/noble/ibc-data.js +29 -0
  9. package/esm/mainnet/union/chain.js +8 -0
  10. package/esm/mainnet/wardenprotocol/asset-list.js +34 -0
  11. package/esm/mainnet/wardenprotocol/chain.js +82 -0
  12. package/esm/mainnet/wardenprotocol/index.js +4 -0
  13. package/esm/mainnet/zigchain/asset-list.js +150 -3
  14. package/esm/mainnet/zigchain/chain.js +1 -1
  15. package/esm/mainnet/zigchain/ibc-data.js +90 -0
  16. package/esm/mainnet/zigchain/index.js +2 -0
  17. package/mainnet/asset-lists.js +2 -0
  18. package/mainnet/axelar/asset-list.js +32 -0
  19. package/mainnet/axelar/ibc-data.js +29 -0
  20. package/mainnet/chains.js +2 -0
  21. package/mainnet/cosmoshub/ibc-data.js +29 -0
  22. package/mainnet/ethereum/asset-list.js +24 -0
  23. package/mainnet/ibc-data.js +3 -1
  24. package/mainnet/noble/ibc-data.js +29 -0
  25. package/mainnet/union/chain.js +8 -0
  26. package/mainnet/wardenprotocol/asset-list.d.ts +3 -0
  27. package/mainnet/wardenprotocol/asset-list.js +36 -0
  28. package/mainnet/wardenprotocol/chain.d.ts +3 -0
  29. package/mainnet/wardenprotocol/chain.js +84 -0
  30. package/mainnet/wardenprotocol/index.d.ts +2 -0
  31. package/mainnet/wardenprotocol/index.js +10 -0
  32. package/mainnet/zigchain/asset-list.js +150 -3
  33. package/mainnet/zigchain/chain.js +1 -1
  34. package/mainnet/zigchain/ibc-data.d.ts +3 -0
  35. package/mainnet/zigchain/ibc-data.js +92 -0
  36. package/mainnet/zigchain/index.d.ts +1 -0
  37. package/mainnet/zigchain/index.js +3 -1
  38. package/package.json +3 -3
@@ -208,6 +208,7 @@ import * as _union from './union';
208
208
  import * as _ununifi from './ununifi';
209
209
  import * as _uptick from './uptick';
210
210
  import * as _vector from './vector';
211
+ import * as _wardenprotocol from './wardenprotocol';
211
212
  import * as _xarchain from './xarchain';
212
213
  import * as _xion from './xion';
213
214
  import * as _xpla from './xpla';
@@ -426,6 +427,7 @@ const assetList = [
426
427
  _ununifi.assetList,
427
428
  _uptick.assetList,
428
429
  _vector.assetList,
430
+ _wardenprotocol.assetList,
429
431
  _xarchain.assetList,
430
432
  _xion.assetList,
431
433
  _xpla.assetList,
@@ -1648,6 +1648,38 @@ const info = {
1648
1648
  website: 'https://www.movementnetwork.xyz/',
1649
1649
  twitter: 'https://twitter.com/movementfdn'
1650
1650
  }
1651
+ },
1652
+ {
1653
+ description: 'ZigCoin from Ethereum via Axelar Bridge',
1654
+ denomUnits: [{
1655
+ denom: 'unit-zig',
1656
+ exponent: 0
1657
+ }, {
1658
+ denom: 'zig',
1659
+ exponent: 18
1660
+ }],
1661
+ typeAsset: 'sdk.coin',
1662
+ base: 'unit-zig',
1663
+ name: 'ZigCoin',
1664
+ display: 'zig',
1665
+ symbol: 'ZigCoin',
1666
+ traces: [{
1667
+ type: 'bridge',
1668
+ counterparty: {
1669
+ chainName: 'ethereum',
1670
+ baseDenom: '0xb2617246d0c6c0087f18703d576831899ca94f01'
1671
+ },
1672
+ provider: 'Axelar'
1673
+ }],
1674
+ images: [{
1675
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zigchain/images/zigchain.png',
1676
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zigchain/images/zigchain.svg'
1677
+ }],
1678
+ logoURIs: {
1679
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zigchain/images/zigchain.png',
1680
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zigchain/images/zigchain.svg'
1681
+ },
1682
+ coingeckoId: 'zignaly'
1651
1683
  }
1652
1684
  ]
1653
1685
  };
@@ -1495,6 +1495,35 @@ const info = [
1495
1495
  preferred: true
1496
1496
  }
1497
1497
  }]
1498
+ },
1499
+ {
1500
+ $schema: '../ibc_data.schema.json',
1501
+ chain1: {
1502
+ chainName: 'axelar',
1503
+ clientId: '07-tendermint-251',
1504
+ connectionId: 'connection-242'
1505
+ },
1506
+ chain2: {
1507
+ chainName: 'zigchain',
1508
+ clientId: '07-tendermint-1',
1509
+ connectionId: 'connection-1'
1510
+ },
1511
+ channels: [{
1512
+ chain1: {
1513
+ channelId: 'channel-182',
1514
+ portId: 'transfer'
1515
+ },
1516
+ chain2: {
1517
+ channelId: 'channel-1',
1518
+ portId: 'transfer'
1519
+ },
1520
+ ordering: 'unordered',
1521
+ version: 'ics20-1',
1522
+ tags: {
1523
+ status: 'live',
1524
+ preferred: true
1525
+ }
1526
+ }]
1498
1527
  }
1499
1528
  ];
1500
1529
  export default info;
@@ -208,6 +208,7 @@ import * as _union from './union';
208
208
  import * as _ununifi from './ununifi';
209
209
  import * as _uptick from './uptick';
210
210
  import * as _vector from './vector';
211
+ import * as _wardenprotocol from './wardenprotocol';
211
212
  import * as _xarchain from './xarchain';
212
213
  import * as _xion from './xion';
213
214
  import * as _xpla from './xpla';
@@ -426,6 +427,7 @@ const chains = [
426
427
  _ununifi.chain,
427
428
  _uptick.chain,
428
429
  _vector.chain,
430
+ _wardenprotocol.chain,
429
431
  _xarchain.chain,
430
432
  _xion.chain,
431
433
  _xpla.chain,
@@ -2192,6 +2192,35 @@ const info = [
2192
2192
  preferred: true
2193
2193
  }
2194
2194
  }]
2195
+ },
2196
+ {
2197
+ $schema: '../ibc_data.schema.json',
2198
+ chain1: {
2199
+ chainName: 'cosmoshub',
2200
+ clientId: '07-tendermint-1439',
2201
+ connectionId: 'connection-1177'
2202
+ },
2203
+ chain2: {
2204
+ chainName: 'zigchain',
2205
+ clientId: '07-tendermint-4',
2206
+ connectionId: 'connection-4'
2207
+ },
2208
+ channels: [{
2209
+ chain1: {
2210
+ channelId: 'channel-1555',
2211
+ portId: 'transfer'
2212
+ },
2213
+ chain2: {
2214
+ channelId: 'channel-4',
2215
+ portId: 'transfer'
2216
+ },
2217
+ ordering: 'unordered',
2218
+ version: 'ics20-1',
2219
+ tags: {
2220
+ status: 'live',
2221
+ preferred: true
2222
+ }
2223
+ }]
2195
2224
  }
2196
2225
  ];
2197
2226
  export default info;
@@ -2063,6 +2063,30 @@ const info = {
2063
2063
  png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/midas-mbtc.png',
2064
2064
  svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/midas-mbtc.svg'
2065
2065
  }]
2066
+ },
2067
+ {
2068
+ typeAsset: 'erc20',
2069
+ address: '0xb2617246d0c6c0087f18703d576831899ca94f01',
2070
+ denomUnits: [{
2071
+ denom: '0xb2617246d0c6c0087f18703d576831899ca94f01',
2072
+ exponent: 0
2073
+ }, {
2074
+ denom: 'ZIG',
2075
+ exponent: 18
2076
+ }],
2077
+ base: '0xb2617246d0c6c0087f18703d576831899ca94f01',
2078
+ name: 'ZigCoin',
2079
+ display: 'ZIG',
2080
+ symbol: 'ZIG',
2081
+ logoURIs: {
2082
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zigchain/images/zigchain.png',
2083
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zigchain/images/zigchain.svg'
2084
+ },
2085
+ coingeckoId: 'zignaly',
2086
+ images: [{
2087
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zigchain/images/zigchain.png',
2088
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zigchain/images/zigchain.svg'
2089
+ }]
2066
2090
  }
2067
2091
  ]
2068
2092
  };
@@ -166,6 +166,7 @@ import * as _xion from './xion';
166
166
  import * as _xpla from './xpla';
167
167
  import * as _xrplevm from './xrplevm';
168
168
  import * as _zenrock from './zenrock';
169
+ import * as _zigchain from './zigchain';
169
170
  const ibcData = [
170
171
  ..._ethereum.ibcData,
171
172
  ..._namada.ibcData,
@@ -334,6 +335,7 @@ const ibcData = [
334
335
  ..._xion.ibcData,
335
336
  ..._xpla.ibcData,
336
337
  ..._xrplevm.ibcData,
337
- ..._zenrock.ibcData
338
+ ..._zenrock.ibcData,
339
+ ..._zigchain.ibcData
338
340
  ];
339
341
  export default ibcData;
@@ -1648,6 +1648,35 @@ const info = [
1648
1648
  preferred: true
1649
1649
  }
1650
1650
  }]
1651
+ },
1652
+ {
1653
+ $schema: '../ibc_data.schema.json',
1654
+ chain1: {
1655
+ chainName: 'noble',
1656
+ clientId: '07-tendermint-184',
1657
+ connectionId: 'connection-179'
1658
+ },
1659
+ chain2: {
1660
+ chainName: 'zigchain',
1661
+ clientId: '07-tendermint-3',
1662
+ connectionId: 'connection-3'
1663
+ },
1664
+ channels: [{
1665
+ chain1: {
1666
+ channelId: 'channel-175',
1667
+ portId: 'transfer'
1668
+ },
1669
+ chain2: {
1670
+ channelId: 'channel-3',
1671
+ portId: 'transfer'
1672
+ },
1673
+ ordering: 'unordered',
1674
+ version: 'ics20-1',
1675
+ tags: {
1676
+ status: 'live',
1677
+ preferred: true
1678
+ }
1679
+ }]
1651
1680
  }
1652
1681
  ];
1653
1682
  export default info;
@@ -84,6 +84,10 @@ const info = {
84
84
  {
85
85
  address: 'https://m-union-rpc.ruangnode.com:443',
86
86
  provider: 'ruangnode'
87
+ },
88
+ {
89
+ address: 'https://union-rpc.highstakes.ch',
90
+ provider: 'High Stakes 🇨🇭'
87
91
  }
88
92
  ],
89
93
  rest: [
@@ -114,6 +118,10 @@ const info = {
114
118
  {
115
119
  address: 'https://m-union-api.ruangnode.com:443',
116
120
  provider: 'ruangnode'
121
+ },
122
+ {
123
+ address: 'https://union-api.highstakes.ch',
124
+ provider: 'High Stakes 🇨🇭'
117
125
  }
118
126
  ],
119
127
  grpc: [
@@ -0,0 +1,34 @@
1
+ const info = {
2
+ $schema: '../assetlist.schema.json',
3
+ chainName: 'wardenprotocol',
4
+ assets: [{
5
+ description: 'Warden is the Global Agent Network—an open platform that gives AI Agents identity, trust, payments, and instant access to millions of users.',
6
+ extendedDescription: 'Warden is building the Global Agent Network, the foundation of the Agent economy. Through its full-stack platform—Warden Studio, Warden Chain, and Warden Agent Hub—developers can create and deploy AI Agents with onchain identity, trust, and monetization, while users access them through Warden, the \'Everything App\' for crypto.',
7
+ denomUnits: [{
8
+ denom: 'award',
9
+ exponent: 0
10
+ }, {
11
+ denom: 'ward',
12
+ exponent: 18
13
+ }],
14
+ base: 'award',
15
+ name: 'Warden',
16
+ display: 'ward',
17
+ symbol: 'WARD',
18
+ logoURIs: {
19
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/wardenprotocol/images/ward.png',
20
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/wardenprotocol/images/ward.svg'
21
+ },
22
+ coingeckoId: 'warden-2',
23
+ images: [{
24
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/wardenprotocol/images/ward.png',
25
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/wardenprotocol/images/ward.svg'
26
+ }],
27
+ socials: {
28
+ website: 'https://wardenprotocol.org/',
29
+ twitter: 'https://twitter.com/wardenprotocol'
30
+ },
31
+ typeAsset: 'sdk.coin'
32
+ }]
33
+ };
34
+ export default info;
@@ -0,0 +1,82 @@
1
+ const info = {
2
+ $schema: '../chain.schema.json',
3
+ chainName: 'wardenprotocol',
4
+ status: 'live',
5
+ networkType: 'mainnet',
6
+ website: 'https://wardenprotocol.org/',
7
+ prettyName: 'Warden',
8
+ chainType: 'cosmos',
9
+ chainId: 'warden_8765-1',
10
+ bech32Prefix: 'warden',
11
+ daemonName: 'wardend',
12
+ nodeHome: '$HOME/.warden',
13
+ keyAlgos: ['ethsecp256k1'],
14
+ slip44: 118,
15
+ fees: {
16
+ feeTokens: [{
17
+ denom: 'award',
18
+ fixedMinGasPrice: 140000000000,
19
+ lowGasPrice: 196000000000,
20
+ averageGasPrice: 225400000000,
21
+ highGasPrice: 254800000000
22
+ }]
23
+ },
24
+ staking: {
25
+ stakingTokens: [{
26
+ denom: 'award'
27
+ }],
28
+ lockDuration: {
29
+ time: '1209600s'
30
+ }
31
+ },
32
+ codebase: {
33
+ gitRepo: 'https://github.com/warden-protocol/wardenprotocol',
34
+ recommendedVersion: 'v0.7.0',
35
+ compatibleVersions: ['v0.7.0'],
36
+ binaries: {
37
+ "linux/amd64": 'https://github.com/warden-protocol/wardenprotocol/releases/download/v0.7.0/wardend-v0.7.0-linux-amd64',
38
+ "linux/arm64": 'https://github.com/warden-protocol/wardenprotocol/releases/download/v0.7.0/wardend-v0.7.0-linux-arm64'
39
+ },
40
+ consensus: {
41
+ type: 'cometbft',
42
+ version: 'v0.38.18'
43
+ },
44
+ genesis: {
45
+ genesisUrl: 'https://github.com/warden-protocol/networks/raw/main/mainnet/genesis.json'
46
+ },
47
+ sdk: {
48
+ type: 'cosmos',
49
+ version: 'v0.53.4'
50
+ }
51
+ },
52
+ logoURIs: {
53
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/wardenprotocol/images/ward.png',
54
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/wardenprotocol/images/ward.svg'
55
+ },
56
+ description: 'Warden is building the Global Agent Network, the foundation of the Agent economy. Through its full-stack platform—Warden Studio, Warden Chain, and Warden Agent Hub—developers can create and deploy AI Agents with onchain identity, trust, and monetization, while users access them through Warden, the \'Everything App\' for crypto.',
57
+ apis: {
58
+ rpc: [{
59
+ address: 'https://rpc.wardenprotocol.org',
60
+ provider: 'Warden Labs'
61
+ }],
62
+ rest: [{
63
+ address: 'https://api.wardenprotocol.org',
64
+ provider: 'Warden Labs'
65
+ }],
66
+ grpc: [{
67
+ address: 'https://grpc.wardenprotocol.org',
68
+ provider: 'Warden Labs'
69
+ }]
70
+ },
71
+ explorers: [{
72
+ kind: 'Warden Labs',
73
+ url: 'https://explorer.wardenprotocol.org/',
74
+ txPage: 'https://explorer.wardenprotocol.org/tx/${txHash}',
75
+ accountPage: 'https://explorer.wardenprotocol.org/address/${accountAddress}'
76
+ }],
77
+ images: [{
78
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/wardenprotocol/images/ward.png',
79
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/wardenprotocol/images/ward.svg'
80
+ }]
81
+ };
82
+ 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;
@@ -1,7 +1,8 @@
1
1
  const info = {
2
2
  $schema: '../assetlist.schema.json',
3
3
  chainName: 'zigchain',
4
- assets: [{
4
+ assets: [
5
+ {
5
6
  description: 'The native token of ZIGChain',
6
7
  extendedDescription: 'ZIGChain (ZIG) is a Layer 1 blockchain focused on unlocking financial opportunities for everyone - regardless of their income, location, or level of knowledge.',
7
8
  denomUnits: [
@@ -47,7 +48,8 @@ const info = {
47
48
  discord: 'https://discord.zignaly.com',
48
49
  medium: 'https://medium.com/zignaly'
49
50
  }
50
- }, {
51
+ },
52
+ {
51
53
  description: 'Staked Zig Token by Valdora Finance - Decentralized staking with stZIG',
52
54
  denomUnits: [{
53
55
  denom: 'coin.zig109f7g2rzl2aqee7z6gffn8kfe9cpqx0mjkk7ethmx8m2hq4xpe9snmaam2.stzig',
@@ -75,6 +77,151 @@ const info = {
75
77
  telegram: 'https://t.me/ValdoraWarriors',
76
78
  discord: 'http://discord.gg/valdora'
77
79
  }
78
- }]
80
+ },
81
+ {
82
+ description: 'Noble USDC on ZIGChain',
83
+ denomUnits: [{
84
+ denom: 'ibc/6490A7EAB61059BFC1CDDEB05917DD70BDF3A611654162A1A47DB930D40D8AF4',
85
+ exponent: 0,
86
+ aliases: ['microusdc', 'uusdc']
87
+ }, {
88
+ denom: 'usdc',
89
+ exponent: 6
90
+ }],
91
+ typeAsset: 'ics20',
92
+ base: 'ibc/6490A7EAB61059BFC1CDDEB05917DD70BDF3A611654162A1A47DB930D40D8AF4',
93
+ name: 'Noble USDC',
94
+ display: 'usdc',
95
+ symbol: 'USDC',
96
+ traces: [
97
+ {
98
+ type: 'synthetic',
99
+ counterparty: {
100
+ chainName: 'forex',
101
+ baseDenom: 'USD'
102
+ },
103
+ provider: 'Circle'
104
+ },
105
+ {
106
+ type: 'additional-mintage',
107
+ counterparty: {
108
+ chainName: 'ethereum',
109
+ baseDenom: '0xa0b86991c6218b36c1d19d4a2e9eb0ce3606eb48'
110
+ },
111
+ provider: 'Circle'
112
+ },
113
+ {
114
+ type: 'ibc',
115
+ counterparty: {
116
+ chainName: 'noble',
117
+ baseDenom: 'uusdc',
118
+ channelId: 'channel-175'
119
+ },
120
+ chain: {
121
+ channelId: 'channel-3',
122
+ path: 'transfer/channel-3/uusdc'
123
+ }
124
+ }
125
+ ],
126
+ logoURIs: {
127
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png',
128
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg'
129
+ },
130
+ images: [{
131
+ imageSync: {
132
+ chainName: 'noble',
133
+ baseDenom: 'uusdc'
134
+ },
135
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.png',
136
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/_non-cosmos/ethereum/images/usdc.svg',
137
+ theme: {
138
+ circle: true
139
+ }
140
+ }],
141
+ coingeckoId: 'usd-coin'
142
+ },
143
+ {
144
+ description: 'Cosmos Hub Atom on ZIGChain',
145
+ denomUnits: [{
146
+ denom: 'ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0',
147
+ exponent: 0,
148
+ aliases: ['uatom']
149
+ }, {
150
+ denom: 'atom',
151
+ exponent: 6
152
+ }],
153
+ typeAsset: 'ics20',
154
+ base: 'ibc/EF48E6B1A1A19F47ECAEA62F5670C37C0580E86A9E88498B7E393EB6F49F33C0',
155
+ name: 'Cosmos Hub Atom',
156
+ display: 'atom',
157
+ symbol: 'ATOM',
158
+ traces: [{
159
+ type: 'ibc',
160
+ counterparty: {
161
+ chainName: 'cosmoshub',
162
+ baseDenom: 'uatom',
163
+ channelId: 'channel-1555'
164
+ },
165
+ chain: {
166
+ channelId: 'channel-4',
167
+ path: 'transfer/channel-4/uatom'
168
+ }
169
+ }],
170
+ logoURIs: {
171
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
172
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg'
173
+ },
174
+ images: [{
175
+ imageSync: {
176
+ chainName: 'cosmoshub',
177
+ baseDenom: 'uatom'
178
+ },
179
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.png',
180
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/cosmoshub/images/atom.svg'
181
+ }],
182
+ coingeckoId: 'cosmos'
183
+ },
184
+ {
185
+ description: 'ZIG bridged via Axelar on ZIGChain',
186
+ denomUnits: [{
187
+ denom: 'ibc/9BEE293E6559ED860CC702685996F394D4991D6DFFD60A19ABC3723E6F34788A',
188
+ exponent: 0,
189
+ aliases: ['weizig.axl']
190
+ }, {
191
+ denom: 'zig.axl',
192
+ exponent: 18
193
+ }],
194
+ typeAsset: 'ics20',
195
+ base: 'ibc/9BEE293E6559ED860CC702685996F394D4991D6DFFD60A19ABC3723E6F34788A',
196
+ name: 'ZIG (Axelar)',
197
+ display: 'zig.axl',
198
+ symbol: 'ZIG.axl',
199
+ traces: [{
200
+ type: 'ibc',
201
+ counterparty: {
202
+ chainName: 'axelar',
203
+ baseDenom: 'unit-zig',
204
+ channelId: 'channel-182'
205
+ },
206
+ chain: {
207
+ channelId: 'channel-1',
208
+ path: 'transfer/channel-1/unit-zig'
209
+ }
210
+ }],
211
+ logoURIs: {
212
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zigchain/images/zigchain.png',
213
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zigchain/images/zigchain.svg'
214
+ },
215
+ images: [{
216
+ imageSync: {
217
+ chainName: 'zigchain',
218
+ baseDenom: 'uzig'
219
+ },
220
+ png: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zigchain/images/zigchain.png',
221
+ svg: 'https://raw.githubusercontent.com/cosmos/chain-registry/master/zigchain/images/zigchain.svg'
222
+ }],
223
+ coingeckoId: 'zignaly'
224
+ }
225
+ ]
79
226
  };
80
227
  export default info;
@@ -9,7 +9,7 @@ const info = {
9
9
  chainId: 'zigchain-1',
10
10
  bech32Prefix: 'zig',
11
11
  daemonName: 'zigchaind',
12
- nodeHome: '$HOME/.zigchaind',
12
+ nodeHome: '$HOME/.zigchain',
13
13
  keyAlgos: ['secp256k1'],
14
14
  slip44: 118,
15
15
  description: 'ZIGChain (ZIG) is a Layer 1 blockchain focused on unlocking financial opportunities for everyone - regardless of their income, location, or level of knowledge.',
@@ -0,0 +1,90 @@
1
+ const info = [
2
+ {
3
+ $schema: '../ibc_data.schema.json',
4
+ chain1: {
5
+ chainName: 'axelar',
6
+ clientId: '07-tendermint-251',
7
+ connectionId: 'connection-242'
8
+ },
9
+ chain2: {
10
+ chainName: 'zigchain',
11
+ clientId: '07-tendermint-1',
12
+ connectionId: 'connection-1'
13
+ },
14
+ channels: [{
15
+ chain1: {
16
+ channelId: 'channel-182',
17
+ portId: 'transfer'
18
+ },
19
+ chain2: {
20
+ channelId: 'channel-1',
21
+ portId: 'transfer'
22
+ },
23
+ ordering: 'unordered',
24
+ version: 'ics20-1',
25
+ tags: {
26
+ status: 'live',
27
+ preferred: true
28
+ }
29
+ }]
30
+ },
31
+ {
32
+ $schema: '../ibc_data.schema.json',
33
+ chain1: {
34
+ chainName: 'cosmoshub',
35
+ clientId: '07-tendermint-1439',
36
+ connectionId: 'connection-1177'
37
+ },
38
+ chain2: {
39
+ chainName: 'zigchain',
40
+ clientId: '07-tendermint-4',
41
+ connectionId: 'connection-4'
42
+ },
43
+ channels: [{
44
+ chain1: {
45
+ channelId: 'channel-1555',
46
+ portId: 'transfer'
47
+ },
48
+ chain2: {
49
+ channelId: 'channel-4',
50
+ portId: 'transfer'
51
+ },
52
+ ordering: 'unordered',
53
+ version: 'ics20-1',
54
+ tags: {
55
+ status: 'live',
56
+ preferred: true
57
+ }
58
+ }]
59
+ },
60
+ {
61
+ $schema: '../ibc_data.schema.json',
62
+ chain1: {
63
+ chainName: 'noble',
64
+ clientId: '07-tendermint-184',
65
+ connectionId: 'connection-179'
66
+ },
67
+ chain2: {
68
+ chainName: 'zigchain',
69
+ clientId: '07-tendermint-3',
70
+ connectionId: 'connection-3'
71
+ },
72
+ channels: [{
73
+ chain1: {
74
+ channelId: 'channel-175',
75
+ portId: 'transfer'
76
+ },
77
+ chain2: {
78
+ channelId: 'channel-3',
79
+ portId: 'transfer'
80
+ },
81
+ ordering: 'unordered',
82
+ version: 'ics20-1',
83
+ tags: {
84
+ status: 'live',
85
+ preferred: true
86
+ }
87
+ }]
88
+ }
89
+ ];
90
+ 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;
@@ -233,6 +233,7 @@ const _union = __importStar(require("./union"));
233
233
  const _ununifi = __importStar(require("./ununifi"));
234
234
  const _uptick = __importStar(require("./uptick"));
235
235
  const _vector = __importStar(require("./vector"));
236
+ const _wardenprotocol = __importStar(require("./wardenprotocol"));
236
237
  const _xarchain = __importStar(require("./xarchain"));
237
238
  const _xion = __importStar(require("./xion"));
238
239
  const _xpla = __importStar(require("./xpla"));
@@ -451,6 +452,7 @@ const assetList = [
451
452
  _ununifi.assetList,
452
453
  _uptick.assetList,
453
454
  _vector.assetList,
455
+ _wardenprotocol.assetList,
454
456
  _xarchain.assetList,
455
457
  _xion.assetList,
456
458
  _xpla.assetList,