Skip to content

Instantly share code, notes, and snippets.

@Saw-mon-and-Natalie
Created July 11, 2022 12:30
Show Gist options
  • Save Saw-mon-and-Natalie/ccd1a1fea9d4cd143b5b50ed73c16b22 to your computer and use it in GitHub Desktop.
Save Saw-mon-and-Natalie/ccd1a1fea9d4cd143b5b50ed73c16b22 to your computer and use it in GitHub Desktop.
# `solc` compiler runtime output with extra bits removed.
# solcr [OPTIONS] <CONTRACT_FILE>
# example: solcr contract.sol
solcr() {
solc "$@" --bin-runtime --metadata-hash none |
grep '60806040' |
sed -e 's/.\{27\}$//g';
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment