chain-registry 2.0.200 → 2.0.201

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.
@@ -167,7 +167,6 @@ import * as _planq from './planq';
167
167
  import * as _pocket from './pocket';
168
168
  import * as _point from './point';
169
169
  import * as _provenance from './provenance';
170
- import * as _pryzm from './pryzm';
171
170
  import * as _pundix from './pundix';
172
171
  import * as _pylons from './pylons';
173
172
  import * as _qfs from './qfs';
@@ -403,7 +402,6 @@ const assetList = [
403
402
  _pocket.assetList,
404
403
  _point.assetList,
405
404
  _provenance.assetList,
406
- _pryzm.assetList,
407
405
  _pundix.assetList,
408
406
  _pylons.assetList,
409
407
  _qfs.assetList,
@@ -167,7 +167,6 @@ import * as _planq from './planq';
167
167
  import * as _pocket from './pocket';
168
168
  import * as _point from './point';
169
169
  import * as _provenance from './provenance';
170
- import * as _pryzm from './pryzm';
171
170
  import * as _pundix from './pundix';
172
171
  import * as _pylons from './pylons';
173
172
  import * as _qfs from './qfs';
@@ -403,7 +402,6 @@ const chains = [
403
402
  _pocket.chain,
404
403
  _point.chain,
405
404
  _provenance.chain,
406
- _pryzm.chain,
407
405
  _pundix.chain,
408
406
  _pylons.chain,
409
407
  _qfs.chain,
@@ -0,0 +1,32 @@
1
+ const info = [{
2
+ $schema: '../ibc_data.schema.json',
3
+ chain1: {
4
+ chainName: 'hazinachain',
5
+ chainId: 'hazinachain-1',
6
+ clientId: '07-tendermint-3',
7
+ connectionId: 'connection-1'
8
+ },
9
+ chain2: {
10
+ chainName: 'osmosis',
11
+ chainId: 'osmosis-1',
12
+ clientId: '07-tendermint-3702',
13
+ connectionId: 'connection-11056'
14
+ },
15
+ channels: [{
16
+ chain1: {
17
+ channelId: 'channel-1',
18
+ portId: 'transfer'
19
+ },
20
+ chain2: {
21
+ channelId: 'channel-110100',
22
+ portId: 'transfer'
23
+ },
24
+ ordering: 'unordered',
25
+ version: 'ics20-1',
26
+ tags: {
27
+ preferred: true,
28
+ status: 'ACTIVE'
29
+ }
30
+ }]
31
+ }];
32
+ 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;
@@ -67,6 +67,7 @@ import * as _gitopia from './gitopia';
67
67
  import * as _gnodi from './gnodi';
68
68
  import * as _gravitybridge from './gravitybridge';
69
69
  import * as _haqq from './haqq';
70
+ import * as _hazinachain from './hazinachain';
70
71
  import * as _hippoprotocol from './hippoprotocol';
71
72
  import * as _humans from './humans';
72
73
  import * as _impacthub from './impacthub';
@@ -127,7 +128,6 @@ import * as _persistence from './persistence';
127
128
  import * as _planq from './planq';
128
129
  import * as _point from './point';
129
130
  import * as _provenance from './provenance';
130
- import * as _pryzm from './pryzm';
131
131
  import * as _pundix from './pundix';
132
132
  import * as _pylons from './pylons';
133
133
  import * as _qfs from './qfs';
@@ -247,6 +247,7 @@ const ibcData = [
247
247
  ..._gnodi.ibcData,
248
248
  ..._gravitybridge.ibcData,
249
249
  ..._haqq.ibcData,
250
+ ..._hazinachain.ibcData,
250
251
  ..._hippoprotocol.ibcData,
251
252
  ..._humans.ibcData,
252
253
  ..._impacthub.ibcData,
@@ -307,7 +308,6 @@ const ibcData = [
307
308
  ..._planq.ibcData,
308
309
  ..._point.ibcData,
309
310
  ..._provenance.ibcData,
310
- ..._pryzm.ibcData,
311
311
  ..._pundix.ibcData,
312
312
  ..._pylons.ibcData,
313
313
  ..._qfs.ibcData,
@@ -2136,6 +2136,37 @@ const info = [
2136
2136
  }
2137
2137
  }]
2138
2138
  },
2139
+ {
2140
+ $schema: '../ibc_data.schema.json',
2141
+ chain1: {
2142
+ chainName: 'hazinachain',
2143
+ chainId: 'hazinachain-1',
2144
+ clientId: '07-tendermint-3',
2145
+ connectionId: 'connection-1'
2146
+ },
2147
+ chain2: {
2148
+ chainName: 'osmosis',
2149
+ chainId: 'osmosis-1',
2150
+ clientId: '07-tendermint-3702',
2151
+ connectionId: 'connection-11056'
2152
+ },
2153
+ channels: [{
2154
+ chain1: {
2155
+ channelId: 'channel-1',
2156
+ portId: 'transfer'
2157
+ },
2158
+ chain2: {
2159
+ channelId: 'channel-110100',
2160
+ portId: 'transfer'
2161
+ },
2162
+ ordering: 'unordered',
2163
+ version: 'ics20-1',
2164
+ tags: {
2165
+ preferred: true,
2166
+ status: 'ACTIVE'
2167
+ }
2168
+ }]
2169
+ },
2139
2170
  {
2140
2171
  $schema: '../ibc_data.schema.json',
2141
2172
  chain1: {
@@ -40,6 +40,10 @@ const info = {
40
40
  description: 'The Sentinel ecosystem is a global network of autonomous dVPN applications that enable private and censorship resistant internet access.',
41
41
  apis: {
42
42
  rpc: [
43
+ {
44
+ address: 'https://rpc.saudi.dvpn-x.com',
45
+ provider: 'DIGGO: RPC Saudi Arabia'
46
+ },
43
47
  {
44
48
  address: 'https://rpc-sentinel.busurnode.com',
45
49
  provider: 'Busurnode'
@@ -118,6 +122,10 @@ const info = {
118
122
  }
119
123
  ],
120
124
  rest: [
125
+ {
126
+ address: 'https://api.saudi.dvpn-x.com',
127
+ provider: 'DIGGO: API Saudi Arabia'
128
+ },
121
129
  {
122
130
  address: 'https://api-sentinel.busurnode.com',
123
131
  provider: 'Busurnode'
@@ -192,7 +192,6 @@ const _planq = __importStar(require("./planq"));
192
192
  const _pocket = __importStar(require("./pocket"));
193
193
  const _point = __importStar(require("./point"));
194
194
  const _provenance = __importStar(require("./provenance"));
195
- const _pryzm = __importStar(require("./pryzm"));
196
195
  const _pundix = __importStar(require("./pundix"));
197
196
  const _pylons = __importStar(require("./pylons"));
198
197
  const _qfs = __importStar(require("./qfs"));
@@ -428,7 +427,6 @@ const assetList = [
428
427
  _pocket.assetList,
429
428
  _point.assetList,
430
429
  _provenance.assetList,
431
- _pryzm.assetList,
432
430
  _pundix.assetList,
433
431
  _pylons.assetList,
434
432
  _qfs.assetList,
package/mainnet/chains.js CHANGED
@@ -192,7 +192,6 @@ const _planq = __importStar(require("./planq"));
192
192
  const _pocket = __importStar(require("./pocket"));
193
193
  const _point = __importStar(require("./point"));
194
194
  const _provenance = __importStar(require("./provenance"));
195
- const _pryzm = __importStar(require("./pryzm"));
196
195
  const _pundix = __importStar(require("./pundix"));
197
196
  const _pylons = __importStar(require("./pylons"));
198
197
  const _qfs = __importStar(require("./qfs"));
@@ -428,7 +427,6 @@ const chains = [
428
427
  _pocket.chain,
429
428
  _point.chain,
430
429
  _provenance.chain,
431
- _pryzm.chain,
432
430
  _pundix.chain,
433
431
  _pylons.chain,
434
432
  _qfs.chain,
@@ -0,0 +1,34 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ const info = [{
4
+ $schema: '../ibc_data.schema.json',
5
+ chain1: {
6
+ chainName: 'hazinachain',
7
+ chainId: 'hazinachain-1',
8
+ clientId: '07-tendermint-3',
9
+ connectionId: 'connection-1'
10
+ },
11
+ chain2: {
12
+ chainName: 'osmosis',
13
+ chainId: 'osmosis-1',
14
+ clientId: '07-tendermint-3702',
15
+ connectionId: 'connection-11056'
16
+ },
17
+ channels: [{
18
+ chain1: {
19
+ channelId: 'channel-1',
20
+ portId: 'transfer'
21
+ },
22
+ chain2: {
23
+ channelId: 'channel-110100',
24
+ portId: 'transfer'
25
+ },
26
+ ordering: 'unordered',
27
+ version: 'ics20-1',
28
+ tags: {
29
+ preferred: true,
30
+ status: 'ACTIVE'
31
+ }
32
+ }]
33
+ }];
34
+ 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;
@@ -92,6 +92,7 @@ const _gitopia = __importStar(require("./gitopia"));
92
92
  const _gnodi = __importStar(require("./gnodi"));
93
93
  const _gravitybridge = __importStar(require("./gravitybridge"));
94
94
  const _haqq = __importStar(require("./haqq"));
95
+ const _hazinachain = __importStar(require("./hazinachain"));
95
96
  const _hippoprotocol = __importStar(require("./hippoprotocol"));
96
97
  const _humans = __importStar(require("./humans"));
97
98
  const _impacthub = __importStar(require("./impacthub"));
@@ -152,7 +153,6 @@ const _persistence = __importStar(require("./persistence"));
152
153
  const _planq = __importStar(require("./planq"));
153
154
  const _point = __importStar(require("./point"));
154
155
  const _provenance = __importStar(require("./provenance"));
155
- const _pryzm = __importStar(require("./pryzm"));
156
156
  const _pundix = __importStar(require("./pundix"));
157
157
  const _pylons = __importStar(require("./pylons"));
158
158
  const _qfs = __importStar(require("./qfs"));
@@ -272,6 +272,7 @@ const ibcData = [
272
272
  ..._gnodi.ibcData,
273
273
  ..._gravitybridge.ibcData,
274
274
  ..._haqq.ibcData,
275
+ ..._hazinachain.ibcData,
275
276
  ..._hippoprotocol.ibcData,
276
277
  ..._humans.ibcData,
277
278
  ..._impacthub.ibcData,
@@ -332,7 +333,6 @@ const ibcData = [
332
333
  ..._planq.ibcData,
333
334
  ..._point.ibcData,
334
335
  ..._provenance.ibcData,
335
- ..._pryzm.ibcData,
336
336
  ..._pundix.ibcData,
337
337
  ..._pylons.ibcData,
338
338
  ..._qfs.ibcData,
@@ -2138,6 +2138,37 @@ const info = [
2138
2138
  }
2139
2139
  }]
2140
2140
  },
2141
+ {
2142
+ $schema: '../ibc_data.schema.json',
2143
+ chain1: {
2144
+ chainName: 'hazinachain',
2145
+ chainId: 'hazinachain-1',
2146
+ clientId: '07-tendermint-3',
2147
+ connectionId: 'connection-1'
2148
+ },
2149
+ chain2: {
2150
+ chainName: 'osmosis',
2151
+ chainId: 'osmosis-1',
2152
+ clientId: '07-tendermint-3702',
2153
+ connectionId: 'connection-11056'
2154
+ },
2155
+ channels: [{
2156
+ chain1: {
2157
+ channelId: 'channel-1',
2158
+ portId: 'transfer'
2159
+ },
2160
+ chain2: {
2161
+ channelId: 'channel-110100',
2162
+ portId: 'transfer'
2163
+ },
2164
+ ordering: 'unordered',
2165
+ version: 'ics20-1',
2166
+ tags: {
2167
+ preferred: true,
2168
+ status: 'ACTIVE'
2169
+ }
2170
+ }]
2171
+ },
2141
2172
  {
2142
2173
  $schema: '../ibc_data.schema.json',
2143
2174
  chain1: {
@@ -42,6 +42,10 @@ const info = {
42
42
  description: 'The Sentinel ecosystem is a global network of autonomous dVPN applications that enable private and censorship resistant internet access.',
43
43
  apis: {
44
44
  rpc: [
45
+ {
46
+ address: 'https://rpc.saudi.dvpn-x.com',
47
+ provider: 'DIGGO: RPC Saudi Arabia'
48
+ },
45
49
  {
46
50
  address: 'https://rpc-sentinel.busurnode.com',
47
51
  provider: 'Busurnode'
@@ -120,6 +124,10 @@ const info = {
120
124
  }
121
125
  ],
122
126
  rest: [
127
+ {
128
+ address: 'https://api.saudi.dvpn-x.com',
129
+ provider: 'DIGGO: API Saudi Arabia'
130
+ },
123
131
  {
124
132
  address: 'https://api-sentinel.busurnode.com',
125
133
  provider: 'Busurnode'
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "chain-registry",
3
- "version": "2.0.200",
3
+ "version": "2.0.201",
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.200"
32
+ "@chain-registry/types": "^2.0.201"
33
33
  },
34
34
  "keywords": [
35
35
  "chain-registry",
@@ -39,5 +39,5 @@
39
39
  "interchain",
40
40
  "tokens"
41
41
  ],
42
- "gitHead": "8b8e90a5846dfb59a4e7ab2629aeedb1212872e4"
42
+ "gitHead": "44621821d90d7b731908f748b7b70ed1fb8fbaf1"
43
43
  }