-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
30 lines (30 loc) · 850 Bytes
/
package.json
File metadata and controls
30 lines (30 loc) · 850 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
"name": "crosschain-gas-optimization-hook",
"version": "1.0.0",
"description": "Sophisticated Uniswap V4 hook for cross-chain gas optimization",
"main": "index.js",
"scripts": {
"build": "forge build",
"test": "forge test",
"test:coverage": "forge coverage",
"test:gas": "forge test --gas-report",
"deploy:testnet": "forge script script/deployment/Deploy.s.sol --rpc-url $SEPOLIA_RPC_URL --broadcast --verify",
"deploy:mainnet": "forge script script/deployment/Deploy.s.sol --rpc-url $ETHEREUM_RPC_URL --broadcast --verify"
},
"keywords": [
"uniswap",
"v4",
"hook",
"cross-chain",
"gas-optimization",
"defi",
"across-protocol",
"foundry",
"solidity"
],
"author": "Gas Optimization Hook Team",
"license": "MIT",
"devDependencies": {
"@types/node": "^20.0.0"
}
}