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
daef1421
Commit
daef1421
authored
Aug 23, 2022
by
Mark Tyneway
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
specs: cleanup
parent
46f1d689
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
7 deletions
+7
-7
predeploys.md
specs/predeploys.md
+7
-7
No files found.
specs/predeploys.md
View file @
daef1421
...
@@ -14,7 +14,7 @@
...
@@ -14,7 +14,7 @@
-
[
SequencerFeeVault
](
#sequencerfeevault
)
-
[
SequencerFeeVault
](
#sequencerfeevault
)
-
[
OptimismMintableERC20Factory
](
#optimismmintableerc20factory
)
-
[
OptimismMintableERC20Factory
](
#optimismmintableerc20factory
)
-
[
L1BlockNumber
](
#l1blocknumber
)
-
[
L1BlockNumber
](
#l1blocknumber
)
-
[
OVM\_GasPriceOracle
](
#ovm%5C_
gaspriceoracle
)
-
[
GasPriceOracle
](
#
gaspriceoracle
)
-
[
L1Block
](
#l1block
)
-
[
L1Block
](
#l1block
)
-
[
ProxyAdmin
](
#proxyadmin
)
-
[
ProxyAdmin
](
#proxyadmin
)
...
@@ -75,9 +75,9 @@ interface iLegacyOVM_L2ToL1MessagePasser {
...
@@ -75,9 +75,9 @@ interface iLegacyOVM_L2ToL1MessagePasser {
}
}
```
```
##
OVM\_
DeployerWhitelist
## DeployerWhitelist
The
`
OVM_
DeployerWhitelist`
is a predeploy used to provide additional
The
`DeployerWhitelist`
is a predeploy used to provide additional
safety during the initial phases of Optimism. It is owned by the
safety during the initial phases of Optimism. It is owned by the
Optimism team, and defines accounts which are allowed to deploy contracts to the
Optimism team, and defines accounts which are allowed to deploy contracts to the
network.
network.
...
@@ -92,7 +92,7 @@ In the Bedrock system, this contract will no longer be used as part of the
...
@@ -92,7 +92,7 @@ In the Bedrock system, this contract will no longer be used as part of the
This contract is deprecated and its usage should be avoided.
This contract is deprecated and its usage should be avoided.
```
solidity
```
solidity
interface i
OVM_
DeployerWhitelist {
interface iDeployerWhitelist {
event OwnerChanged(address,address);
event OwnerChanged(address,address);
event WhitelistStatusChanged(address,bool);
event WhitelistStatusChanged(address,bool);
event WhitelistDisabled(address);
event WhitelistDisabled(address);
...
@@ -251,9 +251,9 @@ interface iOVM_L1BlockNumber {
...
@@ -251,9 +251,9 @@ interface iOVM_L1BlockNumber {
}
}
```
```
##
OVM\_
GasPriceOracle
## GasPriceOracle
The
`
OVM_
GasPriceOracle`
is pushed the L1 basefee and the L2 gas price by
The
`GasPriceOracle`
is pushed the L1 basefee and the L2 gas price by
an offchain actor. The offchain actor observes the L1 blockheaders to get the
an offchain actor. The offchain actor observes the L1 blockheaders to get the
L1 basefee as well as the gas usage on L2 to compute what the L2 gas price
L1 basefee as well as the gas usage on L2 to compute what the L2 gas price
should be based on a congestion control algorithm.
should be based on a congestion control algorithm.
...
@@ -263,7 +263,7 @@ Bedrock, but it is still used to hold the `overhead`, `scalar`, and `decimals`
...
@@ -263,7 +263,7 @@ Bedrock, but it is still used to hold the `overhead`, `scalar`, and `decimals`
values which are used to compute the L1 portion of the transaction fee.
values which are used to compute the L1 portion of the transaction fee.
```
solidity
```
solidity
interface
OVM_
GasPriceOracle {
interface GasPriceOracle {
/**
/**
* @dev Returns the current gas price on L2
* @dev Returns the current gas price on L2
*/
*/
...
...
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