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
a01241fe
Unverified
Commit
a01241fe
authored
Feb 23, 2023
by
mergify[bot]
Committed by
GitHub
Feb 23, 2023
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'develop' into jm/fix-error-strings
parents
098e8031
34e13a5b
Changes
7
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
137 additions
and
3 deletions
+137
-3
fifty-schools-think.md
.changeset/fifty-schools-think.md
+5
-0
db_migration.go
op-chain-ops/genesis/db_migration.go
+1
-1
chains.go
op-node/chaincfg/chains.go
+8
-0
main.go
op-node/cmd/main.go
+1
-1
node.go
op-node/node/node.go
+4
-1
types.go
op-node/rollup/types.go
+57
-0
types_test.go
op-node/rollup/types_test.go
+61
-0
No files found.
.changeset/fifty-schools-think.md
0 → 100644
View file @
a01241fe
---
'
@eth-optimism/ci-builder'
:
patch
---
Bump foundry to edf15abd648bb96e2bcee342c1d72ec7d1066cd1
op-chain-ops/genesis/db_migration.go
View file @
a01241fe
...
@@ -192,7 +192,7 @@ func MigrateDB(ldb ethdb.Database, config *DeployConfig, l1Block *types.Block, m
...
@@ -192,7 +192,7 @@ func MigrateDB(ldb ethdb.Database, config *DeployConfig, l1Block *types.Block, m
}
}
// Finally we migrate the balances held inside the LegacyERC20ETH contract into the state trie.
// Finally we migrate the balances held inside the LegacyERC20ETH contract into the state trie.
//
Note that we do NOT
delete the balances from the LegacyERC20ETH contract.
//
We also
delete the balances from the LegacyERC20ETH contract.
log
.
Info
(
"Starting to migrate ERC20 ETH"
)
log
.
Info
(
"Starting to migrate ERC20 ETH"
)
err
=
ether
.
MigrateLegacyETH
(
db
,
addrs
,
int
(
config
.
L1ChainID
),
noCheck
)
err
=
ether
.
MigrateLegacyETH
(
db
,
addrs
,
int
(
config
.
L1ChainID
),
noCheck
)
if
err
!=
nil
{
if
err
!=
nil
{
...
...
op-node/chaincfg/chains.go
View file @
a01241fe
...
@@ -73,6 +73,14 @@ var NetworksByName = map[string]rollup.Config{
...
@@ -73,6 +73,14 @@ var NetworksByName = map[string]rollup.Config{
"goerli"
:
Goerli
,
"goerli"
:
Goerli
,
}
}
var
L2ChainIDToNetworkName
=
func
()
map
[
string
]
string
{
out
:=
make
(
map
[
string
]
string
)
for
name
,
netCfg
:=
range
NetworksByName
{
out
[
netCfg
.
L2ChainID
.
String
()]
=
name
}
return
out
}()
func
AvailableNetworks
()
[]
string
{
func
AvailableNetworks
()
[]
string
{
var
networks
[]
string
var
networks
[]
string
for
name
:=
range
NetworksByName
{
for
name
:=
range
NetworksByName
{
...
...
op-node/cmd/main.go
View file @
a01241fe
...
@@ -109,7 +109,7 @@ func RollupNodeMain(ctx *cli.Context) error {
...
@@ -109,7 +109,7 @@ func RollupNodeMain(ctx *cli.Context) error {
log
.
Error
(
"Unable to create the rollup node"
,
"error"
,
err
)
log
.
Error
(
"Unable to create the rollup node"
,
"error"
,
err
)
return
err
return
err
}
}
log
.
Info
(
"Starting rollup node"
)
log
.
Info
(
"Starting rollup node"
,
"version"
,
VersionWithMeta
)
if
err
:=
n
.
Start
(
context
.
Background
());
err
!=
nil
{
if
err
:=
n
.
Start
(
context
.
Background
());
err
!=
nil
{
log
.
Error
(
"Unable to start rollup node"
,
"error"
,
err
)
log
.
Error
(
"Unable to start rollup node"
,
"error"
,
err
)
...
...
op-node/node/node.go
View file @
a01241fe
...
@@ -13,6 +13,7 @@ import (
...
@@ -13,6 +13,7 @@ import (
"github.com/ethereum/go-ethereum/event"
"github.com/ethereum/go-ethereum/event"
"github.com/ethereum/go-ethereum/log"
"github.com/ethereum/go-ethereum/log"
"github.com/ethereum-optimism/optimism/op-node/chaincfg"
"github.com/ethereum-optimism/optimism/op-node/client"
"github.com/ethereum-optimism/optimism/op-node/client"
"github.com/ethereum-optimism/optimism/op-node/eth"
"github.com/ethereum-optimism/optimism/op-node/eth"
"github.com/ethereum-optimism/optimism/op-node/metrics"
"github.com/ethereum-optimism/optimism/op-node/metrics"
...
@@ -61,9 +62,11 @@ func New(ctx context.Context, cfg *Config, log log.Logger, snapshotLog log.Logge
...
@@ -61,9 +62,11 @@ func New(ctx context.Context, cfg *Config, log log.Logger, snapshotLog log.Logge
// not a context leak, gossipsub is closed with a context.
// not a context leak, gossipsub is closed with a context.
n
.
resourcesCtx
,
n
.
resourcesClose
=
context
.
WithCancel
(
context
.
Background
())
n
.
resourcesCtx
,
n
.
resourcesClose
=
context
.
WithCancel
(
context
.
Background
())
log
.
Info
(
"rollup config:
\n
"
+
cfg
.
Rollup
.
Description
(
chaincfg
.
L2ChainIDToNetworkName
))
err
:=
n
.
init
(
ctx
,
cfg
,
snapshotLog
)
err
:=
n
.
init
(
ctx
,
cfg
,
snapshotLog
)
if
err
!=
nil
{
if
err
!=
nil
{
log
.
Error
(
"Error intializing the rollup node"
,
"err"
,
err
)
log
.
Error
(
"Error in
i
tializing the rollup node"
,
"err"
,
err
)
// ensure we always close the node resources if we fail to initialize the node.
// ensure we always close the node resources if we fail to initialize the node.
if
closeErr
:=
n
.
Close
();
closeErr
!=
nil
{
if
closeErr
:=
n
.
Close
();
closeErr
!=
nil
{
return
nil
,
multierror
.
Append
(
err
,
closeErr
)
return
nil
,
multierror
.
Append
(
err
,
closeErr
)
...
...
op-node/rollup/types.go
View file @
a01241fe
...
@@ -5,9 +5,11 @@ import (
...
@@ -5,9 +5,11 @@ import (
"errors"
"errors"
"fmt"
"fmt"
"math/big"
"math/big"
"time"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/core/types"
"github.com/ethereum/go-ethereum/params"
"github.com/ethereum-optimism/optimism/op-node/eth"
"github.com/ethereum-optimism/optimism/op-node/eth"
)
)
...
@@ -66,6 +68,12 @@ type Config struct {
...
@@ -66,6 +68,12 @@ type Config struct {
// Required to identify the L2 network and create p2p signatures unique for this chain.
// Required to identify the L2 network and create p2p signatures unique for this chain.
L2ChainID
*
big
.
Int
`json:"l2_chain_id"`
L2ChainID
*
big
.
Int
`json:"l2_chain_id"`
// RegolithTime sets the activation time of the Regolith network-upgrade:
// a pre-mainnet Bedrock change that addresses findings of the Sherlock contest related to deposit attributes.
// "Regolith" is the loose deposited rock that sits on top of Bedrock.
// Active if RegolithTime != nil && L2 block timestamp >= *RegolithTime, inactive otherwise.
RegolithTime
*
uint64
`json:"regolith_time,omitempty"`
// Note: below addresses are part of the block-derivation process,
// Note: below addresses are part of the block-derivation process,
// and required to be the same network-wide to stay in consensus.
// and required to be the same network-wide to stay in consensus.
...
@@ -228,4 +236,53 @@ func (c *Config) L1Signer() types.Signer {
...
@@ -228,4 +236,53 @@ func (c *Config) L1Signer() types.Signer {
return
types
.
NewLondonSigner
(
c
.
L1ChainID
)
return
types
.
NewLondonSigner
(
c
.
L1ChainID
)
}
}
// IsRegolith returns true if the Regolith hardfork is active at or past the given timestamp.
func
(
c
*
Config
)
IsRegolith
(
timestamp
uint64
)
bool
{
return
c
.
RegolithTime
!=
nil
&&
timestamp
>=
*
c
.
RegolithTime
}
// Description outputs a banner describing the important parts of rollup configuration in a human-readable form.
// Optionally provide a mapping of L2 chain IDs to network names to label the L2 chain with if not unknown.
// The config should be config.Check()-ed before creating a description.
func
(
c
*
Config
)
Description
(
l2Chains
map
[
string
]
string
)
string
{
// Find and report the network the user is running
var
banner
string
networkL2
:=
""
if
l2Chains
!=
nil
{
networkL2
=
l2Chains
[
c
.
L2ChainID
.
String
()]
}
if
networkL2
==
""
{
networkL2
=
"unknown L2"
}
networkL1
:=
params
.
NetworkNames
[
c
.
L1ChainID
.
String
()]
if
networkL1
==
""
{
networkL1
=
"unknown L1"
}
banner
+=
fmt
.
Sprintf
(
"L2 Chain ID: %v (%s)
\n
"
,
c
.
L2ChainID
,
networkL2
)
banner
+=
fmt
.
Sprintf
(
"L1 Chain ID: %v (%s)
\n
"
,
c
.
L1ChainID
,
networkL1
)
// Report the genesis configuration
banner
+=
"Bedrock starting point:
\n
"
banner
+=
fmt
.
Sprintf
(
" L2 starting time: %d ~ %s
\n
"
,
c
.
Genesis
.
L2Time
,
fmtTime
(
c
.
Genesis
.
L2Time
))
banner
+=
fmt
.
Sprintf
(
" L2 block: %s %d
\n
"
,
c
.
Genesis
.
L2
.
Hash
,
c
.
Genesis
.
L2
.
Number
)
banner
+=
fmt
.
Sprintf
(
" L1 block: %s %d
\n
"
,
c
.
Genesis
.
L1
.
Hash
,
c
.
Genesis
.
L1
.
Number
)
// Report the upgrade configuration
banner
+=
"Post-Bedrock Network Upgrades (timestamp based):
\n
"
banner
+=
fmt
.
Sprintf
(
" - Regolith: %s
\n
"
,
fmtForkTimeOrUnset
(
c
.
RegolithTime
))
return
banner
}
func
fmtForkTimeOrUnset
(
v
*
uint64
)
string
{
if
v
==
nil
{
return
"(not configured)"
}
if
*
v
==
0
{
// don't output the unix epoch time if it's really just activated at genesis.
return
"@ genesis"
}
return
fmt
.
Sprintf
(
"@ %-10v ~ %s"
,
*
v
,
fmtTime
(
*
v
))
}
func
fmtTime
(
v
uint64
)
string
{
return
time
.
Unix
(
int64
(
v
),
0
)
.
Format
(
time
.
UnixDate
)
}
type
Epoch
uint64
type
Epoch
uint64
op-node/rollup/types_test.go
View file @
a01241fe
...
@@ -3,12 +3,14 @@ package rollup
...
@@ -3,12 +3,14 @@ package rollup
import
(
import
(
"context"
"context"
"encoding/json"
"encoding/json"
"fmt"
"math/big"
"math/big"
"math/rand"
"math/rand"
"testing"
"testing"
"time"
"time"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"github.com/ethereum/go-ethereum/common"
"github.com/ethereum/go-ethereum/common"
...
@@ -136,6 +138,65 @@ func TestCheckL1BlockRefByNumber(t *testing.T) {
...
@@ -136,6 +138,65 @@ func TestCheckL1BlockRefByNumber(t *testing.T) {
assert
.
Error
(
t
,
err
)
assert
.
Error
(
t
,
err
)
}
}
// TestRandomConfigDescription tests that the description works for different variations of a random rollup config.
func
TestRandomConfigDescription
(
t
*
testing
.
T
)
{
t
.
Run
(
"named L2"
,
func
(
t
*
testing
.
T
)
{
config
:=
randConfig
()
out
:=
config
.
Description
(
map
[
string
]
string
{
config
.
L2ChainID
.
String
()
:
"foobar chain"
})
require
.
Contains
(
t
,
out
,
"foobar chain"
)
})
t
.
Run
(
"named L1"
,
func
(
t
*
testing
.
T
)
{
config
:=
randConfig
()
config
.
L1ChainID
=
big
.
NewInt
(
5
)
out
:=
config
.
Description
(
map
[
string
]
string
{
config
.
L2ChainID
.
String
()
:
"foobar chain"
})
require
.
Contains
(
t
,
out
,
"goerli"
)
})
t
.
Run
(
"unnamed"
,
func
(
t
*
testing
.
T
)
{
config
:=
randConfig
()
out
:=
config
.
Description
(
nil
)
require
.
Contains
(
t
,
out
,
"(unknown L1)"
)
require
.
Contains
(
t
,
out
,
"(unknown L2)"
)
})
t
.
Run
(
"regolith unset"
,
func
(
t
*
testing
.
T
)
{
config
:=
randConfig
()
config
.
RegolithTime
=
nil
out
:=
config
.
Description
(
nil
)
require
.
Contains
(
t
,
out
,
"Regolith: (not configured)"
)
})
t
.
Run
(
"regolith genesis"
,
func
(
t
*
testing
.
T
)
{
config
:=
randConfig
()
config
.
RegolithTime
=
new
(
uint64
)
out
:=
config
.
Description
(
nil
)
require
.
Contains
(
t
,
out
,
"Regolith: @ genesis"
)
})
t
.
Run
(
"regolith date"
,
func
(
t
*
testing
.
T
)
{
config
:=
randConfig
()
x
:=
uint64
(
1677119335
)
config
.
RegolithTime
=
&
x
out
:=
config
.
Description
(
nil
)
// Don't check human-readable part of the date, it's timezone-dependent.
// Don't make this test fail only in Australia :')
require
.
Contains
(
t
,
out
,
fmt
.
Sprintf
(
"Regolith: @ %d ~ "
,
x
))
})
}
// TestRegolithActivation tests the activation condition of the Regolith upgrade.
func
TestRegolithActivation
(
t
*
testing
.
T
)
{
config
:=
randConfig
()
config
.
RegolithTime
=
nil
require
.
False
(
t
,
config
.
IsRegolith
(
0
),
"false if nil time, even if checking 0"
)
require
.
False
(
t
,
config
.
IsRegolith
(
123456
),
"false if nil time"
)
config
.
RegolithTime
=
new
(
uint64
)
require
.
True
(
t
,
config
.
IsRegolith
(
0
),
"true at zero"
)
require
.
True
(
t
,
config
.
IsRegolith
(
123456
),
"true for any"
)
x
:=
uint64
(
123
)
config
.
RegolithTime
=
&
x
require
.
False
(
t
,
config
.
IsRegolith
(
0
))
require
.
False
(
t
,
config
.
IsRegolith
(
122
))
require
.
True
(
t
,
config
.
IsRegolith
(
123
))
require
.
True
(
t
,
config
.
IsRegolith
(
124
))
}
type
mockL2Client
struct
{
type
mockL2Client
struct
{
chainID
*
big
.
Int
chainID
*
big
.
Int
Hash
common
.
Hash
Hash
common
.
Hash
...
...
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