-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 2.8 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 2.8 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
48
49
50
51
{
"name": "poc-openrouter",
"version": "1.0.0",
"private": true,
"scripts": {
"compile": "hardhat compile",
"deploy": "ts-node scripts/deploy/deployOpenRouterPatched.ts",
"deploy:openrouter": "ts-node scripts/deploy/deployOpenRouterPatched.ts",
"deploy:openrouter:batch": "ts-node scripts/deploy/deployOpenRouterByBuildProfile.ts",
"deploy:openrouter:raw": "hardhat run scripts/deploy/deployOpenRouter.ts --network",
"deploy:allowance-holder": "hardhat run scripts/deploy/deployAllowanceHolder.ts --network",
"deploy:receiver-executor": "hardhat run scripts/deploy/deployReceiverAllChains.ts",
"deploy:across-manipulator": "hardhat run scripts/deploy/deployAcrossERC20AmountManipulator.ts --network",
"deploy:cctp-claim-executor:all": "ts-node scripts/deploy/deployCctpClaimExecutorAllChains.ts",
"deploy:rfq-vault-executor:all": "ts-node scripts/deploy/deployRFQVaultExecutorAllChains.ts",
"deploy:rfq-vault-executor": "hardhat run scripts/deploy/deployRFQVaultExecutor.ts --network",
"deploy:ethereal-executor": "hardhat run scripts/deploy/deployEtherealExecutor.ts --network",
"deploy:hypercore-executor": "hardhat run scripts/deploy/deployHypercoreExecutor.ts --network",
"deploy:sui-rfq-vault": "ts-node scripts/sui/deployRfqVault.ts",
"fund:sui-rfq-vault": "ts-node scripts/sui/fundRfqVault.ts",
"sui:rfq-vault:kms-solver": "ts-node scripts/sui/printKmsSolverKey.ts",
"sui:rfq-vault:build": "sui move build --path sui/rfq-vault",
"sui:rfq-vault:test": "sui move test --path sui/rfq-vault",
"check:openrouter": "hardhat run scripts/deploy/checkOpenRouterDeployment.ts",
"verify:openrouter": "ts-node scripts/deploy/verifyOpenRouterBatch.ts",
"check:allowance-holder": "hardhat run scripts/deploy/checkAllowanceHolderDeployment.ts",
"verify:allowance-holder": "ts-node scripts/deploy/verifyAllowanceHolderBatch.ts",
"verify:rfq-vault-executor": "ts-node scripts/deploy/verifyRFQVaultExecutorBatch.ts",
"verify:cctp-claim-executor": "ts-node scripts/deploy/verifyCctpClaimExecutorBatch.ts",
"check:receiver": "hardhat run scripts/deploy/checkReceiverAllChains.ts",
"check:deployer-balances": "hardhat run scripts/deploy/checkDeployerBalances.ts",
"check:across-manipulator": "hardhat run scripts/deploy/checkAcrossManipulatorDeployment.ts",
"typechain": "hardhat typechain",
"slither": "bash scripts/docker-slither.sh"
},
"devDependencies": {
"@noble/hashes": "^1.4.0",
"@arbitrum/sdk": "^4.0.5",
"@nomicfoundation/hardhat-foundry": "^1.1.2",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"axios": "^1.16.0",
"dotenv": "^16.0.0",
"ethers": "^6.16.0",
"hardhat": "^2.22.7",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
},
"dependencies": {
"@layerzerolabs/lz-v2-utilities": "^3.0.168"
}
}