Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: deploying local networks #277

Merged
merged 1 commit into from
Sep 24, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,8 +32,8 @@
"generate-types": "npm run generate-types:ethers",
"generate-types:ethers": "npx typechain \"build/contracts/*\" --target=ethers-v5 --out-dir src/ethers",
"test": "echo \\\\\\\"Error: no test specified\\\\\\\" && exit 1",
"deploy:local:1": "concurrently --raw --kill-others --success first \"ganache --chainId 1337 -d --db data/ --m 'black toward wish jar twin produce remember fluid always confirm bacon slush' \" \"truffle migrate --network test\"",
"deploy:local:2": "concurrently --raw --kill-others --success first \"ganache -p 8547 --chainId 1338 -d --db data/ --m 'black toward wish jar twin produce remember fluid always confirm bacon slush' \" \"truffle migrate --network test2\"",
"deploy:local:1": "concurrently --raw --kill-others --success first \"ganache --chain.chainId 1337 --database.dbPath data/ --m 'black toward wish jar twin produce remember fluid always confirm bacon slush' \" \"truffle migrate --network test\"",
"deploy:local:2": "concurrently --raw --kill-others --success first \"ganache -p 8547 --chain.chainId 1338 --database.dbPath data/ --m 'black toward wish jar twin produce remember fluid always confirm bacon slush' \" \"truffle migrate --network test2\"",
"lint": "npm run lint:solidity && npm run lint:js",
"lint:solidity": "solhint contracts/**/*.sol",
"lint:js": "eslint --ext .js ."
Expand Down
Loading