-
Notifications
You must be signed in to change notification settings - Fork 47
/
Copy pathpackage.json
74 lines (74 loc) · 3.42 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
{
"name": "avalanche-smart-contract-quickstart",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.2",
"@nomiclabs/hardhat-waffle": "^2.0.1",
"@openzeppelin/contracts": "^4.4.2",
"@types/chai": "^4.2.21",
"@types/mocha": "^9.0.0",
"@types/node": "^16.7.1",
"avalanche": "3.8.5",
"chai": "^4.3.4",
"ethereum-waffle": "^3.4.0",
"ethereumjs-tx": "^2.1.2",
"ethers": "^5.4.5",
"hardhat": "2.6.1",
"hardhat-deploy": "^0.9.0",
"ts-node": "^10.2.1",
"web3": "^1.5.2"
},
"version": "1.0.0",
"description": "",
"main": "index.js",
"repository": "https://github.com/ava-labs/avalanche-smart-contract-quickstart",
"author": "Connor Daly <[email protected]>",
"contributors": [
"Gabriel Cardona <[email protected]>"
],
"license": "BSD-3-Clause",
"scripts": {
"precompile": "rimraf ./build/",
"compile": "npx hardhat compile",
"console": "npx hardhat console",
"pretest": "yarn compile",
"test": "npx hardhat test",
"deploy_legacy": "npx hardhat run scripts/deploy.ts",
"deploy": "npx hardhat deploy",
"erc20": "npx hardhat run scripts/erc20.ts",
"nft": "npx hardhat run scripts/nft.ts --network mainnet",
"storage": "npx hardhat run scripts/storage.ts",
"send-avax-wallet-signer": "npx hardhat run scripts/sendAvaxWalletSigner.ts",
"send-avax-json-provider": "npx hardhat run scripts/sendAvaxJSONProvider.ts",
"lint": "prettier ./test/**/*.ts --check",
"prepublishOnly": "yarn test",
"arb:pangolin:sushi:wavax:usdt": "npx hardhat run scripts/flash-arb/pangolin/pangolin-sushi-swap-wavax-usdt.ts",
"arb:pangolin:sushi:usdt:wavax": "npx hardhat run scripts/flash-arb/pangolin/pangolin-sushi-swap-usdt-wavax.ts",
"arb:pangolin:joe:wavax:joe": "npx hardhat run scripts/flash-arb/pangolin/pangolin-trader-joe-swap-wavax-joe.ts",
"arb:pangolin:joe:joe:wavax": "npx hardhat run scripts/flash-arb/pangolin/pangolin-trader-joe-swap-joe-wavax.ts",
"arb:pangolin:joe:wavax:usdt": "npx hardhat run scripts/flash-arb/pangolin/pangolin-trader-joe-swap-wavax-usdt.ts",
"arb:pangolin:joe:usdt:wavax": "npx hardhat run scripts/flash-arb/pangolin/pangolin-trader-joe-swap-usdt-wavax.ts",
"arb:sushi:pangolin:wavax:usdt": "npx hardhat run scripts/flash-arb/sushi/sushi-pangolin-swap-wavax-usdt.ts",
"arb:sushi:pangolin:usdt:wavax": "npx hardhat run scripts/flash-arb/sushi/sushi-pangolin-swap-usdt-wavax.ts",
"arb:joe:pangolin:usdt:wavax": "npx hardhat run scripts/flash-arb/trader-joe/trader-joe-pangolin-swap-usdt-wavax.ts",
"arb:joe:pangolin:wavax:usdt": "npx hardhat run scripts/flash-arb/trader-joe/trader-joe-pangolin-swap-wavax-usdt.ts",
"arb:joe:pangolin:joe:wavax": "npx hardhat run scripts/flash-arb/trader-joe/trader-joe-pangolin-swap-joe-wavax.ts",
"arb:joe:pangolin:wavax:joe": "npx hardhat run scripts/flash-arb/trader-joe/trader-joe-pangolin-swap-wavax-joe.ts",
"hardhat": "npx hardhat",
"accounts": "npx hardhat accounts",
"balances": "npx hardhat balances",
"fund-cchain-addresses": "npx hardhat run scripts/fund-cchain-addresses.js"
},
"dependencies": {
"@pangolindex/exchange-contracts": "^1.0.2",
"@sushiswap/core": "^1.4.2",
"@traderjoe-xyz/core": "^1.1.0",
"@uniswap/lib": "^4.0.1-alpha",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"dotenv": "^10.0.0",
"typescript": "^4.3.5"
},
"engines": {
"node": ">=14.17.0"
}
}