Skip to content

Commit

Permalink
chore: Clean npm scripts
Browse files Browse the repository at this point in the history
  • Loading branch information
DeFiFoFum committed Nov 30, 2022
1 parent 76dd9c4 commit 1d39cf7
Showing 1 changed file with 12 additions and 9 deletions.
21 changes: 12 additions & 9 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -13,15 +13,18 @@
"compile": "truffle compile",
"compile:all": "truffle compile --all",
"gen:types": "truffle compile --all && typechain --target=truffle-v5 'build/contracts/*.json'",
"migrate:bsc": "tsc -p ./tsconfig.json --outDir ./migrations && truffle migrate --network bsc",
"migrate:polygon": "tsc -p ./tsconfig.json --outDir ./migrations && truffle migrate --network polygon",
"migrate:bsc-testnet": "tsc -p ./tsconfig.json --outDir ./migrations && truffle migrate --network bsc-testnet",
"migrate:dev": "tsc -p ./tsconfig.json --outDir ./migrations && truffle migrate --network development",
"verify:bsc": "truffle run verify VaultApe StrategyMasterChefSingleFactory StrategyMasterApeSingleFactory StrategyKoalaFarmFactory StrategyMasterChefFactory StrategyKoalaChefSingleFactory --network bsc",
"verify:bsc:maximizer": "truffle run verify KeeperMaximizerVaultApe BananaVault StrategyMaximizerMasterApe --network bsc",
"verify:bsc-testnet:maximizer": "truffle run verify KeeperMaximizerVaultApe BananaVault StrategyMaximizerMasterApe --network bsc-testnet",
"verify:polygon": "truffle run verify VaultApe StrategyMasterChefSingleFactory StrategyMasterApeSingleFactory StrategyKoalaFarmFactory StrategyMasterChefFactory StrategyKoalaChefSingleFactory --network polygon",
"verify:bsc-testnet": "truffle run verify Migrations --network bsc-testnet",
"migrate": "truffle migrate",
"migrate:bsc": "yarn migrate --network bsc",
"migrate:polygon": "yarn migrate --network polygon",
"migrate:bsc-testnet": "yarn migrate --network bsc-testnet",
"migrate:dev": "yarn migrate --network development",
"verify": "truffle run verify VaultApe StrategyMasterChefSingleFactory StrategyMasterApeSingleFactory StrategyKoalaFarmFactory StrategyMasterChefFactory StrategyKoalaChefSingleFactory",
"verify:bsc": "yarn verify --network bsc",
"verify:polygon": "yarn verify --network polygon",
"verify:bsc-testnet": "yarn verify --network bsc-testnet",
"verify:maximizer": "truffle run verify KeeperMaximizerVaultApe BananaVault StrategyMaximizerMasterApe",
"verify:maximizer:bsc": "yarn verify:maximizer --network bsc",
"verify:maximizer:bsc-testnet": "yarn verify:maximizer --network bsc-testnet",
"typecheck": "tsc --noEmit",
"lint": "solhint './contracts/**/*.sol'",
"lint:fix": "solhint './contracts/**/*.sol' --fix",
Expand Down

0 comments on commit 1d39cf7

Please sign in to comment.