-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
47 lines (47 loc) · 1.76 KB
/
package.json
File metadata and controls
47 lines (47 loc) · 1.76 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
{
"name": "uniswap-v3-fork-push-chain",
"version": "1.0.0",
"description": "Production-ready Uniswap V3 fork with mathematically correct price mechanics for Push Chain",
"scripts": {
"deploy-dex": "npx hardhat run scripts/deploy-all.js --network push_testnet",
"pool-manager": "node scripts/pool-manager.js",
"pool-health": "node scripts/pool-health.js",
"deploy-WPC": "npx hardhat run scripts/deploy-WPC.js --network push_testnet",
"deploy-core": "cd v3-core && npm install && npx hardhat compile && npx hardhat run scripts/deploy-core.js --network pushchain",
"deploy-periphery": "cd v3-periphery && npm install && npx hardhat compile && npx hardhat run scripts/deploy-periphery.js --network pushchain",
"deploy-contracts": "npm run deploy-core && npm run deploy-periphery",
"clean": "cd v3-core && npx hardhat clean && cd ../v3-periphery && npx hardhat clean"
},
"keywords": [
"uniswap",
"v3",
"fork",
"push",
"defi",
"amm",
"sqrtpricex96",
"concentrated-liquidity",
"decimal-precision",
"price-mechanics",
"mathematical-correctness"
],
"license": "GPL-3.0-or-later",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-etherscan": "^3.1.8",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@types/chai": "^4.2.0",
"@types/mocha": "^8.0.0",
"@types/node": "^14.0.0",
"bignumber.js": "^9.3.1",
"chai": "^4.2.0",
"dotenv": "^16.0.0",
"ethereum-waffle": "^3.0.0",
"ethers": "^5.8.0",
"hardhat": "^2.12.0",
"typescript": "^4.0.0"
},
"engines": {
"node": ">=14.0.0"
}
}