-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
62 lines (62 loc) · 4.03 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
{
"name": "hardhat-project",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^1.0.5",
"@nomicfoundation/hardhat-toolbox": "^2.0.1",
"@nomicfoundation/hardhat-verify": "^1.0.2",
"@nomiclabs/hardhat-ethers": "^2.2.2",
"@nomiclabs/hardhat-etherscan": "^3.1.5",
"@nomiclabs/hardhat-ganache": "^2.0.1",
"@nomiclabs/hardhat-solhint": "^3.0.0",
"@openzeppelin/contracts-upgradeable": "^4.8.1",
"@openzeppelin/hardhat-upgrades": "^1.22.1",
"@typechain/hardhat": "^6.1.5",
"@types/mocha": "^10.0.1",
"ethers": "^5.7.2",
"hardhat": "^2.17.1",
"hardhat-abi-exporter": "^2.10.1",
"hardhat-contract-sizer": "^2.8.0",
"hardhat-exposed": "^0.3.2",
"hardhat-gas-reporter": "^1.0.9",
"hardhat-log-remover": "^2.0.2",
"hardhat-spdx-license-identifier": "^2.1.0",
"hardhat-test-utils": "^0.1.1",
"husky": "^8.0.0",
"mocha": "^10.2.0",
"mocha-junit-reporter": "^2.2.0",
"mocha-multi": "^1.1.7",
"solidity-coverage": "^0.8.2",
"typechain": "^8.1.1",
"typescript": "^4.9.5"
},
"dependencies": {
"@layerzerolabs/solidity-examples": "github:LayerZero-Labs/solidity-examples#main",
"@openzeppelin/contracts": "^4.8.1",
"@primitivefi/hardhat-dodoc": "^0.2.3",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"dotenv": "^16.0.3",
"hardhat-address-exporter": "^0.0.4",
"hardhat-ignore-warnings": "^0.2.6",
"hardhat-notifier": "^0.0.1",
"repl": "^0.1.3"
},
"license": "MIT",
"scripts": {
"generate-env": "chmod +x generate_env.sh && generate_env.sh",
"check": "hh remove-logs && hh compile && trunk check && solhint 'contracts/**/*.sol' && hh export-abi",
"reset": "hh clean && hh compile && hh export-abi",
"test:deploy:home:alpha": "hh compile && hh test:deploy:home --deployment alpha --local true --network localhost",
"deploy:wave1:staging:local": "hh compile && hh deploy:wave1 --deployment staging --local true --network localhost",
"deploy:wave2:staging:local": "hh compile && hh deploy:wave2 --deployment staging --local true --network localhost_remote",
"deploy:wave3:staging:local": "hh compile && hh deploy:wave3 --deployment staging --local true --network localhost",
"deploy:wave1:staging": "hh compile && hh deploy:wave1 --deployment staging --local false --network bsc_testnet",
"deploy:wave2:staging": "hh compile && hh deploy:wave2 --deployment staging --local false --network fuji",
"deploy:wave3:staging": "hh compile && hh deploy:wave3 --deployment staging --local false --network bsc_testnet",
"deploy:staging:local": "hh compile && hh deploy:wave1 --deployment staging --local true --network localhost && hh deploy:wave2 --deployment staging --local true --network localhost_remote && hh deploy:wave3 --deployment staging --local true --network localhost && hh test:deploy:home --deployment staging --local true --network localhost && hh test:deploy:remote --deployment staging --local true --network localhost_remote && trunk check -y",
"deploy:staging": "hh compile && hh deploy:wave1 --deployment staging --local false --network bsc_testnet && hh deploy:wave2 --deployment staging --local false --network fuji && hh deploy:wave3 --deployment staging --local false --network bsc_testnet",
"deploy:prod:local": "hh deploy:prod:yakisoba --network localhost --chainid arbitrum-mainnet --local true --asset usdc && hh deploy:prod:allocator --network localhost --chainid arbitrum-mainnet --local true --asset usdc && hh deploy:prod:elb --network localhost --chainid arbitrum-mainnet --local true --asset usdc && hh deploy:prod:homeBridgeStg --network localhost --chainid arbitrum-mainnet --local true --asset usdc",
"fork:remote:staging": "source .env && ganache --fork $RPC_FUJI --port 8546",
"fork:home:staging": "source .env && ganache --fork $RPC_BSC_TESTNET --wallet.accounts $DEPLOYER_PK_GANACHE,'1000000000000000000' --chain.chainId=97",
"fork:home:prod": "source .env && ganache --fork $RPC_ARBITRUM --wallet.accounts $DEPLOYER_PK_GANACHE,'1000000000000000000' --chain.chainId=42161"
}
}