-
Notifications
You must be signed in to change notification settings - Fork 493
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(@embark/deployment): introduce
interfaces
and libraries
conf…
…iguration This commit adds two new configuration settings for Smart Contract configuration: - `interfaces` - Any Smart Contract that represent an interface or is used for inheritance - `libraries` - Any Smart Contract that is used as a library This makes the configuration less redundant in cases where otherwise the `deploy` property has been set to `false`, such as: ``` deploy: { Ownable: { deploy: false }, ... } ``` The above can now be done via: ``` interfaces: ['Ownable'], deploy: { ... } ```
- Loading branch information
1 parent
2527058
commit 73d0443
Showing
5 changed files
with
32 additions
and
6 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
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