-
Notifications
You must be signed in to change notification settings - Fork 67
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Co-authored-by: Alex Roan <[email protected]>
- Loading branch information
1 parent
2b68c8b
commit 52b1d6e
Showing
3 changed files
with
59 additions
and
2 deletions.
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
# Aderyn Configuration File | ||
# This is a sample configuration for Aderyn | ||
|
||
# The root directory of smart contracts | ||
# root = "." | ||
|
||
# By default, aderyn will try to extract the following values based on the framework that is being used. | ||
# However, if you want to be explicit consider mentioning them. | ||
|
||
# The source directory containing the Solidity contracts. | ||
# This is often "contracts/" or "src/" | ||
# src = "src/" | ||
|
||
# Contract files to include in the analysis. | ||
# This is a list of strings representing the file paths of the contracts to include. | ||
# It can be a partial match like "/interfaces/", which will include all files with "/interfaces/" in the file path. | ||
# Or it can be a full match like "Counter.sol", which will include only the file with the exact file. | ||
# If not specified, all contract files in the source directory will be included. | ||
# Example: | ||
# include = ["Counter.sol"] | ||
# include = [] | ||
|
||
# Contract files to exclude from the analysis. | ||
# This is a list of strings representing the file paths of the contracts to exclude. | ||
# It can be a partial match like "/interfaces/", which will exclude all files with "/interfaces/" in the file path. | ||
# Or it can be a full match like "Counter.sol", which will exclude only the file with the exact file. | ||
# If not specified, no contract files will be excluded. | ||
# Example: | ||
# exclude = ["/interfaces/"] | ||
# exclude = [] | ||
|
||
## Remappings used for compiling the contracts. | ||
# Example: | ||
# remappings = ["@oz/contracts=lib/openzeppelin-contracts/contracts"] |