-
Notifications
You must be signed in to change notification settings - Fork 239
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[ETHEREUM-CONTRACTS] make deploy script compatible with ethers v6 (#1730
) * make deploy script compatible with ethers v6 * more meaningful jsdoc * add new functions for dev-scripts deployment
- Loading branch information
1 parent
b449f54
commit c5b2433
Showing
5 changed files
with
131 additions
and
38 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,13 @@ | ||
const deployTestFramework = require("./deploy-test-framework"); | ||
const { | ||
deployTestFramework, | ||
deployTestFrameworkWithEthersV5, | ||
deployTestFrameworkWithEthersV6, | ||
printProtocolFrameworkAddresses | ||
} = require("./deploy-test-framework"); | ||
|
||
module.exports = { | ||
deployTestFrameworkWithEthersV6, | ||
deployTestFrameworkWithEthersV5, | ||
deployTestFramework, | ||
printProtocolFrameworkAddresses | ||
}; |
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