@hyperlane-xyz/cli 1.4.2-beta0 → 1.4.3-beta0
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/examples/anvil-chains.yaml +21 -0
- package/package.json +5 -4
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# Configs for describing chain metadata for use in Hyperlane deployments or apps
|
|
2
|
+
# Consists of a map of chain names to metadata
|
|
3
|
+
# Schema here: https://github.com/hyperlane-xyz/hyperlane-monorepo/blob/main/typescript/sdk/src/metadata/chainMetadataTypes.ts
|
|
4
|
+
---
|
|
5
|
+
anvil1:
|
|
6
|
+
# Required fields:
|
|
7
|
+
chainId: 31337 # Number: Use EIP-155 for EVM chains
|
|
8
|
+
domainId: 31337 # Number: Recommend matching chainId when possible
|
|
9
|
+
name: anvil1 # String: Unique identifier for the chain, must match key above
|
|
10
|
+
protocol: ethereum # ProtocolType: Ethereum, Sealevel, etc.
|
|
11
|
+
rpcUrls: # Array: List of RPC configs
|
|
12
|
+
# Only http field is required
|
|
13
|
+
- http: http://127.0.0.1:8545 # String: HTTP URL of the RPC endpoint (preferably HTTPS)
|
|
14
|
+
anvil2:
|
|
15
|
+
# Required fields:
|
|
16
|
+
chainId: 31338
|
|
17
|
+
domainId: 31338
|
|
18
|
+
name: anvil2
|
|
19
|
+
protocol: ethereum
|
|
20
|
+
rpcUrls:
|
|
21
|
+
- http: http://127.0.0.1:8555
|
package/package.json
CHANGED
|
@@ -1,10 +1,10 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hyperlane-xyz/cli",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.3-beta0",
|
|
4
4
|
"description": "A command-line utility for common Hyperlane operations",
|
|
5
5
|
"dependencies": {
|
|
6
|
-
"@hyperlane-xyz/hyperlane-token": "1.4.
|
|
7
|
-
"@hyperlane-xyz/sdk": "1.4.
|
|
6
|
+
"@hyperlane-xyz/hyperlane-token": "1.4.3-beta0",
|
|
7
|
+
"@hyperlane-xyz/sdk": "1.4.3-beta0",
|
|
8
8
|
"@inquirer/prompts": "^3.0.0",
|
|
9
9
|
"chalk": "^5.3.0",
|
|
10
10
|
"ethers": "^5.7.2",
|
|
@@ -53,5 +53,6 @@
|
|
|
53
53
|
"Deployment",
|
|
54
54
|
"Typescript"
|
|
55
55
|
],
|
|
56
|
-
"packageManager": "yarn@3.2.0"
|
|
56
|
+
"packageManager": "yarn@3.2.0",
|
|
57
|
+
"stableVersion": "1.4.2"
|
|
57
58
|
}
|