-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.86 KB
/
package.json
File metadata and controls
51 lines (51 loc) · 1.86 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": "@pinsav3/hardhat",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"dependencies": {
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@openzeppelin/contracts": "^5.1.0",
"@synthetixio/synpress": "^4.0.3",
"chai": "^5.2.0",
"chalk": "^5.2.0",
"dotenv": "^16.4.7",
"hardhat": "2.23.0",
"hardhat-deploy": "^0.14.0",
"hardhat-gas-reporter": "^2.2.2",
"node-watch": "^0.7.3"
},
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
"@nomicfoundation/hardhat-ethers": "^3.0.2",
"@nomicfoundation/hardhat-network-helpers": "^1.0.8",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^3.1.8",
"@typechain/ethers-v5": "^11.1.2",
"@typechain/hardhat": "^9.1.0",
"@types/mocha": "^10.0.1",
"eslint": "^9.17.0",
"eslint-config-prettier": "^10.0.1",
"eslint-plugin-babel": "^5.3.1",
"eslint-plugin-prettier": "^5.0.0",
"hardhat-gas-reporter": "^2.2.2",
"prettier-plugin-solidity": "^1.4.2",
"solidity-coverage": "^0.8.14",
"ts-node": "^10.9.1",
"typechain": "^8.1.1"
},
"scripts": {
"chain": "hardhat node --network hardhat --no-deploy",
"fork": "hardhat node --no-deploy --network hardhat --fork https://mainnet.infura.io/v3/460f40a260564ac4a4f4b3fffb032dad",
"test": "hardhat test --network localhost",
"compile": "hardhat compile",
"accounts": "hardhat accounts",
"balance": "hardhat balance",
"send": "hardhat send",
"generate": "hardhat generate",
"account": "hardhat account",
"lint": "prettier --write --plugin=prettier-plugin-solidity contracts/**/*.sol",
"deploy": "hardhat run scripts/deployPinSave.js --network optimism",
"verify": "hardhat verify --network optimism 0xEb6ce11B852A08f17443B94756dEA07886280718 PinSave PIN 0x816f2Dd515f474f9FbAF461BD53E8880BDc33a87"
}
}