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: contractsgen script to compile independent bytecode with machine #154

Merged
merged 3 commits into from
Feb 3, 2025
Merged
Changes from 1 commit
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
Next Next commit
fix: contractsgen script to compile independent bytecode with machine
djm07073 committed Feb 3, 2025
commit bd1206fe88f9ffc0f533f31b37d2ef1b8da068c7
2 changes: 1 addition & 1 deletion scripts/contractsgen.sh
Original file line number Diff line number Diff line change
@@ -14,7 +14,7 @@ for CONTRACT_HOME in $CONTRACTS_DIR/*; do
echo $CONTRACT_PATH
CONTRACT_NAME=$(basename $CONTRACT_PATH .sol)
echo $CONTRACT_HOME $PKG_NAME $CONTRACT_PATH $CONTRACT_NAME
solc $CONTRACT_PATH --bin --abi -o $BUILD_DIR --overwrite
solc $CONTRACT_PATH --metadata-hash none --bin --abi -o $BUILD_DIR --overwrite
abigen --pkg $PKG_NAME \
--bin=$BUILD_DIR/$CONTRACT_NAME.bin \
--abi=$BUILD_DIR/$CONTRACT_NAME.abi \