@hyperlane-xyz/registry 1.0.7 → 1.1.1
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.
- package/README.md +3 -16
- package/dist/chains/schema.json +16 -1
- package/package.json +2 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# Hyperlane Registry
|
|
2
2
|
|
|
3
|
-
A collection of configs, artifacts, and schemas for Hyperlane.
|
|
3
|
+
A collection of configs, artifacts, and schemas for Hyperlane. See the [documentation](https://docs.hyperlane.xyz/docs/reference/registries) for more information.
|
|
4
4
|
|
|
5
5
|
## Contents
|
|
6
6
|
|
|
@@ -11,8 +11,6 @@ Structured as a folder for each chain. Each folder should contain a `metadata.ya
|
|
|
11
11
|
|
|
12
12
|
### Deployments
|
|
13
13
|
|
|
14
|
-
**WORK IN PROGRESS: Note, the shape and contents of the deployments folders are subject to change**
|
|
15
|
-
|
|
16
14
|
#### Core
|
|
17
15
|
|
|
18
16
|
Configs and artifacts for [Hyperlane Core Contract](https://docs.hyperlane.xyz/docs/deploy/deploy-hyperlane) deployments.
|
|
@@ -21,17 +19,6 @@ Configs and artifacts for [Hyperlane Core Contract](https://docs.hyperlane.xyz/d
|
|
|
21
19
|
|
|
22
20
|
Address artifacts for [Warp Route](https://docs.hyperlane.xyz/docs/deploy/deploy-warp-route) token deployments.
|
|
23
21
|
|
|
24
|
-
##
|
|
25
|
-
|
|
26
|
-
### Via the NPM package
|
|
27
|
-
|
|
28
|
-
```sh
|
|
29
|
-
# With npm
|
|
30
|
-
npm install @hyperlane-xyz/registry
|
|
31
|
-
# Or with yarn
|
|
32
|
-
yarn add @hyperlane-xyz/registry
|
|
33
|
-
```
|
|
34
|
-
|
|
35
|
-
### Via SDK utilities
|
|
22
|
+
## Contributing
|
|
36
23
|
|
|
37
|
-
|
|
24
|
+
This registry is maintained by the core Hyperlane team but community members are encouraged to add chain and deployment information here! See the [Contribution Guide](./CONTRIBUTING.md) for more information.
|
package/dist/chains/schema.json
CHANGED
|
@@ -14,7 +14,6 @@
|
|
|
14
14
|
"enum": [
|
|
15
15
|
"ethereum",
|
|
16
16
|
"sealevel",
|
|
17
|
-
"fuel",
|
|
18
17
|
"cosmos"
|
|
19
18
|
],
|
|
20
19
|
"description": "The type of protocol used by this chain. See ProtocolType for valid values."
|
|
@@ -91,6 +90,11 @@
|
|
|
91
90
|
"format": "uri",
|
|
92
91
|
"description": "The HTTP URL of the RPC endpoint (preferably HTTPS)."
|
|
93
92
|
},
|
|
93
|
+
"concurrency": {
|
|
94
|
+
"type": "integer",
|
|
95
|
+
"exclusiveMinimum": 0,
|
|
96
|
+
"description": "Maximum number of concurrent RPC requests."
|
|
97
|
+
},
|
|
94
98
|
"webSocket": {
|
|
95
99
|
"type": "string",
|
|
96
100
|
"description": "The WSS URL if the endpoint also supports websockets."
|
|
@@ -254,6 +258,17 @@
|
|
|
254
258
|
"isTestnet": {
|
|
255
259
|
"type": "boolean",
|
|
256
260
|
"description": "Whether the chain is considered a testnet or a mainnet."
|
|
261
|
+
},
|
|
262
|
+
"index": {
|
|
263
|
+
"type": "object",
|
|
264
|
+
"properties": {
|
|
265
|
+
"from": {
|
|
266
|
+
"type": "number",
|
|
267
|
+
"description": "The block to start any indexing from."
|
|
268
|
+
}
|
|
269
|
+
},
|
|
270
|
+
"additionalProperties": false,
|
|
271
|
+
"description": "Indexing settings for the chain."
|
|
257
272
|
}
|
|
258
273
|
},
|
|
259
274
|
"required": [
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hyperlane-xyz/registry",
|
|
3
3
|
"description": "A collection of configs, artifacts, and schemas for Hyperlane",
|
|
4
|
-
"version": "1.
|
|
4
|
+
"version": "1.1.1",
|
|
5
5
|
"dependencies": {
|
|
6
6
|
"yaml": "^2",
|
|
7
7
|
"zod": "^3.21.2"
|
|
@@ -9,7 +9,7 @@
|
|
|
9
9
|
"devDependencies": {
|
|
10
10
|
"@changesets/cli": "^2.26.2",
|
|
11
11
|
"@eslint/js": "^9.1.1",
|
|
12
|
-
"@hyperlane-xyz/sdk": "3.
|
|
12
|
+
"@hyperlane-xyz/sdk": "3.11.1",
|
|
13
13
|
"@types/mocha": "^10.0.1",
|
|
14
14
|
"@types/node": "^16.9.1",
|
|
15
15
|
"@typescript-eslint/parser": "^7.7.0",
|