|
8 | 8 | "preinstall": "npx only-allow bun", |
9 | 9 | "prettier": "prettier --write --list-different .", |
10 | 10 | "prettier:check": "prettier --check .", |
11 | | - "forge:build": "forge build && bun forge:selectors", |
12 | | - "forge:build:zksync": "forge build --zksync && bun forge:selectors", |
13 | | - "forge:test": "forge test", |
14 | | - "forge:anvil": "anvil", |
15 | | - "forge:selectors": "bun ts-helpers/get-all-function-selectors.ts", |
16 | | - "forge:deploy": "source .env && export PRIVATE_KEY=$ANVIL_PRIVATE_KEY && forge script script/deploy/Satellite.s.sol:Deploy -vvv", |
17 | | - "forge:deploy:anvil": "source .env && export PRIVATE_KEY=$ANVIL_PRIVATE_KEY && forge script script/deploy/Satellite.s.sol:Deploy --fork-url $ANVIL_RPC_URL --broadcast -vvv", |
18 | | - "forge:deploy:sepolia": "source .env && forge script --chain sepolia script/deploy/Satellite.s.sol:Deploy --rpc-url $SEPOLIA_RPC_URL --broadcast --verify -vvv", |
19 | | - "test_connection:optimism": "source .env && ETHERSCAN_API_KEY=$L1_ETHERSCAN_API_KEY forge script --chain sepolia script/TestConnectionOptimism.s.sol:TestConnectionOptimism --rpc-url $SEPOLIA_RPC_URL --broadcast -vvvv", |
20 | | - "test_connection:arbitrum": "source .env && ETHERSCAN_API_KEY=$L1_ETHERSCAN_API_KEY forge script --chain sepolia script/TestConnectionArbitrum.s.sol:TestConnectionArbitrum --rpc-url $SEPOLIA_RPC_URL --broadcast -vvvv", |
21 | | - "forge:deploy:update": "source .env && export PRIVATE_KEY=$ANVIL_PRIVATE_KEY && forge script -vvv", |
22 | | - "forge:deploy:update:anvil": "source .env && export PRIVATE_KEY=$ANVIL_PRIVATE_KEY && forge script --fork-url $ANVIL_RPC_URL --broadcast -vvv", |
23 | | - "forge:deploy:update:sepolia": "source .env && forge script --chain sepolia --rpc-url $SEPOLIA_RPC_URL --broadcast --verify -vvv", |
24 | 11 | "clear": "rm -rf out cache", |
25 | 12 | "clear:full": "bun run clear && rm -rf node_modules", |
26 | 13 | "compile": "bun hardhat compile", |
27 | 14 | "compile:zksync": "bun hardhat compile --network zkSyncSepolia", |
28 | | - "connection:register": "bun run scripts/connect.ts", |
29 | | - "satellite:deploy": "bun run scripts/deploy.ts", |
30 | | - "satellite:upgrade": "bun run compile && bun run scripts/SatelliteUpgrade.ts", |
31 | | - "erase_deployed_satellites": "echo \"{\n\t\\\"satellites\\\": [],\n\t\\\"connections\\\": []\n}\" > deployed_satellites.json", |
32 | | - "generate_abi": "bun run scripts/generate-abi.ts" |
| 15 | + "satellite:deploy": "bun run compile && bun run scripts/satelliteDeploy.ts", |
| 16 | + "satellite:upgrade": "bun run compile && bun run scripts/satelliteUpgrade.ts", |
| 17 | + "satellite:remove": "bun run scripts/satelliteRemove.ts", |
| 18 | + "connection:register": "bun run scripts/connectionRegister.ts", |
| 19 | + "connection:remove": "bun run scripts/connectionRemove.ts", |
| 20 | + "detach_satellites": "echo \"{\n\t\\\"satellites\\\": [],\n\t\\\"connections\\\": []\n}\" > deployed_satellites.json", |
| 21 | + "generate_abi": "bun run scripts/generateAbi.ts" |
33 | 22 | }, |
34 | 23 | "devDependencies": { |
35 | 24 | "@nomicfoundation/hardhat-chai-matchers": "^2.0.0", |
|
0 commit comments