-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
115 lines (115 loc) · 7.19 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
105
106
107
108
109
110
111
112
113
114
115
{
"name": "aelin",
"version": "1.0.0",
"description": "A protocol for fundraising",
"main": "index.js",
"scripts": {
"test": "hardhat test",
"test:unit": "hardhat test ./test/unit/*.test.ts",
"test:integ": "hardhat test ./test/integration/*.test.ts",
"compile": "hardhat compile",
"build": "waffle",
"coverage": "hardhat coverage",
"coverage:unit": "hardhat coverage --testfiles 'test/unit/*.ts'",
"format": "prettier --write \"contracts/**/*.sol\" \"**/*.js\" \"**/*.md\" \"**/*.yml\" \"**/*.json\"",
"lint": "solhint \"contracts/*.sol\" && solhint \"contracts/test-helpers/*.sol\" && solhint --config contracts/interfaces/.solhint.json \"contracts/interfaces/*.sol\" && eslint \"**/*.js\"",
"clean": "hardhat clean",
"lint:sarif": "node lint.js . --ext js,ts,tsx",
"preinstall": "npx npm-force-resolutions",
"optimism-bridge-test-direct-relay": "hardhat run scripts/optimism-bridge-test-direct-relay.js --network optimism",
"optimism-bridge-set-contract-data": "hardhat run scripts/optimism-bridge-set-contract-data.js --network optimism",
"collect-staker-data": "node scripts/helpers/collect-staker-data.js",
"calculate-aelin-pool-distribution": "node scripts/helpers/calculate-aelin-pool-distribution.js",
"calculate-op-rebate": "node scripts/helpers/calculate-op-rebate.js",
"combine-pool-retro-missing": "node scripts/helpers/combine-pool-retro-missing.js",
"final-snx-missing-wallets": "node scripts/helpers/final-snx-missing-wallets.js",
"final-snx-missing-wallets-amounts": "node scripts/helpers/final-snx-missing-wallets-amounts.js",
"deploy-script": "hardhat run scripts/... --network ...",
"build:mainnet": "npx hardhat cannon:build aelinTreasuryAddress='0x51b0332E1b3349bcF01689E63e34d8859595e376'",
"deploy:mainnet": "npx hardhat cannon:deploy aelincannon:0.0.1 aelinTreasuryAddress='0x51b0332E1b3349bcF01689E63e34d8859595e376' --network mainnet",
"deploy:mainnet-dry-run": "npx hardhat cannon:deploy aelincannon:0.0.1 aelinTreasuryAddress='0x51b0332E1b3349bcF01689E63e34d8859595e376' --network mainnet --dry-run --port 5001",
"verify:mainnet": "npx hardhat cannon:verify aelincannon:0.0.1 --network mainnet",
"build:optimism": "npx hardhat cannon:build aelinTreasuryAddress='0x5B8F3fb479571Eca6A06240b21926Db586Cdf10f'",
"deploy:optimism": "npx hardhat cannon:deploy aelincannon:0.0.1 aelinTreasuryAddress='0x5B8F3fb479571Eca6A06240b21926Db586Cdf10f' --network optimism",
"verify:optimism": "npx hardhat cannon:verify aelincannon:0.0.1 --network optimism",
"build:arbitrum": "npx hardhat cannon:build aelinTreasuryAddress='0x1977b7A0a1a8904C66803a887a55e2D26dd837c4'",
"deploy:arbitrum": "npx hardhat cannon:deploy aelincannon:0.0.1 aelinTreasuryAddress='0x1977b7A0a1a8904C66803a887a55e2D26dd837c4' --network arbitrum",
"verify:arbitrum": "npx hardhat cannon:verify aelincannon:0.0.1 --network arbitrum",
"build:goerli": "npx hardhat cannon:build aelinTreasuryAddress='0x6144DAf8e2e583cD30C3567861C8E1D95cfA51B5'",
"deploy:goerli": "npx hardhat cannon:deploy aelincannon:0.0.1 aelinTreasuryAddress='0x6144DAf8e2e583cD30C3567861C8E1D95cfA51B5' --network goerli",
"verify:goerli": "npx hardhat cannon:verify aelincannon:0.0.1 --network goerli",
"build:arbitrum-goerli": "npx hardhat cannon:build aelinTreasuryAddress='0x6144DAf8e2e583cD30C3567861C8E1D95cfA51B5'",
"deploy:arbitrum-goerli": "npx hardhat cannon:deploy aelincannon:0.0.1 aelinTreasuryAddress='0x6144DAf8e2e583cD30C3567861C8E1D95cfA51B5' --network arbitrum-goerli",
"verify:arbitrum-goerli": "npx hardhat cannon:verify aelincannon:0.0.1 --network arbitrum-goerli",
"forge-deploy:AelinFeeEscrow": "forge create --rpc-url https://arb-goerli.g.alchemy.com/v2/${ALCHEMY_API_KEY} --private-key $GOERLI_PRIVATE_KEY contracts/AelinFeeEscrow.sol:AelinFeeEscrow --etherscan-api-key $ETHERSCAN_API_KEY --verify",
"forge-deploy:MerkleTree": "forge create --rpc-url https://arb-goerli.g.alchemy.com/v2/${ALCHEMY_API_KEY} --private-key $GOERLI_PRIVATE_KEY contracts/libraries/MerkleTree.sol:MerkleTree --etherscan-api-key $ETHERSCAN_API_KEY --verify",
"forge-deploy:AelinAllowList": "forge create --rpc-url https://arb-goerli.g.alchemy.com/v2/${ALCHEMY_API_KEY} --private-key $GOERLI_PRIVATE_KEY contracts/libraries/AelinAllowList.sol:AelinAllowList --etherscan-api-key $ETHERSCAN_API_KEY --verify",
"forge-deploy:AelinNftGating": "forge create --rpc-url https://arb-goerli.g.alchemy.com/v2/${ALCHEMY_API_KEY} --private-key $GOERLI_PRIVATE_KEY contracts/libraries/AelinNftGating.sol:AelinNftGating --etherscan-api-key $ETHERSCAN_API_KEY --verify",
"forge-deploy:NftCheck": "forge create --rpc-url https://arb-goerli.g.alchemy.com/v2/${ALCHEMY_API_KEY} --private-key $GOERLI_PRIVATE_KEY contracts/libraries/NftCheck.sol:NftCheck --etherscan-api-key $ETHERSCAN_API_KEY --verify",
"forge-deploy:AelinUpFrontDeal": "forge create --rpc-url https://arb-goerli.g.alchemy.com/v2/${ALCHEMY_API_KEY} --private-key $GOERLI_PRIVATE_KEY contracts/AelinUpFrontDeal.sol:AelinUpFrontDeal --etherscan-api-key $ETHERSCAN_API_KEY --verify",
"forge-deploy:AelinUpFrontDealFactory": "forge create --rpc-url https://arb-goerli.g.alchemy.com/v2/${ALCHEMY_API_KEY} --private-key $GOERLI_PRIVATE_KEY contracts/AelinUpFrontDealFactory.sol:AelinUpFrontDealFactory --etherscan-api-key $ETHERSCAN_API_KEY --verify --constructor-args 0xAde0C38096A1d714B91C889323B4C06d285c73eb 0x7450a72AAeC28dB46B3A37152d1C5CEF55fC3bF6 0x6144DAf8e2e583cD30C3567861C8E1D95cfA51B5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/samhagan/aelin.git"
},
"author": "Aelin",
"license": "ISC",
"bugs": {
"url": "https://github.com/samhagan/aelin/issues"
},
"homepage": "https://github.com/samhagan/aelin#readme",
"resolutions": {
"minimist": "1.2.6",
"json-schema": "0.4.0",
"underscore": "1.12.1",
"async": "2.6.4",
"node-fetch": "2.6.7",
"lodash": "4.17.21",
"yargs-parser": "5.0.1",
"ethereumjs-abi": "0.6.8"
},
"devDependencies": {
"@eth-optimism/contracts": "0.3.4",
"@ethersproject/address": "5.0.4",
"@microsoft/eslint-formatter-sarif": "2.1.7",
"@nomiclabs/hardhat-ethers": "2.0.2",
"@nomiclabs/hardhat-etherscan": "3.0.1",
"@nomiclabs/hardhat-waffle": "2.0.3",
"@openzeppelin/contracts": "^4.5.0",
"@openzeppelin/legacy-contracts": "npm:@openzeppelin/contracts@3.4.2",
"@synthetixio/optimism-networks": "2.56.3",
"@typechain/ethers-v5": "7.0.1",
"@typechain/hardhat": "2.3.0",
"@types/chai": "4.2.21",
"@types/mocha": "9.0.0",
"@typescript-eslint/eslint-plugin": "4.29.2",
"@typescript-eslint/parser": "4.29.2",
"chai": "4.3.4",
"dotenv": "16.0.0",
"eslint": "7.32.0",
"eslint-config-prettier": "8.3.0",
"ethereum-waffle": "3.4.4",
"ethers": "5.4.5",
"fast-csv": "4.3.6",
"ganache-time-traveler": "1.0.16",
"graphql-request": "3.7.0",
"hardhat": "2.10.0",
"hardhat-cannon": "1.1.9",
"hardhat-gas-reporter": "1.0.4",
"hardhat-interact": "0.2.0",
"jsonfile": "^6.1.0",
"keccak256": "1.0.3",
"lodash": "4.17.21",
"merkletreejs": "0.2.23",
"mocha": "7.2.0",
"openzeppelin-solidity-2.3.0": "npm:openzeppelin-solidity@2.3.0",
"prettier": "2.3.2",
"prettier-plugin-solidity": "1.0.0-beta.19",
"solidity-coverage": "^0.7.0",
"ts-node": "10.2.1",
"typechain": "5.1.2",
"typescript": "4.3.5",
"whatwg-url": "^11.0.0"
}
}