-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
33 lines (33 loc) · 2.36 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
{
"name": "teleporter",
"version": "1.0.0",
"description": "This is a teleporter guide for Avax",
"main": "index.js",
"scripts": {
"compile": "npx hardhat compile && node scripts/runTypeChain.js",
"deploy1": "npx hardhat run scripts/deployStep1.ts --network cChain",
"deploy2": "npx hardhat run scripts/deployStep2.ts --network dispatch",
"deploy3": "npx hardhat run scripts/deployStep3.ts --network cChain",
"validate_operation": "npx hardhat run scripts/validateCalculator.ts --network dispatch",
"run_operation": "npx hardhat run scripts/runCalculator.ts --network cChain",
"deploy_simple": "npx hardhat run scripts/simpleFlow/1deploy.ts --network cChain && npx hardhat run scripts/simpleFlow/2deploy.ts --network dispatch",
"review_simple": "npx hardhat run scripts/simpleFlow/3state.ts --network dispatch && npx hardhat run scripts/simpleFlow/4run.ts --network cChain && npx hardhat run scripts/simpleFlow/3state.ts --network dispatch",
"deploy_disengaged": "npx hardhat run scripts/disengaged/1deploy.ts --network cChain && npx hardhat run scripts/disengaged/2deploy.ts --network dispatch",
"review_disengaged": "npx hardhat run scripts/disengaged/3state.ts --network dispatch && npx hardhat run scripts/disengaged/4run.ts --network cChain && npx hardhat run scripts/disengaged/3state.ts --network dispatch",
"deploy_simple_dc": "npx hardhat run scripts/simpleFlowDC/1deploy.ts --network dispatch && npx hardhat run scripts/simpleFlowDC/2deploy.ts --network cChain",
"review_simple_dc": "npx hardhat run scripts/simpleFlowDC/3state.ts --network cChain && npx hardhat run scripts/simpleFlowDC/4run.ts --network dispatch && npx hardhat run scripts/simpleFlow/3state.ts --network cChain",
"deploy_disengaged_dc": "npx hardhat run scripts/disengagedDC/1deploy.ts --network dispatch && npx hardhat run scripts/disengagedDC/2deploy.ts --network cChain",
"review_disengaged_dc": "npx hardhat run scripts/disengagedDC/3state.ts --network cChain && npx hardhat run scripts/disengagedDC/4run.ts --network dispatch && npx hardhat run scripts/disengagedDC/3state.ts --network cChain"
},
"author": "Alejandro S",
"license": "ISC",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@typechain/ethers-v6": "^0.5.1",
"hardhat": "^2.19.4",
"typechain": "^8.3.2"
},
"dependencies": {
"dotenv": "^16.3.2"
}
}