-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 2.4 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 2.4 KB
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "@hop-protocol/rails",
"private": true,
"version": "1.0.0",
"description": "Hop Contracts V2",
"author": "Hop Team (@HopProtocol)",
"license": "MIT",
"scripts": {
"compile": "forge build",
"hardhat-compile": "npx hardhat compile",
"compile-all": "npm run compile && npm run hardhat-compile",
"test-send": "forge test --match-test test_Send -vv",
"test-push-claim": "forge test --match-test test_PostClaim -vv",
"test-bond": "forge test --match-test test_Bond -vv",
"test-withdraw-claim": "forge test --match-test test_WithdrawClaim -vv",
"test-withdraw": "forge test --match-test test_Withdraw -vv",
"test-fees": "forge test --match-test test_Fees -vv",
"test-staking-registry": "forge test --match-test test_StakingRegistry -vv",
"test-remove": "forge test --match-test test_Remove -vv",
"test-fee-manager": "forge test --match-test test_FeeManager -vv",
"test-block-contingent": "forge test --match-test test_BlockContingent -vv",
"test-update": "forge test --match-test test_UpdateClaim -vv",
"test": "npm run test-send && npm run test-push-claim && npm run test-bond && npm run test-withdraw-claim && npm run test-withdraw && npm run test-fees && npm run test-remove && npm run test-staking-registry && npm run test-fee-manager && npm run test-block-contingent && npm run test-update",
"simulation-single-path": "forge test --match-test test_runSimulationSinglePath -vv",
"simulation-single-path-eth": "forge test --match-test test_SinglePathEth -vv",
"simulation-multi-path": "forge test --match-test test_runSimulationMultiPath -vv",
"simulation-fraud": "forge test --match-test test_SimulationFraud -vv",
"coverage": "forge coverage",
"deploy": "forge script scripts/Deploy.s.sol --slow --broadcast",
"deploy-dry-run": "forge script scripts/Deploy.s.sol",
"deploy-token": "forge script scripts/DeployToken.s.sol",
"initialize-route": "forge script scripts/InitializeRoute.s.sol --multi --broadcast",
"initialize-route-dry-run": "forge script scripts/InitializeRoute.s.sol --multi",
"prettier": "prettier '**/*.{json,sol,md}' --check"
},
"devDependencies": {
"@eth-optimism/sdk": "^1.7.0",
"dotenv": "^16.0.1",
"solhint": "^3.3.7",
"solidity-coverage": "^0.7.21",
"ts-node": "^10.8.1"
},
"dependencies": {
"@openzeppelin/contracts": "^4.7.3",
"@hop-protocol/erc5164": "^1.0.0"
}
}