-
Notifications
You must be signed in to change notification settings - Fork 83
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
add etherscan function to ignore/remove unused contracts #247
Open
rmi7
wants to merge
4
commits into
dev
Choose a base branch
from
fix-etherscan-multifile-ignore-unused-contracts
base: dev
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
@@ -202,6 +202,8 @@ def compile(self, crytic_compile: "CryticCompile", **kwargs: str) -> None: | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
only_source = kwargs.get("etherscan_only_source_code", False) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
only_bytecode = kwargs.get("etherscan_only_bytecode", False) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
target_only = kwargs.get("etherscan_target_only", False) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
etherscan_api_key = kwargs.get("etherscan_api_key", None) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
arbiscan_api_key = kwargs.get("arbiscan_api_key", None) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
polygonscan_api_key = kwargs.get("polygonscan_api_key", None) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -330,6 +332,9 @@ def compile(self, crytic_compile: "CryticCompile", **kwargs: str) -> None: | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
solc_standard_json.standalone_compile(filenames, compilation_unit, working_dir=working_dir) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if target_only: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
_remove_unused_contracts(compilation_unit) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
@staticmethod | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
def is_supported(target: str, **kwargs: str) -> bool: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
"""Check if the target is a etherscan project | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
@@ -390,3 +395,82 @@ def _relative_to_short(relative: Path) -> Path: | |||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Path: Translated path | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return relative | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# pylint: disable=too-many-locals,too-many-branches | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
def _remove_unused_contracts(compilation_unit: CompilationUnit) -> None: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Removes unused contracts from the compilation unit | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Args: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
compilation_unit (CompilationUnit): compilation unit to populate | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Returns: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
""" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if len(list(compilation_unit.asts.keys())) == 1: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# there is only 1 file | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# for etherscan this will be the value the etherscan api returns in 'ContractName' | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
root_contract_name = compilation_unit.unique_id | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# find the root file path according to a contract with the correct name being defined in it | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# and also get the base path used by all paths (the keys under 'asts') | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
root_file_path = None | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
base_path = "" | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
for file_path, file_ast in compilation_unit.asts.items(): | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if root_file_path is not None: # already found target contract | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
break | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
for node in file_ast["nodes"]: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if node["nodeType"] == "ContractDefinition" and node["name"] == root_contract_name: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
root_file_path = file_path | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
base_path = file_path.replace(file_ast["absolutePath"], "") | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
break | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if root_file_path is None: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# we could not find a contract with that name in any of the files | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
Comment on lines
+420
to
+433
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Suggested change
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# Starting with the root contract, fetch all dependencies (and their dependencies, etc.) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
files_to_include = [] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
files_to_check = [root_file_path] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
while any(files_to_check): | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
target_file_path = files_to_check.pop() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
for node in compilation_unit.asts[target_file_path]["nodes"]: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if node["nodeType"] == "ImportDirective": | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
import_path = os.path.join(base_path, node["absolutePath"]) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if import_path not in files_to_check and import_path not in files_to_include: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
files_to_check.append(import_path) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
files_to_include.append(target_file_path) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if len(list(compilation_unit.asts.keys())) == len(files_to_include): | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# all of the files need to be included | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
return | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
# Remove all of the unused files from the compilation unit | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
included_contractnames = set() | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
for target_file_path in files_to_include: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
for node in compilation_unit.asts[target_file_path]["nodes"]: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if node["nodeType"] == "ContractDefinition": | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
included_contractnames.add(node["name"]) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
for contractname in list(compilation_unit.contracts_names): | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if contractname not in included_contractnames: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
compilation_unit.contracts_names.remove(contractname) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
del compilation_unit.abis[contractname] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
del compilation_unit.natspec[contractname] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
del compilation_unit.bytecodes_init[contractname] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
del compilation_unit.bytecodes_runtime[contractname] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
del compilation_unit.srcmaps_init[contractname] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
del compilation_unit.srcmaps_runtime[contractname] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
for contract_filename in list(compilation_unit.filename_to_contracts.keys()): | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if contract_filename.absolute not in files_to_include: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
del compilation_unit.filename_to_contracts[contract_filename] | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
|
||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
for fileobj in list(compilation_unit.crytic_compile.filenames): | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
if fileobj.absolute not in files_to_include: | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
compilation_unit.crytic_compile.filenames.remove(fileobj) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
compilation_unit.filenames.remove(fileobj) | ||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||||
del compilation_unit.asts[fileobj.absolute] |
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
changing this to
!=
will make the mypy error go away. But then pylint will error saying it needs to beis not
..