-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
55 lines (55 loc) · 2.33 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
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"name": "erc-7809-playground",
"version": "0.1.0",
"description": "Playing around with ERC-7809",
"main": "index.js",
"scripts": {
"test": "hardhat test",
"compile": "hardhat compile",
"deploy:sepolia": "hardhat deploy --network sepolia --reset",
"deploy:optimism": "hardhat deploy --network optimism --reset",
"deploy:op-sepolia": "hardhat deploy --network op-sepolia --reset",
"mint:sepolia": "hardhat mint --network sepolia --amount",
"mint:optimism": "hardhat mint --network optimism --amount",
"mint:op-sepolia": "hardhat mint --network op-sepolia --amount",
"send:sepolia": "hardhat send --wallet 0xD8a394e7d7894bDF2C57139fF17e5CBAa29Dd977 --network sepolia --amount",
"send:optimism": "hardhat send --wallet 0xD8a394e7d7894bDF2C57139fF17e5CBAa29Dd977 --network optimism --amount",
"send:op-sepolia": "hardhat send --wallet 0xD8a394e7d7894bDF2C57139fF17e5CBAa29Dd977 --network op-sepolia --amount",
"bal": "npx hardhat run scripts/check-my-balance.ts --network",
"prettier": "prettier --write \"**/*.ts\"",
"prettier-check": "prettier --check \"**/*.ts\""
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.3",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-network-helpers": "^1.0.10",
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"@nomicfoundation/hardhat-verify": "^1.1.1",
"@typechain/ethers-v6": "^0.4.3",
"@typechain/hardhat": "^8.0.3",
"@types/chai": "^4.3.11",
"@types/cli-color": "^2.0.6",
"@types/mocha": "^10.0.6",
"chai": "^4.4.1",
"hardhat": "^2.19.4",
"hardhat-gas-reporter": "^1.0.9",
"prettier": "^2.8.8",
"prettier-plugin-solidity": "^1.3.1",
"solidity-coverage": "^0.8.6",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.3.3"
},
"dependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.4.1",
"@openzeppelin/contracts": "^5.0.1",
"@types/node": "^20.11.10",
"cli-color": "^2.0.3",
"dotenv": "^16.4.1",
"ethers": "^6.10.0",
"hardhat-deploy": "^0.11.45"
}
}