-
Notifications
You must be signed in to change notification settings - Fork 25
Expand file tree
/
Copy pathpackage.json
More file actions
63 lines (63 loc) · 3.58 KB
/
Copy pathpackage.json
File metadata and controls
63 lines (63 loc) · 3.58 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
{
"name": "hardhat-project",
"scripts": {
"rwafiAquaflux": "npx hardhat run main/aquaflux/index.ts",
"autostakingFaucet": "npx hardhat run main/autostaking/faucet.ts",
"autostakingDeposit": "npx hardhat run main/autostaking/depositViaAdvisor.ts",
"autostakingWithdraw": "npx hardhat run main/autostaking/withdrawAllVaults.ts",
"openCfdTrade": "npx hardhat run main/cfdtrading/index.ts",
"faroswapUsdcLiquidity": "npx hardhat run main/faroswap/usdcLiquidity.ts",
"faroswapUsdtLiquidty": "npx hardhat run main/faroswap/usdtLiquidity.ts",
"faroswapUsdcSwap": "npx hardhat run main/faroswap/usdcSwap.ts",
"faroswapWphrsSwap": "npx hardhat run main/faroswap/wphrsSwap.ts",
"pns": "npx hardhat run main/pns/index.ts",
"primus": "npx hardhat run main/primus/sent.ts",
"zenithUsdcLiquidity": "npx hardhat run main/zenithFinance/usdcLiquidity.ts",
"zenithWphrsLiquidity": "npx hardhat run main/zenithFinance/wphrsLiquidity.ts",
"zenithUsdcSwap": "npx hardhat run main/zenithFinance/usdcSwap.ts",
"zenithUsdtSwap": "npx hardhat run main/zenithFinance/usdtSwap.ts",
"zenithWphrsSwap": "npx hardhat run main/zenithFinance/wphrsSwap.ts",
"rwafiR2Swap": "npx hardhat run main/rwafiR2/swap.ts",
"rwafiR2Earn": "npx hardhat run main/rwafiR2/earnSavings.ts",
"openFiFaucet": "npx hardhat run main/openfi/faucet.ts",
"openFiSupply": "npx hardhat run main/openfi/supply.ts",
"openFiBorrow": "npx hardhat run main/openfi/borrow.ts",
"openFiRepay": "npx hardhat run main/openfi/repay.ts",
"openFiWithdraw": "npx hardhat run main/openfi/withdraw.ts",
"spoutBuy": "npx hardhat run main/spout/buy.ts",
"bitverseOpenPosition": "npx hardhat run main/bitverse/openPosition.ts",
"atlanticDirectSendToken": "npx hardhat run main/atlantic/sendToken/directOnchain.ts",
"atlanticSubscribeAsseto": "npx hardhat run main/atlantic/rwafi/subcribeAsseto.ts",
"atlanticRedemptionAsseto": "npx hardhat run main/atlantic/rwafi/redemptionAsseto.ts",
"atlanticFaroswapLP": "npx hardhat run main/atlantic/faroswap/createRandomLp.ts",
"atlanticFaroswapNative": "npx hardhat run main/atlantic/faroswap/swapNative.ts",
"atlanticFaroswapToken": "npx hardhat run main/atlantic/faroswap/swapTokenToToken.ts",
"atlanticBitverseDeposit": "npx hardhat run main/atlantic/bitverse/deposit.ts",
"atlanticBitverseOpenPosition": "npx hardhat run main/atlantic/bitverse/openPosition.ts",
"atlanticBitverseWithdraw": "npx hardhat run main/atlantic/bitverse/withdraw.ts",
"atlanticZenithswapSupply": "npx hardhat run main/atlantic/zenithswap/supply.ts",
"atlanticZenithswapBorrow": "npx hardhat run main/atlantic/zenithswap/borrow.ts",
"atlanticZenithswapRepay": "npx hardhat run main/atlantic/zenithswap/repay.ts",
"atlanticZenithswapWithdraw": "npx hardhat run main/atlantic/zenithswap/withdraw.ts",
"atlanticAquafluxSplit": "npx hardhat run main/atlantic/aquaflux/split.ts",
"atlanticAquafluxCombine": "npx hardhat run main/atlantic/aquaflux/combine.ts",
"atlanticAquafluxWrapper": "npx hardhat run main/atlantic/aquaflux/wrapper.ts",
"atlanticAquafluxEarn": "npx hardhat run main/atlantic/aquaflux/earn.ts"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"dotenv": "^16.5.0",
"hardhat": "^2.24.0",
"tsconfig-paths": "^4.2.0",
"undici": "^6.21.3"
},
"dependencies": {
"axios": "^1.9.0",
"ethers": "^6.14.4",
"https-proxy-agent": "^7.0.6",
"proxy-chain": "^2.5.9",
"puppeteer-extra": "^3.3.6",
"puppeteer-extra-plugin-stealth": "^2.11.2",
"socks-proxy-agent": "^8.0.5"
}
}