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

remove unecessary forge build commands #443

Closed
wants to merge 1 commit into from
Closed
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
5 changes: 0 additions & 5 deletions nested.just
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,6 @@ simulate whichSafe hdPath='0':
fi
echo ""

forge build
forge script ${script} \
--rpc-url ${rpcUrl} \
--sender ${signer} \
Expand Down Expand Up @@ -85,7 +84,6 @@ sign whichSafe hdPath='0':
echo "Signing with: ${signer}"
echo ""

forge build
# Using the eip712sign within the repo folder since eip712sign was installed there in ./justfile.
$(git rev-parse --show-toplevel)/bin/eip712sign --ledger --hd-paths "m/44'/60'/{{hdPath}}'/0/0" -- \
forge script ${script} \
Expand Down Expand Up @@ -120,7 +118,6 @@ approve whichSafe hdPath='0':
fi
sender=$(cast wallet address --ledger --mnemonic-derivation-path "m/44'/60'/{{hdPath}}'/0/0")

forge build
forge script ${script} \
--fork-url ${rpcUrl} \
--ledger --hd-paths "m/44'/60'/{{hdPath}}'/0/0" \
Expand All @@ -142,7 +139,6 @@ execute hdPath='0':
echo "Using script ${script}"
sender=$(cast wallet address --ledger --mnemonic-derivation-path "m/44'/60'/{{hdPath}}'/0/0")

forge build
forge script ${script} \
--fork-url ${rpcUrl} \
--ledger --hd-paths "m/44'/60'/{{hdPath}}'/0/0" \
Expand All @@ -161,7 +157,6 @@ simulated-run hdPath='0':
fi
echo "Using script ${script}"

forge build
forge script ${script} \
--fork-url ${rpcUrl} \
--sender ${randomPersonEoa} \
Expand Down