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