@hyperlane-xyz/cli 25.2.0 → 25.3.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/bundle/214.index.js +78 -0
- package/bundle/index.js +356707 -184754
- package/examples/tron-core-config.yaml +18 -0
- package/package.json +14 -12
|
@@ -0,0 +1,18 @@
|
|
|
1
|
+
# A config to define the core contract deployments for Tron test chains
|
|
2
|
+
# Uses the Tron deployer address (derived from BIP-44 m/44'/195'/0'/0/0)
|
|
3
|
+
# Note: Tron uses 6 decimals (sun) instead of 18 decimals (wei)
|
|
4
|
+
owner: '0xC8599111F29c1e1E061265b4AF93eA1F274aD78A'
|
|
5
|
+
defaultIsm:
|
|
6
|
+
type: 'testIsm'
|
|
7
|
+
defaultHook:
|
|
8
|
+
type: protocolFee
|
|
9
|
+
maxProtocolFee: '1000000000' # 1000 TRX in sun (6 decimals)
|
|
10
|
+
protocolFee: '200000' # 0.2 TRX in sun (6 decimals)
|
|
11
|
+
beneficiary: '0xC8599111F29c1e1E061265b4AF93eA1F274aD78A'
|
|
12
|
+
owner: '0xC8599111F29c1e1E061265b4AF93eA1F274aD78A'
|
|
13
|
+
requiredHook:
|
|
14
|
+
type: protocolFee
|
|
15
|
+
maxProtocolFee: '1000000000' # 1000 TRX in sun (6 decimals)
|
|
16
|
+
protocolFee: '200000' # 0.2 TRX in sun (6 decimals)
|
|
17
|
+
beneficiary: '0xC8599111F29c1e1E061265b4AF93eA1F274aD78A'
|
|
18
|
+
owner: '0xC8599111F29c1e1E061265b4AF93eA1F274aD78A'
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@hyperlane-xyz/cli",
|
|
3
|
-
"version": "25.
|
|
3
|
+
"version": "25.3.1",
|
|
4
4
|
"description": "A command-line utility for common Hyperlane operations",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"CLI",
|
|
@@ -78,18 +78,19 @@
|
|
|
78
78
|
"zod": "^3.21.2",
|
|
79
79
|
"zod-validation-error": "^3.3.0",
|
|
80
80
|
"zx": "^8.1.4",
|
|
81
|
-
"@hyperlane-xyz/aleo-sdk": "25.
|
|
81
|
+
"@hyperlane-xyz/aleo-sdk": "25.3.1",
|
|
82
82
|
"@hyperlane-xyz/core": "10.1.5",
|
|
83
|
-
"@hyperlane-xyz/cosmos-sdk": "25.
|
|
84
|
-
"@hyperlane-xyz/
|
|
85
|
-
"@hyperlane-xyz/
|
|
86
|
-
"@hyperlane-xyz/provider-sdk": "1.3.
|
|
87
|
-
"@hyperlane-xyz/radix-sdk": "25.
|
|
88
|
-
"@hyperlane-xyz/
|
|
89
|
-
"@hyperlane-xyz/
|
|
90
|
-
"@hyperlane-xyz/
|
|
91
|
-
"@hyperlane-xyz/
|
|
92
|
-
"@hyperlane-xyz/
|
|
83
|
+
"@hyperlane-xyz/cosmos-sdk": "25.3.1",
|
|
84
|
+
"@hyperlane-xyz/deploy-sdk": "1.3.5",
|
|
85
|
+
"@hyperlane-xyz/http-registry-server": "25.3.1",
|
|
86
|
+
"@hyperlane-xyz/provider-sdk": "1.3.5",
|
|
87
|
+
"@hyperlane-xyz/radix-sdk": "25.3.1",
|
|
88
|
+
"@hyperlane-xyz/relayer": "1.1.2",
|
|
89
|
+
"@hyperlane-xyz/sdk": "25.3.1",
|
|
90
|
+
"@hyperlane-xyz/tron-sdk": "21.1.1",
|
|
91
|
+
"@hyperlane-xyz/rebalancer": "3.1.0",
|
|
92
|
+
"@hyperlane-xyz/utils": "25.3.1",
|
|
93
|
+
"@hyperlane-xyz/tsconfig": "^25.3.1"
|
|
93
94
|
},
|
|
94
95
|
"engines": {
|
|
95
96
|
"node": ">=16"
|
|
@@ -108,6 +109,7 @@
|
|
|
108
109
|
"test:cosmosnative:e2e": "./src/tests/cosmosnative/run-e2e-test.sh",
|
|
109
110
|
"test:radix:e2e": "./src/tests/radix/run-e2e-test.sh",
|
|
110
111
|
"test:aleo:e2e": "./src/tests/aleo/run-e2e-test.sh",
|
|
112
|
+
"test:tron:e2e": "./src/tests/ethereum/run-tron-e2e-test.sh",
|
|
111
113
|
"version:update": "echo \"export const VERSION = '$npm_package_version';\" > src/version.ts"
|
|
112
114
|
}
|
|
113
115
|
}
|