-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
30 lines (30 loc) · 1.51 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
{
"name": "ethdenver",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"compile": "npx hardhat compile",
"deploy:mumbai:serveway": "npx hardhat run --network mumbai scripts/Serveway.deploy.js",
"verify:mumbai:serveway": "npx hardhat verify --contract contracts/Serveway.sol:Serveway --network mumbai 0xA6f00218efb6c0Fe4C53d01b2195e09A1E1a8523",
"deploy:mumbai:serveNFT": "npx hardhat run --network mumbai scripts/ServeNFT.deploy.js",
"verify:mumbai:serveNFT": "npx hardhat verify --contract contracts/ServeNFT.sol:ServeNFT --network mumbai 0x7c6A7fFb4837298bcD606B86A59958ed50b4d34F",
"deploy:mumbai:SigVerifier": "npx hardhat run --network mumbai scripts/SigVerifier.deploy.js",
"verify:mumbai:SigVerifier": "npx hardhat verify --contract contracts/SigVerifier.sol:SigVerifier --network mumbai 0x563699d8798A654ec60A8F7720Fe8a0037ce69ae",
"deploy:mumbai:ZkpVerifier": "npx hardhat run --network mumbai scripts/ZkpVerifier.deploy.js",
"verify:mumbai:ZkpVerifier": "npx hardhat verify --contract contracts/ZkpVerifier.sol:ZkpVerifier --network mumbai 0xDA218c923bcA169169D4aD0576653a223a3A4E04",
"test:permit": "npx hardhat test test/erc20-permit.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "",
"license": "ISC",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^1.0.2",
"@openzeppelin/contracts": "^4.7.2",
"dotenv": "^16.0.1",
"hardhat": "^2.10.1"
},
"dependencies": {
"snarkjs": "^0.6.7"
}
}