@hyperlane-xyz/cli 16.1.0 → 16.2.0
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/cli-bundle/index.js +1506 -806
- package/examples/cosmosnative/warp-route-deployment.yaml +21 -0
- package/package.json +5 -5
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
# A config for a Warp Route deployment
|
|
2
|
+
# Typically used with the 'hyperlane warp deploy' command
|
|
3
|
+
#
|
|
4
|
+
# Token Types:
|
|
5
|
+
# native
|
|
6
|
+
# collateral
|
|
7
|
+
# synthetic
|
|
8
|
+
#
|
|
9
|
+
# see comprehensive [list](https://github.com/hyperlane-xyz/hyperlane-monorepo/blob/main/typescript/sdk/src/token/config.ts#L8)
|
|
10
|
+
---
|
|
11
|
+
hyp1:
|
|
12
|
+
type: collateral
|
|
13
|
+
# token: "0x123" # Collateral/vault address. Required for collateral types
|
|
14
|
+
owner: 'hyp1jq304cthpx0lwhpqzrdjrcza559ukyy3sc4dw5' # Optional owner address for synthetic token
|
|
15
|
+
# mailbox: "0x123" # mailbox address route
|
|
16
|
+
# interchainGasPaymaster: "0x123" # Optional interchainGasPaymaster address
|
|
17
|
+
# isNft: true # If the token is an NFT (ERC721), set to true
|
|
18
|
+
# You can optionally set the token metadata
|
|
19
|
+
# name: "MyCollateralToken"
|
|
20
|
+
# symbol: "MCT"
|
|
21
|
+
# totalSupply: 10000000
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hyperlane-xyz/cli",
|
|
3
|
-
"version": "16.
|
|
3
|
+
"version": "16.2.0",
|
|
4
4
|
"description": "A command-line utility for common Hyperlane operations",
|
|
5
5
|
"devDependencies": {
|
|
6
6
|
"@aws-sdk/client-kms": "^3.577.0",
|
|
@@ -9,12 +9,12 @@
|
|
|
9
9
|
"@eslint/js": "^9.31.0",
|
|
10
10
|
"@ethersproject/abi": "*",
|
|
11
11
|
"@ethersproject/providers": "*",
|
|
12
|
-
"@hyperlane-xyz/cosmos-sdk": "16.
|
|
13
|
-
"@hyperlane-xyz/http-registry-server": "16.
|
|
12
|
+
"@hyperlane-xyz/cosmos-sdk": "16.2.0",
|
|
13
|
+
"@hyperlane-xyz/http-registry-server": "16.2.0",
|
|
14
14
|
"@hyperlane-xyz/registry": "20.0.0",
|
|
15
|
-
"@hyperlane-xyz/sdk": "16.
|
|
15
|
+
"@hyperlane-xyz/sdk": "16.2.0",
|
|
16
16
|
"@hyperlane-xyz/tsconfig": "workspace:^",
|
|
17
|
-
"@hyperlane-xyz/utils": "16.
|
|
17
|
+
"@hyperlane-xyz/utils": "16.2.0",
|
|
18
18
|
"@inquirer/core": "9.0.10",
|
|
19
19
|
"@inquirer/figures": "1.0.5",
|
|
20
20
|
"@inquirer/prompts": "3.3.2",
|