Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
N
nebula
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
exchain
nebula
Commits
4c015e3a
Unverified
Commit
4c015e3a
authored
Oct 28, 2024
by
Michael Amadi
Committed by
GitHub
Oct 28, 2024
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
put deploy scripts in deploy folder (#12694)
parent
654c7625
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
12 additions
and
12 deletions
+12
-12
BaseDeployIO.sol
packages/contracts-bedrock/scripts/deploy/BaseDeployIO.sol
+0
-0
Deploy.s.sol
packages/contracts-bedrock/scripts/deploy/Deploy.s.sol
+2
-2
DeployAuthSystem.s.sol
...s/contracts-bedrock/scripts/deploy/DeployAuthSystem.s.sol
+0
-0
DeployImplementations.s.sol
...tracts-bedrock/scripts/deploy/DeployImplementations.s.sol
+1
-1
DeployOPChain.s.sol
...ages/contracts-bedrock/scripts/deploy/DeployOPChain.s.sol
+1
-1
DeploySuperchain.s.sol
...s/contracts-bedrock/scripts/deploy/DeploySuperchain.s.sol
+1
-1
OPContractsManager.t.sol
packages/contracts-bedrock/test/L1/OPContractsManager.t.sol
+1
-1
DeployAuthSystem.t.sol
packages/contracts-bedrock/test/opcm/DeployAuthSystem.t.sol
+1
-1
DeployImplementations.t.sol
...s/contracts-bedrock/test/opcm/DeployImplementations.t.sol
+1
-1
DeployOPChain.t.sol
packages/contracts-bedrock/test/opcm/DeployOPChain.t.sol
+3
-3
DeploySuperchain.t.sol
packages/contracts-bedrock/test/opcm/DeploySuperchain.t.sol
+1
-1
No files found.
packages/contracts-bedrock/scripts/
utils
/BaseDeployIO.sol
→
packages/contracts-bedrock/scripts/
deploy
/BaseDeployIO.sol
View file @
4c015e3a
File moved
packages/contracts-bedrock/scripts/deploy/Deploy.s.sol
View file @
4c015e3a
...
@@ -16,13 +16,13 @@ import { LibStateDiff } from "scripts/libraries/LibStateDiff.sol";
...
@@ -16,13 +16,13 @@ import { LibStateDiff } from "scripts/libraries/LibStateDiff.sol";
import { Process } from "scripts/libraries/Process.sol";
import { Process } from "scripts/libraries/Process.sol";
import { ChainAssertions } from "scripts/deploy/ChainAssertions.sol";
import { ChainAssertions } from "scripts/deploy/ChainAssertions.sol";
import { DeployUtils } from "scripts/libraries/DeployUtils.sol";
import { DeployUtils } from "scripts/libraries/DeployUtils.sol";
import { DeploySuperchainInput, DeploySuperchain, DeploySuperchainOutput } from "scripts/DeploySuperchain.s.sol";
import { DeploySuperchainInput, DeploySuperchain, DeploySuperchainOutput } from "scripts/
deploy/
DeploySuperchain.s.sol";
import {
import {
DeployImplementationsInput,
DeployImplementationsInput,
DeployImplementations,
DeployImplementations,
DeployImplementationsInterop,
DeployImplementationsInterop,
DeployImplementationsOutput
DeployImplementationsOutput
} from "scripts/DeployImplementations.s.sol";
} from "scripts/
deploy/
DeployImplementations.s.sol";
// Contracts
// Contracts
import { StorageSetter } from "src/universal/StorageSetter.sol";
import { StorageSetter } from "src/universal/StorageSetter.sol";
...
...
packages/contracts-bedrock/scripts/DeployAuthSystem.s.sol
→
packages/contracts-bedrock/scripts/
deploy/
DeployAuthSystem.s.sol
View file @
4c015e3a
File moved
packages/contracts-bedrock/scripts/DeployImplementations.s.sol
→
packages/contracts-bedrock/scripts/
deploy/
DeployImplementations.s.sol
View file @
4c015e3a
...
@@ -39,7 +39,7 @@ import { Blueprint } from "src/libraries/Blueprint.sol";
...
@@ -39,7 +39,7 @@ import { Blueprint } from "src/libraries/Blueprint.sol";
import { DeployUtils } from "scripts/libraries/DeployUtils.sol";
import { DeployUtils } from "scripts/libraries/DeployUtils.sol";
import { Solarray } from "scripts/libraries/Solarray.sol";
import { Solarray } from "scripts/libraries/Solarray.sol";
import { BaseDeployIO } from "scripts/
utils
/BaseDeployIO.sol";
import { BaseDeployIO } from "scripts/
deploy
/BaseDeployIO.sol";
// See DeploySuperchain.s.sol for detailed comments on the script architecture used here.
// See DeploySuperchain.s.sol for detailed comments on the script architecture used here.
contract DeployImplementationsInput is BaseDeployIO {
contract DeployImplementationsInput is BaseDeployIO {
...
...
packages/contracts-bedrock/scripts/DeployOPChain.s.sol
→
packages/contracts-bedrock/scripts/
deploy/
DeployOPChain.s.sol
View file @
4c015e3a
...
@@ -7,7 +7,7 @@ import { SafeCast } from "@openzeppelin/contracts/utils/math/SafeCast.sol";
...
@@ -7,7 +7,7 @@ import { SafeCast } from "@openzeppelin/contracts/utils/math/SafeCast.sol";
import { DeployUtils } from "scripts/libraries/DeployUtils.sol";
import { DeployUtils } from "scripts/libraries/DeployUtils.sol";
import { Solarray } from "scripts/libraries/Solarray.sol";
import { Solarray } from "scripts/libraries/Solarray.sol";
import { BaseDeployIO } from "scripts/
utils
/BaseDeployIO.sol";
import { BaseDeployIO } from "scripts/
deploy
/BaseDeployIO.sol";
import { IResourceMetering } from "src/L1/interfaces/IResourceMetering.sol";
import { IResourceMetering } from "src/L1/interfaces/IResourceMetering.sol";
import { ISuperchainConfig } from "src/L1/interfaces/ISuperchainConfig.sol";
import { ISuperchainConfig } from "src/L1/interfaces/ISuperchainConfig.sol";
...
...
packages/contracts-bedrock/scripts/DeploySuperchain.s.sol
→
packages/contracts-bedrock/scripts/
deploy/
DeploySuperchain.s.sol
View file @
4c015e3a
...
@@ -11,7 +11,7 @@ import { IProxy } from "src/universal/interfaces/IProxy.sol";
...
@@ -11,7 +11,7 @@ import { IProxy } from "src/universal/interfaces/IProxy.sol";
import { DeployUtils } from "scripts/libraries/DeployUtils.sol";
import { DeployUtils } from "scripts/libraries/DeployUtils.sol";
import { Solarray } from "scripts/libraries/Solarray.sol";
import { Solarray } from "scripts/libraries/Solarray.sol";
import { BaseDeployIO } from "scripts/
utils
/BaseDeployIO.sol";
import { BaseDeployIO } from "scripts/
deploy
/BaseDeployIO.sol";
// This comment block defines the requirements and rationale for the architecture used in this forge
// This comment block defines the requirements and rationale for the architecture used in this forge
// script, along with other scripts that are being written as new Superchain-first deploy scripts to
// script, along with other scripts that are being written as new Superchain-first deploy scripts to
...
...
packages/contracts-bedrock/test/L1/OPContractsManager.t.sol
View file @
4c015e3a
...
@@ -3,7 +3,7 @@ pragma solidity 0.8.15;
...
@@ -3,7 +3,7 @@ pragma solidity 0.8.15;
import { Test, stdStorage, StdStorage } from "forge-std/Test.sol";
import { Test, stdStorage, StdStorage } from "forge-std/Test.sol";
import { DeployOPChainInput } from "scripts/DeployOPChain.s.sol";
import { DeployOPChainInput } from "scripts/
deploy/
DeployOPChain.s.sol";
import { DeployOPChain_TestBase } from "test/opcm/DeployOPChain.t.sol";
import { DeployOPChain_TestBase } from "test/opcm/DeployOPChain.t.sol";
import { OPContractsManager } from "src/L1/OPContractsManager.sol";
import { OPContractsManager } from "src/L1/OPContractsManager.sol";
...
...
packages/contracts-bedrock/test/opcm/DeployAuthSystem.t.sol
View file @
4c015e3a
...
@@ -5,7 +5,7 @@ import { Test, stdStorage, StdStorage } from "forge-std/Test.sol";
...
@@ -5,7 +5,7 @@ import { Test, stdStorage, StdStorage } from "forge-std/Test.sol";
import { stdToml } from "forge-std/StdToml.sol";
import { stdToml } from "forge-std/StdToml.sol";
import { Solarray } from "scripts/libraries/Solarray.sol";
import { Solarray } from "scripts/libraries/Solarray.sol";
import { DeployAuthSystemInput, DeployAuthSystem, DeployAuthSystemOutput } from "scripts/DeployAuthSystem.s.sol";
import { DeployAuthSystemInput, DeployAuthSystem, DeployAuthSystemOutput } from "scripts/
deploy/
DeployAuthSystem.s.sol";
contract DeployAuthSystemInput_Test is Test {
contract DeployAuthSystemInput_Test is Test {
DeployAuthSystemInput dasi;
DeployAuthSystemInput dasi;
...
...
packages/contracts-bedrock/test/opcm/DeployImplementations.t.sol
View file @
4c015e3a
...
@@ -26,7 +26,7 @@ import {
...
@@ -26,7 +26,7 @@ import {
DeployImplementations,
DeployImplementations,
DeployImplementationsInterop,
DeployImplementationsInterop,
DeployImplementationsOutput
DeployImplementationsOutput
} from "scripts/DeployImplementations.s.sol";
} from "scripts/
deploy/
DeployImplementations.s.sol";
contract DeployImplementationsInput_Test is Test {
contract DeployImplementationsInput_Test is Test {
DeployImplementationsInput dii;
DeployImplementationsInput dii;
...
...
packages/contracts-bedrock/test/opcm/DeployOPChain.t.sol
View file @
4c015e3a
...
@@ -3,14 +3,14 @@ pragma solidity 0.8.15;
...
@@ -3,14 +3,14 @@ pragma solidity 0.8.15;
import { Test } from "forge-std/Test.sol";
import { Test } from "forge-std/Test.sol";
import { DeploySuperchainInput, DeploySuperchain, DeploySuperchainOutput } from "scripts/DeploySuperchain.s.sol";
import { DeploySuperchainInput, DeploySuperchain, DeploySuperchainOutput } from "scripts/
deploy/
DeploySuperchain.s.sol";
import {
import {
DeployImplementationsInput,
DeployImplementationsInput,
DeployImplementations,
DeployImplementations,
DeployImplementationsInterop,
DeployImplementationsInterop,
DeployImplementationsOutput
DeployImplementationsOutput
} from "scripts/DeployImplementations.s.sol";
} from "scripts/
deploy/
DeployImplementations.s.sol";
import { DeployOPChainInput, DeployOPChain, DeployOPChainOutput } from "scripts/DeployOPChain.s.sol";
import { DeployOPChainInput, DeployOPChain, DeployOPChainOutput } from "scripts/
deploy/
DeployOPChain.s.sol";
import { DeployUtils } from "scripts/libraries/DeployUtils.sol";
import { DeployUtils } from "scripts/libraries/DeployUtils.sol";
import { IProxyAdmin } from "src/universal/interfaces/IProxyAdmin.sol";
import { IProxyAdmin } from "src/universal/interfaces/IProxyAdmin.sol";
...
...
packages/contracts-bedrock/test/opcm/DeploySuperchain.t.sol
View file @
4c015e3a
...
@@ -8,7 +8,7 @@ import { ProxyAdmin } from "src/universal/ProxyAdmin.sol";
...
@@ -8,7 +8,7 @@ import { ProxyAdmin } from "src/universal/ProxyAdmin.sol";
import { Proxy } from "src/universal/Proxy.sol";
import { Proxy } from "src/universal/Proxy.sol";
import { SuperchainConfig } from "src/L1/SuperchainConfig.sol";
import { SuperchainConfig } from "src/L1/SuperchainConfig.sol";
import { IProtocolVersions, ProtocolVersion } from "src/L1/interfaces/IProtocolVersions.sol";
import { IProtocolVersions, ProtocolVersion } from "src/L1/interfaces/IProtocolVersions.sol";
import { DeploySuperchainInput, DeploySuperchain, DeploySuperchainOutput } from "scripts/DeploySuperchain.s.sol";
import { DeploySuperchainInput, DeploySuperchain, DeploySuperchainOutput } from "scripts/
deploy/
DeploySuperchain.s.sol";
contract DeploySuperchainInput_Test is Test {
contract DeploySuperchainInput_Test is Test {
DeploySuperchainInput dsi;
DeploySuperchainInput dsi;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment