-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: add deploy command (refactored) (#280)
* chore: add interactive deploy command * fix: remove `--verify` * show default options * tweaks * update script and fix verification (#271) * do not lint `lib/` folders except `lib/party-addresses/ * support deployments to base * update addresses * fix prettier lint * fix: update deploy scripts to use via-ir * fix various issues * remove unnecessary todo --------- Co-authored-by: Brian Le <[email protected]>
- Loading branch information
Showing
39 changed files
with
865 additions
and
21,949 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,6 +4,7 @@ | |
/node_modules | ||
/tests/built | ||
/js | ||
/deploy/cache/ | ||
broadcast/ | ||
package-lock.json | ||
yarn.lock | ||
|
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 |
---|---|---|
|
@@ -3,7 +3,8 @@ broadcast | |
cache | ||
out | ||
js | ||
lib | ||
lib/* | ||
!lib/party-addresses/ | ||
node_modules | ||
artifacts | ||
audits |
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,15 @@ | ||
// SPDX-License-Identifier: Apache-2.0 | ||
pragma solidity ^0.8; | ||
|
||
import "./Deploy.s.sol"; | ||
import "./LibDeployConstants.sol"; | ||
|
||
contract BaseDeploy is DeployScript { | ||
function _run() internal override { | ||
console.log("Starting base deploy script."); | ||
|
||
deploy(LibDeployConstants.base()); | ||
|
||
console.log("Ending base deploy script."); | ||
} | ||
} |
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,15 @@ | ||
// SPDX-License-Identifier: Apache-2.0 | ||
pragma solidity ^0.8; | ||
|
||
import "./Deploy.s.sol"; | ||
import "./LibDeployConstants.sol"; | ||
|
||
contract BaseGoerliDeploy is DeployScript { | ||
function _run() internal override { | ||
console.log("Starting base goerli deploy script."); | ||
|
||
deploy(LibDeployConstants.baseGoerli(this.getDeployer())); | ||
|
||
console.log("Ending base goerli deploy script."); | ||
} | ||
} |
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
69 changes: 0 additions & 69 deletions
69
deploy/deployed-contracts/abis/allow_list_gate_keeper.json
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.