-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.35 KB
/
package.json
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
{
"name": "op-rebate",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"buildMerkleRoot": "ts-node -e \"import { getRootAndSum } from './scripts/utils'; getRootAndSum();\"",
"getMerkleProof": "ts-node -e \"import { getMerkleProof } from './scripts/utils'; getMerkleProof(process.argv[1], Number(process.argv[2]));\"",
"setMerkleRoot": "ts-node -e \"import { setMerkleRoot } from './scripts/index'; setMerkleRoot();\"",
"claim": "ts-node -e \"import { claimAmount } from './scripts/index'; claimAmount(process.argv[1], process.argv[2]);\"",
"deploy": "npx hardhat run ./deploy/deploy.ts"
},
"dependencies": {
"@openzeppelin/contracts": "^4.9.2",
"@openzeppelin/merkle-tree": "^1.0.4",
"axios": "^1.5.0",
"ethers": "5.7.2",
"hardhat": "^2.15.0",
"keccak256": "^1.0.6",
"merkletreejs": "^0.3.10"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomiclabs/hardhat-ethers": "^2.2.3",
"@nomiclabs/hardhat-etherscan": "^3.1.0",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@typechain/ethers-v5": "^7.2.0",
"@typechain/hardhat": "^2.3.1",
"@types/crypto-js": "^4.1.1",
"dotenv": "^16.3.1",
"hardhat-gas-reporter": "^1.0.8",
"solidity-coverage": "^0.8.2",
"ts-node": "^10.9.1",
"typechain": "^5.1.2",
"typescript": "^5.1.3"
}
}