Skip to content

Commit

Permalink
debug deploy
Browse files Browse the repository at this point in the history
  • Loading branch information
thedavidmeister committed Jan 7, 2024
1 parent 89413bb commit 556af09
Showing 1 changed file with 7 additions and 4 deletions.
11 changes: 7 additions & 4 deletions flake.nix
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,13 @@
in rec {
packages = rec {
deploy-single-contract = contract: ''
forge script script/Deploy${contract}.sol:Deploy${contract} --legacy --verify --broadcast --rpc-url "''${CI_DEPLOY_RPC_URL}" --etherscan-api-key "''${EXPLORER_VERIFICATION_KEY}" \
--sig='run(bytes)' \
"$( ${(build-meta-cmd contract)} -E hex )" \
;
forge script script/Deploy${contract}.sol:Deploy${contract} \
--legacy \
--verify \
--broadcast \
--rpc-url "''${CI_DEPLOY_RPC_URL}" \
--etherscan-api-key "''${EXPLORER_VERIFICATION_KEY}" \
;
'';

deploy-contracts = rainix.mkTask.${system} { name = "deploy-contracts"; body = (''
Expand Down

0 comments on commit 556af09

Please sign in to comment.