-
Notifications
You must be signed in to change notification settings - Fork 7
/
package.json
104 lines (104 loc) · 4.58 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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"name": "@luxfi/standard",
"version": "1.0.5",
"license": "BSD-3-Clause",
"devDependencies": {
"@nomicfoundation/hardhat-verify": "^2.0.11",
"@tenderly/hardhat-tenderly": "^1.0.12",
"@types/chai-as-promised": "^7.1.4",
"chai-as-promised": "^7.1.1",
"chalk": "^4.1.2",
"esbuild": "^0.24.0",
"hardhat": "^2.2.0",
"hardhat-deploy": "^0.9.0",
"hardhat-typechain": "^0.3.5",
"mkdirp": "^1.0.4",
"node-watch": "^0.7.1",
"ts-node": "10.3",
"typescript": "^5.6.3"
},
"dependencies": {
"@ethersproject/abi": "^5.7.0",
"@ethersproject/abstract-signer": "^5.4.1",
"@ethersproject/constants": "^5.4.0",
"@ethersproject/hardware-wallets": "^5.4.0",
"@ethersproject/keccak256": "^5.4.0",
"@ethersproject/providers": "^5.7.2",
"@ethersproject/units": "^5.4.0",
"@ethersproject/wallet": "^5.4.0",
"@luxdefi/hardhat": "^2.0.2",
"@luxdefi/sdk": "^1.0.5",
"@luxdefi/solidity": "^2.0.4",
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@nomiclabs/hardhat-web3": "^2.0.0",
"@openzeppelin/contracts": "^3.4.2-solc-0.7",
"@openzeppelin/contracts-upgradeable": "4.3.1",
"@openzeppelin/hardhat-upgrades": "^1.10.0",
"@typechain/ethers-v5": "^4.0.0",
"@uniswap/lib": "^4.0.1-alpha",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"@uniswap/v3-core": "^1.0.1",
"@uniswap/v3-periphery": "^1.4.4",
"@uniswap/v3-sdk": "^3.18.1",
"base64-sol": "^1.1.0",
"bip39": "^3.0.4",
"chai-as-promised": "^7.1.1",
"chalk": "^4.1.2",
"csv-parse": "^4.16.2",
"dotenv": "^16.4.5",
"eth-sig-util": "^3.0.1",
"ethereum-waffle": "^3.4.0",
"ethereumjs-util": "^7.1.0",
"ethereumjs-wallet": "^1.0.1",
"ethers": "^5.7.2",
"google-spreadsheet": "^3.1.15",
"hardhat-watcher": "^2.1.1",
"lodash": "^4.17.21",
"mkdirp": "^1.0.4",
"node-hid": "./resolutions/node-hid",
"node-watch": "^0.7.1",
"qrcode-terminal": "^0.12.0",
"typechain": "^4.0.0",
"viem": "^2.21.32",
"web3": "^1.5.2"
},
"scripts": {
"airdrop": "hardhat run --network hardhat scripts/airdrop.ts",
"account": "hardhat accounts",
"accounts": "hardhat accounts",
"balance": "hardhat balance",
"chain": "hardhat node --network hardhat --show-stack-traces --hostname 0.0.0.0",
"chain2": "hardhat node --network hardhat2 --show-stack-traces",
"clean": "rm -rf artifacts && rm -rf cache && rm -rf types",
"compile": "hardhat compile",
"console": "hardhat console --network localhost",
"console:testnet": "hardhat console --network testnet",
"console:mainnet": "hardhat console --network mainnet",
"console:lux": "hardhat console --network lux",
"deploy": "mkdirp deployments && hardhat deploy --network hardhat --export-all ../app/src/contracts.json",
"deploy:testnet": "mkdirp deployments && hardhat deploy --network testnet --export-all ../app/src/contracts.json",
"deploy:mainnet": "mkdirp deployments && hardhat deploy --network mainnet --export-all ../app/src/contracts.json",
"deploy:lux": "mkdirp deployments && hardhat deploy --network lux --export-all ../app/src/contracts.json",
"deploy:pool": "hardhat run --network hardhat scripts/deployPool.ts",
"deploy:game": "hardhat run --network testnet scripts/configureGame.js",
"configure": "hardhat run --network localhost scripts/configure.ts",
"configure:testnet": "hardhat run --network testnet scripts/configure.ts",
"configure:mainnet": "hardhat run --network mainnet scripts/configure.ts",
"fundFaucet:testnet": "hardhat run --network testnet scripts/fundFaucet.ts",
"wallet": "hardhat run scripts/createWallet.ts",
"export": "mkdirp deployments && hardhat deploy --network hardhat --export-all ./contracts.json && cp ./contracts.json ../app/src/contracts.json && cp ./contracts.json ../lab/src/contracts.json && yarn subgraph:abis-localhost && yarn subgraph:abis-testnet && yarn subgraph:abis-mainnet",
"subgraph:abis-localhost": "cp -R ./deployments/localhost ../subgraph/abis",
"subgraph:abis-testnet": "cp -R ./deployments/testnet ../subgraph/abis",
"subgraph:abis-mainnet": "cp -R ./deployments/mainnet ../subgraph/abis",
"fork": "hardhat node --fork https://mainnet.infura.io/v3/460f40a260564ac4a4f4b3fffb032dad",
"format": "prettier . --write",
"generate": "hardhat generate",
"matrix": "ts-node utils/yieldMatrix.ts",
"send": "hardhat send",
"test": "hardhat test --network hardhat",
"verify:testnet": "hardhat verify --network testnet",
"watch": "node scripts/watch.js"
}
}