From 294dfc1d207bb5c9b0520c2da8a3be386bc06184 Mon Sep 17 00:00:00 2001 From: Arnau Date: Fri, 15 Nov 2024 16:47:18 -0600 Subject: [PATCH] clean --- bridgesync/e2e_test.go | 11 +- bridgesync/processor.go | 4 - db/sqlite.go | 11 - l1infotreesync/cascade_test.go | 54 - l1infotreesync/processor.go | 52 +- lastgersync/processor.go | 2 - othererror.log | 3695 -------------------------------- 7 files changed, 7 insertions(+), 3822 deletions(-) delete mode 100644 l1infotreesync/cascade_test.go delete mode 100644 othererror.log diff --git a/bridgesync/e2e_test.go b/bridgesync/e2e_test.go index 9ac56a7db..3c1e166ea 100644 --- a/bridgesync/e2e_test.go +++ b/bridgesync/e2e_test.go @@ -16,10 +16,11 @@ import ( func TestBridgeEventE2E(t *testing.T) { const ( - totalBridges = 1000 - totalReorgs = 700 - maxReorgDepth = 5 - reorgEveryXIterations = 7 // every X blocks go back [1,maxReorgDepth] blocks + blockTime = time.Millisecond * 10 + totalBridges = 80 + totalReorgs = 40 + maxReorgDepth = 2 + reorgEveryXIterations = 4 // every X blocks go back [1,maxReorgDepth] blocks ) env := helpers.NewE2EEnvWithEVML2(t) ctx := context.Background() @@ -48,7 +49,7 @@ func TestBridgeEventE2E(t *testing.T) { true, nil, ) require.NoError(t, err) - helpers.CommitBlocks(t, env.L1Client, 1, time.Millisecond) + helpers.CommitBlocks(t, env.L1Client, 1, blockTime) bn, err := env.L1Client.Client().BlockNumber(ctx) require.NoError(t, err) bridge.BlockNum = bn diff --git a/bridgesync/processor.go b/bridgesync/processor.go index 50bcbc42f..ee476ddd0 100644 --- a/bridgesync/processor.go +++ b/bridgesync/processor.go @@ -238,7 +238,6 @@ func (p *processor) Reorg(ctx context.Context, firstReorgedBlock uint64) error { if err != nil { return err } - log.Debug("") return nil } @@ -284,7 +282,6 @@ func (p *processor) ProcessBlock(ctx context.Context, block sync.Block) error { if err != nil { return err } - p.log.Debug("<======================= BRIDGE SYNC =================================") shouldRollback := true defer func() { if shouldRollback { @@ -332,7 +329,6 @@ func (p *processor) ProcessBlock(ctx context.Context, block sync.Block) error { shouldRollback = false p.log.Debugf("processed %d events until block %d", len(block.Events), block.Num) - p.log.Debug("======================= BRIDGE SYNC =================================>") return nil } diff --git a/db/sqlite.go b/db/sqlite.go index d12cd0943..9b5b85a5c 100644 --- a/db/sqlite.go +++ b/db/sqlite.go @@ -19,17 +19,6 @@ var ( // NewSQLiteDB creates a new SQLite DB func NewSQLiteDB(dbPath string) (*sql.DB, error) { return sql.Open("sqlite3", fmt.Sprintf("file:%s?_txlock=exclusive&_foreign_keys=on", dbPath)) - // db,err := sql.Open("sqlite3", fmt.Sprintf("file:%s?_foreign_keys=on", dbPath)) - // if err != nil { - // return nil, err - // } - // _, err = db.Exec(` - // PRAGMA foreign_keys = ON; - // pragma journal_mode = WAL; - // pragma synchronous = normal; - // pragma journal_size_limit = 6144000; - // `) - // return db, err } func ReturnErrNotFound(err error) error { diff --git a/l1infotreesync/cascade_test.go b/l1infotreesync/cascade_test.go deleted file mode 100644 index 61e0ad114..000000000 --- a/l1infotreesync/cascade_test.go +++ /dev/null @@ -1,54 +0,0 @@ -package l1infotreesync - -import ( - "context" - "path" - "strconv" - "testing" - - "github.com/0xPolygon/cdk/db" - "github.com/ethereum/go-ethereum/common" - "github.com/russross/meddler" - "github.com/stretchr/testify/require" -) - -func TestCascade(t *testing.T) { - dbPath := path.Join(t.TempDir(), "TestCascade.sqlite") - p, err := newProcessor(dbPath) - require.NoError(t, err) - ctx := context.Background() - for i := 1; i < 10_000; i++ { - // insert block and info - tx, err := db.NewTx(ctx, p.db) - require.NoError(t, err) - _, err = tx.Exec(`INSERT INTO block (num) VALUES ($1)`, i) - require.NoError(t, err) - info := &L1InfoTreeLeaf{ - BlockNumber: uint64(i), - BlockPosition: 0, - L1InfoTreeIndex: 0, - PreviousBlockHash: common.Hash{}, - Timestamp: 0, - MainnetExitRoot: common.Hash{}, - RollupExitRoot: common.Hash{}, - GlobalExitRoot: common.HexToHash(strconv.Itoa(i)), // ger needs to be unique - } - info.Hash = info.hash() - err = meddler.Insert(tx, "l1info_leaf", info) - require.NoError(t, err) - require.NoError(t, tx.Commit()) - - // simulate reorg every 3 iterations - if i%3 == 0 { - tx, err = db.NewTx(ctx, p.db) - require.NoError(t, err) - _, err = tx.Exec(`delete from block where num >= $1;`, i) - require.NoError(t, err) - require.NoError(t, tx.Commit()) - // assert that info table is empty - info, err = p.GetLastInfo() - require.NoError(t, err) - require.Equal(t, info.BlockNumber, uint64(i-1)) - } - } -} diff --git a/l1infotreesync/processor.go b/l1infotreesync/processor.go index 480fc8061..82cd81cf7 100644 --- a/l1infotreesync/processor.go +++ b/l1infotreesync/processor.go @@ -239,8 +239,6 @@ func (p *processor) Reorg(ctx context.Context, firstReorgedBlock uint64) error { if err != nil { return err } - log.Debug("= $1;`, firstReorgedBlock) if err != nil { return err } - info = &L1InfoTreeLeaf{} - err = meddler.QueryRow(tx, info, ` - SELECT * FROM l1info_leaf - ORDER BY block_num DESC, block_pos DESC - LIMIT 1; - `) - if err != nil { - panic("nope " + err.Error()) - } - if info.BlockNumber >= firstReorgedBlock { - log.Fatalf("on the tx: info block num before reorg: %d") - } - log.Debug("done deleting xxxxxxxxxxxx") - - // _, err = tx.Exec(`DELETE FROM l1info_leaf WHERE block_num >= $1;`, firstReorgedBlock) - // if err != nil { - // return err - // } if err = p.l1InfoTree.Reorg(tx, firstReorgedBlock); err != nil { return err @@ -294,19 +266,6 @@ func (p *processor) Reorg(ctx context.Context, firstReorgedBlock uint64) error { return err } - info = &L1InfoTreeLeaf{} - err = meddler.QueryRow(tx, info, ` - SELECT * FROM l1info_leaf - ORDER BY block_num DESC, block_pos DESC - LIMIT 1; - `) - if err != nil { - panic("nope " + err.Error()) - } - log.Debugf("last info: %+v", info) - if info.BlockNumber >= firstReorgedBlock { - log.Fatal("on the tx 2 !!!!! unsuccessful reorg, l1 info table has invalid info") - } if err := tx.Commit(); err != nil { return err } @@ -316,14 +275,7 @@ func (p *processor) Reorg(ctx context.Context, firstReorgedBlock uint64) error { p.halted = false p.haltedReason = "" } - shouldRollback = false - log.Debugf("reorged until block %d (included)", firstReorgedBlock) - info, _ = p.GetLastInfo() - log.Debugf("last info: %+v", info) - if info.BlockNumber >= firstReorgedBlock { - log.Fatal("unsuccessful reorg, l1 info table has invalid info") - } - log.Debug("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx L1INFO xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx>") + return nil } @@ -338,7 +290,6 @@ func (p *processor) ProcessBlock(ctx context.Context, block sync.Block) error { if err != nil { return err } - log.Debug("<======================= L1 INFO =================================") log.Debugf("init block processing for block %d", block.Num) shouldRollback := true defer func() { @@ -450,7 +401,6 @@ func (p *processor) ProcessBlock(ctx context.Context, block sync.Block) error { } shouldRollback = false log.Infof("block %d processed with %d events", block.Num, len(block.Events)) - log.Debug("======================= L1 INFO =================================>") return nil } diff --git a/lastgersync/processor.go b/lastgersync/processor.go index 4a7c07731..dd86482f2 100644 --- a/lastgersync/processor.go +++ b/lastgersync/processor.go @@ -111,9 +111,7 @@ func (p *processor) ProcessBlock(ctx context.Context, block sync.Block) error { } func (p *processor) Reorg(ctx context.Context, firstReorgedBlock uint64) error { - log.Debug("= $1;`, firstReorgedBlock) - log.Debug("xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx LASTGER SYNC xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx>") return err } diff --git a/othererror.log b/othererror.log deleted file mode 100644 index c321c7b53..000000000 --- a/othererror.log +++ /dev/null @@ -1,3695 +0,0 @@ -=== RUN TestBridgeEventE2E -2024-11-14T13:08:54.425-0600 DEBUG db/migrations.go:37 running migrations: {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.425-0600 DEBUG db/migrations.go:39 reorgdetector0001 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.426-0600 INFO db/migrations.go:46 successfully ran 1 migrations {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.426-0600 DEBUG l1infotreesync/processor.go:142 =========> DB path for L1 Info Sync: /var/folders/mg/0s7xy6zx5fl70c15csg0jxx00000gp/T/TestBridgeEventE2E972596651/002/L1InfoTreeSync.sqlite <========= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.427-0600 DEBUG db/migrations.go:37 running migrations: {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.427-0600 DEBUG db/migrations.go:39 l1infotreesync0001 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.427-0600 DEBUG db/migrations.go:39 l1infotreesync0002 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.427-0600 DEBUG db/migrations.go:39 rollup_exit_tree001 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.427-0600 DEBUG db/migrations.go:39 l1_info_tree001 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.428-0600 INFO db/migrations.go:46 successfully ran 4 migrations {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.446-0600 INFO l1infotreesync/downloader.go:52 sanity check GlobalExitRoot(0x44D39cFD3A7Ea7D98F45e5AB417b6d76aB82e176) OK. DepositCount: 0 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.447-0600 ERROR l1infotreesync/downloader.go:63 sanityCheckContracts: fails sanity check contracts. ErrGER: %!w(), ErrRollup: fail sanity check RollupManager(0x0000000000000000000000000000000000000000) Contract. Err: no contract code at given address -/Users/arnaub/Documents/polygon/cdk/log/log.go:148 github.com/0xPolygon/cdk/log.appendStackTraceMaybeArgs() -/Users/arnaub/Documents/polygon/cdk/log/log.go:223 github.com/0xPolygon/cdk/log.Error() -/Users/arnaub/Documents/polygon/cdk/l1infotreesync/downloader.go:63 github.com/0xPolygon/cdk/l1infotreesync.sanityCheckContracts() -/Users/arnaub/Documents/polygon/cdk/l1infotreesync/downloader.go:93 github.com/0xPolygon/cdk/l1infotreesync.buildAppender() -/Users/arnaub/Documents/polygon/cdk/l1infotreesync/l1infotreesync.go:73 github.com/0xPolygon/cdk/l1infotreesync.New() -/Users/arnaub/Documents/polygon/cdk/test/helpers/e2e.go:132 github.com/0xPolygon/cdk/test/helpers.CommonSetup() -/Users/arnaub/Documents/polygon/cdk/test/helpers/e2e.go:61 github.com/0xPolygon/cdk/test/helpers.NewE2EEnvWithEVML2() -/Users/arnaub/Documents/polygon/cdk/bridgesync/e2e_test.go:24 github.com/0xPolygon/cdk/bridgesync_test.TestBridgeEventE2E() -/Users/arnaub/go/pkg/mod/golang.org/toolchain@v0.0.1-go1.22.4.darwin-arm64/src/testing/testing.go:1689 testing.tRunner() - {"pid": 7274, "version": "v0.1.0"} -github.com/0xPolygon/cdk/l1infotreesync.sanityCheckContracts - /Users/arnaub/Documents/polygon/cdk/l1infotreesync/downloader.go:63 -github.com/0xPolygon/cdk/l1infotreesync.buildAppender - /Users/arnaub/Documents/polygon/cdk/l1infotreesync/downloader.go:93 -github.com/0xPolygon/cdk/l1infotreesync.New - /Users/arnaub/Documents/polygon/cdk/l1infotreesync/l1infotreesync.go:73 -github.com/0xPolygon/cdk/test/helpers.CommonSetup - /Users/arnaub/Documents/polygon/cdk/test/helpers/e2e.go:132 -github.com/0xPolygon/cdk/test/helpers.NewE2EEnvWithEVML2 - /Users/arnaub/Documents/polygon/cdk/test/helpers/e2e.go:61 -github.com/0xPolygon/cdk/bridgesync_test.TestBridgeEventE2E - /Users/arnaub/Documents/polygon/cdk/bridgesync/e2e_test.go:24 -testing.tRunner - /Users/arnaub/go/pkg/mod/golang.org/toolchain@v0.0.1-go1.22.4.darwin-arm64/src/testing/testing.go:1689 -2024-11-14T13:08:54.447-0600 INFO sync/evmdriver.go:89 Starting sync... lastProcessedBlock 0 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:54.447-0600 DEBUG bridgesync/processor.go:108 =========> DB path for Bridge Sync: /var/folders/mg/0s7xy6zx5fl70c15csg0jxx00000gp/T/TestBridgeEventE2E972596651/003/BridgeSyncL1.sqlite <========= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.448-0600 DEBUG db/migrations.go:37 running migrations: {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.448-0600 DEBUG db/migrations.go:39 bridgesync0001 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.448-0600 DEBUG db/migrations.go:39 tree001 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.449-0600 INFO db/migrations.go:46 successfully ran 2 migrations {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.450-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 1 to 4 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:54.450-0600 DEBUG sync/evmdownloader.go:104 sending block 4 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:54.451-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 4, last block seen on L1 4 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:54.452-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 4, blockHash: 0xa289b3dcd90a214d43dc4308be3bb442c680f3c7af22f83c5c6f69c6399fd7c6 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:54.452-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.452-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 4 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.452-0600 INFO l1infotreesync/processor.go:432 block 4 processed with 0 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.452-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.464-0600 INFO sync/evmdriver.go:89 Starting sync... lastProcessedBlock 0 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:54.475-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 1 to 4 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:54.477-0600 DEBUG sync/evmdownloader.go:104 sending block 4 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:54.478-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 4, last block seen on L1 4 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:54.478-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 4, blockHash: 0xa289b3dcd90a214d43dc4308be3bb442c680f3c7af22f83c5c6f69c6399fd7c6 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:54.479-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:54.479-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 4 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:54.479-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:54.598-0600 DEBUG db/migrations.go:37 running migrations: {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.598-0600 DEBUG db/migrations.go:39 reorgdetector0001 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.598-0600 INFO db/migrations.go:46 successfully ran 1 migrations {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.599-0600 DEBUG bridgesync/processor.go:108 =========> DB path for Bridge Sync: /var/folders/mg/0s7xy6zx5fl70c15csg0jxx00000gp/T/TestBridgeEventE2E972596651/005/BridgeSyncL2.sqlite <========= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.600-0600 DEBUG db/migrations.go:37 running migrations: {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.600-0600 DEBUG db/migrations.go:39 bridgesync0001 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.600-0600 DEBUG db/migrations.go:39 tree001 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.600-0600 INFO db/migrations.go:46 successfully ran 2 migrations {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.601-0600 INFO sync/evmdriver.go:89 Starting sync... lastProcessedBlock 0 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:54.613-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 1 to 5 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:54.614-0600 DEBUG sync/evmdownloader.go:104 sending block 5 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:54.616-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 5, last block seen on L1 5 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:54.616-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 5, blockHash: 0xfe389674a0fcbda0b90a61cb5fef44209ffad0bad63f4daa2efc15ab6c42c40b {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:54.616-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:54.616-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 5 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:54.616-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:54.623-0600 ERROR runtime/asm_arm64.s:1222 error calling getLastFinalisedGER: l1infotreesync: not found {"pid": 7274, "version": "v0.1.0"} -runtime.goexit - /Users/arnaub/go/pkg/mod/golang.org/toolchain@v0.0.1-go1.22.4.darwin-arm64/src/runtime/asm_arm64.s:1222 -2024-11-14T13:08:54.635-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 5 to 5 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:54.637-0600 DEBUG sync/evmdownloader.go:99 sending block 5 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:54.637-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 5, last block seen on L1 5 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:54.637-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 5, blockHash: 0x465a3b04ba46b43c8cf632c7248f1c1c2294d2816b7420d3d3e37ba34bbf1892 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:54.637-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.637-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 5 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.638-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 5, BlockPosition: 1, L1InfoTreeIndex: 0, PreviousBlockHash: 0xa289b3dcd90a214d43dc4308be3bb442c680f3c7af22f83c5c6f69c6399fd7c6, Timestamp: 1731611338, MainnetExitRoot: 0xa7559bd66e64999e822d78ce78e41b388a70586d3fbdb8f49ed69f49497451f8, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x4820680d5626b729fffc09097484fee8a6d53af98783ba6a31ef967ab445d88d, Hash: 0x71419179896fa10e40a0d00dc688aedc6d294d0e0ff136fad053280df40f9cc1 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.639-0600 INFO l1infotreesync/processor.go:432 block 5 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.639-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.640-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 5 to 5 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:54.642-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x4820680d5626b729fffc09097484fee8a6d53af98783ba6a31ef967ab445d88d {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.642-0600 DEBUG sync/evmdownloader.go:99 sending block 5 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:54.642-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 5, last block seen on L1 5 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:54.642-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 5, blockHash: 0x465a3b04ba46b43c8cf632c7248f1c1c2294d2816b7420d3d3e37ba34bbf1892 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:54.642-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:54.644-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 5 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:54.644-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:54.657-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 6 to 6 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:54.657-0600 DEBUG sync/evmdownloader.go:104 sending block 6 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:54.658-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 6, last block seen on L1 6 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:54.658-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 6, blockHash: 0x6aa43642fa2b541c3814c8156c841418e1be4fe481e41caf62d3e570a1de8b05 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:54.659-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:54.659-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 6 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:54.659-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:54.700-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.700-0600 INFO runtime/asm_arm64.s:1222 GER 0x4820680d5626b729fffc09097484fee8a6d53af98783ba6a31ef967ab445d88d injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.702-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x4820680d5626b729fffc09097484fee8a6d53af98783ba6a31ef967ab445d88d already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.705-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x4820680d5626b729fffc09097484fee8a6d53af98783ba6a31ef967ab445d88d already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.723-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x4820680d5626b729fffc09097484fee8a6d53af98783ba6a31ef967ab445d88d already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.743-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x4820680d5626b729fffc09097484fee8a6d53af98783ba6a31ef967ab445d88d already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.763-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x4820680d5626b729fffc09097484fee8a6d53af98783ba6a31ef967ab445d88d already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.770-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 6 to 6 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:54.772-0600 DEBUG sync/evmdownloader.go:99 sending block 6 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:54.773-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 6, last block seen on L1 6 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:54.773-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 6, blockHash: 0x78011982b0ad280897f9adfbacd5eacfd5840c686f9886515ff41b8ea9f55341 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:54.773-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.773-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 6 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.773-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 6 to 6 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:54.774-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 6, BlockPosition: 1, L1InfoTreeIndex: 1, PreviousBlockHash: 0x465a3b04ba46b43c8cf632c7248f1c1c2294d2816b7420d3d3e37ba34bbf1892, Timestamp: 1731611339, MainnetExitRoot: 0xf72a46bd922eaccc128fa3fbcc661eb1fd2d0b692e444565e87803a05214aaf3, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x999d1449030fc2e70100e2651da71358c051c5be936b0f9ee33105822140b1a2, Hash: 0xf698d9710119a04cf4e449cb6cbe7d9bc962ca1d009a3c5e746c456fea4fad87 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.774-0600 INFO l1infotreesync/processor.go:432 block 6 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.774-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.775-0600 DEBUG sync/evmdownloader.go:99 sending block 6 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:54.775-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 6, last block seen on L1 6 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:54.775-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 6, blockHash: 0x78011982b0ad280897f9adfbacd5eacfd5840c686f9886515ff41b8ea9f55341 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:54.775-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:54.777-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 6 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:54.777-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:54.783-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x999d1449030fc2e70100e2651da71358c051c5be936b0f9ee33105822140b1a2 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.800-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 7 to 7 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:54.800-0600 DEBUG sync/evmdownloader.go:104 sending block 7 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:54.801-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 7, last block seen on L1 7 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:54.801-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 7, blockHash: 0x21e5aad7496432f9aa7812ac88f38c4a0195a142ba85b5e3ce2d9375ffd9adc5 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:54.801-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:54.801-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 7 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:54.801-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:54.841-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.841-0600 INFO runtime/asm_arm64.s:1222 GER 0x999d1449030fc2e70100e2651da71358c051c5be936b0f9ee33105822140b1a2 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.843-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x999d1449030fc2e70100e2651da71358c051c5be936b0f9ee33105822140b1a2 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.845-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x999d1449030fc2e70100e2651da71358c051c5be936b0f9ee33105822140b1a2 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.863-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x999d1449030fc2e70100e2651da71358c051c5be936b0f9ee33105822140b1a2 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.883-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x999d1449030fc2e70100e2651da71358c051c5be936b0f9ee33105822140b1a2 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.904-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x999d1449030fc2e70100e2651da71358c051c5be936b0f9ee33105822140b1a2 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.906-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 7 to 7 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:54.907-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 7 to 7 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:54.908-0600 DEBUG sync/evmdownloader.go:99 sending block 7 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:54.908-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 7, last block seen on L1 7 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:54.908-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 7, blockHash: 0x078ae391627c828195fc3aa078d8e76e47e6575ab3e0fdec81593153253e0226 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:54.908-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.908-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 7 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.909-0600 DEBUG sync/evmdownloader.go:99 sending block 7 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:54.909-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 7, last block seen on L1 7 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:54.909-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 7, blockHash: 0x078ae391627c828195fc3aa078d8e76e47e6575ab3e0fdec81593153253e0226 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:54.909-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:54.909-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 7, BlockPosition: 1, L1InfoTreeIndex: 2, PreviousBlockHash: 0x78011982b0ad280897f9adfbacd5eacfd5840c686f9886515ff41b8ea9f55341, Timestamp: 1731611340, MainnetExitRoot: 0xd6134238189f1b7cb84c45c85e221b4654a75b2160964a258f506837e015e3af, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xe5084422d9a57fb7e974d49bb6d2631c4a3b3d839171b367c3507c185d798979, Hash: 0xedc60fbe39051d1df3bf6b70bd8563c76e0ea96ac09c63449e349e2c355785e0 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.910-0600 INFO l1infotreesync/processor.go:432 block 7 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.910-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.911-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 7 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:54.911-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:54.923-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0xe5084422d9a57fb7e974d49bb6d2631c4a3b3d839171b367c3507c185d798979 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.932-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 8 to 8 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:54.933-0600 DEBUG sync/evmdownloader.go:104 sending block 8 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:54.934-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 8, last block seen on L1 8 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:54.934-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 8, blockHash: 0xdf79c1263de6ec66818e34f320c0c316330848a6af2179edb284e9d238498a5a {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:54.934-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:54.934-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 8 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:54.934-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:54.981-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.981-0600 INFO runtime/asm_arm64.s:1222 GER 0xe5084422d9a57fb7e974d49bb6d2631c4a3b3d839171b367c3507c185d798979 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.983-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xe5084422d9a57fb7e974d49bb6d2631c4a3b3d839171b367c3507c185d798979 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:54.985-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xe5084422d9a57fb7e974d49bb6d2631c4a3b3d839171b367c3507c185d798979 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.003-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xe5084422d9a57fb7e974d49bb6d2631c4a3b3d839171b367c3507c185d798979 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.023-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xe5084422d9a57fb7e974d49bb6d2631c4a3b3d839171b367c3507c185d798979 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.040-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 8 to 8 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:55.040-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 8 to 8 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:55.042-0600 DEBUG sync/evmdownloader.go:99 sending block 8 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:55.042-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 8, last block seen on L1 8 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:55.042-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 8, blockHash: 0x1abd4c283c849bb15357a92229afc2e3f4c8b9082d9ee96485a1918f9ff3d91c {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:55.042-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.042-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 8 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.043-0600 DEBUG sync/evmdownloader.go:99 sending block 8 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:55.043-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 8, last block seen on L1 8 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:55.043-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 8, blockHash: 0x1abd4c283c849bb15357a92229afc2e3f4c8b9082d9ee96485a1918f9ff3d91c {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:55.043-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:55.043-0600 DEBUG runtime/asm_arm64.s:1222 syncer is not ready for the block 8 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.044-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 8, BlockPosition: 1, L1InfoTreeIndex: 3, PreviousBlockHash: 0x078ae391627c828195fc3aa078d8e76e47e6575ab3e0fdec81593153253e0226, Timestamp: 1731611341, MainnetExitRoot: 0x2bf46b81d22b281830c760a7e5d759745e5c576d8f16a53af2a5146439d63157, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xb4ca840da9f89012ba1a4965ab6f7c4b8b54b820e600b77bfcf8d7a6afa98279, Hash: 0x4dc146296bd9b7c47079826895bd41e93f00b61a149f41830ff973200b04edd1 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.044-0600 INFO l1infotreesync/processor.go:432 block 8 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.044-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.044-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 8 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:55.044-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:55.062-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0xb4ca840da9f89012ba1a4965ab6f7c4b8b54b820e600b77bfcf8d7a6afa98279 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.075-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 9 to 9 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:55.076-0600 DEBUG sync/evmdownloader.go:104 sending block 9 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:55.077-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 9, last block seen on L1 9 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:55.077-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 9, blockHash: 0x800c424c8c648aaa13a474387f920a32f1e204effd141046413aec53193109e5 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:55.077-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:55.077-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 9 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:55.077-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:55.120-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.120-0600 INFO runtime/asm_arm64.s:1222 GER 0xb4ca840da9f89012ba1a4965ab6f7c4b8b54b820e600b77bfcf8d7a6afa98279 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.123-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xb4ca840da9f89012ba1a4965ab6f7c4b8b54b820e600b77bfcf8d7a6afa98279 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.125-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xb4ca840da9f89012ba1a4965ab6f7c4b8b54b820e600b77bfcf8d7a6afa98279 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.143-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xb4ca840da9f89012ba1a4965ab6f7c4b8b54b820e600b77bfcf8d7a6afa98279 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.164-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xb4ca840da9f89012ba1a4965ab6f7c4b8b54b820e600b77bfcf8d7a6afa98279 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.179-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 9 to 9 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:55.181-0600 DEBUG sync/evmdownloader.go:99 sending block 9 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:55.181-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 9, last block seen on L1 9 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:55.181-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 9, blockHash: 0x5b7a8baf477de30a48308eba9513a97c3911f4e4fbbd656f99a2f76334e89741 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:55.181-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.181-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 9 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.183-0600 DEBUG runtime/asm_arm64.s:1222 syncer is not ready for the block 9 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.183-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 9, BlockPosition: 1, L1InfoTreeIndex: 4, PreviousBlockHash: 0x1abd4c283c849bb15357a92229afc2e3f4c8b9082d9ee96485a1918f9ff3d91c, Timestamp: 1731611342, MainnetExitRoot: 0xefa47bf668c27987ce361405a09d3f8c48403309e604f367aca82f198fe27c18, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x5aa415842ac6996cb6744307d4730856ec96443fc3d3a0058f9cd009e5fadc59, Hash: 0x5779de023ef87f012b7135be106e04491b690baa04bdcccee22899a68b5c40f4 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.183-0600 INFO l1infotreesync/processor.go:432 block 9 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.183-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.184-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 9 to 9 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:55.186-0600 DEBUG sync/evmdownloader.go:99 sending block 9 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:55.186-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 9, last block seen on L1 9 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:55.186-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 9, blockHash: 0x5b7a8baf477de30a48308eba9513a97c3911f4e4fbbd656f99a2f76334e89741 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:55.186-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:55.187-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 9 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:55.187-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:55.202-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x5aa415842ac6996cb6744307d4730856ec96443fc3d3a0058f9cd009e5fadc59 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.218-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 10 to 10 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:55.219-0600 DEBUG sync/evmdownloader.go:104 sending block 10 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:55.220-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 10, last block seen on L1 10 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:55.220-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 10, blockHash: 0xef1d76573d7c903ffaa3462b8667c20c3d153069d994d71a08d4ae2c4fff11f2 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:55.220-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:55.220-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 10 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:55.220-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:55.260-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.260-0600 INFO runtime/asm_arm64.s:1222 GER 0x5aa415842ac6996cb6744307d4730856ec96443fc3d3a0058f9cd009e5fadc59 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.262-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x5aa415842ac6996cb6744307d4730856ec96443fc3d3a0058f9cd009e5fadc59 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.264-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x5aa415842ac6996cb6744307d4730856ec96443fc3d3a0058f9cd009e5fadc59 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.283-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x5aa415842ac6996cb6744307d4730856ec96443fc3d3a0058f9cd009e5fadc59 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.303-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x5aa415842ac6996cb6744307d4730856ec96443fc3d3a0058f9cd009e5fadc59 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.314-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 10 to 10 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:55.316-0600 DEBUG sync/evmdownloader.go:99 sending block 10 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:55.316-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 10, last block seen on L1 10 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:55.316-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 10, blockHash: 0x37fcb634b718039eea17a92533005c9ea77dd32b85915183fc359044cb5e3b3a {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:55.316-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.316-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 10 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.317-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 10 to 10 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:55.318-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 10, BlockPosition: 1, L1InfoTreeIndex: 5, PreviousBlockHash: 0x5b7a8baf477de30a48308eba9513a97c3911f4e4fbbd656f99a2f76334e89741, Timestamp: 1731611343, MainnetExitRoot: 0xaffe3a3e7010675f18e531a0baa00fe3bde7efec98484e273e598671f76fc586, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x0523834ad46b44ee0c9f94581865d8c0577bdc9dc04f192b6a1a4fed16baf55c, Hash: 0x9902667fb2c5471163eff7659819e49ec4c3c331980014286a95d31bdc4539c6 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.318-0600 INFO l1infotreesync/processor.go:432 block 10 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.318-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.320-0600 DEBUG sync/evmdownloader.go:99 sending block 10 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:55.320-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 10, last block seen on L1 10 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:55.320-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 10, blockHash: 0x37fcb634b718039eea17a92533005c9ea77dd32b85915183fc359044cb5e3b3a {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:55.320-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:55.322-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 10 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:55.322-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:55.323-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x0523834ad46b44ee0c9f94581865d8c0577bdc9dc04f192b6a1a4fed16baf55c {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.341-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 11 to 11 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:55.342-0600 DEBUG sync/evmdownloader.go:104 sending block 11 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:55.343-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 11, last block seen on L1 11 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:55.343-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 11, blockHash: 0x4a2dd328114db8ca79a83cc6f009b2f0ce85238e9ea3a2624aa22b634f677b14 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:55.343-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:55.343-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 11 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:55.343-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:55.381-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.381-0600 INFO runtime/asm_arm64.s:1222 GER 0x0523834ad46b44ee0c9f94581865d8c0577bdc9dc04f192b6a1a4fed16baf55c injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.383-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x0523834ad46b44ee0c9f94581865d8c0577bdc9dc04f192b6a1a4fed16baf55c already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.385-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x0523834ad46b44ee0c9f94581865d8c0577bdc9dc04f192b6a1a4fed16baf55c already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.403-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x0523834ad46b44ee0c9f94581865d8c0577bdc9dc04f192b6a1a4fed16baf55c already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.423-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x0523834ad46b44ee0c9f94581865d8c0577bdc9dc04f192b6a1a4fed16baf55c already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.444-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x0523834ad46b44ee0c9f94581865d8c0577bdc9dc04f192b6a1a4fed16baf55c already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.450-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 11 to 11 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:55.451-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 11 to 11 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:55.452-0600 DEBUG sync/evmdownloader.go:99 sending block 11 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:55.452-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 11, last block seen on L1 11 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:55.452-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 11, blockHash: 0x28a5e70be4746062285daae13bf64c9dbf7d80b967610533b09db45d6e9608d1 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:55.453-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.453-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 11 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.454-0600 DEBUG sync/evmdownloader.go:99 sending block 11 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:55.454-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 11, last block seen on L1 11 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:55.454-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 11, blockHash: 0x28a5e70be4746062285daae13bf64c9dbf7d80b967610533b09db45d6e9608d1 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:55.454-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:55.454-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 11, BlockPosition: 1, L1InfoTreeIndex: 6, PreviousBlockHash: 0x37fcb634b718039eea17a92533005c9ea77dd32b85915183fc359044cb5e3b3a, Timestamp: 1731611344, MainnetExitRoot: 0x2c773984fd6f20bb96a8ff8b4ab746e72f6c008d2538f8b0f9e53981d01bf0fa, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xef47e9c15668435da07a72ec47d70947bcf511603b18f9f2021c1cfc8166d0c4, Hash: 0x682a85f8bc8bcf5bd293cdbc1e6323d018395cf4a679c5e6e0f15db0222ac06e {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.454-0600 INFO l1infotreesync/processor.go:432 block 11 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.454-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.455-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 11 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:55.455-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:55.463-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0xef47e9c15668435da07a72ec47d70947bcf511603b18f9f2021c1cfc8166d0c4 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.474-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 12 to 12 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:55.474-0600 DEBUG sync/evmdownloader.go:104 sending block 12 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:55.476-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 12, last block seen on L1 12 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:55.476-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 12, blockHash: 0xfafd3f0b5369287f501dda1d8cc3c5b76f17713c8f0ceddfbb0a28bc14e8dc29 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:55.476-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:55.476-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 12 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:55.476-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:55.521-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.521-0600 INFO runtime/asm_arm64.s:1222 GER 0xef47e9c15668435da07a72ec47d70947bcf511603b18f9f2021c1cfc8166d0c4 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.523-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xef47e9c15668435da07a72ec47d70947bcf511603b18f9f2021c1cfc8166d0c4 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.543-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xef47e9c15668435da07a72ec47d70947bcf511603b18f9f2021c1cfc8166d0c4 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.563-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xef47e9c15668435da07a72ec47d70947bcf511603b18f9f2021c1cfc8166d0c4 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.583-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xef47e9c15668435da07a72ec47d70947bcf511603b18f9f2021c1cfc8166d0c4 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.586-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 12 to 12 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:55.588-0600 DEBUG sync/evmdownloader.go:99 sending block 12 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:55.588-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 12, last block seen on L1 12 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:55.588-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 12, blockHash: 0xc7e0e516d6ae88721600d77a870914a5d9b9afc37a3efe6703a2b195ba382baf {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:55.589-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.589-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 12 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.590-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 12, BlockPosition: 1, L1InfoTreeIndex: 7, PreviousBlockHash: 0x28a5e70be4746062285daae13bf64c9dbf7d80b967610533b09db45d6e9608d1, Timestamp: 1731611345, MainnetExitRoot: 0x707c2234b87c5ed81a4fc12f3b51e55adaf5c375487959837a5288dba6d4bac8, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xe6b87b8dbc489dc475be1cedfe9e8daff7982cf5eadc2ed524931d39a26ae4af, Hash: 0x8a0af78ab4a879ee554ad155700c7a5be34a5dd4177da381a89c04d897e9e0bf {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.590-0600 INFO l1infotreesync/processor.go:432 block 12 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.590-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.595-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 12 to 12 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:55.597-0600 DEBUG sync/evmdownloader.go:99 sending block 12 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:55.597-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 12, last block seen on L1 12 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:55.597-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 12, blockHash: 0xc7e0e516d6ae88721600d77a870914a5d9b9afc37a3efe6703a2b195ba382baf {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:55.597-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:55.598-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 12 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:55.599-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:55.603-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0xe6b87b8dbc489dc475be1cedfe9e8daff7982cf5eadc2ed524931d39a26ae4af {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.617-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 13 to 13 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:55.617-0600 DEBUG sync/evmdownloader.go:104 sending block 13 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:55.618-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 13, last block seen on L1 13 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:55.618-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 13, blockHash: 0x788a29a51c10aadbbdf3ad230d60db51a7bea6163be76505fbea5ddfc1a678ea {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:55.618-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:55.619-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 13 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:55.619-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:55.661-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.661-0600 INFO runtime/asm_arm64.s:1222 GER 0xe6b87b8dbc489dc475be1cedfe9e8daff7982cf5eadc2ed524931d39a26ae4af injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.663-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xe6b87b8dbc489dc475be1cedfe9e8daff7982cf5eadc2ed524931d39a26ae4af already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.665-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xe6b87b8dbc489dc475be1cedfe9e8daff7982cf5eadc2ed524931d39a26ae4af already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.683-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xe6b87b8dbc489dc475be1cedfe9e8daff7982cf5eadc2ed524931d39a26ae4af already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.703-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xe6b87b8dbc489dc475be1cedfe9e8daff7982cf5eadc2ed524931d39a26ae4af already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.722-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 13 to 13 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:55.723-0600 DEBUG runtime/asm_arm64.s:1222 syncer is not ready for the block 13 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.724-0600 DEBUG sync/evmdownloader.go:99 sending block 13 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:55.724-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 13, last block seen on L1 13 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:55.724-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 13, blockHash: 0x8a2d44d0eb13d43e80c97f063b269e92914b8c45635d78fd63ac9d39450bb34a {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:55.724-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.724-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 13 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.725-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 13, BlockPosition: 1, L1InfoTreeIndex: 8, PreviousBlockHash: 0xc7e0e516d6ae88721600d77a870914a5d9b9afc37a3efe6703a2b195ba382baf, Timestamp: 1731611346, MainnetExitRoot: 0x665e1dd21035273eeb4048e1bc6bd70ac17294b89d094565a2d6ea3834384288, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x93a1aa645a43211a58c6b4e2b3035489e80a938e68efbf14c7fafc97f9976783, Hash: 0xb6195f447ec7e244a97da3fdfbf463c84ab7a1adcc72b9eabb8a630aa6f298fb {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.726-0600 INFO l1infotreesync/processor.go:432 block 13 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.726-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.728-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 13 to 13 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:55.730-0600 DEBUG sync/evmdownloader.go:99 sending block 13 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:55.730-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 13, last block seen on L1 13 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:55.730-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 13, blockHash: 0x8a2d44d0eb13d43e80c97f063b269e92914b8c45635d78fd63ac9d39450bb34a {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:55.730-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:55.732-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 13 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:55.732-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:55.742-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x93a1aa645a43211a58c6b4e2b3035489e80a938e68efbf14c7fafc97f9976783 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.761-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 14 to 14 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:55.762-0600 DEBUG sync/evmdownloader.go:104 sending block 14 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:55.763-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 14, last block seen on L1 14 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:55.763-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 14, blockHash: 0x48eb9a176edf451816ead6695874368881c578caf307ce0da006fb7123d9d544 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:55.763-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:55.763-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 14 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:55.763-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:55.800-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.800-0600 INFO runtime/asm_arm64.s:1222 GER 0x93a1aa645a43211a58c6b4e2b3035489e80a938e68efbf14c7fafc97f9976783 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.802-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x93a1aa645a43211a58c6b4e2b3035489e80a938e68efbf14c7fafc97f9976783 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.804-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x93a1aa645a43211a58c6b4e2b3035489e80a938e68efbf14c7fafc97f9976783 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.823-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x93a1aa645a43211a58c6b4e2b3035489e80a938e68efbf14c7fafc97f9976783 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.843-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x93a1aa645a43211a58c6b4e2b3035489e80a938e68efbf14c7fafc97f9976783 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.857-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 14 to 14 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:55.859-0600 DEBUG sync/evmdownloader.go:99 sending block 14 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:55.859-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 14, last block seen on L1 14 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:55.859-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 14, blockHash: 0x7bb7218f7f2219a8a16d593fb47b729aa8aa880d7d3a3e584aa4392f444c6f22 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:55.859-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.859-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 14 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.860-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 14, BlockPosition: 1, L1InfoTreeIndex: 9, PreviousBlockHash: 0x8a2d44d0eb13d43e80c97f063b269e92914b8c45635d78fd63ac9d39450bb34a, Timestamp: 1731611347, MainnetExitRoot: 0x8940eed58619843cd5803b0816bd8ec44b157992ae6665235c30b74391ff54de, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x8770ef19434a52ae8ee1d3a68bd4986e0b511dd13a2f6cb92055e1ac1e51a45b, Hash: 0x0fb88ea5dcc5f80b226c61f2d247a85af467dc0f7d647c7029b63963d1efcc55 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.860-0600 INFO l1infotreesync/processor.go:432 block 14 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.861-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.862-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 14 to 14 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:55.863-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x8770ef19434a52ae8ee1d3a68bd4986e0b511dd13a2f6cb92055e1ac1e51a45b {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.864-0600 DEBUG sync/evmdownloader.go:99 sending block 14 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:55.864-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 14, last block seen on L1 14 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:55.864-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 14, blockHash: 0x7bb7218f7f2219a8a16d593fb47b729aa8aa880d7d3a3e584aa4392f444c6f22 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:55.864-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:55.866-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 14 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:55.866-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:55.874-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 15 to 15 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:55.875-0600 DEBUG sync/evmdownloader.go:104 sending block 15 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:55.876-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 15, last block seen on L1 15 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:55.876-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 15, blockHash: 0x9df8b30ab233deec00eccc87a3d1129e81cad3b1b65a2593bcc5b9a71cbd30d0 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:55.876-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:55.876-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 15 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:55.876-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:55.921-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.921-0600 INFO runtime/asm_arm64.s:1222 GER 0x8770ef19434a52ae8ee1d3a68bd4986e0b511dd13a2f6cb92055e1ac1e51a45b injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.923-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x8770ef19434a52ae8ee1d3a68bd4986e0b511dd13a2f6cb92055e1ac1e51a45b already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.943-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x8770ef19434a52ae8ee1d3a68bd4986e0b511dd13a2f6cb92055e1ac1e51a45b already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.961-0600 DEBUG helpers/reorg.go:31 reorging until block 13. Current block 14 (before reorg) {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.963-0600 DEBUG bridgesync/e2e_test.go:72 removing expectedBridge with depositCount 9 due to reorg {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.963-0600 DEBUG bridgesync/e2e_test.go:81 reorgs: 1 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.963-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x8770ef19434a52ae8ee1d3a68bd4986e0b511dd13a2f6cb92055e1ac1e51a45b already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:55.983-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x8770ef19434a52ae8ee1d3a68bd4986e0b511dd13a2f6cb92055e1ac1e51a45b already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.003-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x8770ef19434a52ae8ee1d3a68bd4986e0b511dd13a2f6cb92055e1ac1e51a45b already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.023-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x8770ef19434a52ae8ee1d3a68bd4986e0b511dd13a2f6cb92055e1ac1e51a45b already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.043-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x8770ef19434a52ae8ee1d3a68bd4986e0b511dd13a2f6cb92055e1ac1e51a45b already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.063-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x8770ef19434a52ae8ee1d3a68bd4986e0b511dd13a2f6cb92055e1ac1e51a45b already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.083-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x8770ef19434a52ae8ee1d3a68bd4986e0b511dd13a2f6cb92055e1ac1e51a45b already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.103-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x8770ef19434a52ae8ee1d3a68bd4986e0b511dd13a2f6cb92055e1ac1e51a45b already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.123-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x8770ef19434a52ae8ee1d3a68bd4986e0b511dd13a2f6cb92055e1ac1e51a45b already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.137-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 15 to 15 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.140-0600 DEBUG sync/evmdownloader.go:99 sending block 15 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.140-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 15, last block seen on L1 15 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.141-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 15, blockHash: 0x3b2b7e51c9f82d44891e636a41a808f42cfeac3b0e904ad211615979bd1908f8 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.141-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.141-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 15 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.142-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 15, BlockPosition: 1, L1InfoTreeIndex: 10, PreviousBlockHash: 0x2675634a6afe3b152e47267c0a9085fe46804ee2af7128e551eef5f4e7763d69, Timestamp: 1731611349, MainnetExitRoot: 0xa991c00cc5df9f702e281d609fbedd74603a11cce9cb963e85f52c7cb21745d5, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xed24e662555ce86cd1cd654f2545c199744e28e6c07144f879cf6cd08c611de0, Hash: 0xcf02a11b463f45a67e5ca95cbfc40c50c0929927ecf8b247920a74bafda19dc3 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.142-0600 INFO l1infotreesync/processor.go:432 block 15 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.142-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.144-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0xed24e662555ce86cd1cd654f2545c199744e28e6c07144f879cf6cd08c611de0 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.145-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 15 to 15 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.148-0600 DEBUG sync/evmdownloader.go:99 sending block 15 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.148-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 15, last block seen on L1 15 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.148-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 15, blockHash: 0x3b2b7e51c9f82d44891e636a41a808f42cfeac3b0e904ad211615979bd1908f8 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.148-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:56.149-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 15 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:56.149-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:56.157-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 16 to 16 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:56.158-0600 DEBUG sync/evmdownloader.go:104 sending block 16 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:56.159-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 16, last block seen on L1 16 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:56.159-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 16, blockHash: 0xbc6fa4e0022b6a3d18b66cbf80b3c396adb41690ade2ae2f7f15064af36d9b89 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:56.159-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:56.159-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 16 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:56.159-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:56.202-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.203-0600 INFO runtime/asm_arm64.s:1222 GER 0xed24e662555ce86cd1cd654f2545c199744e28e6c07144f879cf6cd08c611de0 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.204-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xed24e662555ce86cd1cd654f2545c199744e28e6c07144f879cf6cd08c611de0 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.223-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xed24e662555ce86cd1cd654f2545c199744e28e6c07144f879cf6cd08c611de0 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.243-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xed24e662555ce86cd1cd654f2545c199744e28e6c07144f879cf6cd08c611de0 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.263-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xed24e662555ce86cd1cd654f2545c199744e28e6c07144f879cf6cd08c611de0 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.274-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 16 to 16 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.276-0600 DEBUG sync/evmdownloader.go:99 sending block 16 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.276-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 16, last block seen on L1 16 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.276-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 16, blockHash: 0x73560e3d546b415e727fa1dffab3e385d47de89f41362e9a1a8c94c3315f3976 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.276-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.276-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 16 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.277-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 16, BlockPosition: 1, L1InfoTreeIndex: 11, PreviousBlockHash: 0x3b2b7e51c9f82d44891e636a41a808f42cfeac3b0e904ad211615979bd1908f8, Timestamp: 1731611350, MainnetExitRoot: 0x031ddf290855f5543ba503917d1399f986e46df912ffd82c871f5189b83225ce, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xc25d6f32215e6b5c1de22a7e8de1285007b5ffbcf6dc60fee30b43f65aa67271, Hash: 0x6fcab9d64bd6d3aa00ca5ecf71f6d03636546115665918b8d6ddc75dffc93f72 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.277-0600 INFO l1infotreesync/processor.go:432 block 16 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.277-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.279-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 16 to 16 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.282-0600 DEBUG sync/evmdownloader.go:99 sending block 16 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.282-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 16, last block seen on L1 16 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.282-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 16, blockHash: 0x73560e3d546b415e727fa1dffab3e385d47de89f41362e9a1a8c94c3315f3976 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.282-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:56.283-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0xc25d6f32215e6b5c1de22a7e8de1285007b5ffbcf6dc60fee30b43f65aa67271 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.283-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 16 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:56.283-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:56.352-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 17 to 17 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:56.352-0600 DEBUG sync/evmdownloader.go:104 sending block 17 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:56.354-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 17, last block seen on L1 17 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:56.354-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 17, blockHash: 0x2660687be947921c1cbf76b569073adaf7ac2ec96a9bc0993efb5707ded01115 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:56.354-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:56.354-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 17 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:56.354-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:56.394-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.394-0600 INFO runtime/asm_arm64.s:1222 GER 0xc25d6f32215e6b5c1de22a7e8de1285007b5ffbcf6dc60fee30b43f65aa67271 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.396-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xc25d6f32215e6b5c1de22a7e8de1285007b5ffbcf6dc60fee30b43f65aa67271 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.403-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xc25d6f32215e6b5c1de22a7e8de1285007b5ffbcf6dc60fee30b43f65aa67271 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.410-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 17 to 17 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.412-0600 DEBUG sync/evmdownloader.go:99 sending block 17 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.412-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 17, last block seen on L1 17 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.412-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 17, blockHash: 0xf0deaa69debfb0b2ea659f09d05a784d893229e1660b68b79a284ca74ab73e5c {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.412-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.412-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 17 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.413-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 17 to 17 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.413-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 17, BlockPosition: 1, L1InfoTreeIndex: 12, PreviousBlockHash: 0x73560e3d546b415e727fa1dffab3e385d47de89f41362e9a1a8c94c3315f3976, Timestamp: 1731611351, MainnetExitRoot: 0xa646c43f3e94f839abb7a3757bb0e055b213e108d0f112456cc6b9bc2e62ff5c, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x6a888f2ddeee41b9c89f5ec07188278cfee760d773cf0c69608807f3bfeb7695, Hash: 0x251735c65613b66faa576096564ad98f15a9d4455f0afa1f7f2fdc78636784ad {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.414-0600 INFO l1infotreesync/processor.go:432 block 17 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.414-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.416-0600 DEBUG sync/evmdownloader.go:99 sending block 17 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.416-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 17, last block seen on L1 17 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.416-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 17, blockHash: 0xf0deaa69debfb0b2ea659f09d05a784d893229e1660b68b79a284ca74ab73e5c {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.416-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:56.417-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 17 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:56.417-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:56.423-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x6a888f2ddeee41b9c89f5ec07188278cfee760d773cf0c69608807f3bfeb7695 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.435-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 18 to 18 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:56.435-0600 DEBUG sync/evmdownloader.go:104 sending block 18 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:56.437-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 18, last block seen on L1 18 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:56.437-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 18, blockHash: 0x1fac3d24ddecfd913c95175ae8a1235fe81bda7bb628ddb28a932d92033cf0c1 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:56.437-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:56.437-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 18 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:56.437-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:56.442-0600 DEBUG sync/evmdriver.go:104 handleReorg from block: 14 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.442-0600 DEBUG sync/evmdriver.go:104 handleReorg from block: 14 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.442-0600 DEBUG l1infotreesync/processor.go:243 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.443-0600 WARN sync/evmdownloader.go:171 context has been canceled while trying to get header by number {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -github.com/0xPolygon/cdk/sync.(*EVMDownloaderImplementation).WaitForNewBlocks - /Users/arnaub/Documents/polygon/cdk/sync/evmdownloader.go:171 -github.com/0xPolygon/cdk/sync.(*EVMDownloader).Download - /Users/arnaub/Documents/polygon/cdk/sync/evmdownloader.go:93 -2024-11-14T13:08:56.443-0600 INFO sync/evmdownloader.go:161 context cancelled {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.443-0600 INFO sync/evmdriver.go:89 Starting sync... lastProcessedBlock 13 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.443-0600 DEBUG l1infotreesync/processor.go:286 last info: BlockNumber: 13, BlockPosition: 1, L1InfoTreeIndex: 8, PreviousBlockHash: 0xc7e0e516d6ae88721600d77a870914a5d9b9afc37a3efe6703a2b195ba382baf, Timestamp: 1731611346, MainnetExitRoot: 0x665e1dd21035273eeb4048e1bc6bd70ac17294b89d094565a2d6ea3834384288, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x93a1aa645a43211a58c6b4e2b3035489e80a938e68efbf14c7fafc97f9976783, Hash: 0xb6195f447ec7e244a97da3fdfbf463c84ab7a1adcc72b9eabb8a630aa6f298fb {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.443-0600 DEBUG sync/evmdownloader.go:79 closing channel {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.443-0600 DEBUG l1infotreesync/processor.go:300 reorged until block 14 (included) {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.443-0600 DEBUG l1infotreesync/processor.go:302 last info: BlockNumber: 13, BlockPosition: 1, L1InfoTreeIndex: 8, PreviousBlockHash: 0xc7e0e516d6ae88721600d77a870914a5d9b9afc37a3efe6703a2b195ba382baf, Timestamp: 1731611346, MainnetExitRoot: 0x665e1dd21035273eeb4048e1bc6bd70ac17294b89d094565a2d6ea3834384288, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x93a1aa645a43211a58c6b4e2b3035489e80a938e68efbf14c7fafc97f9976783, Hash: 0xb6195f447ec7e244a97da3fdfbf463c84ab7a1adcc72b9eabb8a630aa6f298fb {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.443-0600 DEBUG l1infotreesync/processor.go:306 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx L1INFO xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.443-0600 INFO sync/evmdriver.go:89 Starting sync... lastProcessedBlock 13 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.445-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 14 to 17 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.452-0600 DEBUG sync/evmdownloader.go:99 sending block 14 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.452-0600 DEBUG sync/evmdownloader.go:99 sending block 15 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.452-0600 DEBUG sync/evmdownloader.go:99 sending block 16 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.452-0600 DEBUG sync/evmdownloader.go:99 sending block 17 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.452-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 14, blockHash: 0x2675634a6afe3b152e47267c0a9085fe46804ee2af7128e551eef5f4e7763d69 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.452-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 17, last block seen on L1 17 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.452-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.452-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 14 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.454-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 14 to 17 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.455-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 14, BlockPosition: 1, L1InfoTreeIndex: 9, PreviousBlockHash: 0x8a2d44d0eb13d43e80c97f063b269e92914b8c45635d78fd63ac9d39450bb34a, Timestamp: 1731611348, MainnetExitRoot: 0x903f78f4dc9ae307907eb3e248b1da38d73f72c89564127a737ec2e340502e52, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x4968629ff8aabae92b0aa9f02fa3fd799d5505a464e81aec8237f82529cf098f, Hash: 0x4ba76f7ea8f71a640a04636f94ad12df69ee96379375d54d8bb9b003c21cefd6 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.455-0600 INFO l1infotreesync/processor.go:432 block 14 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.455-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.455-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 15, blockHash: 0x3b2b7e51c9f82d44891e636a41a808f42cfeac3b0e904ad211615979bd1908f8 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.455-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.455-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 15 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.457-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 15, BlockPosition: 1, L1InfoTreeIndex: 10, PreviousBlockHash: 0x2675634a6afe3b152e47267c0a9085fe46804ee2af7128e551eef5f4e7763d69, Timestamp: 1731611349, MainnetExitRoot: 0xa991c00cc5df9f702e281d609fbedd74603a11cce9cb963e85f52c7cb21745d5, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xed24e662555ce86cd1cd654f2545c199744e28e6c07144f879cf6cd08c611de0, Hash: 0xcf02a11b463f45a67e5ca95cbfc40c50c0929927ecf8b247920a74bafda19dc3 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.457-0600 INFO l1infotreesync/processor.go:432 block 15 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.457-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.457-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 16, blockHash: 0x73560e3d546b415e727fa1dffab3e385d47de89f41362e9a1a8c94c3315f3976 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.457-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.457-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 16 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.458-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 16, BlockPosition: 1, L1InfoTreeIndex: 11, PreviousBlockHash: 0x3b2b7e51c9f82d44891e636a41a808f42cfeac3b0e904ad211615979bd1908f8, Timestamp: 1731611350, MainnetExitRoot: 0x031ddf290855f5543ba503917d1399f986e46df912ffd82c871f5189b83225ce, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xc25d6f32215e6b5c1de22a7e8de1285007b5ffbcf6dc60fee30b43f65aa67271, Hash: 0x6fcab9d64bd6d3aa00ca5ecf71f6d03636546115665918b8d6ddc75dffc93f72 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.458-0600 INFO l1infotreesync/processor.go:432 block 16 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.458-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.458-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 17, blockHash: 0xf0deaa69debfb0b2ea659f09d05a784d893229e1660b68b79a284ca74ab73e5c {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.459-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.459-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 17 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.460-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 17, BlockPosition: 1, L1InfoTreeIndex: 12, PreviousBlockHash: 0x73560e3d546b415e727fa1dffab3e385d47de89f41362e9a1a8c94c3315f3976, Timestamp: 1731611351, MainnetExitRoot: 0xa646c43f3e94f839abb7a3757bb0e055b213e108d0f112456cc6b9bc2e62ff5c, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x6a888f2ddeee41b9c89f5ec07188278cfee760d773cf0c69608807f3bfeb7695, Hash: 0x251735c65613b66faa576096564ad98f15a9d4455f0afa1f7f2fdc78636784ad {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.460-0600 INFO l1infotreesync/processor.go:432 block 17 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.460-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.461-0600 DEBUG sync/evmdownloader.go:99 sending block 14 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.461-0600 DEBUG sync/evmdownloader.go:99 sending block 15 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.462-0600 DEBUG sync/evmdownloader.go:99 sending block 16 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.462-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 14, blockHash: 0x2675634a6afe3b152e47267c0a9085fe46804ee2af7128e551eef5f4e7763d69 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.462-0600 DEBUG sync/evmdownloader.go:99 sending block 17 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.462-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 17, last block seen on L1 17 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.462-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:56.464-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 14 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:56.464-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:56.464-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 15, blockHash: 0x3b2b7e51c9f82d44891e636a41a808f42cfeac3b0e904ad211615979bd1908f8 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.465-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:56.466-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 15 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:56.466-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:56.466-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 16, blockHash: 0x73560e3d546b415e727fa1dffab3e385d47de89f41362e9a1a8c94c3315f3976 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.466-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:56.467-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 16 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:56.467-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:56.467-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 17, blockHash: 0xf0deaa69debfb0b2ea659f09d05a784d893229e1660b68b79a284ca74ab73e5c {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.467-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:56.469-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 17 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:56.469-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:56.481-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.481-0600 INFO runtime/asm_arm64.s:1222 GER 0x6a888f2ddeee41b9c89f5ec07188278cfee760d773cf0c69608807f3bfeb7695 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.483-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x6a888f2ddeee41b9c89f5ec07188278cfee760d773cf0c69608807f3bfeb7695 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.503-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x6a888f2ddeee41b9c89f5ec07188278cfee760d773cf0c69608807f3bfeb7695 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.523-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x6a888f2ddeee41b9c89f5ec07188278cfee760d773cf0c69608807f3bfeb7695 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.543-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x6a888f2ddeee41b9c89f5ec07188278cfee760d773cf0c69608807f3bfeb7695 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.547-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 18 to 18 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.549-0600 DEBUG sync/evmdownloader.go:99 sending block 18 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.549-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 18, last block seen on L1 18 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.549-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 18, blockHash: 0xc17bcd3ef93bbe699b8b2a57332bddf02b81fa63b296f648ade9d18d2822d15f {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.549-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.549-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 18 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.550-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 18, BlockPosition: 1, L1InfoTreeIndex: 13, PreviousBlockHash: 0xf0deaa69debfb0b2ea659f09d05a784d893229e1660b68b79a284ca74ab73e5c, Timestamp: 1731611352, MainnetExitRoot: 0x8e1c4367db139f6edd86ecaf274d5f2c6f91c212e523ee9bd4bf43cbf26d9e52, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x7ede440d41073c82ccb1b7840b0c0563fb12ad5aef5dcdd2e807926ff33b055c, Hash: 0x03314da41ede2c73470d5f660e2f184b368a67d922dbc6d74241c4472b51f1e0 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.550-0600 INFO l1infotreesync/processor.go:432 block 18 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.550-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.553-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 18 to 18 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.555-0600 DEBUG sync/evmdownloader.go:99 sending block 18 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.555-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 18, last block seen on L1 18 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.555-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 18, blockHash: 0xc17bcd3ef93bbe699b8b2a57332bddf02b81fa63b296f648ade9d18d2822d15f {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.555-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:56.556-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 18 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:56.556-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:56.563-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x7ede440d41073c82ccb1b7840b0c0563fb12ad5aef5dcdd2e807926ff33b055c {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.578-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 19 to 19 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:56.578-0600 DEBUG sync/evmdownloader.go:104 sending block 19 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:56.579-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 19, last block seen on L1 19 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:56.580-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 19, blockHash: 0xf191d6c80dfa41dabf5bfab2dda4c35aad861dea741518663cf42d4fc993cc7b {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:56.580-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:56.580-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 19 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:56.580-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:56.621-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.621-0600 INFO runtime/asm_arm64.s:1222 GER 0x7ede440d41073c82ccb1b7840b0c0563fb12ad5aef5dcdd2e807926ff33b055c injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.623-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x7ede440d41073c82ccb1b7840b0c0563fb12ad5aef5dcdd2e807926ff33b055c already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.643-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x7ede440d41073c82ccb1b7840b0c0563fb12ad5aef5dcdd2e807926ff33b055c already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.663-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x7ede440d41073c82ccb1b7840b0c0563fb12ad5aef5dcdd2e807926ff33b055c already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.683-0600 DEBUG runtime/asm_arm64.s:1222 syncer is not ready for the block 19 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.683-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 19 to 19 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.685-0600 DEBUG sync/evmdownloader.go:99 sending block 19 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.685-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 19, last block seen on L1 19 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.685-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 19, blockHash: 0x199edc2a1332aac84993fd50a035bb86c4763cac3d9593c65801d001c9f80567 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.685-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.685-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 19 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.686-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 19 to 19 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.686-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 19, BlockPosition: 1, L1InfoTreeIndex: 14, PreviousBlockHash: 0xc17bcd3ef93bbe699b8b2a57332bddf02b81fa63b296f648ade9d18d2822d15f, Timestamp: 1731611353, MainnetExitRoot: 0x973079ce1fdeff8b5532f05ff7ac9631491254b43c52cfb2d9babf910fb62ae1, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x289964a2c89ee019fd591fc53349d49b734a1d3ce8facf8c55c4d4dbcddcd420, Hash: 0x80861bfbf4aee43637936c944a4fdef2b7dab02a6711ed090135757075b6cf1f {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.687-0600 INFO l1infotreesync/processor.go:432 block 19 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.687-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.689-0600 DEBUG sync/evmdownloader.go:99 sending block 19 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.689-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 19, last block seen on L1 19 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.689-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 19, blockHash: 0x199edc2a1332aac84993fd50a035bb86c4763cac3d9593c65801d001c9f80567 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.689-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:56.690-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 19 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:56.690-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:56.702-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x289964a2c89ee019fd591fc53349d49b734a1d3ce8facf8c55c4d4dbcddcd420 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.711-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 20 to 20 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:56.711-0600 DEBUG sync/evmdownloader.go:104 sending block 20 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:56.712-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 20, last block seen on L1 20 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:56.712-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 20, blockHash: 0xe6faee0ac10a54156b0d064e990ecc1b8af4af1511700f6f0405b5e9cb8e329c {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:56.713-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:56.713-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 20 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:56.713-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:56.760-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.760-0600 INFO runtime/asm_arm64.s:1222 GER 0x289964a2c89ee019fd591fc53349d49b734a1d3ce8facf8c55c4d4dbcddcd420 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.762-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x289964a2c89ee019fd591fc53349d49b734a1d3ce8facf8c55c4d4dbcddcd420 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.764-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x289964a2c89ee019fd591fc53349d49b734a1d3ce8facf8c55c4d4dbcddcd420 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.783-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x289964a2c89ee019fd591fc53349d49b734a1d3ce8facf8c55c4d4dbcddcd420 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.803-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x289964a2c89ee019fd591fc53349d49b734a1d3ce8facf8c55c4d4dbcddcd420 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.823-0600 DEBUG runtime/asm_arm64.s:1222 syncer is not ready for the block 20 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.823-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 20 to 20 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.825-0600 DEBUG sync/evmdownloader.go:99 sending block 20 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.825-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 20, last block seen on L1 20 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.825-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 20, blockHash: 0x6a3d5000fc5e9cd9aa33ce7c7120206394b7d08e25b92a24016cf4aff4868f8b {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.825-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.825-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 20 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.826-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 20, BlockPosition: 1, L1InfoTreeIndex: 15, PreviousBlockHash: 0x199edc2a1332aac84993fd50a035bb86c4763cac3d9593c65801d001c9f80567, Timestamp: 1731611354, MainnetExitRoot: 0xf28ee664416c68ec5c123a5733aff14308c5d7eb503165a65aea97677fd5e4fe, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xf46a648130648b39d78da2fd6347e65f44e764c78bdd7394ddb9eecb3ee4aabe, Hash: 0xe7b59a4d355665987f4612b9aa57d62ca0ca0451741de061c58b55014fa106a9 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.827-0600 INFO l1infotreesync/processor.go:432 block 20 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.827-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.830-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 20 to 20 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.832-0600 DEBUG sync/evmdownloader.go:99 sending block 20 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.832-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 20, last block seen on L1 20 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.832-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 20, blockHash: 0x6a3d5000fc5e9cd9aa33ce7c7120206394b7d08e25b92a24016cf4aff4868f8b {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.832-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:56.834-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 20 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:56.834-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:56.842-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0xf46a648130648b39d78da2fd6347e65f44e764c78bdd7394ddb9eecb3ee4aabe {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.854-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 21 to 21 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:56.854-0600 DEBUG sync/evmdownloader.go:104 sending block 21 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:56.855-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 21, last block seen on L1 21 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:56.855-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 21, blockHash: 0x3f80bdc9b7b12b048692fe8c6011442f1406a9963357796d12a2274083a6af7d {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:56.855-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:56.856-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 21 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:56.856-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:56.900-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.900-0600 INFO runtime/asm_arm64.s:1222 GER 0xf46a648130648b39d78da2fd6347e65f44e764c78bdd7394ddb9eecb3ee4aabe injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.902-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xf46a648130648b39d78da2fd6347e65f44e764c78bdd7394ddb9eecb3ee4aabe already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.905-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xf46a648130648b39d78da2fd6347e65f44e764c78bdd7394ddb9eecb3ee4aabe already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.923-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xf46a648130648b39d78da2fd6347e65f44e764c78bdd7394ddb9eecb3ee4aabe already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.943-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xf46a648130648b39d78da2fd6347e65f44e764c78bdd7394ddb9eecb3ee4aabe already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.958-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 21 to 21 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.960-0600 DEBUG sync/evmdownloader.go:99 sending block 21 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.961-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 21, last block seen on L1 21 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.961-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 21, blockHash: 0xe8cdb88bf902e37f85b33c14a20747cd8bdd7b6dc1814375ba2bb59ddf874f93 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:56.961-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.961-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 21 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.962-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 21, BlockPosition: 1, L1InfoTreeIndex: 16, PreviousBlockHash: 0x6a3d5000fc5e9cd9aa33ce7c7120206394b7d08e25b92a24016cf4aff4868f8b, Timestamp: 1731611355, MainnetExitRoot: 0xd7fdf526293063dc5700fb9be0c9be2ba9f58786ecbc3815e2f67c3d52e270b6, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x1df5c94730119914a27c90937000bf4e2abea99833a3bb4fb35f6d1830f768c4, Hash: 0x8365f5000a2908d6bab95c2efb9c7b9f968c22c17cd75374baabdd3690e4d4c5 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.962-0600 INFO l1infotreesync/processor.go:432 block 21 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.962-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.963-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x1df5c94730119914a27c90937000bf4e2abea99833a3bb4fb35f6d1830f768c4 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:56.963-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 21 to 21 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.966-0600 DEBUG sync/evmdownloader.go:99 sending block 21 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.966-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 21, last block seen on L1 21 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.966-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 21, blockHash: 0xe8cdb88bf902e37f85b33c14a20747cd8bdd7b6dc1814375ba2bb59ddf874f93 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:56.966-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:56.967-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 21 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:56.967-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:56.977-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 22 to 22 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:56.977-0600 DEBUG sync/evmdownloader.go:104 sending block 22 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:56.978-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 22, last block seen on L1 22 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:56.978-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 22, blockHash: 0xd7d626a548a9a2938359f92811a26d8c52292a379347a87c8e1bfba2f58cc9e3 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:56.978-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:56.978-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 22 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:56.978-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:57.022-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.022-0600 INFO runtime/asm_arm64.s:1222 GER 0x1df5c94730119914a27c90937000bf4e2abea99833a3bb4fb35f6d1830f768c4 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.024-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x1df5c94730119914a27c90937000bf4e2abea99833a3bb4fb35f6d1830f768c4 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.043-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x1df5c94730119914a27c90937000bf4e2abea99833a3bb4fb35f6d1830f768c4 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.064-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x1df5c94730119914a27c90937000bf4e2abea99833a3bb4fb35f6d1830f768c4 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.083-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x1df5c94730119914a27c90937000bf4e2abea99833a3bb4fb35f6d1830f768c4 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.094-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 22 to 22 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:57.097-0600 DEBUG sync/evmdownloader.go:99 sending block 22 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:57.097-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 22, last block seen on L1 22 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:57.097-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 22, blockHash: 0x577b90642688fc4b8153726d8aa6c390f8fe3c49c41a2f137b59d884a57cbeb1 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:57.097-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.097-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 22 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.097-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 22 to 22 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:57.098-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 22, BlockPosition: 1, L1InfoTreeIndex: 17, PreviousBlockHash: 0xe8cdb88bf902e37f85b33c14a20747cd8bdd7b6dc1814375ba2bb59ddf874f93, Timestamp: 1731611356, MainnetExitRoot: 0x8d85b57bf2bc9d1aae7010ee860d1c8247d7de1b292a36e1a2df8d0a7bc94967, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xef00a6c85551c1e31e7dce3ae38f2dab74a7fc03be94e53eee0ebb0a8f1b9530, Hash: 0xcd0552c79d889cee5620373dbd29ca7a0a3a7c09080cd604ce0dc7ac287193b2 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.098-0600 INFO l1infotreesync/processor.go:432 block 22 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.098-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.099-0600 DEBUG sync/evmdownloader.go:99 sending block 22 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:57.099-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 22, last block seen on L1 22 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:57.099-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 22, blockHash: 0x577b90642688fc4b8153726d8aa6c390f8fe3c49c41a2f137b59d884a57cbeb1 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:57.099-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:57.101-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 22 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:57.101-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:57.103-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0xef00a6c85551c1e31e7dce3ae38f2dab74a7fc03be94e53eee0ebb0a8f1b9530 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.120-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 23 to 23 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:57.120-0600 DEBUG sync/evmdownloader.go:104 sending block 23 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:57.121-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 23, last block seen on L1 23 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:57.121-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 23, blockHash: 0x02e4f014e7ae15d717941883f9f8fbd8f4d183c361fbb1618c226ce2f5e009d7 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:57.121-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:57.121-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 23 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:57.121-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:57.161-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.162-0600 INFO runtime/asm_arm64.s:1222 GER 0xef00a6c85551c1e31e7dce3ae38f2dab74a7fc03be94e53eee0ebb0a8f1b9530 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.163-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xef00a6c85551c1e31e7dce3ae38f2dab74a7fc03be94e53eee0ebb0a8f1b9530 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.183-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xef00a6c85551c1e31e7dce3ae38f2dab74a7fc03be94e53eee0ebb0a8f1b9530 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.203-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xef00a6c85551c1e31e7dce3ae38f2dab74a7fc03be94e53eee0ebb0a8f1b9530 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.223-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xef00a6c85551c1e31e7dce3ae38f2dab74a7fc03be94e53eee0ebb0a8f1b9530 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.230-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 23 to 23 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:57.231-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 23 to 23 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:57.232-0600 DEBUG sync/evmdownloader.go:99 sending block 23 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:57.232-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 23, last block seen on L1 23 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:57.232-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 23, blockHash: 0xcbd3f32b1c950849bed79591fc65a52beabcd4a3462b3d94c5dc9d0c77ecf3df {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:57.233-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.233-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 23 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.233-0600 DEBUG sync/evmdownloader.go:99 sending block 23 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:57.233-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 23, last block seen on L1 23 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:57.233-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 23, blockHash: 0xcbd3f32b1c950849bed79591fc65a52beabcd4a3462b3d94c5dc9d0c77ecf3df {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:57.233-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:57.234-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 23, BlockPosition: 1, L1InfoTreeIndex: 18, PreviousBlockHash: 0x577b90642688fc4b8153726d8aa6c390f8fe3c49c41a2f137b59d884a57cbeb1, Timestamp: 1731611357, MainnetExitRoot: 0xd30ecf7aa73a5e537df51c3c35ff290f3c62acf302c45b1b110410923f15609a, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x389e68fed1732d6499243cb2df3193830c36c4fdc8a5c9732983748746d4c7b4, Hash: 0x9d9555605e4274cc2aad01fc34a3bb5bac324fd07df187eab41bea8b10d0c14c {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.234-0600 INFO l1infotreesync/processor.go:432 block 23 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.234-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.235-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 23 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:57.235-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:57.243-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x389e68fed1732d6499243cb2df3193830c36c4fdc8a5c9732983748746d4c7b4 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.252-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 24 to 24 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:57.253-0600 DEBUG sync/evmdownloader.go:104 sending block 24 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:57.254-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 24, last block seen on L1 24 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:57.254-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 24, blockHash: 0x86cced226e2e3301ea3f7dedecf834cd1572095fad8b36e3b1b9df7f26088558 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:57.254-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:57.254-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 24 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:57.254-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:57.302-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.302-0600 INFO runtime/asm_arm64.s:1222 GER 0x389e68fed1732d6499243cb2df3193830c36c4fdc8a5c9732983748746d4c7b4 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.304-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x389e68fed1732d6499243cb2df3193830c36c4fdc8a5c9732983748746d4c7b4 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.323-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x389e68fed1732d6499243cb2df3193830c36c4fdc8a5c9732983748746d4c7b4 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.334-0600 DEBUG helpers/reorg.go:31 reorging until block 22. Current block 23 (before reorg) {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.336-0600 DEBUG bridgesync/e2e_test.go:72 removing expectedBridge with depositCount 18 due to reorg {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.336-0600 DEBUG bridgesync/e2e_test.go:81 reorgs: 2 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.344-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x389e68fed1732d6499243cb2df3193830c36c4fdc8a5c9732983748746d4c7b4 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.363-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x389e68fed1732d6499243cb2df3193830c36c4fdc8a5c9732983748746d4c7b4 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.383-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x389e68fed1732d6499243cb2df3193830c36c4fdc8a5c9732983748746d4c7b4 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.403-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x389e68fed1732d6499243cb2df3193830c36c4fdc8a5c9732983748746d4c7b4 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.423-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x389e68fed1732d6499243cb2df3193830c36c4fdc8a5c9732983748746d4c7b4 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.443-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x389e68fed1732d6499243cb2df3193830c36c4fdc8a5c9732983748746d4c7b4 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.463-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x389e68fed1732d6499243cb2df3193830c36c4fdc8a5c9732983748746d4c7b4 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.483-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x389e68fed1732d6499243cb2df3193830c36c4fdc8a5c9732983748746d4c7b4 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.503-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x389e68fed1732d6499243cb2df3193830c36c4fdc8a5c9732983748746d4c7b4 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.511-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 24 to 24 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:57.513-0600 DEBUG sync/evmdownloader.go:99 sending block 24 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:57.513-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 24, last block seen on L1 24 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:57.513-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 24, blockHash: 0xe5c3125f987c3af6ec83f5ebafb29eb5ab09756680bb3550c9fa06f3d42adb60 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:57.514-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.514-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 24 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.514-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 24 to 24 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:57.515-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 24, BlockPosition: 1, L1InfoTreeIndex: 19, PreviousBlockHash: 0x9f72edea0db31e5e493bde0229c8a2c3b07a0435068c4e6b4b8101255ae1c66c, Timestamp: 1731611359, MainnetExitRoot: 0x4da6a375fc25953721c4854d3b993b60b1b05987bd119a14fb0983d90f37c256, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xf728a1cba3ec1f6f3f84a7ea519dacf0ccaca1576fb08de64ef2c58af063dadb, Hash: 0xfdec1c0ac19f1c7432a90e09a97367a8902040ee7623f96a45c2bb1cace7a862 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.515-0600 INFO l1infotreesync/processor.go:432 block 24 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.515-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.516-0600 DEBUG sync/evmdownloader.go:99 sending block 24 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:57.516-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 24, last block seen on L1 24 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:57.516-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 24, blockHash: 0xe5c3125f987c3af6ec83f5ebafb29eb5ab09756680bb3550c9fa06f3d42adb60 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:57.516-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:57.518-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 24 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:57.518-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:57.523-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0xf728a1cba3ec1f6f3f84a7ea519dacf0ccaca1576fb08de64ef2c58af063dadb {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.535-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 25 to 25 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:57.536-0600 DEBUG sync/evmdownloader.go:104 sending block 25 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:57.537-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 25, last block seen on L1 25 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:57.537-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 25, blockHash: 0x0bda11c19e6ffbd2bcf8d6a5c06fe55552338f30016f87da6f0151a06863229f {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:57.537-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:57.537-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 25 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:57.537-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:57.581-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.581-0600 INFO runtime/asm_arm64.s:1222 GER 0xf728a1cba3ec1f6f3f84a7ea519dacf0ccaca1576fb08de64ef2c58af063dadb injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.583-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xf728a1cba3ec1f6f3f84a7ea519dacf0ccaca1576fb08de64ef2c58af063dadb already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.603-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xf728a1cba3ec1f6f3f84a7ea519dacf0ccaca1576fb08de64ef2c58af063dadb already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.623-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xf728a1cba3ec1f6f3f84a7ea519dacf0ccaca1576fb08de64ef2c58af063dadb already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.643-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xf728a1cba3ec1f6f3f84a7ea519dacf0ccaca1576fb08de64ef2c58af063dadb already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.648-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 25 to 25 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:57.648-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 25 to 25 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:57.650-0600 DEBUG sync/evmdownloader.go:99 sending block 25 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:57.650-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 25, last block seen on L1 25 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:57.650-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 25, blockHash: 0xa06363dd7a79b82f2ed088e48666f164319a2f772c674ccb016ec6882ec1c38d {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:57.650-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:57.650-0600 DEBUG sync/evmdownloader.go:99 sending block 25 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:57.650-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 25, last block seen on L1 25 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:57.650-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 25, blockHash: 0xa06363dd7a79b82f2ed088e48666f164319a2f772c674ccb016ec6882ec1c38d {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:57.650-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.650-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 25 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.652-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 25 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:57.652-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:57.652-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 25, BlockPosition: 1, L1InfoTreeIndex: 20, PreviousBlockHash: 0xe5c3125f987c3af6ec83f5ebafb29eb5ab09756680bb3550c9fa06f3d42adb60, Timestamp: 1731611360, MainnetExitRoot: 0x3c4ded6d1894046c2451b133083f9b5c34ae3c5cdab633f036953d6c19f8ea9a, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x9350786d7ac9665e37149f7324e534ae1850949cca432c64351ee6dd103e8b56, Hash: 0xbdaf0d624beafbc03b2a65ba67f14b12bf24fe24d0730dff0492196738ae6846 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.652-0600 INFO l1infotreesync/processor.go:432 block 25 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.652-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.663-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x9350786d7ac9665e37149f7324e534ae1850949cca432c64351ee6dd103e8b56 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.678-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 26 to 26 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:57.679-0600 DEBUG sync/evmdownloader.go:104 sending block 26 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:57.680-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 26, last block seen on L1 26 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:57.680-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 26, blockHash: 0x616349db3720b2c7de5f0fce14894cbd4928426cfd9deaba1bbe1a5e1a676680 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:57.680-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:57.680-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 26 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:57.680-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:57.721-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.721-0600 INFO runtime/asm_arm64.s:1222 GER 0x9350786d7ac9665e37149f7324e534ae1850949cca432c64351ee6dd103e8b56 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.724-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x9350786d7ac9665e37149f7324e534ae1850949cca432c64351ee6dd103e8b56 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.743-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x9350786d7ac9665e37149f7324e534ae1850949cca432c64351ee6dd103e8b56 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.763-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x9350786d7ac9665e37149f7324e534ae1850949cca432c64351ee6dd103e8b56 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.783-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x9350786d7ac9665e37149f7324e534ae1850949cca432c64351ee6dd103e8b56 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.786-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 26 to 26 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:57.788-0600 DEBUG sync/evmdownloader.go:99 sending block 26 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:57.788-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 26, last block seen on L1 26 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:57.788-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 26, blockHash: 0xf3101937fad4c6422e170f49739541da12bddb6f2b4e853f2af9998301164e7f {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:57.789-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.789-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 26 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.790-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 26, BlockPosition: 1, L1InfoTreeIndex: 21, PreviousBlockHash: 0xa06363dd7a79b82f2ed088e48666f164319a2f772c674ccb016ec6882ec1c38d, Timestamp: 1731611361, MainnetExitRoot: 0xd395e60baa243b1767eeff4de43ba38f24a906b3fb57556725e541012d3db08e, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x9ce0c4ec0681af19f0e6236b2794e3ab46f31850cd0e3555d014bf755f4a8fd2, Hash: 0x2fb993df109e330d09f240eec6fa6feb59e74243217affea1c1ebdb3ec5bd799 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.790-0600 INFO l1infotreesync/processor.go:432 block 26 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.790-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.791-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 26 to 26 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:57.793-0600 DEBUG sync/evmdownloader.go:99 sending block 26 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:57.794-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 26, last block seen on L1 26 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:57.794-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 26, blockHash: 0xf3101937fad4c6422e170f49739541da12bddb6f2b4e853f2af9998301164e7f {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:57.794-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:57.795-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 26 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:57.795-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:57.803-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x9ce0c4ec0681af19f0e6236b2794e3ab46f31850cd0e3555d014bf755f4a8fd2 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.821-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 27 to 27 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:57.821-0600 DEBUG sync/evmdownloader.go:104 sending block 27 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:57.823-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 27, last block seen on L1 27 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:57.823-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 27, blockHash: 0x6ebce77a3b260153c47d81bb450d8d75bb3369f9592063d74e6c5021d11a0494 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:57.823-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:57.823-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 27 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:57.823-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:57.861-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.861-0600 INFO runtime/asm_arm64.s:1222 GER 0x9ce0c4ec0681af19f0e6236b2794e3ab46f31850cd0e3555d014bf755f4a8fd2 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.864-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x9ce0c4ec0681af19f0e6236b2794e3ab46f31850cd0e3555d014bf755f4a8fd2 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.884-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x9ce0c4ec0681af19f0e6236b2794e3ab46f31850cd0e3555d014bf755f4a8fd2 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.903-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x9ce0c4ec0681af19f0e6236b2794e3ab46f31850cd0e3555d014bf755f4a8fd2 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.922-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 27 to 27 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:57.923-0600 DEBUG runtime/asm_arm64.s:1222 syncer is not ready for the block 27 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.924-0600 DEBUG sync/evmdownloader.go:99 sending block 27 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:57.924-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 27, last block seen on L1 27 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:57.924-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 27, blockHash: 0xb341cf115d3c74ef780dbc479c3b6126562a50021c75cc43691eb900ed5747fc {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:57.925-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.925-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 27 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.925-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 27 to 27 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:57.926-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 27, BlockPosition: 1, L1InfoTreeIndex: 22, PreviousBlockHash: 0xf3101937fad4c6422e170f49739541da12bddb6f2b4e853f2af9998301164e7f, Timestamp: 1731611362, MainnetExitRoot: 0xadb21f564b4fd07bb5edfbe7e8ab1b3e3c1c61bb3f2d33b2bbc53fb77c53c44d, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x39ec10983dd45ac6129d6ce842f7b2ad33e6b1e4e0c3fc02b9165be2aec5d047, Hash: 0x74336f9d45d14cd889861e5fe44484ff9481802d7c79c30dcaad07314538c87c {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.926-0600 INFO l1infotreesync/processor.go:432 block 27 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.926-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.927-0600 DEBUG sync/evmdownloader.go:99 sending block 27 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:57.927-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 27, last block seen on L1 27 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:57.927-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 27, blockHash: 0xb341cf115d3c74ef780dbc479c3b6126562a50021c75cc43691eb900ed5747fc {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:57.927-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:57.929-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 27 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:57.929-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:57.942-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x39ec10983dd45ac6129d6ce842f7b2ad33e6b1e4e0c3fc02b9165be2aec5d047 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:57.954-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 28 to 28 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:57.954-0600 DEBUG sync/evmdownloader.go:104 sending block 28 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:57.955-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 28, last block seen on L1 28 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:57.955-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 28, blockHash: 0x0e536dd46be20a08f6faf753c04c20f5ace4487e5348764a19c7ddae99952628 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:57.956-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:57.956-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 28 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:57.956-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:58.000-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.000-0600 INFO runtime/asm_arm64.s:1222 GER 0x39ec10983dd45ac6129d6ce842f7b2ad33e6b1e4e0c3fc02b9165be2aec5d047 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.002-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x39ec10983dd45ac6129d6ce842f7b2ad33e6b1e4e0c3fc02b9165be2aec5d047 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.004-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x39ec10983dd45ac6129d6ce842f7b2ad33e6b1e4e0c3fc02b9165be2aec5d047 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.023-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x39ec10983dd45ac6129d6ce842f7b2ad33e6b1e4e0c3fc02b9165be2aec5d047 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.043-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x39ec10983dd45ac6129d6ce842f7b2ad33e6b1e4e0c3fc02b9165be2aec5d047 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.062-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 28 to 28 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.063-0600 DEBUG runtime/asm_arm64.s:1222 syncer is not ready for the block 28 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.064-0600 DEBUG sync/evmdownloader.go:99 sending block 28 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.064-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 28, last block seen on L1 28 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.064-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 28, blockHash: 0x8a1abe12f1f53020b012c5f71119c4e8d5cc1af6fd2afc799a22e4d50b465305 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.064-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.064-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 28 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.065-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 28, BlockPosition: 1, L1InfoTreeIndex: 23, PreviousBlockHash: 0xb341cf115d3c74ef780dbc479c3b6126562a50021c75cc43691eb900ed5747fc, Timestamp: 1731611363, MainnetExitRoot: 0xd6f3367c804d9c27a1361f4608c45ca4f0e0ddca726bcd6fdc204121a9f0bfc4, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x40faefd9fb8cea9f8173d0d017a5ca242534cd19c9030edfd9bca2039bf9e6e9, Hash: 0x68942daea84b6292569171c7013b0fdb464b77132963a11feb70feeae450b826 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.065-0600 INFO l1infotreesync/processor.go:432 block 28 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.065-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.069-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 28 to 28 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.071-0600 DEBUG sync/evmdownloader.go:99 sending block 28 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.071-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 28, last block seen on L1 28 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.071-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 28, blockHash: 0x8a1abe12f1f53020b012c5f71119c4e8d5cc1af6fd2afc799a22e4d50b465305 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.071-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.073-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 28 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.073-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.082-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x40faefd9fb8cea9f8173d0d017a5ca242534cd19c9030edfd9bca2039bf9e6e9 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.097-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 29 to 29 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:58.097-0600 DEBUG sync/evmdownloader.go:104 sending block 29 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:58.098-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 29, last block seen on L1 29 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:58.098-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 29, blockHash: 0x1560f48c666aab7127437f3bfa048b1a40163760a61621e232d80805a788a6c2 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:58.098-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:58.098-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 29 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:58.099-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:58.140-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.140-0600 INFO runtime/asm_arm64.s:1222 GER 0x40faefd9fb8cea9f8173d0d017a5ca242534cd19c9030edfd9bca2039bf9e6e9 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.142-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x40faefd9fb8cea9f8173d0d017a5ca242534cd19c9030edfd9bca2039bf9e6e9 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.144-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x40faefd9fb8cea9f8173d0d017a5ca242534cd19c9030edfd9bca2039bf9e6e9 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.163-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x40faefd9fb8cea9f8173d0d017a5ca242534cd19c9030edfd9bca2039bf9e6e9 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.183-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x40faefd9fb8cea9f8173d0d017a5ca242534cd19c9030edfd9bca2039bf9e6e9 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.198-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 29 to 29 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.200-0600 DEBUG sync/evmdownloader.go:99 sending block 29 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.200-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 29, last block seen on L1 29 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.200-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 29, blockHash: 0x6286afc638e430dfaefd8953677c4e1576b250e85eea1d09a02c5d79c5623861 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.200-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.200-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 29 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.202-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 29, BlockPosition: 1, L1InfoTreeIndex: 24, PreviousBlockHash: 0x8a1abe12f1f53020b012c5f71119c4e8d5cc1af6fd2afc799a22e4d50b465305, Timestamp: 1731611364, MainnetExitRoot: 0x9172f8ded71f3130525baf3143416f34b2c1e3002b0dc570e72f3ec4d515adb1, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xd22b2ac0df9fe7b8bdb97155c1a47960ebf0482c6a3600b7a2840f25808fe55a, Hash: 0xf4125d6ce521f56b18d763a272a0b91dcecbc7d964dbc8983f526ae8cf2b5575 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.202-0600 INFO l1infotreesync/processor.go:432 block 29 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.202-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.202-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 29 to 29 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.204-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0xd22b2ac0df9fe7b8bdb97155c1a47960ebf0482c6a3600b7a2840f25808fe55a {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.205-0600 DEBUG sync/evmdownloader.go:99 sending block 29 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.205-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 29, last block seen on L1 29 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.205-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 29, blockHash: 0x6286afc638e430dfaefd8953677c4e1576b250e85eea1d09a02c5d79c5623861 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.205-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.208-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 29 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.208-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.220-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 30 to 30 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:58.220-0600 DEBUG sync/evmdownloader.go:104 sending block 30 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:58.221-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 30, last block seen on L1 30 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:58.221-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 30, blockHash: 0xe27fdad59abe5851db4887e7e837dcd27f40155502a46153ae165a4cb63de97e {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:58.221-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:58.221-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 30 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:58.221-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:58.265-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.265-0600 INFO runtime/asm_arm64.s:1222 GER 0xd22b2ac0df9fe7b8bdb97155c1a47960ebf0482c6a3600b7a2840f25808fe55a injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.267-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xd22b2ac0df9fe7b8bdb97155c1a47960ebf0482c6a3600b7a2840f25808fe55a already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.283-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xd22b2ac0df9fe7b8bdb97155c1a47960ebf0482c6a3600b7a2840f25808fe55a already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.304-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xd22b2ac0df9fe7b8bdb97155c1a47960ebf0482c6a3600b7a2840f25808fe55a already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.323-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xd22b2ac0df9fe7b8bdb97155c1a47960ebf0482c6a3600b7a2840f25808fe55a already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.334-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 30 to 30 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.336-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 30 to 30 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.336-0600 DEBUG sync/evmdownloader.go:99 sending block 30 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.336-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 30, last block seen on L1 30 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.336-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 30, blockHash: 0x08f0446dc4952aad92eba5de0220b75bdd2e2b0804ad4de6aaa6bc31f286e246 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.337-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.337-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 30 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.338-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 30, BlockPosition: 1, L1InfoTreeIndex: 25, PreviousBlockHash: 0x6286afc638e430dfaefd8953677c4e1576b250e85eea1d09a02c5d79c5623861, Timestamp: 1731611365, MainnetExitRoot: 0x08f724098bc0a3b60f8f4b25a089f27e50b66f13efac8c5de0e8e2c3d52e2191, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x91ef596dd9cab5b7533fb15a126f90675604d554feaf7faf0cbd6ff7d1acf60a, Hash: 0x38eaa519c656805a816876b4e3a126f0337464c429b5549a49f28bd987db3afe {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.338-0600 DEBUG sync/evmdownloader.go:99 sending block 30 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.338-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 30, last block seen on L1 30 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.338-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 30, blockHash: 0x08f0446dc4952aad92eba5de0220b75bdd2e2b0804ad4de6aaa6bc31f286e246 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.338-0600 INFO l1infotreesync/processor.go:432 block 30 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.338-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.338-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.340-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 30 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.340-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.343-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x91ef596dd9cab5b7533fb15a126f90675604d554feaf7faf0cbd6ff7d1acf60a {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.352-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 31 to 31 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:58.353-0600 DEBUG sync/evmdownloader.go:104 sending block 31 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:58.354-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 31, last block seen on L1 31 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:58.354-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 31, blockHash: 0xcb6459a372f365f0dbe2a9dda06bb998fe912c95f2eb0de824e6e31e6ae94c65 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:58.354-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:58.354-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 31 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:58.354-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:58.401-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.401-0600 INFO runtime/asm_arm64.s:1222 GER 0x91ef596dd9cab5b7533fb15a126f90675604d554feaf7faf0cbd6ff7d1acf60a injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.403-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x91ef596dd9cab5b7533fb15a126f90675604d554feaf7faf0cbd6ff7d1acf60a already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.423-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x91ef596dd9cab5b7533fb15a126f90675604d554feaf7faf0cbd6ff7d1acf60a already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.443-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x91ef596dd9cab5b7533fb15a126f90675604d554feaf7faf0cbd6ff7d1acf60a already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.455-0600 DEBUG sync/evmdriver.go:104 handleReorg from block: 23 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.455-0600 DEBUG sync/evmdriver.go:104 handleReorg from block: 23 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.455-0600 DEBUG bridgesync/processor.go:238 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.455-0600 INFO sync/evmdriver.go:89 Starting sync... lastProcessedBlock 22 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.455-0600 WARN sync/evmdownloader.go:171 context has been canceled while trying to get header by number {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -github.com/0xPolygon/cdk/sync.(*EVMDownloaderImplementation).WaitForNewBlocks - /Users/arnaub/Documents/polygon/cdk/sync/evmdownloader.go:171 -github.com/0xPolygon/cdk/sync.(*EVMDownloader).Download - /Users/arnaub/Documents/polygon/cdk/sync/evmdownloader.go:93 -2024-11-14T13:08:58.455-0600 INFO sync/evmdownloader.go:161 context cancelled {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.455-0600 DEBUG sync/evmdownloader.go:79 closing channel {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.455-0600 DEBUG l1infotreesync/processor.go:286 last info: BlockNumber: 22, BlockPosition: 1, L1InfoTreeIndex: 17, PreviousBlockHash: 0xe8cdb88bf902e37f85b33c14a20747cd8bdd7b6dc1814375ba2bb59ddf874f93, Timestamp: 1731611356, MainnetExitRoot: 0x8d85b57bf2bc9d1aae7010ee860d1c8247d7de1b292a36e1a2df8d0a7bc94967, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xef00a6c85551c1e31e7dce3ae38f2dab74a7fc03be94e53eee0ebb0a8f1b9530, Hash: 0xcd0552c79d889cee5620373dbd29ca7a0a3a7c09080cd604ce0dc7ac287193b2 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.455-0600 DEBUG l1infotreesync/processor.go:300 reorged until block 23 (included) {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.456-0600 DEBUG l1infotreesync/processor.go:302 last info: BlockNumber: 22, BlockPosition: 1, L1InfoTreeIndex: 17, PreviousBlockHash: 0xe8cdb88bf902e37f85b33c14a20747cd8bdd7b6dc1814375ba2bb59ddf874f93, Timestamp: 1731611356, MainnetExitRoot: 0x8d85b57bf2bc9d1aae7010ee860d1c8247d7de1b292a36e1a2df8d0a7bc94967, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xef00a6c85551c1e31e7dce3ae38f2dab74a7fc03be94e53eee0ebb0a8f1b9530, Hash: 0xcd0552c79d889cee5620373dbd29ca7a0a3a7c09080cd604ce0dc7ac287193b2 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.456-0600 DEBUG l1infotreesync/processor.go:306 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx L1INFO xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.456-0600 INFO sync/evmdriver.go:89 Starting sync... lastProcessedBlock 22 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.458-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 23 to 30 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.463-0600 DEBUG runtime/asm_arm64.s:1222 syncer is not ready for the block 30 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.467-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 23 to 30 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.472-0600 DEBUG sync/evmdownloader.go:99 sending block 23 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.472-0600 DEBUG sync/evmdownloader.go:99 sending block 24 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.472-0600 DEBUG sync/evmdownloader.go:99 sending block 25 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.472-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 23, blockHash: 0x9f72edea0db31e5e493bde0229c8a2c3b07a0435068c4e6b4b8101255ae1c66c {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.472-0600 DEBUG sync/evmdownloader.go:99 sending block 26 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.472-0600 DEBUG sync/evmdownloader.go:99 sending block 27 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.472-0600 DEBUG sync/evmdownloader.go:99 sending block 28 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.472-0600 DEBUG sync/evmdownloader.go:99 sending block 29 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.472-0600 DEBUG sync/evmdownloader.go:99 sending block 30 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.472-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.472-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 30, last block seen on L1 30 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.472-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 23 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.475-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 31 to 31 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.475-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 23, BlockPosition: 1, L1InfoTreeIndex: 18, PreviousBlockHash: 0x577b90642688fc4b8153726d8aa6c390f8fe3c49c41a2f137b59d884a57cbeb1, Timestamp: 1731611358, MainnetExitRoot: 0xc6a8b4eb0cacb4274ef7244fa70256d80b0680d744d08eaa1d75114ca54441a8, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xfcc7a182dc2ef4dd777154b69c050913777a64cf3036117366234b5d6a56c023, Hash: 0x06c62970b47c97436330542f2321c2557d72feb580708b2006096079704dae3a {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.475-0600 INFO l1infotreesync/processor.go:432 block 23 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.475-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.475-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 24, blockHash: 0xe5c3125f987c3af6ec83f5ebafb29eb5ab09756680bb3550c9fa06f3d42adb60 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.475-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.475-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 24 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.476-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 24, BlockPosition: 1, L1InfoTreeIndex: 19, PreviousBlockHash: 0x9f72edea0db31e5e493bde0229c8a2c3b07a0435068c4e6b4b8101255ae1c66c, Timestamp: 1731611359, MainnetExitRoot: 0x4da6a375fc25953721c4854d3b993b60b1b05987bd119a14fb0983d90f37c256, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xf728a1cba3ec1f6f3f84a7ea519dacf0ccaca1576fb08de64ef2c58af063dadb, Hash: 0xfdec1c0ac19f1c7432a90e09a97367a8902040ee7623f96a45c2bb1cace7a862 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.477-0600 DEBUG sync/evmdownloader.go:99 sending block 31 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.477-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 31, last block seen on L1 31 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.477-0600 INFO l1infotreesync/processor.go:432 block 24 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.477-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.477-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 25, blockHash: 0xa06363dd7a79b82f2ed088e48666f164319a2f772c674ccb016ec6882ec1c38d {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.477-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.477-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 25 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.478-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 25, BlockPosition: 1, L1InfoTreeIndex: 20, PreviousBlockHash: 0xe5c3125f987c3af6ec83f5ebafb29eb5ab09756680bb3550c9fa06f3d42adb60, Timestamp: 1731611360, MainnetExitRoot: 0x3c4ded6d1894046c2451b133083f9b5c34ae3c5cdab633f036953d6c19f8ea9a, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x9350786d7ac9665e37149f7324e534ae1850949cca432c64351ee6dd103e8b56, Hash: 0xbdaf0d624beafbc03b2a65ba67f14b12bf24fe24d0730dff0492196738ae6846 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.478-0600 INFO l1infotreesync/processor.go:432 block 25 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.478-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.478-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 26, blockHash: 0xf3101937fad4c6422e170f49739541da12bddb6f2b4e853f2af9998301164e7f {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.478-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.478-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 26 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.480-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 26, BlockPosition: 1, L1InfoTreeIndex: 21, PreviousBlockHash: 0xa06363dd7a79b82f2ed088e48666f164319a2f772c674ccb016ec6882ec1c38d, Timestamp: 1731611361, MainnetExitRoot: 0xd395e60baa243b1767eeff4de43ba38f24a906b3fb57556725e541012d3db08e, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x9ce0c4ec0681af19f0e6236b2794e3ab46f31850cd0e3555d014bf755f4a8fd2, Hash: 0x2fb993df109e330d09f240eec6fa6feb59e74243217affea1c1ebdb3ec5bd799 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.480-0600 INFO l1infotreesync/processor.go:432 block 26 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.480-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.480-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 27, blockHash: 0xb341cf115d3c74ef780dbc479c3b6126562a50021c75cc43691eb900ed5747fc {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.480-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.480-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 27 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.481-0600 DEBUG sync/evmdownloader.go:99 sending block 23 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.481-0600 DEBUG sync/evmdownloader.go:99 sending block 24 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.481-0600 DEBUG sync/evmdownloader.go:99 sending block 25 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.481-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 23, blockHash: 0x9f72edea0db31e5e493bde0229c8a2c3b07a0435068c4e6b4b8101255ae1c66c {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.481-0600 DEBUG sync/evmdownloader.go:99 sending block 26 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.481-0600 DEBUG sync/evmdownloader.go:99 sending block 27 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.481-0600 DEBUG sync/evmdownloader.go:99 sending block 28 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.481-0600 DEBUG sync/evmdownloader.go:99 sending block 29 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.481-0600 DEBUG sync/evmdownloader.go:99 sending block 30 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.481-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.481-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 30, last block seen on L1 30 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.481-0600 DEBUG runtime/asm_arm64.s:1222 syncer is not ready for the block 30 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.481-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 27, BlockPosition: 1, L1InfoTreeIndex: 22, PreviousBlockHash: 0xf3101937fad4c6422e170f49739541da12bddb6f2b4e853f2af9998301164e7f, Timestamp: 1731611362, MainnetExitRoot: 0xadb21f564b4fd07bb5edfbe7e8ab1b3e3c1c61bb3f2d33b2bbc53fb77c53c44d, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x39ec10983dd45ac6129d6ce842f7b2ad33e6b1e4e0c3fc02b9165be2aec5d047, Hash: 0x74336f9d45d14cd889861e5fe44484ff9481802d7c79c30dcaad07314538c87c {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.482-0600 INFO l1infotreesync/processor.go:432 block 27 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.482-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.482-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 28, blockHash: 0x8a1abe12f1f53020b012c5f71119c4e8d5cc1af6fd2afc799a22e4d50b465305 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.482-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.482-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 28 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.483-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 28, BlockPosition: 1, L1InfoTreeIndex: 23, PreviousBlockHash: 0xb341cf115d3c74ef780dbc479c3b6126562a50021c75cc43691eb900ed5747fc, Timestamp: 1731611363, MainnetExitRoot: 0xd6f3367c804d9c27a1361f4608c45ca4f0e0ddca726bcd6fdc204121a9f0bfc4, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x40faefd9fb8cea9f8173d0d017a5ca242534cd19c9030edfd9bca2039bf9e6e9, Hash: 0x68942daea84b6292569171c7013b0fdb464b77132963a11feb70feeae450b826 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.483-0600 INFO l1infotreesync/processor.go:432 block 28 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.483-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.483-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 29, blockHash: 0x6286afc638e430dfaefd8953677c4e1576b250e85eea1d09a02c5d79c5623861 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.483-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.483-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 29 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.484-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 23 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.484-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.484-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 24, blockHash: 0xe5c3125f987c3af6ec83f5ebafb29eb5ab09756680bb3550c9fa06f3d42adb60 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.484-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.485-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 29, BlockPosition: 1, L1InfoTreeIndex: 24, PreviousBlockHash: 0x8a1abe12f1f53020b012c5f71119c4e8d5cc1af6fd2afc799a22e4d50b465305, Timestamp: 1731611364, MainnetExitRoot: 0x9172f8ded71f3130525baf3143416f34b2c1e3002b0dc570e72f3ec4d515adb1, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xd22b2ac0df9fe7b8bdb97155c1a47960ebf0482c6a3600b7a2840f25808fe55a, Hash: 0xf4125d6ce521f56b18d763a272a0b91dcecbc7d964dbc8983f526ae8cf2b5575 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.485-0600 INFO l1infotreesync/processor.go:432 block 29 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.485-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.485-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 30, blockHash: 0x08f0446dc4952aad92eba5de0220b75bdd2e2b0804ad4de6aaa6bc31f286e246 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.485-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.485-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 30 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.485-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 24 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.485-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.485-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 25, blockHash: 0xa06363dd7a79b82f2ed088e48666f164319a2f772c674ccb016ec6882ec1c38d {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.486-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.487-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 30, BlockPosition: 1, L1InfoTreeIndex: 25, PreviousBlockHash: 0x6286afc638e430dfaefd8953677c4e1576b250e85eea1d09a02c5d79c5623861, Timestamp: 1731611365, MainnetExitRoot: 0x08f724098bc0a3b60f8f4b25a089f27e50b66f13efac8c5de0e8e2c3d52e2191, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x91ef596dd9cab5b7533fb15a126f90675604d554feaf7faf0cbd6ff7d1acf60a, Hash: 0x38eaa519c656805a816876b4e3a126f0337464c429b5549a49f28bd987db3afe {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.487-0600 INFO l1infotreesync/processor.go:432 block 30 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.487-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.487-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 31, blockHash: 0xf421fbdd8cff1445744cd13e79784f885e6afbd4ef53360ef7b231af9490f61e {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.487-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.487-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 31 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.487-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 25 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.487-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.487-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 26, blockHash: 0xf3101937fad4c6422e170f49739541da12bddb6f2b4e853f2af9998301164e7f {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.487-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.488-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 31, BlockPosition: 1, L1InfoTreeIndex: 26, PreviousBlockHash: 0x08f0446dc4952aad92eba5de0220b75bdd2e2b0804ad4de6aaa6bc31f286e246, Timestamp: 1731611366, MainnetExitRoot: 0x775e075238f468e689fe6c77a516cfb20c081f19cc9fce6d8de5f7a6a4d1f4eb, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x171dd2c8a9eec2e08226e6f8075bb22591f1f9a903605be00f6565aa39e39840, Hash: 0xbf136f1d482012c6b0f7674aaa85c778e5d289876bdb2658507c41e373df50f8 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.489-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 26 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.489-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.489-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 27, blockHash: 0xb341cf115d3c74ef780dbc479c3b6126562a50021c75cc43691eb900ed5747fc {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.489-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.490-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 27 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.490-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.490-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 28, blockHash: 0x8a1abe12f1f53020b012c5f71119c4e8d5cc1af6fd2afc799a22e4d50b465305 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.490-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.491-0600 INFO l1infotreesync/processor.go:432 block 31 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.491-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.492-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 28 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.492-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.492-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 29, blockHash: 0x6286afc638e430dfaefd8953677c4e1576b250e85eea1d09a02c5d79c5623861 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.492-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.492-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 31 to 31 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.493-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 29 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.493-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.493-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 30, blockHash: 0x08f0446dc4952aad92eba5de0220b75bdd2e2b0804ad4de6aaa6bc31f286e246 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.493-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.495-0600 DEBUG sync/evmdownloader.go:99 sending block 31 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.495-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 31, last block seen on L1 31 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.495-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 30 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.495-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.495-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 31, blockHash: 0xf421fbdd8cff1445744cd13e79784f885e6afbd4ef53360ef7b231af9490f61e {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.495-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.496-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 31 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.496-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.502-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x171dd2c8a9eec2e08226e6f8075bb22591f1f9a903605be00f6565aa39e39840 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.515-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 32 to 32 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:58.516-0600 DEBUG sync/evmdownloader.go:104 sending block 32 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:58.517-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 32, last block seen on L1 32 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:58.517-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 32, blockHash: 0x5c79e2476514e26eaf2a7397fcb6630c65fcbb8ca67b63024b5158ae63bc6470 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:58.517-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:58.517-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 32 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:58.517-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:58.561-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.561-0600 INFO runtime/asm_arm64.s:1222 GER 0x171dd2c8a9eec2e08226e6f8075bb22591f1f9a903605be00f6565aa39e39840 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.563-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x171dd2c8a9eec2e08226e6f8075bb22591f1f9a903605be00f6565aa39e39840 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.565-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x171dd2c8a9eec2e08226e6f8075bb22591f1f9a903605be00f6565aa39e39840 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.583-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x171dd2c8a9eec2e08226e6f8075bb22591f1f9a903605be00f6565aa39e39840 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.604-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x171dd2c8a9eec2e08226e6f8075bb22591f1f9a903605be00f6565aa39e39840 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.611-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 32 to 32 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.613-0600 DEBUG sync/evmdownloader.go:99 sending block 32 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.613-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 32, last block seen on L1 32 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.613-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 32, blockHash: 0xb65b585513d0af165f0417ee43bb869ce28252104c73b64dce25f4e4480167c0 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.613-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.613-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 32 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.614-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 32, BlockPosition: 1, L1InfoTreeIndex: 27, PreviousBlockHash: 0xf421fbdd8cff1445744cd13e79784f885e6afbd4ef53360ef7b231af9490f61e, Timestamp: 1731611367, MainnetExitRoot: 0x198e8abd825dda3d97744e28f065fa8605200131670ea34f10c3227c7f053b66, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x1a99fe3ba063b50d62cbb4c41e38aaefdf94372dc351ac2c5457a81671a0fa2d, Hash: 0x215491e66b89995a344b0e3dfc6859e70f831c36547170a7b51eff96776feaa9 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.615-0600 INFO l1infotreesync/processor.go:432 block 32 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.615-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.616-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 32 to 32 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.618-0600 DEBUG sync/evmdownloader.go:99 sending block 32 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.618-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 32, last block seen on L1 32 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.618-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 32, blockHash: 0xb65b585513d0af165f0417ee43bb869ce28252104c73b64dce25f4e4480167c0 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.618-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.620-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 32 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.620-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.623-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x1a99fe3ba063b50d62cbb4c41e38aaefdf94372dc351ac2c5457a81671a0fa2d {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.638-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 33 to 33 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:58.638-0600 DEBUG sync/evmdownloader.go:104 sending block 33 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:58.640-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 33, last block seen on L1 33 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:58.640-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 33, blockHash: 0xb8dbdea9ff3a903cd8ff0799bb25833a751326053b8b3d3f264f841b296c201b {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:58.640-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:58.640-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 33 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:58.640-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:58.683-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.683-0600 INFO runtime/asm_arm64.s:1222 GER 0x1a99fe3ba063b50d62cbb4c41e38aaefdf94372dc351ac2c5457a81671a0fa2d injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.685-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x1a99fe3ba063b50d62cbb4c41e38aaefdf94372dc351ac2c5457a81671a0fa2d already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.703-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x1a99fe3ba063b50d62cbb4c41e38aaefdf94372dc351ac2c5457a81671a0fa2d already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.715-0600 DEBUG helpers/reorg.go:31 reorging until block 31. Current block 32 (before reorg) {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.716-0600 DEBUG bridgesync/e2e_test.go:72 removing expectedBridge with depositCount 27 due to reorg {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.717-0600 DEBUG bridgesync/e2e_test.go:81 reorgs: 3 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.723-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x1a99fe3ba063b50d62cbb4c41e38aaefdf94372dc351ac2c5457a81671a0fa2d already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.743-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x1a99fe3ba063b50d62cbb4c41e38aaefdf94372dc351ac2c5457a81671a0fa2d already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.763-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x1a99fe3ba063b50d62cbb4c41e38aaefdf94372dc351ac2c5457a81671a0fa2d already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.783-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x1a99fe3ba063b50d62cbb4c41e38aaefdf94372dc351ac2c5457a81671a0fa2d already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.803-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x1a99fe3ba063b50d62cbb4c41e38aaefdf94372dc351ac2c5457a81671a0fa2d already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.823-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x1a99fe3ba063b50d62cbb4c41e38aaefdf94372dc351ac2c5457a81671a0fa2d already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.843-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x1a99fe3ba063b50d62cbb4c41e38aaefdf94372dc351ac2c5457a81671a0fa2d already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.863-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x1a99fe3ba063b50d62cbb4c41e38aaefdf94372dc351ac2c5457a81671a0fa2d already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.883-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x1a99fe3ba063b50d62cbb4c41e38aaefdf94372dc351ac2c5457a81671a0fa2d already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.892-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 33 to 33 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.894-0600 DEBUG sync/evmdownloader.go:99 sending block 33 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.894-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 33, last block seen on L1 33 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.894-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 33, blockHash: 0xfcfc205b89c7c341c12a78c5bb0af69c69f37e0627c17377bef3e70b4cf1c26a {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:58.894-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.894-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 33 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.896-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 33, BlockPosition: 1, L1InfoTreeIndex: 28, PreviousBlockHash: 0x2314b6fc9ba38e12d6606a74049e99d89aec29530e80dffff206ad0d00c6a4a3, Timestamp: 1731611369, MainnetExitRoot: 0xc651e16bda476830761a80223481211b2ab42e135de28f24384f8210fd0be4ad, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x0c0d2ddc1c29e6887b9a77dd73ebf2d57e90814161cc697b629f15125c9c0d6c, Hash: 0x4e2332cb08514cf3f2b18636b4cf39818119d755b36a9226fbd950eeb6dc23d3 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.896-0600 INFO l1infotreesync/processor.go:432 block 33 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.896-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.899-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 33 to 33 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.901-0600 DEBUG sync/evmdownloader.go:99 sending block 33 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.901-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 33, last block seen on L1 33 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.901-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 33, blockHash: 0xfcfc205b89c7c341c12a78c5bb0af69c69f37e0627c17377bef3e70b4cf1c26a {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:58.902-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.903-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x0c0d2ddc1c29e6887b9a77dd73ebf2d57e90814161cc697b629f15125c9c0d6c {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.905-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 33 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.905-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:58.921-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 34 to 34 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:58.921-0600 DEBUG sync/evmdownloader.go:104 sending block 34 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:58.922-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 34, last block seen on L1 34 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:58.922-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 34, blockHash: 0xcf6fe50c4eef5153ca184393d7bce620fc3960b034926f05e986e5f4b299344c {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:58.923-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:58.923-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 34 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:58.923-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:58.962-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.962-0600 INFO runtime/asm_arm64.s:1222 GER 0x0c0d2ddc1c29e6887b9a77dd73ebf2d57e90814161cc697b629f15125c9c0d6c injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.964-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x0c0d2ddc1c29e6887b9a77dd73ebf2d57e90814161cc697b629f15125c9c0d6c already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:58.983-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x0c0d2ddc1c29e6887b9a77dd73ebf2d57e90814161cc697b629f15125c9c0d6c already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.003-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x0c0d2ddc1c29e6887b9a77dd73ebf2d57e90814161cc697b629f15125c9c0d6c already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.023-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x0c0d2ddc1c29e6887b9a77dd73ebf2d57e90814161cc697b629f15125c9c0d6c already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.028-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 34 to 34 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:59.030-0600 DEBUG sync/evmdownloader.go:99 sending block 34 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:59.030-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 34, last block seen on L1 34 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:59.030-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 34, blockHash: 0xfd4c968b031d8a3ac1fb43e066dc2f3d005f364b0ae4bf195cf1d2e2f15844d8 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:59.031-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.031-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 34 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.032-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 34, BlockPosition: 1, L1InfoTreeIndex: 29, PreviousBlockHash: 0xfcfc205b89c7c341c12a78c5bb0af69c69f37e0627c17377bef3e70b4cf1c26a, Timestamp: 1731611370, MainnetExitRoot: 0x8bd788d0548db13a85f341bb4b2d7a2b5100a5a94ccb2bb1e3fd4b06a0c0eb40, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x3b401241a322d5c01a789d4577e937c37590618da59d71d7c4a9f69f887140c9, Hash: 0xf34d2580794df43b432919a555805cfc3cb8fbc519235d57224e27c4f4b14449 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.032-0600 INFO l1infotreesync/processor.go:432 block 34 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.032-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.033-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 34 to 34 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:59.035-0600 DEBUG sync/evmdownloader.go:99 sending block 34 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:59.035-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 34, last block seen on L1 34 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:59.035-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 34, blockHash: 0xfd4c968b031d8a3ac1fb43e066dc2f3d005f364b0ae4bf195cf1d2e2f15844d8 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:59.035-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:59.037-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 34 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:59.037-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:59.043-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x3b401241a322d5c01a789d4577e937c37590618da59d71d7c4a9f69f887140c9 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.054-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 35 to 35 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:59.054-0600 DEBUG sync/evmdownloader.go:104 sending block 35 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:59.055-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 35, last block seen on L1 35 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:59.055-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 35, blockHash: 0x7ddb6a992686a55f87c4167249362322ecf6be8851d6f81440d18f29d02fb3d5 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:59.055-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:59.056-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 35 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:59.056-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:59.102-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.102-0600 INFO runtime/asm_arm64.s:1222 GER 0x3b401241a322d5c01a789d4577e937c37590618da59d71d7c4a9f69f887140c9 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.104-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x3b401241a322d5c01a789d4577e937c37590618da59d71d7c4a9f69f887140c9 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.123-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x3b401241a322d5c01a789d4577e937c37590618da59d71d7c4a9f69f887140c9 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.143-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x3b401241a322d5c01a789d4577e937c37590618da59d71d7c4a9f69f887140c9 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.163-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x3b401241a322d5c01a789d4577e937c37590618da59d71d7c4a9f69f887140c9 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.166-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 35 to 35 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:59.166-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 35 to 35 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:59.168-0600 DEBUG sync/evmdownloader.go:99 sending block 35 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:59.168-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 35, last block seen on L1 35 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:59.168-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 35, blockHash: 0x6bcdd72b95119628f7163a1b5c317ff2406058cb1506ee63efe263c3a8c58d29 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:59.168-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.168-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 35 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.168-0600 DEBUG sync/evmdownloader.go:99 sending block 35 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:59.168-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 35, last block seen on L1 35 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:59.168-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 35, blockHash: 0x6bcdd72b95119628f7163a1b5c317ff2406058cb1506ee63efe263c3a8c58d29 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:59.169-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:59.169-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 35, BlockPosition: 1, L1InfoTreeIndex: 30, PreviousBlockHash: 0xfd4c968b031d8a3ac1fb43e066dc2f3d005f364b0ae4bf195cf1d2e2f15844d8, Timestamp: 1731611371, MainnetExitRoot: 0x804bdaf8c395577c850c055818f5911934553867017ab5d78da1b9463b958285, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x0b1e6328bf0473997dfdc0a7377cec91c0925cd01c5e5827937ac513439d8364, Hash: 0x9418bdb790c0723b57af0bc8e80a718d9fe8c23eca2bc47a956b9042de5c42be {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.170-0600 INFO l1infotreesync/processor.go:432 block 35 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.170-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.170-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 35 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:59.170-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:59.183-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x0b1e6328bf0473997dfdc0a7377cec91c0925cd01c5e5827937ac513439d8364 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.197-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 36 to 36 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:59.197-0600 DEBUG sync/evmdownloader.go:104 sending block 36 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:59.198-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 36, last block seen on L1 36 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:59.198-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 36, blockHash: 0x71b5ed51aa79aa539398d571504fd70215ece2cff1a5ab6c04769639ff6c2944 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:59.198-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:59.198-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 36 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:59.198-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:59.242-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.242-0600 INFO runtime/asm_arm64.s:1222 GER 0x0b1e6328bf0473997dfdc0a7377cec91c0925cd01c5e5827937ac513439d8364 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.244-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x0b1e6328bf0473997dfdc0a7377cec91c0925cd01c5e5827937ac513439d8364 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.263-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x0b1e6328bf0473997dfdc0a7377cec91c0925cd01c5e5827937ac513439d8364 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.283-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x0b1e6328bf0473997dfdc0a7377cec91c0925cd01c5e5827937ac513439d8364 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.303-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x0b1e6328bf0473997dfdc0a7377cec91c0925cd01c5e5827937ac513439d8364 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.306-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 36 to 36 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:59.308-0600 DEBUG sync/evmdownloader.go:99 sending block 36 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:59.308-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 36, last block seen on L1 36 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:59.308-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 36, blockHash: 0x5a6e875f5fbad19eaddff829852b45c3d11a2022d233ad60f9df0d12e607a657 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:59.308-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.308-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 36 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.309-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 36, BlockPosition: 1, L1InfoTreeIndex: 31, PreviousBlockHash: 0x6bcdd72b95119628f7163a1b5c317ff2406058cb1506ee63efe263c3a8c58d29, Timestamp: 1731611372, MainnetExitRoot: 0xf8d3b7afce6156fdee9d21463ba84363385037a5ff8b729164b201cba5b4d34c, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xf108eba8fa3d6da4e1d0082d2d2cc68ce593c2d8e71d03eff7a6ce3ef5d23979, Hash: 0x28f72ff77abbb00f74d1ed186f666cebb71f9adc56ef7d1d1386256b0bdb438e {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.310-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 36 to 36 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:59.310-0600 INFO l1infotreesync/processor.go:432 block 36 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.310-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.312-0600 DEBUG sync/evmdownloader.go:99 sending block 36 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:59.312-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 36, last block seen on L1 36 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:59.312-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 36, blockHash: 0x5a6e875f5fbad19eaddff829852b45c3d11a2022d233ad60f9df0d12e607a657 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:59.312-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:59.313-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 36 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:59.313-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:59.323-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0xf108eba8fa3d6da4e1d0082d2d2cc68ce593c2d8e71d03eff7a6ce3ef5d23979 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.339-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 37 to 37 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:59.340-0600 DEBUG sync/evmdownloader.go:104 sending block 37 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:59.341-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 37, last block seen on L1 37 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:59.341-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 37, blockHash: 0x6115d722215d4823977fcf78bc84a0a754e7156e53c87b26cd374a825d8fba72 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:59.341-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:59.341-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 37 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:59.341-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:59.382-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.382-0600 INFO runtime/asm_arm64.s:1222 GER 0xf108eba8fa3d6da4e1d0082d2d2cc68ce593c2d8e71d03eff7a6ce3ef5d23979 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.384-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xf108eba8fa3d6da4e1d0082d2d2cc68ce593c2d8e71d03eff7a6ce3ef5d23979 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.403-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xf108eba8fa3d6da4e1d0082d2d2cc68ce593c2d8e71d03eff7a6ce3ef5d23979 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.423-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xf108eba8fa3d6da4e1d0082d2d2cc68ce593c2d8e71d03eff7a6ce3ef5d23979 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.442-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 37 to 37 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:59.442-0600 DEBUG runtime/asm_arm64.s:1222 syncer is not ready for the block 37 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.443-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 37 to 37 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:59.444-0600 DEBUG sync/evmdownloader.go:99 sending block 37 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:59.444-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 37, last block seen on L1 37 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:59.444-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 37, blockHash: 0x26db51225efe40a03c540e5fc11ca74019747b130af442cfd58bae793399c416 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:59.444-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.444-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 37 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.445-0600 DEBUG sync/evmdownloader.go:99 sending block 37 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:59.445-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 37, last block seen on L1 37 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:59.445-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 37, blockHash: 0x26db51225efe40a03c540e5fc11ca74019747b130af442cfd58bae793399c416 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:59.445-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:59.446-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 37, BlockPosition: 1, L1InfoTreeIndex: 32, PreviousBlockHash: 0x5a6e875f5fbad19eaddff829852b45c3d11a2022d233ad60f9df0d12e607a657, Timestamp: 1731611373, MainnetExitRoot: 0x751b561b85192838a62733b633482ae345261a49fa618be7dd86dbcdeddfeeb6, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x5388ac34eec67a4d7ba5c5437e3813520c6419b216ec389a0f33dd4352b58f84, Hash: 0xb436e0e78966dc5f17ddf3a82387dd37e73dda83bb620204067c8967a5cd6cbf {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.446-0600 INFO l1infotreesync/processor.go:432 block 37 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.446-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.447-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 37 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:59.447-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:59.462-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x5388ac34eec67a4d7ba5c5437e3813520c6419b216ec389a0f33dd4352b58f84 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.472-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 38 to 38 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:59.473-0600 DEBUG sync/evmdownloader.go:104 sending block 38 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:59.474-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 38, last block seen on L1 38 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:59.474-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 38, blockHash: 0x315aa683af4080b34d168af1c4630448060564abacbdd61bce248208045517b4 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:59.474-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:59.474-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 38 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:59.474-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:59.520-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.520-0600 INFO runtime/asm_arm64.s:1222 GER 0x5388ac34eec67a4d7ba5c5437e3813520c6419b216ec389a0f33dd4352b58f84 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.522-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x5388ac34eec67a4d7ba5c5437e3813520c6419b216ec389a0f33dd4352b58f84 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.524-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x5388ac34eec67a4d7ba5c5437e3813520c6419b216ec389a0f33dd4352b58f84 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.543-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x5388ac34eec67a4d7ba5c5437e3813520c6419b216ec389a0f33dd4352b58f84 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.563-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x5388ac34eec67a4d7ba5c5437e3813520c6419b216ec389a0f33dd4352b58f84 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.581-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 38 to 38 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:59.583-0600 DEBUG runtime/asm_arm64.s:1222 syncer is not ready for the block 38 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.584-0600 DEBUG sync/evmdownloader.go:99 sending block 38 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:59.584-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 38, last block seen on L1 38 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:59.584-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 38, blockHash: 0x054d0bc7503d40986d0f45622ae75d4e95545ba1e2f3f006d81a320e47ad5401 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:59.584-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.584-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 38 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.585-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 38, BlockPosition: 1, L1InfoTreeIndex: 33, PreviousBlockHash: 0x26db51225efe40a03c540e5fc11ca74019747b130af442cfd58bae793399c416, Timestamp: 1731611374, MainnetExitRoot: 0xff1f553aa2b4e1dd8a40cdffacc3765447fa8a7246f44449e102debed442d162, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x7e94a455b8791faf7689714a76d13ab80b9810ec298a5e150bbd012f3dc0b60f, Hash: 0x0e3dbdec110220548819866e7e7b4360211d4fd83144e75d6c885449127ed3fe {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.585-0600 INFO l1infotreesync/processor.go:432 block 38 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.585-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.587-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 38 to 38 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:59.589-0600 DEBUG sync/evmdownloader.go:99 sending block 38 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:59.589-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 38, last block seen on L1 38 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:59.589-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 38, blockHash: 0x054d0bc7503d40986d0f45622ae75d4e95545ba1e2f3f006d81a320e47ad5401 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:59.589-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:59.590-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 38 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:59.590-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:59.602-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x7e94a455b8791faf7689714a76d13ab80b9810ec298a5e150bbd012f3dc0b60f {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.615-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 39 to 39 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:59.616-0600 DEBUG sync/evmdownloader.go:104 sending block 39 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:59.617-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 39, last block seen on L1 39 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:59.617-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 39, blockHash: 0xa71e1fa865cf492a9810dadab1441edbb3f0171ecd13e79ab3c3604734729915 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:59.617-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:59.617-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 39 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:59.617-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:59.661-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.661-0600 INFO runtime/asm_arm64.s:1222 GER 0x7e94a455b8791faf7689714a76d13ab80b9810ec298a5e150bbd012f3dc0b60f injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.663-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x7e94a455b8791faf7689714a76d13ab80b9810ec298a5e150bbd012f3dc0b60f already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.665-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x7e94a455b8791faf7689714a76d13ab80b9810ec298a5e150bbd012f3dc0b60f already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.683-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x7e94a455b8791faf7689714a76d13ab80b9810ec298a5e150bbd012f3dc0b60f already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.703-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x7e94a455b8791faf7689714a76d13ab80b9810ec298a5e150bbd012f3dc0b60f already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.717-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 39 to 39 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:59.719-0600 DEBUG sync/evmdownloader.go:99 sending block 39 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:59.719-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 39, last block seen on L1 39 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:59.719-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 39, blockHash: 0xc53ae3ab04d87b96160f7d9222dbd19aea5404c06b8671573da238ff99b2eeec {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:59.719-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.719-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 39 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.720-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 39 to 39 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:59.721-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 39, BlockPosition: 1, L1InfoTreeIndex: 34, PreviousBlockHash: 0x054d0bc7503d40986d0f45622ae75d4e95545ba1e2f3f006d81a320e47ad5401, Timestamp: 1731611375, MainnetExitRoot: 0xd9954ea555698394775b3310f8302a0b0b1e4971507706103f4b2b54df308bb6, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x1bd956bf631d98ac6ee9475b9bc5f6189a5d7dfa4ca0467532d9d9d9524e3c76, Hash: 0x0b221d07a47a678a88290b7cbe8aa3ac8ecfbd231a36cb0d2e7be7a661c72af5 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.721-0600 INFO l1infotreesync/processor.go:432 block 39 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.721-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.722-0600 DEBUG sync/evmdownloader.go:99 sending block 39 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:59.722-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 39, last block seen on L1 39 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:59.722-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 39, blockHash: 0xc53ae3ab04d87b96160f7d9222dbd19aea5404c06b8671573da238ff99b2eeec {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:59.722-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:59.723-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x1bd956bf631d98ac6ee9475b9bc5f6189a5d7dfa4ca0467532d9d9d9524e3c76 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.724-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 39 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:59.724-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:59.738-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 40 to 40 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:59.738-0600 DEBUG sync/evmdownloader.go:104 sending block 40 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:59.740-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 40, last block seen on L1 40 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:59.740-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 40, blockHash: 0xb6af74f56dfaf61256eb692d5094d1b8a0ed1395a686f5c7c24d099d415d50ab {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:59.740-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:59.740-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 40 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:59.740-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:59.782-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.782-0600 INFO runtime/asm_arm64.s:1222 GER 0x1bd956bf631d98ac6ee9475b9bc5f6189a5d7dfa4ca0467532d9d9d9524e3c76 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.784-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x1bd956bf631d98ac6ee9475b9bc5f6189a5d7dfa4ca0467532d9d9d9524e3c76 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.803-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x1bd956bf631d98ac6ee9475b9bc5f6189a5d7dfa4ca0467532d9d9d9524e3c76 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.823-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x1bd956bf631d98ac6ee9475b9bc5f6189a5d7dfa4ca0467532d9d9d9524e3c76 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.843-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x1bd956bf631d98ac6ee9475b9bc5f6189a5d7dfa4ca0467532d9d9d9524e3c76 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.855-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 40 to 40 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:59.857-0600 DEBUG sync/evmdownloader.go:99 sending block 40 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:59.857-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 40, last block seen on L1 40 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:59.857-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 40, blockHash: 0x28bdbdd490b45e81438929e6c3e255662b755e5d44efc9ac93552ddfa98771a8 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:59.858-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.858-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 40 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.859-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 40, BlockPosition: 1, L1InfoTreeIndex: 35, PreviousBlockHash: 0xc53ae3ab04d87b96160f7d9222dbd19aea5404c06b8671573da238ff99b2eeec, Timestamp: 1731611376, MainnetExitRoot: 0x4ae16136bd672bac4d89a996d58313bf2e92cb8fed566b10ca9f28fdf6fda9a5, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x54c77bedc7af94d5187bf1ac4dee4bfdb8b29efd7ab1ff38a0a8fdd320620e31, Hash: 0xa5851d3f95cfd23b633d374d91387fad8588d50eaf5dfe20b38329170598d4fc {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.859-0600 INFO l1infotreesync/processor.go:432 block 40 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.859-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.863-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x54c77bedc7af94d5187bf1ac4dee4bfdb8b29efd7ab1ff38a0a8fdd320620e31 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.863-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 40 to 40 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:59.866-0600 DEBUG sync/evmdownloader.go:99 sending block 40 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:59.866-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 40, last block seen on L1 40 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:59.866-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 40, blockHash: 0x28bdbdd490b45e81438929e6c3e255662b755e5d44efc9ac93552ddfa98771a8 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:59.866-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:59.868-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 40 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:59.868-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:08:59.881-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 41 to 41 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:59.881-0600 DEBUG sync/evmdownloader.go:104 sending block 41 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:59.883-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 41, last block seen on L1 41 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:59.883-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 41, blockHash: 0x8b4ee4cd1732ee03cedc9321cf84387c8b22fcbd80307e9b25dc114482e0246e {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:08:59.883-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:59.883-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 41 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:59.883-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:08:59.922-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.922-0600 INFO runtime/asm_arm64.s:1222 GER 0x54c77bedc7af94d5187bf1ac4dee4bfdb8b29efd7ab1ff38a0a8fdd320620e31 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.924-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x54c77bedc7af94d5187bf1ac4dee4bfdb8b29efd7ab1ff38a0a8fdd320620e31 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.943-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x54c77bedc7af94d5187bf1ac4dee4bfdb8b29efd7ab1ff38a0a8fdd320620e31 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.964-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x54c77bedc7af94d5187bf1ac4dee4bfdb8b29efd7ab1ff38a0a8fdd320620e31 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.983-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x54c77bedc7af94d5187bf1ac4dee4bfdb8b29efd7ab1ff38a0a8fdd320620e31 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.990-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 41 to 41 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:59.992-0600 DEBUG sync/evmdownloader.go:99 sending block 41 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:59.992-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 41, last block seen on L1 41 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:59.992-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 41, blockHash: 0xef3cf74ec90bc3b64ffc591d7c10d103f0cd856a82b326da2d456bd86974d5e0 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:08:59.992-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.992-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 41 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.994-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 41, BlockPosition: 1, L1InfoTreeIndex: 36, PreviousBlockHash: 0x28bdbdd490b45e81438929e6c3e255662b755e5d44efc9ac93552ddfa98771a8, Timestamp: 1731611377, MainnetExitRoot: 0x2df83249320fca5148b09b8019095045951ba7dd8416df2b7c714cfd7ecabc13, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xddb7538d0a02e59a0e8a9758b48c2dc060ac9c3c8ba6d6c88d0000f6358e44ea, Hash: 0x46b3e0ed9a90356b334b7a6b58903b4377ab60d8924bd27463ee4c7defc6dceb {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.994-0600 INFO l1infotreesync/processor.go:432 block 41 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.994-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:08:59.997-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 41 to 41 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:59.999-0600 DEBUG sync/evmdownloader.go:99 sending block 41 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:59.999-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 41, last block seen on L1 41 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:59.999-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 41, blockHash: 0xef3cf74ec90bc3b64ffc591d7c10d103f0cd856a82b326da2d456bd86974d5e0 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:08:59.999-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.001-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 41 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.001-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.003-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0xddb7538d0a02e59a0e8a9758b48c2dc060ac9c3c8ba6d6c88d0000f6358e44ea {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.014-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 42 to 42 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:00.014-0600 DEBUG sync/evmdownloader.go:104 sending block 42 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:00.015-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 42, last block seen on L1 42 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:00.015-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 42, blockHash: 0x559b72fad3adfdbe245e9e30a3c0c6d4edf1affd3db6b7437a956992bf4804f7 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:00.015-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:00.016-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 42 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:00.016-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:00.062-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.062-0600 INFO runtime/asm_arm64.s:1222 GER 0xddb7538d0a02e59a0e8a9758b48c2dc060ac9c3c8ba6d6c88d0000f6358e44ea injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.064-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xddb7538d0a02e59a0e8a9758b48c2dc060ac9c3c8ba6d6c88d0000f6358e44ea already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.083-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xddb7538d0a02e59a0e8a9758b48c2dc060ac9c3c8ba6d6c88d0000f6358e44ea already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.094-0600 DEBUG helpers/reorg.go:31 reorging until block 40. Current block 41 (before reorg) {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.096-0600 DEBUG bridgesync/e2e_test.go:72 removing expectedBridge with depositCount 36 due to reorg {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.096-0600 DEBUG bridgesync/e2e_test.go:81 reorgs: 4 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.103-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xddb7538d0a02e59a0e8a9758b48c2dc060ac9c3c8ba6d6c88d0000f6358e44ea already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.123-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xddb7538d0a02e59a0e8a9758b48c2dc060ac9c3c8ba6d6c88d0000f6358e44ea already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.143-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xddb7538d0a02e59a0e8a9758b48c2dc060ac9c3c8ba6d6c88d0000f6358e44ea already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.163-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xddb7538d0a02e59a0e8a9758b48c2dc060ac9c3c8ba6d6c88d0000f6358e44ea already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.183-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xddb7538d0a02e59a0e8a9758b48c2dc060ac9c3c8ba6d6c88d0000f6358e44ea already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.203-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xddb7538d0a02e59a0e8a9758b48c2dc060ac9c3c8ba6d6c88d0000f6358e44ea already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.223-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xddb7538d0a02e59a0e8a9758b48c2dc060ac9c3c8ba6d6c88d0000f6358e44ea already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.244-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xddb7538d0a02e59a0e8a9758b48c2dc060ac9c3c8ba6d6c88d0000f6358e44ea already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.263-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xddb7538d0a02e59a0e8a9758b48c2dc060ac9c3c8ba6d6c88d0000f6358e44ea already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.272-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 42 to 42 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.274-0600 DEBUG sync/evmdownloader.go:99 sending block 42 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.274-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 42, last block seen on L1 42 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.274-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 42, blockHash: 0x643228e1aeb762af52ca3e85c285e606ab8c5bd40b3bc0a60cf2de4d7579e703 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.275-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.275-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 42 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.276-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 42, BlockPosition: 1, L1InfoTreeIndex: 37, PreviousBlockHash: 0x4306eaf0771012edecdac25f514ec045e791e88a0e134256300b6d6b679070ed, Timestamp: 1731611379, MainnetExitRoot: 0xa475bdf0f8627bc0aef0cb7d1d2a1fe608f9eae964f242e607ed5ce9270e3dc6, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x7e5d04bb2ef8185b83cb84f333c2ac6aeb7ddfb732a3f52c29f9c5abedd98131, Hash: 0xde201abe345826f72baea12c54c80d479d3c6424bb2d2bbb7dae5531ba58ea25 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.276-0600 INFO l1infotreesync/processor.go:432 block 42 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.276-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.281-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 42 to 42 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.283-0600 DEBUG sync/evmdownloader.go:99 sending block 42 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.283-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 42, last block seen on L1 42 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.283-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 42, blockHash: 0x643228e1aeb762af52ca3e85c285e606ab8c5bd40b3bc0a60cf2de4d7579e703 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.283-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.283-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x7e5d04bb2ef8185b83cb84f333c2ac6aeb7ddfb732a3f52c29f9c5abedd98131 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.285-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 42 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.285-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.297-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 43 to 43 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:00.297-0600 DEBUG sync/evmdownloader.go:104 sending block 43 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:00.298-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 43, last block seen on L1 43 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:00.298-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 43, blockHash: 0xd44d6ae62e45b24b10e1cefe360fa35e7fef8ad93f049743aa94ed8e29bdf4c7 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:00.298-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:00.298-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 43 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:00.298-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:00.342-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.342-0600 INFO runtime/asm_arm64.s:1222 GER 0x7e5d04bb2ef8185b83cb84f333c2ac6aeb7ddfb732a3f52c29f9c5abedd98131 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.344-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x7e5d04bb2ef8185b83cb84f333c2ac6aeb7ddfb732a3f52c29f9c5abedd98131 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.363-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x7e5d04bb2ef8185b83cb84f333c2ac6aeb7ddfb732a3f52c29f9c5abedd98131 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.383-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x7e5d04bb2ef8185b83cb84f333c2ac6aeb7ddfb732a3f52c29f9c5abedd98131 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.403-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x7e5d04bb2ef8185b83cb84f333c2ac6aeb7ddfb732a3f52c29f9c5abedd98131 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.409-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 43 to 43 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.411-0600 DEBUG sync/evmdownloader.go:99 sending block 43 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.411-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 43, last block seen on L1 43 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.411-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 43, blockHash: 0x6f42bb4f3e4b1360ba816ca52e5670959b691d16a5be606fa76e7a2c99d3a1d7 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.412-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.412-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 43 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.413-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 43, BlockPosition: 1, L1InfoTreeIndex: 38, PreviousBlockHash: 0x643228e1aeb762af52ca3e85c285e606ab8c5bd40b3bc0a60cf2de4d7579e703, Timestamp: 1731611380, MainnetExitRoot: 0xf45568cb752af432e98034f4551c7d749d4eef5f7238f7db8e14f0478e4d7b95, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x4c89f8fdb0d54fa07ef17f6ac8505713591ecaa2ef6117b3bd1e3fa399bd1b44, Hash: 0x949bc079d5498be67d7a5f3e66155bb2742010725a3a28f8191a56a233085549 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.413-0600 INFO l1infotreesync/processor.go:432 block 43 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.413-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.414-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 43 to 43 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.416-0600 DEBUG sync/evmdownloader.go:99 sending block 43 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.416-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 43, last block seen on L1 43 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.416-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 43, blockHash: 0x6f42bb4f3e4b1360ba816ca52e5670959b691d16a5be606fa76e7a2c99d3a1d7 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.417-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.418-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 43 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.418-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.423-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x4c89f8fdb0d54fa07ef17f6ac8505713591ecaa2ef6117b3bd1e3fa399bd1b44 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.440-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 44 to 44 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:00.440-0600 DEBUG sync/evmdownloader.go:104 sending block 44 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:00.441-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 44, last block seen on L1 44 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:00.441-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 44, blockHash: 0x80bd9de78fbcb00768326e1648682a43813ac2cc33f826b15c3b0e1b06210573 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:00.441-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:00.441-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 44 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:00.441-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:00.465-0600 DEBUG sync/evmdriver.go:104 handleReorg from block: 32 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.465-0600 DEBUG sync/evmdriver.go:104 handleReorg from block: 32 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.465-0600 DEBUG bridgesync/processor.go:238 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.465-0600 DEBUG sync/evmdownloader.go:79 closing channel {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.466-0600 INFO sync/evmdriver.go:89 Starting sync... lastProcessedBlock 31 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.466-0600 DEBUG l1infotreesync/processor.go:286 last info: BlockNumber: 31, BlockPosition: 1, L1InfoTreeIndex: 26, PreviousBlockHash: 0x08f0446dc4952aad92eba5de0220b75bdd2e2b0804ad4de6aaa6bc31f286e246, Timestamp: 1731611366, MainnetExitRoot: 0x775e075238f468e689fe6c77a516cfb20c081f19cc9fce6d8de5f7a6a4d1f4eb, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x171dd2c8a9eec2e08226e6f8075bb22591f1f9a903605be00f6565aa39e39840, Hash: 0xbf136f1d482012c6b0f7674aaa85c778e5d289876bdb2658507c41e373df50f8 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.466-0600 DEBUG l1infotreesync/processor.go:300 reorged until block 32 (included) {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.466-0600 DEBUG l1infotreesync/processor.go:302 last info: BlockNumber: 31, BlockPosition: 1, L1InfoTreeIndex: 26, PreviousBlockHash: 0x08f0446dc4952aad92eba5de0220b75bdd2e2b0804ad4de6aaa6bc31f286e246, Timestamp: 1731611366, MainnetExitRoot: 0x775e075238f468e689fe6c77a516cfb20c081f19cc9fce6d8de5f7a6a4d1f4eb, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x171dd2c8a9eec2e08226e6f8075bb22591f1f9a903605be00f6565aa39e39840, Hash: 0xbf136f1d482012c6b0f7674aaa85c778e5d289876bdb2658507c41e373df50f8 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.466-0600 DEBUG l1infotreesync/processor.go:306 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx L1INFO xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.466-0600 INFO sync/evmdriver.go:89 Starting sync... lastProcessedBlock 31 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.468-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 32 to 42 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.477-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 32 to 42 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.482-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.482-0600 INFO runtime/asm_arm64.s:1222 GER 0x4c89f8fdb0d54fa07ef17f6ac8505713591ecaa2ef6117b3bd1e3fa399bd1b44 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.483-0600 DEBUG runtime/asm_arm64.s:1222 syncer is not ready for the block 43 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.488-0600 DEBUG sync/evmdownloader.go:99 sending block 32 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.488-0600 DEBUG sync/evmdownloader.go:99 sending block 33 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.488-0600 DEBUG sync/evmdownloader.go:99 sending block 34 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.488-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 32, blockHash: 0x2314b6fc9ba38e12d6606a74049e99d89aec29530e80dffff206ad0d00c6a4a3 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.488-0600 DEBUG sync/evmdownloader.go:99 sending block 35 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.488-0600 DEBUG sync/evmdownloader.go:99 sending block 36 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.488-0600 DEBUG sync/evmdownloader.go:99 sending block 37 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.488-0600 DEBUG sync/evmdownloader.go:99 sending block 38 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.488-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.488-0600 DEBUG sync/evmdownloader.go:99 sending block 39 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.488-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 32 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.488-0600 DEBUG sync/evmdownloader.go:99 sending block 40 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.488-0600 DEBUG sync/evmdownloader.go:99 sending block 41 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.488-0600 DEBUG sync/evmdownloader.go:99 sending block 42 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.488-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 43 to 43 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.490-0600 DEBUG sync/evmdownloader.go:99 sending block 43 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.490-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 43, last block seen on L1 43 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.491-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 32, BlockPosition: 1, L1InfoTreeIndex: 27, PreviousBlockHash: 0xf421fbdd8cff1445744cd13e79784f885e6afbd4ef53360ef7b231af9490f61e, Timestamp: 1731611368, MainnetExitRoot: 0x7b231d7209f135898464e0589d34059cb2def8d4989a88c6ec0dd577154aa176, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xea2c96c28ae4f5dd3c1b5beffad8109a83c2db1695a600f7a2f84fd7714e978c, Hash: 0x16e0c89e8d5569834f3449f9aaf7e15ba36647b323f33c0602c9832d9d0097c3 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.491-0600 INFO l1infotreesync/processor.go:432 block 32 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.491-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.491-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 33, blockHash: 0xfcfc205b89c7c341c12a78c5bb0af69c69f37e0627c17377bef3e70b4cf1c26a {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.491-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.491-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 33 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.493-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 33, BlockPosition: 1, L1InfoTreeIndex: 28, PreviousBlockHash: 0x2314b6fc9ba38e12d6606a74049e99d89aec29530e80dffff206ad0d00c6a4a3, Timestamp: 1731611369, MainnetExitRoot: 0xc651e16bda476830761a80223481211b2ab42e135de28f24384f8210fd0be4ad, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x0c0d2ddc1c29e6887b9a77dd73ebf2d57e90814161cc697b629f15125c9c0d6c, Hash: 0x4e2332cb08514cf3f2b18636b4cf39818119d755b36a9226fbd950eeb6dc23d3 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.493-0600 INFO l1infotreesync/processor.go:432 block 33 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.493-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.493-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 34, blockHash: 0xfd4c968b031d8a3ac1fb43e066dc2f3d005f364b0ae4bf195cf1d2e2f15844d8 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.493-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.493-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 34 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.494-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 34, BlockPosition: 1, L1InfoTreeIndex: 29, PreviousBlockHash: 0xfcfc205b89c7c341c12a78c5bb0af69c69f37e0627c17377bef3e70b4cf1c26a, Timestamp: 1731611370, MainnetExitRoot: 0x8bd788d0548db13a85f341bb4b2d7a2b5100a5a94ccb2bb1e3fd4b06a0c0eb40, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x3b401241a322d5c01a789d4577e937c37590618da59d71d7c4a9f69f887140c9, Hash: 0xf34d2580794df43b432919a555805cfc3cb8fbc519235d57224e27c4f4b14449 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.495-0600 INFO l1infotreesync/processor.go:432 block 34 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.495-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.495-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 35, blockHash: 0x6bcdd72b95119628f7163a1b5c317ff2406058cb1506ee63efe263c3a8c58d29 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.495-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.495-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 35 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.496-0600 DEBUG sync/evmdownloader.go:99 sending block 32 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.496-0600 DEBUG sync/evmdownloader.go:99 sending block 33 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.496-0600 DEBUG sync/evmdownloader.go:99 sending block 34 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.496-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 32, blockHash: 0x2314b6fc9ba38e12d6606a74049e99d89aec29530e80dffff206ad0d00c6a4a3 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.496-0600 DEBUG sync/evmdownloader.go:99 sending block 35 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.496-0600 DEBUG sync/evmdownloader.go:99 sending block 36 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.496-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 35, BlockPosition: 1, L1InfoTreeIndex: 30, PreviousBlockHash: 0xfd4c968b031d8a3ac1fb43e066dc2f3d005f364b0ae4bf195cf1d2e2f15844d8, Timestamp: 1731611371, MainnetExitRoot: 0x804bdaf8c395577c850c055818f5911934553867017ab5d78da1b9463b958285, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x0b1e6328bf0473997dfdc0a7377cec91c0925cd01c5e5827937ac513439d8364, Hash: 0x9418bdb790c0723b57af0bc8e80a718d9fe8c23eca2bc47a956b9042de5c42be {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.496-0600 DEBUG sync/evmdownloader.go:99 sending block 37 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.496-0600 DEBUG sync/evmdownloader.go:99 sending block 38 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.496-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.496-0600 DEBUG sync/evmdownloader.go:99 sending block 39 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.496-0600 DEBUG sync/evmdownloader.go:99 sending block 40 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.496-0600 DEBUG sync/evmdownloader.go:99 sending block 41 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.496-0600 DEBUG sync/evmdownloader.go:99 sending block 42 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.496-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 43 to 43 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.496-0600 INFO l1infotreesync/processor.go:432 block 35 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.496-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.496-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 36, blockHash: 0x5a6e875f5fbad19eaddff829852b45c3d11a2022d233ad60f9df0d12e607a657 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.497-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.497-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 36 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.498-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 36, BlockPosition: 1, L1InfoTreeIndex: 31, PreviousBlockHash: 0x6bcdd72b95119628f7163a1b5c317ff2406058cb1506ee63efe263c3a8c58d29, Timestamp: 1731611372, MainnetExitRoot: 0xf8d3b7afce6156fdee9d21463ba84363385037a5ff8b729164b201cba5b4d34c, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xf108eba8fa3d6da4e1d0082d2d2cc68ce593c2d8e71d03eff7a6ce3ef5d23979, Hash: 0x28f72ff77abbb00f74d1ed186f666cebb71f9adc56ef7d1d1386256b0bdb438e {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.498-0600 INFO l1infotreesync/processor.go:432 block 36 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.498-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.498-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 37, blockHash: 0x26db51225efe40a03c540e5fc11ca74019747b130af442cfd58bae793399c416 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.498-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.498-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 37 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.499-0600 DEBUG sync/evmdownloader.go:99 sending block 43 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.499-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 43, last block seen on L1 43 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.499-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 32 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.499-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.499-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 33, blockHash: 0xfcfc205b89c7c341c12a78c5bb0af69c69f37e0627c17377bef3e70b4cf1c26a {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.499-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.500-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 37, BlockPosition: 1, L1InfoTreeIndex: 32, PreviousBlockHash: 0x5a6e875f5fbad19eaddff829852b45c3d11a2022d233ad60f9df0d12e607a657, Timestamp: 1731611373, MainnetExitRoot: 0x751b561b85192838a62733b633482ae345261a49fa618be7dd86dbcdeddfeeb6, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x5388ac34eec67a4d7ba5c5437e3813520c6419b216ec389a0f33dd4352b58f84, Hash: 0xb436e0e78966dc5f17ddf3a82387dd37e73dda83bb620204067c8967a5cd6cbf {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.500-0600 INFO l1infotreesync/processor.go:432 block 37 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.500-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.500-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 38, blockHash: 0x054d0bc7503d40986d0f45622ae75d4e95545ba1e2f3f006d81a320e47ad5401 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.500-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.500-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 38 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.501-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 33 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.501-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.501-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 34, blockHash: 0xfd4c968b031d8a3ac1fb43e066dc2f3d005f364b0ae4bf195cf1d2e2f15844d8 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.501-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.501-0600 DEBUG runtime/asm_arm64.s:1222 syncer is not ready for the block 43 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.502-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 38, BlockPosition: 1, L1InfoTreeIndex: 33, PreviousBlockHash: 0x26db51225efe40a03c540e5fc11ca74019747b130af442cfd58bae793399c416, Timestamp: 1731611374, MainnetExitRoot: 0xff1f553aa2b4e1dd8a40cdffacc3765447fa8a7246f44449e102debed442d162, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x7e94a455b8791faf7689714a76d13ab80b9810ec298a5e150bbd012f3dc0b60f, Hash: 0x0e3dbdec110220548819866e7e7b4360211d4fd83144e75d6c885449127ed3fe {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.502-0600 INFO l1infotreesync/processor.go:432 block 38 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.502-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.502-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 39, blockHash: 0xc53ae3ab04d87b96160f7d9222dbd19aea5404c06b8671573da238ff99b2eeec {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.502-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.502-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 39 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.502-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 34 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.503-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.503-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 35, blockHash: 0x6bcdd72b95119628f7163a1b5c317ff2406058cb1506ee63efe263c3a8c58d29 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.503-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.503-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 39, BlockPosition: 1, L1InfoTreeIndex: 34, PreviousBlockHash: 0x054d0bc7503d40986d0f45622ae75d4e95545ba1e2f3f006d81a320e47ad5401, Timestamp: 1731611375, MainnetExitRoot: 0xd9954ea555698394775b3310f8302a0b0b1e4971507706103f4b2b54df308bb6, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x1bd956bf631d98ac6ee9475b9bc5f6189a5d7dfa4ca0467532d9d9d9524e3c76, Hash: 0x0b221d07a47a678a88290b7cbe8aa3ac8ecfbd231a36cb0d2e7be7a661c72af5 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.503-0600 INFO l1infotreesync/processor.go:432 block 39 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.503-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.504-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 40, blockHash: 0x28bdbdd490b45e81438929e6c3e255662b755e5d44efc9ac93552ddfa98771a8 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.504-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.504-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 40 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.504-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 35 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.504-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.504-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 36, blockHash: 0x5a6e875f5fbad19eaddff829852b45c3d11a2022d233ad60f9df0d12e607a657 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.504-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.505-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 40, BlockPosition: 1, L1InfoTreeIndex: 35, PreviousBlockHash: 0xc53ae3ab04d87b96160f7d9222dbd19aea5404c06b8671573da238ff99b2eeec, Timestamp: 1731611376, MainnetExitRoot: 0x4ae16136bd672bac4d89a996d58313bf2e92cb8fed566b10ca9f28fdf6fda9a5, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x54c77bedc7af94d5187bf1ac4dee4bfdb8b29efd7ab1ff38a0a8fdd320620e31, Hash: 0xa5851d3f95cfd23b633d374d91387fad8588d50eaf5dfe20b38329170598d4fc {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.505-0600 INFO l1infotreesync/processor.go:432 block 40 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.505-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.505-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 41, blockHash: 0x4306eaf0771012edecdac25f514ec045e791e88a0e134256300b6d6b679070ed {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.505-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.505-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 41 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.506-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 36 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.506-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.506-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 37, blockHash: 0x26db51225efe40a03c540e5fc11ca74019747b130af442cfd58bae793399c416 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.506-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.507-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 41, BlockPosition: 1, L1InfoTreeIndex: 36, PreviousBlockHash: 0x28bdbdd490b45e81438929e6c3e255662b755e5d44efc9ac93552ddfa98771a8, Timestamp: 1731611378, MainnetExitRoot: 0x7877f16d882e25eea6219f25e7809d6363bebb4ab3a9acc42031d0ae891cd80c, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x824e53bc54864b01cba14ead40774dca9200668faa8891136e73611063405d48, Hash: 0xdc096810c4fe5214bed95215bf7a7787252446beb267379528dfbe768144ec47 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.507-0600 INFO l1infotreesync/processor.go:432 block 41 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.507-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.507-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 42, blockHash: 0x643228e1aeb762af52ca3e85c285e606ab8c5bd40b3bc0a60cf2de4d7579e703 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.507-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.507-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 42 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.507-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 37 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.507-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.507-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 38, blockHash: 0x054d0bc7503d40986d0f45622ae75d4e95545ba1e2f3f006d81a320e47ad5401 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.507-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.509-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 42, BlockPosition: 1, L1InfoTreeIndex: 37, PreviousBlockHash: 0x4306eaf0771012edecdac25f514ec045e791e88a0e134256300b6d6b679070ed, Timestamp: 1731611379, MainnetExitRoot: 0xa475bdf0f8627bc0aef0cb7d1d2a1fe608f9eae964f242e607ed5ce9270e3dc6, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x7e5d04bb2ef8185b83cb84f333c2ac6aeb7ddfb732a3f52c29f9c5abedd98131, Hash: 0xde201abe345826f72baea12c54c80d479d3c6424bb2d2bbb7dae5531ba58ea25 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.509-0600 INFO l1infotreesync/processor.go:432 block 42 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.509-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.509-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 43, blockHash: 0x6f42bb4f3e4b1360ba816ca52e5670959b691d16a5be606fa76e7a2c99d3a1d7 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.509-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 38 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.509-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.509-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 39, blockHash: 0xc53ae3ab04d87b96160f7d9222dbd19aea5404c06b8671573da238ff99b2eeec {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.509-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.509-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 43 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.509-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.511-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 43, BlockPosition: 1, L1InfoTreeIndex: 38, PreviousBlockHash: 0x643228e1aeb762af52ca3e85c285e606ab8c5bd40b3bc0a60cf2de4d7579e703, Timestamp: 1731611380, MainnetExitRoot: 0xf45568cb752af432e98034f4551c7d749d4eef5f7238f7db8e14f0478e4d7b95, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x4c89f8fdb0d54fa07ef17f6ac8505713591ecaa2ef6117b3bd1e3fa399bd1b44, Hash: 0x949bc079d5498be67d7a5f3e66155bb2742010725a3a28f8191a56a233085549 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.511-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 39 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.511-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.511-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 40, blockHash: 0x28bdbdd490b45e81438929e6c3e255662b755e5d44efc9ac93552ddfa98771a8 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.511-0600 INFO l1infotreesync/processor.go:432 block 43 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.511-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.511-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.513-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 40 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.513-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.513-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 41, blockHash: 0x4306eaf0771012edecdac25f514ec045e791e88a0e134256300b6d6b679070ed {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.513-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.514-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 41 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.514-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.514-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 42, blockHash: 0x643228e1aeb762af52ca3e85c285e606ab8c5bd40b3bc0a60cf2de4d7579e703 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.514-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.516-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 42 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.516-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.516-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 43, blockHash: 0x6f42bb4f3e4b1360ba816ca52e5670959b691d16a5be606fa76e7a2c99d3a1d7 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.516-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.519-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 43 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.519-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.522-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x4c89f8fdb0d54fa07ef17f6ac8505713591ecaa2ef6117b3bd1e3fa399bd1b44 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.543-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x4c89f8fdb0d54fa07ef17f6ac8505713591ecaa2ef6117b3bd1e3fa399bd1b44 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.550-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 44 to 44 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.550-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 44 to 44 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.552-0600 DEBUG sync/evmdownloader.go:99 sending block 44 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.552-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 44, last block seen on L1 44 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.552-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 44, blockHash: 0x21e24ea1dcd0c80625ea3875dd92880aae80e21acce255992e2edf3ad616ebc5 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.552-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.552-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 44 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.552-0600 DEBUG sync/evmdownloader.go:99 sending block 44 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.552-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 44, last block seen on L1 44 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.553-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 44, blockHash: 0x21e24ea1dcd0c80625ea3875dd92880aae80e21acce255992e2edf3ad616ebc5 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.553-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.553-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 44, BlockPosition: 1, L1InfoTreeIndex: 39, PreviousBlockHash: 0x6f42bb4f3e4b1360ba816ca52e5670959b691d16a5be606fa76e7a2c99d3a1d7, Timestamp: 1731611381, MainnetExitRoot: 0xd410a70488fc10a6717beeb87b023b0e76d5d1ae0e4272fd71ab8f1e5f43e74b, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xdeccfc239ba3d105859766d062632c28baa47e6e53f8457259a9e692fba3dc62, Hash: 0xc02900199dce9ac618dbd593a3e8b97986af49ed82a4f49947846b7e4fa72f28 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.554-0600 INFO l1infotreesync/processor.go:432 block 44 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.554-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.554-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 44 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.554-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.563-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0xdeccfc239ba3d105859766d062632c28baa47e6e53f8457259a9e692fba3dc62 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.582-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 45 to 45 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:00.583-0600 DEBUG sync/evmdownloader.go:104 sending block 45 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:00.584-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 45, last block seen on L1 45 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:00.584-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 45, blockHash: 0x4fa892e2f57e8c73294b835a1c790ae4b74fef01cb301737ffd446c9298a2d3a {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:00.584-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:00.584-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 45 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:00.584-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:00.622-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.622-0600 INFO runtime/asm_arm64.s:1222 GER 0xdeccfc239ba3d105859766d062632c28baa47e6e53f8457259a9e692fba3dc62 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.624-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xdeccfc239ba3d105859766d062632c28baa47e6e53f8457259a9e692fba3dc62 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.643-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xdeccfc239ba3d105859766d062632c28baa47e6e53f8457259a9e692fba3dc62 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.663-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xdeccfc239ba3d105859766d062632c28baa47e6e53f8457259a9e692fba3dc62 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.683-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xdeccfc239ba3d105859766d062632c28baa47e6e53f8457259a9e692fba3dc62 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.685-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 45 to 45 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.688-0600 DEBUG sync/evmdownloader.go:99 sending block 45 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.688-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 45, last block seen on L1 45 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.688-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 45, blockHash: 0xdc948c7d9ac156b98fc5c141a7eba872a5b133efa83b9951383f2ce4294517af {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.688-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.688-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 45 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.689-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 45, BlockPosition: 1, L1InfoTreeIndex: 40, PreviousBlockHash: 0x21e24ea1dcd0c80625ea3875dd92880aae80e21acce255992e2edf3ad616ebc5, Timestamp: 1731611382, MainnetExitRoot: 0x5318db2965f80113e2fc81546b5efe58e43d460026a911210f20fab4a4110800, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x6f935ef7d6cdbe6c57cdedd95122d2ff9a51dffd6172b615e1c0a762eaa38d39, Hash: 0x8b42348a60556b42855ab5fa1feee136d0ef93f06d1f197721cabe671b66de85 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.689-0600 INFO l1infotreesync/processor.go:432 block 45 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.689-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.694-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 45 to 45 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.696-0600 DEBUG sync/evmdownloader.go:99 sending block 45 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.696-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 45, last block seen on L1 45 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.696-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 45, blockHash: 0xdc948c7d9ac156b98fc5c141a7eba872a5b133efa83b9951383f2ce4294517af {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.696-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.698-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 45 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.698-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.703-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x6f935ef7d6cdbe6c57cdedd95122d2ff9a51dffd6172b615e1c0a762eaa38d39 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.715-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 46 to 46 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:00.716-0600 DEBUG sync/evmdownloader.go:104 sending block 46 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:00.717-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 46, last block seen on L1 46 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:00.717-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 46, blockHash: 0x28327776792761e6360649e219120038624a987e9572c1ce39b8715d54423845 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:00.717-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:00.717-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 46 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:00.717-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:00.761-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.761-0600 INFO runtime/asm_arm64.s:1222 GER 0x6f935ef7d6cdbe6c57cdedd95122d2ff9a51dffd6172b615e1c0a762eaa38d39 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.764-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x6f935ef7d6cdbe6c57cdedd95122d2ff9a51dffd6172b615e1c0a762eaa38d39 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.783-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x6f935ef7d6cdbe6c57cdedd95122d2ff9a51dffd6172b615e1c0a762eaa38d39 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.803-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x6f935ef7d6cdbe6c57cdedd95122d2ff9a51dffd6172b615e1c0a762eaa38d39 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.823-0600 DEBUG runtime/asm_arm64.s:1222 syncer is not ready for the block 46 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.823-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 46 to 46 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.825-0600 DEBUG sync/evmdownloader.go:99 sending block 46 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.826-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 46, last block seen on L1 46 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.826-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 46, blockHash: 0xa82d69351af09625805ece580128a1c98a57cd5a48e8cd78377d824c3892f200 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.826-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.826-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 46 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.827-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 46, BlockPosition: 1, L1InfoTreeIndex: 41, PreviousBlockHash: 0xdc948c7d9ac156b98fc5c141a7eba872a5b133efa83b9951383f2ce4294517af, Timestamp: 1731611383, MainnetExitRoot: 0x5ef7f419f68fb7a9997e3daa1aa6ee41277efb03d6df13a7383b32bb377a5735, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x654357565b4b68ebfb14e4389d4fced453559303372ff27238830011a2fe0a13, Hash: 0xc5f9c88aba7fa339982b3553a96bbafffdb1ac544275aa9acf65dee436679515 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.827-0600 INFO l1infotreesync/processor.go:432 block 46 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.827-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.827-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 46 to 46 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.830-0600 DEBUG sync/evmdownloader.go:99 sending block 46 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.830-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 46, last block seen on L1 46 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.830-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 46, blockHash: 0xa82d69351af09625805ece580128a1c98a57cd5a48e8cd78377d824c3892f200 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.830-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.831-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 46 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.831-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.842-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x654357565b4b68ebfb14e4389d4fced453559303372ff27238830011a2fe0a13 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.858-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 47 to 47 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:00.858-0600 DEBUG sync/evmdownloader.go:104 sending block 47 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:00.860-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 47, last block seen on L1 47 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:00.860-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 47, blockHash: 0x1c9bb8f7f6e16930270d42eabbd727f28363bad291fc493ac82edfd477ed10c3 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:00.860-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:00.860-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 47 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:00.860-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:00.901-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.901-0600 INFO runtime/asm_arm64.s:1222 GER 0x654357565b4b68ebfb14e4389d4fced453559303372ff27238830011a2fe0a13 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.903-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x654357565b4b68ebfb14e4389d4fced453559303372ff27238830011a2fe0a13 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.904-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x654357565b4b68ebfb14e4389d4fced453559303372ff27238830011a2fe0a13 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.923-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x654357565b4b68ebfb14e4389d4fced453559303372ff27238830011a2fe0a13 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.943-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x654357565b4b68ebfb14e4389d4fced453559303372ff27238830011a2fe0a13 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.961-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 47 to 47 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.961-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 47 to 47 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.963-0600 DEBUG runtime/asm_arm64.s:1222 syncer is not ready for the block 47 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.963-0600 DEBUG sync/evmdownloader.go:99 sending block 47 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.963-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 47, last block seen on L1 47 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.963-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 47, blockHash: 0xbbb4a44653d5dd771b1f7147c856db966afa3749c4429b12d12ef1132c3c462d {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:00.963-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.963-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 47 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.963-0600 DEBUG sync/evmdownloader.go:99 sending block 47 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.963-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 47, last block seen on L1 47 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.963-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 47, blockHash: 0xbbb4a44653d5dd771b1f7147c856db966afa3749c4429b12d12ef1132c3c462d {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:00.963-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.965-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 47, BlockPosition: 1, L1InfoTreeIndex: 42, PreviousBlockHash: 0xa82d69351af09625805ece580128a1c98a57cd5a48e8cd78377d824c3892f200, Timestamp: 1731611384, MainnetExitRoot: 0xeee0d56dac1914490391ed433fadefe6d213500be9b3ee85ffaad1f24d23b174, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xd48ad3765254a302767fe936907fc69dae77145323e3a7b9de599c1ac3d68251, Hash: 0xede6df89a5f2b65a6a5a669dbe81ed2dad2674e6255199c6d27cdb5181121265 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.965-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 47 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.965-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:00.967-0600 INFO l1infotreesync/processor.go:432 block 47 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.967-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:00.982-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0xd48ad3765254a302767fe936907fc69dae77145323e3a7b9de599c1ac3d68251 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.001-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 48 to 48 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:01.001-0600 DEBUG sync/evmdownloader.go:104 sending block 48 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:01.002-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 48, last block seen on L1 48 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:01.002-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 48, blockHash: 0xadb560d8d1e85a0e9618dc182dff23825577ad15596d7372a7efc85c36875a7f {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:01.003-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:01.003-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 48 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:01.003-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:01.040-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.041-0600 INFO runtime/asm_arm64.s:1222 GER 0xd48ad3765254a302767fe936907fc69dae77145323e3a7b9de599c1ac3d68251 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.043-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xd48ad3765254a302767fe936907fc69dae77145323e3a7b9de599c1ac3d68251 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.046-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xd48ad3765254a302767fe936907fc69dae77145323e3a7b9de599c1ac3d68251 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.063-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xd48ad3765254a302767fe936907fc69dae77145323e3a7b9de599c1ac3d68251 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.083-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xd48ad3765254a302767fe936907fc69dae77145323e3a7b9de599c1ac3d68251 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.099-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 48 to 48 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:01.101-0600 DEBUG sync/evmdownloader.go:99 sending block 48 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:01.101-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 48, last block seen on L1 48 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:01.101-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 48, blockHash: 0xcba75699babc43fb8fd78a758d0350a72863df09946ba32521174420619fdd2d {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:01.101-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.101-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 48 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.102-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 48, BlockPosition: 1, L1InfoTreeIndex: 43, PreviousBlockHash: 0xbbb4a44653d5dd771b1f7147c856db966afa3749c4429b12d12ef1132c3c462d, Timestamp: 1731611385, MainnetExitRoot: 0x37dece946b2e0d720436ea10b6088db32d6a54cf0061ad719130fb64348d2dd0, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xa861800c825e9c02e994368c9d70f66855204bb61c370a753b67c9974690727a, Hash: 0x86553ed407136d032d56af9e024c67be032bf2fccfa329474beeaa559d85d9a1 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.103-0600 DEBUG runtime/asm_arm64.s:1222 syncer is not ready for the block 48 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.103-0600 INFO l1infotreesync/processor.go:432 block 48 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.103-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.105-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 48 to 48 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:01.107-0600 DEBUG sync/evmdownloader.go:99 sending block 48 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:01.107-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 48, last block seen on L1 48 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:01.107-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 48, blockHash: 0xcba75699babc43fb8fd78a758d0350a72863df09946ba32521174420619fdd2d {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:01.107-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:01.109-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 48 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:01.109-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:01.122-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0xa861800c825e9c02e994368c9d70f66855204bb61c370a753b67c9974690727a {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.134-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 49 to 49 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:01.134-0600 DEBUG sync/evmdownloader.go:104 sending block 49 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:01.135-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 49, last block seen on L1 49 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:01.135-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 49, blockHash: 0x6fb8c31fb1bff8f3a0b2b431e5370ed1225e12615c6e1e4c2604be160979c467 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:01.135-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:01.136-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 49 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:01.136-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:01.180-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.181-0600 INFO runtime/asm_arm64.s:1222 GER 0xa861800c825e9c02e994368c9d70f66855204bb61c370a753b67c9974690727a injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.182-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xa861800c825e9c02e994368c9d70f66855204bb61c370a753b67c9974690727a already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.184-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xa861800c825e9c02e994368c9d70f66855204bb61c370a753b67c9974690727a already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.203-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xa861800c825e9c02e994368c9d70f66855204bb61c370a753b67c9974690727a already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.223-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xa861800c825e9c02e994368c9d70f66855204bb61c370a753b67c9974690727a already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.234-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 49 to 49 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:01.236-0600 DEBUG sync/evmdownloader.go:99 sending block 49 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:01.236-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 49, last block seen on L1 49 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:01.236-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 49, blockHash: 0x1bc2af7c56f7ec19f45508a99c9ea51376ad74b8165a8725ffbfde88028efa77 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:01.237-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.237-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 49 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.238-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 49, BlockPosition: 1, L1InfoTreeIndex: 44, PreviousBlockHash: 0xcba75699babc43fb8fd78a758d0350a72863df09946ba32521174420619fdd2d, Timestamp: 1731611386, MainnetExitRoot: 0xc1b161218e7009e0d75e58d52e553a3e9fd2629526c21c925db5b3131c0b0252, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xc05b2d5318d1c004cd4f2c90d4dc102602b813bae9654e55fa4b8674769786c1, Hash: 0xf6c6dd2fec78f11e18fe8dc069190f65f9476c145e63b784a6818178698e7d9a {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.238-0600 INFO l1infotreesync/processor.go:432 block 49 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.238-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.238-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 49 to 49 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:01.241-0600 DEBUG sync/evmdownloader.go:99 sending block 49 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:01.241-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 49, last block seen on L1 49 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:01.241-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 49, blockHash: 0x1bc2af7c56f7ec19f45508a99c9ea51376ad74b8165a8725ffbfde88028efa77 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:01.241-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:01.242-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 49 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:01.242-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:01.243-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0xc05b2d5318d1c004cd4f2c90d4dc102602b813bae9654e55fa4b8674769786c1 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.257-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 50 to 50 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:01.257-0600 DEBUG sync/evmdownloader.go:104 sending block 50 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:01.258-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 50, last block seen on L1 50 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:01.258-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 50, blockHash: 0x4208ed10d7c8c379d17fd3220c434e11a559f5987241bd829b5d6fba43b8f452 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:01.258-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:01.258-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 50 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:01.258-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:01.302-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.302-0600 INFO runtime/asm_arm64.s:1222 GER 0xc05b2d5318d1c004cd4f2c90d4dc102602b813bae9654e55fa4b8674769786c1 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.304-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xc05b2d5318d1c004cd4f2c90d4dc102602b813bae9654e55fa4b8674769786c1 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.323-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xc05b2d5318d1c004cd4f2c90d4dc102602b813bae9654e55fa4b8674769786c1 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.343-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xc05b2d5318d1c004cd4f2c90d4dc102602b813bae9654e55fa4b8674769786c1 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.363-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xc05b2d5318d1c004cd4f2c90d4dc102602b813bae9654e55fa4b8674769786c1 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.372-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 50 to 50 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:01.372-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 50 to 50 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:01.374-0600 DEBUG sync/evmdownloader.go:99 sending block 50 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:01.374-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 50, last block seen on L1 50 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:01.374-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 50, blockHash: 0x32ff5f785c4c7eda486dca90f43abcbaad731cef1451067e01114470cd7bfc42 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:01.374-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:01.375-0600 DEBUG sync/evmdownloader.go:99 sending block 50 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:01.375-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 50, last block seen on L1 50 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:01.375-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 50, blockHash: 0x32ff5f785c4c7eda486dca90f43abcbaad731cef1451067e01114470cd7bfc42 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:01.375-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.375-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 50 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.376-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 50, BlockPosition: 1, L1InfoTreeIndex: 45, PreviousBlockHash: 0x1bc2af7c56f7ec19f45508a99c9ea51376ad74b8165a8725ffbfde88028efa77, Timestamp: 1731611387, MainnetExitRoot: 0x7b0f7cbcc2eda3528e3ac4740b3b960fc352e84571391b72b2657448febbcdd1, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xbe6f22aa190a60a13c7939901f09b6cce29f2de7c0c2a7712197118ebbcb373b, Hash: 0x1d75b3c9200c733fd304b20aff6e4b14935c684ef7dc75febae544f57472ffbb {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.377-0600 INFO l1infotreesync/processor.go:432 block 50 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.377-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.378-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 50 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:01.378-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:01.383-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0xbe6f22aa190a60a13c7939901f09b6cce29f2de7c0c2a7712197118ebbcb373b {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.399-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 51 to 51 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:01.400-0600 DEBUG sync/evmdownloader.go:104 sending block 51 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:01.401-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 51, last block seen on L1 51 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:01.401-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 51, blockHash: 0x9ed5473dfc8ceb6450239b1ff7d3cfa4baaaa19213e55679e2fd6f35324b20a4 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:01.401-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:01.401-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 51 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:01.401-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:01.442-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.442-0600 INFO runtime/asm_arm64.s:1222 GER 0xbe6f22aa190a60a13c7939901f09b6cce29f2de7c0c2a7712197118ebbcb373b injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.444-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xbe6f22aa190a60a13c7939901f09b6cce29f2de7c0c2a7712197118ebbcb373b already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.463-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xbe6f22aa190a60a13c7939901f09b6cce29f2de7c0c2a7712197118ebbcb373b already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.476-0600 DEBUG helpers/reorg.go:31 reorging until block 49. Current block 50 (before reorg) {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.478-0600 DEBUG bridgesync/e2e_test.go:72 removing expectedBridge with depositCount 45 due to reorg {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.478-0600 DEBUG bridgesync/e2e_test.go:81 reorgs: 5 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.483-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xbe6f22aa190a60a13c7939901f09b6cce29f2de7c0c2a7712197118ebbcb373b already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.503-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xbe6f22aa190a60a13c7939901f09b6cce29f2de7c0c2a7712197118ebbcb373b already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.523-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xbe6f22aa190a60a13c7939901f09b6cce29f2de7c0c2a7712197118ebbcb373b already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.543-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xbe6f22aa190a60a13c7939901f09b6cce29f2de7c0c2a7712197118ebbcb373b already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.563-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xbe6f22aa190a60a13c7939901f09b6cce29f2de7c0c2a7712197118ebbcb373b already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.583-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xbe6f22aa190a60a13c7939901f09b6cce29f2de7c0c2a7712197118ebbcb373b already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.603-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xbe6f22aa190a60a13c7939901f09b6cce29f2de7c0c2a7712197118ebbcb373b already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.624-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xbe6f22aa190a60a13c7939901f09b6cce29f2de7c0c2a7712197118ebbcb373b already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.643-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xbe6f22aa190a60a13c7939901f09b6cce29f2de7c0c2a7712197118ebbcb373b already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.655-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 51 to 51 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:01.656-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 51 to 51 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:01.657-0600 DEBUG sync/evmdownloader.go:99 sending block 51 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:01.657-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 51, last block seen on L1 51 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:01.657-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 51, blockHash: 0xeeac2caa4594c87a65faaeb3989a00a7185e8ebc61578bb3e434800a05055ae0 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:01.658-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.658-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 51 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.658-0600 DEBUG sync/evmdownloader.go:99 sending block 51 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:01.658-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 51, last block seen on L1 51 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:01.658-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 51, blockHash: 0xeeac2caa4594c87a65faaeb3989a00a7185e8ebc61578bb3e434800a05055ae0 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:01.658-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:01.659-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 51, BlockPosition: 1, L1InfoTreeIndex: 46, PreviousBlockHash: 0xce150c3c8dafb522d061e9808149b024281fccb86f13e1c8499429b4ddbb0c7a, Timestamp: 1731611389, MainnetExitRoot: 0x16bf0c776abf2a6b98085eac8846c0902d6cf57809bce6770832d312ea931f8a, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x1820899db3d746dcdca754f449b5f05d311ea38d7e4fc88a6781431c4fd292a5, Hash: 0xe3a006ed42c2c67be70e8b5d1c3d53716d52344137564546f3f7619e68851b97 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.659-0600 INFO l1infotreesync/processor.go:432 block 51 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.659-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.660-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 51 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:01.660-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:01.663-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x1820899db3d746dcdca754f449b5f05d311ea38d7e4fc88a6781431c4fd292a5 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.682-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 52 to 52 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:01.683-0600 DEBUG sync/evmdownloader.go:104 sending block 52 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:01.684-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 52, last block seen on L1 52 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:01.684-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 52, blockHash: 0xe3343c0740b75732f9f3bacd4eca347563a7bdd770b94085c7fca0d69a46ea39 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:01.684-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:01.684-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 52 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:01.684-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:01.722-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.722-0600 INFO runtime/asm_arm64.s:1222 GER 0x1820899db3d746dcdca754f449b5f05d311ea38d7e4fc88a6781431c4fd292a5 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.724-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x1820899db3d746dcdca754f449b5f05d311ea38d7e4fc88a6781431c4fd292a5 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.743-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x1820899db3d746dcdca754f449b5f05d311ea38d7e4fc88a6781431c4fd292a5 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.763-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x1820899db3d746dcdca754f449b5f05d311ea38d7e4fc88a6781431c4fd292a5 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.783-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x1820899db3d746dcdca754f449b5f05d311ea38d7e4fc88a6781431c4fd292a5 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.795-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 52 to 52 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:01.797-0600 DEBUG sync/evmdownloader.go:99 sending block 52 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:01.797-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 52, last block seen on L1 52 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:01.797-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 52, blockHash: 0xc68ef0cd8c66262048e4715e4393a9dd3543fb19ca71287cde10d1bf7b7eeb48 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:01.798-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.798-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 52 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.799-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 52, BlockPosition: 1, L1InfoTreeIndex: 47, PreviousBlockHash: 0xeeac2caa4594c87a65faaeb3989a00a7185e8ebc61578bb3e434800a05055ae0, Timestamp: 1731611390, MainnetExitRoot: 0xae39d1bde0fc29f516f3b2ef39283a213466d133090ab0e43056b5082ced8472, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x4927f8c0e1160ed2220b7ddd665b125fef66d18d9b96db9185644ffd66ea7d2e, Hash: 0xd9d504646ed6a32ab6d97524ef78a3d0cdb8c54ff16c2f56c3b7cafba676b76c {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.799-0600 INFO l1infotreesync/processor.go:432 block 52 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.799-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.799-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 52 to 52 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:01.801-0600 DEBUG sync/evmdownloader.go:99 sending block 52 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:01.801-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 52, last block seen on L1 52 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:01.801-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 52, blockHash: 0xc68ef0cd8c66262048e4715e4393a9dd3543fb19ca71287cde10d1bf7b7eeb48 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:01.802-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:01.803-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 52 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:01.803-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:01.803-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x4927f8c0e1160ed2220b7ddd665b125fef66d18d9b96db9185644ffd66ea7d2e {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.815-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 53 to 53 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:01.815-0600 DEBUG sync/evmdownloader.go:104 sending block 53 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:01.817-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 53, last block seen on L1 53 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:01.817-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 53, blockHash: 0x9e1a4d7fb3111d8bccd57c0b7fcae5dfb36d129780799835993922e1b0ec798d {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:01.817-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:01.817-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 53 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:01.817-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:01.862-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.862-0600 INFO runtime/asm_arm64.s:1222 GER 0x4927f8c0e1160ed2220b7ddd665b125fef66d18d9b96db9185644ffd66ea7d2e injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.864-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x4927f8c0e1160ed2220b7ddd665b125fef66d18d9b96db9185644ffd66ea7d2e already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.883-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x4927f8c0e1160ed2220b7ddd665b125fef66d18d9b96db9185644ffd66ea7d2e already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.903-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x4927f8c0e1160ed2220b7ddd665b125fef66d18d9b96db9185644ffd66ea7d2e already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.923-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x4927f8c0e1160ed2220b7ddd665b125fef66d18d9b96db9185644ffd66ea7d2e already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.931-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 53 to 53 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:01.933-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 53 to 53 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:01.934-0600 DEBUG sync/evmdownloader.go:99 sending block 53 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:01.934-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 53, last block seen on L1 53 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:01.934-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 53, blockHash: 0xfbe3865f018c29f1c2499070aa5d7f764116641aac1ef70e85c0f5ab49188067 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:01.934-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.934-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 53 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.935-0600 DEBUG sync/evmdownloader.go:99 sending block 53 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:01.935-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 53, last block seen on L1 53 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:01.935-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 53, blockHash: 0xfbe3865f018c29f1c2499070aa5d7f764116641aac1ef70e85c0f5ab49188067 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:01.935-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:01.935-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 53, BlockPosition: 1, L1InfoTreeIndex: 48, PreviousBlockHash: 0xc68ef0cd8c66262048e4715e4393a9dd3543fb19ca71287cde10d1bf7b7eeb48, Timestamp: 1731611391, MainnetExitRoot: 0x4cbc531aec7dae9fd19d1f52711b3abe9af47bc80db73143c2590bb2166b0ffd, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xab45e5d8d8d53f57b5decc0ee497a064dda71007ab4ede14c55c04213b98f860, Hash: 0x2b4c5008d7bf0e69b2dca12b4b27e4e27b2b1d3a2873f32ade32518d6302896f {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.936-0600 INFO l1infotreesync/processor.go:432 block 53 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.936-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.937-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 53 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:01.937-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:01.943-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0xab45e5d8d8d53f57b5decc0ee497a064dda71007ab4ede14c55c04213b98f860 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:01.958-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 54 to 54 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:01.958-0600 DEBUG sync/evmdownloader.go:104 sending block 54 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:01.959-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 54, last block seen on L1 54 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:01.960-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 54, blockHash: 0x6940af130d161c53a21b53aa66f2132d5b86509450446ae5485a63a42397e4f8 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:01.960-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:01.960-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 54 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:01.960-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:02.002-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.002-0600 INFO runtime/asm_arm64.s:1222 GER 0xab45e5d8d8d53f57b5decc0ee497a064dda71007ab4ede14c55c04213b98f860 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.004-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xab45e5d8d8d53f57b5decc0ee497a064dda71007ab4ede14c55c04213b98f860 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.023-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xab45e5d8d8d53f57b5decc0ee497a064dda71007ab4ede14c55c04213b98f860 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.043-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xab45e5d8d8d53f57b5decc0ee497a064dda71007ab4ede14c55c04213b98f860 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.063-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xab45e5d8d8d53f57b5decc0ee497a064dda71007ab4ede14c55c04213b98f860 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.068-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 54 to 54 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.070-0600 DEBUG sync/evmdownloader.go:99 sending block 54 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.070-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 54, last block seen on L1 54 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.070-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 54, blockHash: 0x4febc8316cce403a0c970c65c3635d841a8e1199310847803a330e2ebb1d4844 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.070-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.070-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 54 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.072-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 54, BlockPosition: 1, L1InfoTreeIndex: 49, PreviousBlockHash: 0xfbe3865f018c29f1c2499070aa5d7f764116641aac1ef70e85c0f5ab49188067, Timestamp: 1731611392, MainnetExitRoot: 0x0e713817f9c76dcdcafc4dce929edba18ec7a4f7709dcbfde89d8bc1c09b3b84, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x41cd8e363ed51c0b0ff70f41a21906552194a36aa198e2e54a064e0c33018e6f, Hash: 0x3f9a9f952b3ad75f44855100a0ae5cc7b840246ecbceab3462f1f2f82858a0cb {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.072-0600 INFO l1infotreesync/processor.go:432 block 54 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.072-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.076-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 54 to 54 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.078-0600 DEBUG sync/evmdownloader.go:99 sending block 54 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.078-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 54, last block seen on L1 54 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.078-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 54, blockHash: 0x4febc8316cce403a0c970c65c3635d841a8e1199310847803a330e2ebb1d4844 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.079-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.080-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 54 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.080-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.083-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x41cd8e363ed51c0b0ff70f41a21906552194a36aa198e2e54a064e0c33018e6f {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.101-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 55 to 55 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:02.101-0600 DEBUG sync/evmdownloader.go:104 sending block 55 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:02.102-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 55, last block seen on L1 55 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:02.102-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 55, blockHash: 0xb5a48b98727dc2c3035e835dc9ca4b95ca3870eb23db3efb483e13a539aa3a37 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:02.102-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:02.102-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 55 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:02.103-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:02.142-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.142-0600 INFO runtime/asm_arm64.s:1222 GER 0x41cd8e363ed51c0b0ff70f41a21906552194a36aa198e2e54a064e0c33018e6f injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.144-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x41cd8e363ed51c0b0ff70f41a21906552194a36aa198e2e54a064e0c33018e6f already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.163-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x41cd8e363ed51c0b0ff70f41a21906552194a36aa198e2e54a064e0c33018e6f already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.183-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x41cd8e363ed51c0b0ff70f41a21906552194a36aa198e2e54a064e0c33018e6f already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.203-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x41cd8e363ed51c0b0ff70f41a21906552194a36aa198e2e54a064e0c33018e6f already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.207-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 55 to 55 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.209-0600 DEBUG sync/evmdownloader.go:99 sending block 55 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.209-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 55, last block seen on L1 55 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.209-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 55, blockHash: 0x464ad3a5418e87eb530ec9a7d4189005ef7a81f31a78ee9b2c507c33302cd947 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.209-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.209-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 55 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.210-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 55 to 55 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.210-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 55, BlockPosition: 1, L1InfoTreeIndex: 50, PreviousBlockHash: 0x4febc8316cce403a0c970c65c3635d841a8e1199310847803a330e2ebb1d4844, Timestamp: 1731611393, MainnetExitRoot: 0x47f12690c4e47df609b9b4bed40869c245a4153ab85f1f277bfaf5509f0b91b9, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x50b12a3a59e635750ab91817e50a2ed3bbf45ecc7fd61865ae073387f5bdd066, Hash: 0x16d94d8af152689cb1926eb1b05f90ab8ca7e18cd832d3d08b564a10051b4d21 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.210-0600 INFO l1infotreesync/processor.go:432 block 55 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.210-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.212-0600 DEBUG sync/evmdownloader.go:99 sending block 55 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.212-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 55, last block seen on L1 55 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.212-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 55, blockHash: 0x464ad3a5418e87eb530ec9a7d4189005ef7a81f31a78ee9b2c507c33302cd947 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.212-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.213-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 55 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.213-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.223-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x50b12a3a59e635750ab91817e50a2ed3bbf45ecc7fd61865ae073387f5bdd066 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.233-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 56 to 56 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:02.234-0600 DEBUG sync/evmdownloader.go:104 sending block 56 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:02.235-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 56, last block seen on L1 56 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:02.235-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 56, blockHash: 0x89645fb20f90d23db5f98daeb79b11fc6014641b3bdca458e0085806300dab81 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:02.235-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:02.235-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 56 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:02.235-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:02.282-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.282-0600 INFO runtime/asm_arm64.s:1222 GER 0x50b12a3a59e635750ab91817e50a2ed3bbf45ecc7fd61865ae073387f5bdd066 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.284-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x50b12a3a59e635750ab91817e50a2ed3bbf45ecc7fd61865ae073387f5bdd066 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.303-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x50b12a3a59e635750ab91817e50a2ed3bbf45ecc7fd61865ae073387f5bdd066 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.323-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x50b12a3a59e635750ab91817e50a2ed3bbf45ecc7fd61865ae073387f5bdd066 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.343-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x50b12a3a59e635750ab91817e50a2ed3bbf45ecc7fd61865ae073387f5bdd066 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.344-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 56 to 56 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.346-0600 DEBUG sync/evmdownloader.go:99 sending block 56 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.346-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 56, last block seen on L1 56 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.346-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 56, blockHash: 0x3c82edde486afa6318f76b923503df1e9df1a57b1abf45b3f1394de4b71384e7 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.346-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.346-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 56 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.347-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 56, BlockPosition: 1, L1InfoTreeIndex: 51, PreviousBlockHash: 0x464ad3a5418e87eb530ec9a7d4189005ef7a81f31a78ee9b2c507c33302cd947, Timestamp: 1731611394, MainnetExitRoot: 0x7175e89ea98372c48c9f7747fccc1a052cb28c8be396ae70672466a590d94986, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x91a60adbf892640996e08d6615a2b21491c71fbc3707e2301b681c6becf1b09a, Hash: 0xd4814a7c268e78121730b3cf65b9a2cbfce3dabe7612e10a25b507ecc14b0ab2 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.347-0600 INFO l1infotreesync/processor.go:432 block 56 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.347-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.353-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 56 to 56 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.355-0600 DEBUG sync/evmdownloader.go:99 sending block 56 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.355-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 56, last block seen on L1 56 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.355-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 56, blockHash: 0x3c82edde486afa6318f76b923503df1e9df1a57b1abf45b3f1394de4b71384e7 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.355-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.357-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 56 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.357-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.364-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x91a60adbf892640996e08d6615a2b21491c71fbc3707e2301b681c6becf1b09a {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.376-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 57 to 57 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:02.377-0600 DEBUG sync/evmdownloader.go:104 sending block 57 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:02.378-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 57, last block seen on L1 57 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:02.378-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 57, blockHash: 0x6c5462a07720e993b88b5aa0564c3630aa4fb2e2d6baa304795b8421ea691134 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:02.378-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:02.378-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 57 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:02.378-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:02.422-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.423-0600 INFO runtime/asm_arm64.s:1222 GER 0x91a60adbf892640996e08d6615a2b21491c71fbc3707e2301b681c6becf1b09a injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.425-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x91a60adbf892640996e08d6615a2b21491c71fbc3707e2301b681c6becf1b09a already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.443-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x91a60adbf892640996e08d6615a2b21491c71fbc3707e2301b681c6becf1b09a already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.451-0600 DEBUG sync/evmdriver.go:104 handleReorg from block: 50 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.451-0600 DEBUG bridgesync/processor.go:238 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.452-0600 INFO sync/evmdownloader.go:161 context cancelled {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.452-0600 DEBUG sync/evmdownloader.go:79 closing channel {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.452-0600 INFO sync/evmdriver.go:89 Starting sync... lastProcessedBlock 49 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.452-0600 DEBUG l1infotreesync/processor.go:286 last info: BlockNumber: 49, BlockPosition: 1, L1InfoTreeIndex: 44, PreviousBlockHash: 0xcba75699babc43fb8fd78a758d0350a72863df09946ba32521174420619fdd2d, Timestamp: 1731611386, MainnetExitRoot: 0xc1b161218e7009e0d75e58d52e553a3e9fd2629526c21c925db5b3131c0b0252, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xc05b2d5318d1c004cd4f2c90d4dc102602b813bae9654e55fa4b8674769786c1, Hash: 0xf6c6dd2fec78f11e18fe8dc069190f65f9476c145e63b784a6818178698e7d9a {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.452-0600 DEBUG l1infotreesync/processor.go:300 reorged until block 50 (included) {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.452-0600 DEBUG l1infotreesync/processor.go:302 last info: BlockNumber: 49, BlockPosition: 1, L1InfoTreeIndex: 44, PreviousBlockHash: 0xcba75699babc43fb8fd78a758d0350a72863df09946ba32521174420619fdd2d, Timestamp: 1731611386, MainnetExitRoot: 0xc1b161218e7009e0d75e58d52e553a3e9fd2629526c21c925db5b3131c0b0252, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xc05b2d5318d1c004cd4f2c90d4dc102602b813bae9654e55fa4b8674769786c1, Hash: 0xf6c6dd2fec78f11e18fe8dc069190f65f9476c145e63b784a6818178698e7d9a {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.452-0600 DEBUG l1infotreesync/processor.go:306 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx L1INFO xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.452-0600 INFO sync/evmdriver.go:89 Starting sync... lastProcessedBlock 49 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.455-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 50 to 56 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.463-0600 DEBUG runtime/asm_arm64.s:1222 syncer is not ready for the block 56 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.463-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 50 to 56 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.467-0600 DEBUG sync/evmdownloader.go:99 sending block 50 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.467-0600 DEBUG sync/evmdownloader.go:99 sending block 51 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.467-0600 DEBUG sync/evmdownloader.go:99 sending block 52 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.467-0600 DEBUG sync/evmdownloader.go:99 sending block 53 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.467-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 50, blockHash: 0xce150c3c8dafb522d061e9808149b024281fccb86f13e1c8499429b4ddbb0c7a {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.467-0600 DEBUG sync/evmdownloader.go:99 sending block 54 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.467-0600 DEBUG sync/evmdownloader.go:99 sending block 55 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.467-0600 DEBUG sync/evmdownloader.go:99 sending block 56 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.467-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 56, last block seen on L1 56 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.467-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.467-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 50 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.470-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 50, BlockPosition: 1, L1InfoTreeIndex: 45, PreviousBlockHash: 0x1bc2af7c56f7ec19f45508a99c9ea51376ad74b8165a8725ffbfde88028efa77, Timestamp: 1731611388, MainnetExitRoot: 0x8f6544000d8c9333433ad86fb3b636ee154efcecc0262e8aa412f41a87315741, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xbe83263804e8c0db215d67b90f4b2bfbf883e2e2b7ab80d0e74cd63c072c0595, Hash: 0x7f347bd7a894e3ed03402d023518f87f49d609a89223359dafa81320678a3b53 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.470-0600 INFO l1infotreesync/processor.go:432 block 50 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.470-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.470-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 51, blockHash: 0xeeac2caa4594c87a65faaeb3989a00a7185e8ebc61578bb3e434800a05055ae0 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.470-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.470-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 51 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.472-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 51, BlockPosition: 1, L1InfoTreeIndex: 46, PreviousBlockHash: 0xce150c3c8dafb522d061e9808149b024281fccb86f13e1c8499429b4ddbb0c7a, Timestamp: 1731611389, MainnetExitRoot: 0x16bf0c776abf2a6b98085eac8846c0902d6cf57809bce6770832d312ea931f8a, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x1820899db3d746dcdca754f449b5f05d311ea38d7e4fc88a6781431c4fd292a5, Hash: 0xe3a006ed42c2c67be70e8b5d1c3d53716d52344137564546f3f7619e68851b97 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.472-0600 INFO l1infotreesync/processor.go:432 block 51 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.472-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.472-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 52, blockHash: 0xc68ef0cd8c66262048e4715e4393a9dd3543fb19ca71287cde10d1bf7b7eeb48 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.472-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.472-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 52 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.473-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 52, BlockPosition: 1, L1InfoTreeIndex: 47, PreviousBlockHash: 0xeeac2caa4594c87a65faaeb3989a00a7185e8ebc61578bb3e434800a05055ae0, Timestamp: 1731611390, MainnetExitRoot: 0xae39d1bde0fc29f516f3b2ef39283a213466d133090ab0e43056b5082ced8472, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x4927f8c0e1160ed2220b7ddd665b125fef66d18d9b96db9185644ffd66ea7d2e, Hash: 0xd9d504646ed6a32ab6d97524ef78a3d0cdb8c54ff16c2f56c3b7cafba676b76c {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.474-0600 INFO l1infotreesync/processor.go:432 block 52 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.474-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.474-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 53, blockHash: 0xfbe3865f018c29f1c2499070aa5d7f764116641aac1ef70e85c0f5ab49188067 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.474-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.474-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 53 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.475-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 53, BlockPosition: 1, L1InfoTreeIndex: 48, PreviousBlockHash: 0xc68ef0cd8c66262048e4715e4393a9dd3543fb19ca71287cde10d1bf7b7eeb48, Timestamp: 1731611391, MainnetExitRoot: 0x4cbc531aec7dae9fd19d1f52711b3abe9af47bc80db73143c2590bb2166b0ffd, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xab45e5d8d8d53f57b5decc0ee497a064dda71007ab4ede14c55c04213b98f860, Hash: 0x2b4c5008d7bf0e69b2dca12b4b27e4e27b2b1d3a2873f32ade32518d6302896f {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.475-0600 INFO l1infotreesync/processor.go:432 block 53 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.475-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.475-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 54, blockHash: 0x4febc8316cce403a0c970c65c3635d841a8e1199310847803a330e2ebb1d4844 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.475-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.475-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 54 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.476-0600 DEBUG sync/evmdownloader.go:99 sending block 50 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.476-0600 DEBUG sync/evmdownloader.go:99 sending block 51 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.476-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 50, blockHash: 0xce150c3c8dafb522d061e9808149b024281fccb86f13e1c8499429b4ddbb0c7a {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.476-0600 DEBUG sync/evmdownloader.go:99 sending block 52 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.476-0600 DEBUG sync/evmdownloader.go:99 sending block 53 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.476-0600 DEBUG sync/evmdownloader.go:99 sending block 54 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.476-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.476-0600 DEBUG sync/evmdownloader.go:99 sending block 55 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.476-0600 DEBUG sync/evmdownloader.go:99 sending block 56 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.476-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 56, last block seen on L1 56 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.477-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 54, BlockPosition: 1, L1InfoTreeIndex: 49, PreviousBlockHash: 0xfbe3865f018c29f1c2499070aa5d7f764116641aac1ef70e85c0f5ab49188067, Timestamp: 1731611392, MainnetExitRoot: 0x0e713817f9c76dcdcafc4dce929edba18ec7a4f7709dcbfde89d8bc1c09b3b84, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x41cd8e363ed51c0b0ff70f41a21906552194a36aa198e2e54a064e0c33018e6f, Hash: 0x3f9a9f952b3ad75f44855100a0ae5cc7b840246ecbceab3462f1f2f82858a0cb {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.477-0600 INFO l1infotreesync/processor.go:432 block 54 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.477-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.477-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 55, blockHash: 0x464ad3a5418e87eb530ec9a7d4189005ef7a81f31a78ee9b2c507c33302cd947 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.477-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.477-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 55 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.479-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 50 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.479-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.479-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 51, blockHash: 0xeeac2caa4594c87a65faaeb3989a00a7185e8ebc61578bb3e434800a05055ae0 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.479-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.479-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 55, BlockPosition: 1, L1InfoTreeIndex: 50, PreviousBlockHash: 0x4febc8316cce403a0c970c65c3635d841a8e1199310847803a330e2ebb1d4844, Timestamp: 1731611393, MainnetExitRoot: 0x47f12690c4e47df609b9b4bed40869c245a4153ab85f1f277bfaf5509f0b91b9, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x50b12a3a59e635750ab91817e50a2ed3bbf45ecc7fd61865ae073387f5bdd066, Hash: 0x16d94d8af152689cb1926eb1b05f90ab8ca7e18cd832d3d08b564a10051b4d21 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.479-0600 INFO l1infotreesync/processor.go:432 block 55 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.479-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.479-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 56, blockHash: 0x3c82edde486afa6318f76b923503df1e9df1a57b1abf45b3f1394de4b71384e7 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.479-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.479-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 56 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.480-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 51 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.481-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.481-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 52, blockHash: 0xc68ef0cd8c66262048e4715e4393a9dd3543fb19ca71287cde10d1bf7b7eeb48 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.481-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.481-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 56, BlockPosition: 1, L1InfoTreeIndex: 51, PreviousBlockHash: 0x464ad3a5418e87eb530ec9a7d4189005ef7a81f31a78ee9b2c507c33302cd947, Timestamp: 1731611394, MainnetExitRoot: 0x7175e89ea98372c48c9f7747fccc1a052cb28c8be396ae70672466a590d94986, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x91a60adbf892640996e08d6615a2b21491c71fbc3707e2301b681c6becf1b09a, Hash: 0xd4814a7c268e78121730b3cf65b9a2cbfce3dabe7612e10a25b507ecc14b0ab2 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.481-0600 INFO l1infotreesync/processor.go:432 block 56 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.481-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.482-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 57 to 57 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.482-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x91a60adbf892640996e08d6615a2b21491c71fbc3707e2301b681c6becf1b09a already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.482-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 52 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.482-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.482-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 53, blockHash: 0xfbe3865f018c29f1c2499070aa5d7f764116641aac1ef70e85c0f5ab49188067 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.482-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.484-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 53 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.484-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.484-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 54, blockHash: 0x4febc8316cce403a0c970c65c3635d841a8e1199310847803a330e2ebb1d4844 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.484-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.484-0600 DEBUG sync/evmdownloader.go:99 sending block 57 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.484-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 57, last block seen on L1 57 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.484-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 57, blockHash: 0x9a78f44f47dd219acf6a00fb77f5da69b0cff1b352880eb473f3c4d4ed24dc3c {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.484-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.484-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 57 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.485-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 54 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.485-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.485-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 55, blockHash: 0x464ad3a5418e87eb530ec9a7d4189005ef7a81f31a78ee9b2c507c33302cd947 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.485-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.486-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 57, BlockPosition: 1, L1InfoTreeIndex: 52, PreviousBlockHash: 0x3c82edde486afa6318f76b923503df1e9df1a57b1abf45b3f1394de4b71384e7, Timestamp: 1731611395, MainnetExitRoot: 0xb35055adcf286560fe219fc781df750b27f9fbfddb874898efc9e9950de2a140, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xc0a1ccbea4637aac6fe8329b3c0556a21de399cceae4dcbb05c29f0a5e3defa6, Hash: 0x85b828a8a0dfdb4dec3eecf9311723661757814884ed893e9f5ed3ce70124862 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.486-0600 INFO l1infotreesync/processor.go:432 block 57 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.486-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.487-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 55 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.487-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.487-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 56, blockHash: 0x3c82edde486afa6318f76b923503df1e9df1a57b1abf45b3f1394de4b71384e7 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.487-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.487-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 57 to 57 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.488-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 56 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.488-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.489-0600 DEBUG sync/evmdownloader.go:99 sending block 57 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.489-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 57, last block seen on L1 57 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.489-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 57, blockHash: 0x9a78f44f47dd219acf6a00fb77f5da69b0cff1b352880eb473f3c4d4ed24dc3c {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.489-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.491-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 57 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.491-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.503-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0xc0a1ccbea4637aac6fe8329b3c0556a21de399cceae4dcbb05c29f0a5e3defa6 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.519-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 58 to 58 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:02.520-0600 DEBUG sync/evmdownloader.go:104 sending block 58 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:02.521-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 58, last block seen on L1 58 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:02.521-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 58, blockHash: 0xdc6feb7d983aa9e7a7bf5942dd54146dbb2ab574689781c43fc25a3f1ed8c082 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:02.521-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:02.521-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 58 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:02.521-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:02.562-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.562-0600 INFO runtime/asm_arm64.s:1222 GER 0xc0a1ccbea4637aac6fe8329b3c0556a21de399cceae4dcbb05c29f0a5e3defa6 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.564-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xc0a1ccbea4637aac6fe8329b3c0556a21de399cceae4dcbb05c29f0a5e3defa6 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.583-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xc0a1ccbea4637aac6fe8329b3c0556a21de399cceae4dcbb05c29f0a5e3defa6 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.603-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xc0a1ccbea4637aac6fe8329b3c0556a21de399cceae4dcbb05c29f0a5e3defa6 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.621-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 58 to 58 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.621-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 58 to 58 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.622-0600 DEBUG runtime/asm_arm64.s:1222 syncer is not ready for the block 58 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.623-0600 DEBUG sync/evmdownloader.go:99 sending block 58 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.623-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 58, last block seen on L1 58 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.623-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 58, blockHash: 0x723c3b7910ba9eaf56394bb241b360afc272c89dd8da072218aedee1404444cf {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.623-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.623-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 58 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.623-0600 DEBUG sync/evmdownloader.go:99 sending block 58 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.623-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 58, last block seen on L1 58 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.623-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 58, blockHash: 0x723c3b7910ba9eaf56394bb241b360afc272c89dd8da072218aedee1404444cf {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.623-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.625-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 58, BlockPosition: 1, L1InfoTreeIndex: 53, PreviousBlockHash: 0x9a78f44f47dd219acf6a00fb77f5da69b0cff1b352880eb473f3c4d4ed24dc3c, Timestamp: 1731611396, MainnetExitRoot: 0x08fd3498df3508679e04f73031a09382263bf188e2e339e676a65c440bf9158e, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x943d0c935148f372630fc9bb4e4c5b6b23dcc82034472bf05c8ef94f380ae824, Hash: 0xfda89dfa0ae5a9a2865e6559062509b02565fec1f242dc97c33f1e1ef9a311d0 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.625-0600 INFO l1infotreesync/processor.go:432 block 58 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.625-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 58 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.625-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.625-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.642-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x943d0c935148f372630fc9bb4e4c5b6b23dcc82034472bf05c8ef94f380ae824 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.652-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 59 to 59 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:02.652-0600 DEBUG sync/evmdownloader.go:104 sending block 59 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:02.654-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 59, last block seen on L1 59 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:02.654-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 59, blockHash: 0xfaa902c343d0172abc9a01f8cb709302d65c6479baacb8d3e7dfa3398611d3ff {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:02.654-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:02.654-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 59 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:02.654-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:02.701-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.701-0600 INFO runtime/asm_arm64.s:1222 GER 0x943d0c935148f372630fc9bb4e4c5b6b23dcc82034472bf05c8ef94f380ae824 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.703-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x943d0c935148f372630fc9bb4e4c5b6b23dcc82034472bf05c8ef94f380ae824 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.705-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x943d0c935148f372630fc9bb4e4c5b6b23dcc82034472bf05c8ef94f380ae824 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.723-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x943d0c935148f372630fc9bb4e4c5b6b23dcc82034472bf05c8ef94f380ae824 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.743-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x943d0c935148f372630fc9bb4e4c5b6b23dcc82034472bf05c8ef94f380ae824 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.759-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 59 to 59 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.761-0600 DEBUG sync/evmdownloader.go:99 sending block 59 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.761-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 59, last block seen on L1 59 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.761-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 59, blockHash: 0xbbc4acf3711dbf89e6e525aee234c46de15ee3c4e5d9509f29ba353d052a1128 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:02.761-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.761-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 59 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.763-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 59, BlockPosition: 1, L1InfoTreeIndex: 54, PreviousBlockHash: 0x723c3b7910ba9eaf56394bb241b360afc272c89dd8da072218aedee1404444cf, Timestamp: 1731611397, MainnetExitRoot: 0xc7df371c4e809ad1415ac8ded9cb2bb5dffc835e3fb766847e20a565d65d5ccd, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xeefebad4cc89f9db1acd9414b13a43f1eb7a371d3d456980cdb775cfc57e4dd5, Hash: 0x4248fbdb40aeb82c73d4c04fd3bdb0985a0bcd33545abdc454fc7a772376fe16 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.763-0600 DEBUG runtime/asm_arm64.s:1222 syncer is not ready for the block 59 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.763-0600 INFO l1infotreesync/processor.go:432 block 59 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.763-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.765-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 59 to 59 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.767-0600 DEBUG sync/evmdownloader.go:99 sending block 59 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.767-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 59, last block seen on L1 59 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.767-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 59, blockHash: 0xbbc4acf3711dbf89e6e525aee234c46de15ee3c4e5d9509f29ba353d052a1128 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:02.767-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.769-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 59 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.769-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:02.782-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0xeefebad4cc89f9db1acd9414b13a43f1eb7a371d3d456980cdb775cfc57e4dd5 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.795-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 60 to 60 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:02.795-0600 DEBUG sync/evmdownloader.go:104 sending block 60 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:02.797-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 60, last block seen on L1 60 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:02.797-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 60, blockHash: 0xf6e7f6744155a6aad89718254756d00e1e83417721eb92bf128e986d3eba3c19 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:02.797-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:02.797-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 60 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:02.797-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:02.841-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.841-0600 INFO runtime/asm_arm64.s:1222 GER 0xeefebad4cc89f9db1acd9414b13a43f1eb7a371d3d456980cdb775cfc57e4dd5 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.843-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xeefebad4cc89f9db1acd9414b13a43f1eb7a371d3d456980cdb775cfc57e4dd5 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.845-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xeefebad4cc89f9db1acd9414b13a43f1eb7a371d3d456980cdb775cfc57e4dd5 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.862-0600 DEBUG helpers/reorg.go:31 reorging until block 58. Current block 59 (before reorg) {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.863-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xeefebad4cc89f9db1acd9414b13a43f1eb7a371d3d456980cdb775cfc57e4dd5 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.864-0600 DEBUG bridgesync/e2e_test.go:72 removing expectedBridge with depositCount 54 due to reorg {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.864-0600 DEBUG bridgesync/e2e_test.go:81 reorgs: 6 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.883-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xeefebad4cc89f9db1acd9414b13a43f1eb7a371d3d456980cdb775cfc57e4dd5 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.903-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xeefebad4cc89f9db1acd9414b13a43f1eb7a371d3d456980cdb775cfc57e4dd5 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.923-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xeefebad4cc89f9db1acd9414b13a43f1eb7a371d3d456980cdb775cfc57e4dd5 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.943-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xeefebad4cc89f9db1acd9414b13a43f1eb7a371d3d456980cdb775cfc57e4dd5 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.963-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xeefebad4cc89f9db1acd9414b13a43f1eb7a371d3d456980cdb775cfc57e4dd5 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:02.983-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xeefebad4cc89f9db1acd9414b13a43f1eb7a371d3d456980cdb775cfc57e4dd5 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.003-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xeefebad4cc89f9db1acd9414b13a43f1eb7a371d3d456980cdb775cfc57e4dd5 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.023-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xeefebad4cc89f9db1acd9414b13a43f1eb7a371d3d456980cdb775cfc57e4dd5 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.040-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 60 to 60 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:03.042-0600 DEBUG sync/evmdownloader.go:99 sending block 60 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:03.042-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 60, last block seen on L1 60 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:03.042-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 60, blockHash: 0x99a56276ca01bb88f7c721e4a93e74e4f9db0b4a070cccb736a9dc5e797122e3 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:03.042-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.042-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 60 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.043-0600 DEBUG runtime/asm_arm64.s:1222 syncer is not ready for the block 60 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.044-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 60, BlockPosition: 1, L1InfoTreeIndex: 55, PreviousBlockHash: 0x81ba93420a93776264fb1437c896b5b146fc6a4392fa209855e57c3298da2d78, Timestamp: 1731611399, MainnetExitRoot: 0x1d4952c250e8cfb2dc234e6b1592857d0636ee12b700354af968e7a3cffc1d48, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x3c9915e3db45ec268f5de970175458bb45b06e935fadd38b8aa9a6467fb31c24, Hash: 0xd440a0e131924e4c1dab70f76fa040572531b4e6282e039a99cb6366a88824a8 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.044-0600 INFO l1infotreesync/processor.go:432 block 60 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.044-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.048-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 60 to 60 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:03.050-0600 DEBUG sync/evmdownloader.go:99 sending block 60 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:03.051-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 60, last block seen on L1 60 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:03.051-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 60, blockHash: 0x99a56276ca01bb88f7c721e4a93e74e4f9db0b4a070cccb736a9dc5e797122e3 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:03.051-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:03.052-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 60 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:03.052-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:03.062-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x3c9915e3db45ec268f5de970175458bb45b06e935fadd38b8aa9a6467fb31c24 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.078-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 61 to 61 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:03.078-0600 DEBUG sync/evmdownloader.go:104 sending block 61 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:03.079-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 61, last block seen on L1 61 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:03.079-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 61, blockHash: 0x68841c1ee19b532618b93756751678e38118265e0e71b7c5e1f62b72547c6187 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:03.080-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:03.080-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 61 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:03.080-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:03.121-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.121-0600 INFO runtime/asm_arm64.s:1222 GER 0x3c9915e3db45ec268f5de970175458bb45b06e935fadd38b8aa9a6467fb31c24 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.123-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x3c9915e3db45ec268f5de970175458bb45b06e935fadd38b8aa9a6467fb31c24 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.125-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x3c9915e3db45ec268f5de970175458bb45b06e935fadd38b8aa9a6467fb31c24 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.143-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x3c9915e3db45ec268f5de970175458bb45b06e935fadd38b8aa9a6467fb31c24 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.163-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x3c9915e3db45ec268f5de970175458bb45b06e935fadd38b8aa9a6467fb31c24 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.178-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 61 to 61 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:03.180-0600 DEBUG sync/evmdownloader.go:99 sending block 61 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:03.180-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 61, last block seen on L1 61 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:03.180-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 61, blockHash: 0xeff74cc7ee0684c2dde7c701658ffbf56df9e9503fe59be8c4ec73cb283c5cde {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:03.180-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.180-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 61 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.181-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 61, BlockPosition: 1, L1InfoTreeIndex: 56, PreviousBlockHash: 0x99a56276ca01bb88f7c721e4a93e74e4f9db0b4a070cccb736a9dc5e797122e3, Timestamp: 1731611400, MainnetExitRoot: 0x93f9b9645e93f5cc9cac08dc653eaafe287f067dad7c3d5f32fec7bb300fcbf8, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x709ab26b8f7f84b906d5a971276f4d8f6c37ddba2af2f25e1d848329a6274e87, Hash: 0x5c7248234c3872e7196fea75e276f5ea9d23af4fb5b33b97c5eb956384795500 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.182-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 61 to 61 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:03.182-0600 INFO l1infotreesync/processor.go:432 block 61 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.182-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.183-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x709ab26b8f7f84b906d5a971276f4d8f6c37ddba2af2f25e1d848329a6274e87 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.184-0600 DEBUG sync/evmdownloader.go:99 sending block 61 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:03.184-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 61, last block seen on L1 61 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:03.184-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 61, blockHash: 0xeff74cc7ee0684c2dde7c701658ffbf56df9e9503fe59be8c4ec73cb283c5cde {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:03.184-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:03.185-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 61 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:03.185-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:03.201-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 62 to 62 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:03.201-0600 DEBUG sync/evmdownloader.go:104 sending block 62 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:03.202-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 62, last block seen on L1 62 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:03.202-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 62, blockHash: 0x6230236a96160c5b90363b52a4bd409cd8128738098d0946d2aed5afe956cd55 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:03.202-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:03.202-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 62 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:03.202-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:03.242-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.242-0600 INFO runtime/asm_arm64.s:1222 GER 0x709ab26b8f7f84b906d5a971276f4d8f6c37ddba2af2f25e1d848329a6274e87 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.244-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x709ab26b8f7f84b906d5a971276f4d8f6c37ddba2af2f25e1d848329a6274e87 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.263-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x709ab26b8f7f84b906d5a971276f4d8f6c37ddba2af2f25e1d848329a6274e87 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.284-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x709ab26b8f7f84b906d5a971276f4d8f6c37ddba2af2f25e1d848329a6274e87 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.307-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x709ab26b8f7f84b906d5a971276f4d8f6c37ddba2af2f25e1d848329a6274e87 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.347-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x709ab26b8f7f84b906d5a971276f4d8f6c37ddba2af2f25e1d848329a6274e87 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.363-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x709ab26b8f7f84b906d5a971276f4d8f6c37ddba2af2f25e1d848329a6274e87 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.377-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 62 to 62 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:03.379-0600 DEBUG sync/evmdownloader.go:99 sending block 62 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:03.379-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 62, last block seen on L1 62 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:03.379-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 62, blockHash: 0xea3929daa33cef6417a05cc535092d827f07f2c6ca1f8b09bb4c389bef6cf5c2 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:03.379-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.379-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 62 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.381-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 62, BlockPosition: 1, L1InfoTreeIndex: 57, PreviousBlockHash: 0xeff74cc7ee0684c2dde7c701658ffbf56df9e9503fe59be8c4ec73cb283c5cde, Timestamp: 1731611401, MainnetExitRoot: 0x9759ca6dcf3cda33f60e8e090476b8f6ffeb27acff808cc7e31baf18972383fd, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x43ad54b56952a29754d82aaffe2a1248ab7fb9ab1b2f624d2b4767a3601d1630, Hash: 0x5b5239c8ba4a0320280247fdcdfa3d72fc983458c7d5a4f47c1dc612248c984e {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.381-0600 INFO l1infotreesync/processor.go:432 block 62 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.381-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.383-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x43ad54b56952a29754d82aaffe2a1248ab7fb9ab1b2f624d2b4767a3601d1630 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.385-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 62 to 62 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:03.387-0600 DEBUG sync/evmdownloader.go:99 sending block 62 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:03.387-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 62, last block seen on L1 62 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:03.387-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 62, blockHash: 0xea3929daa33cef6417a05cc535092d827f07f2c6ca1f8b09bb4c389bef6cf5c2 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:03.387-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:03.389-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 62 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:03.389-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:03.393-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 63 to 63 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:03.394-0600 DEBUG sync/evmdownloader.go:104 sending block 63 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:03.395-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 63, last block seen on L1 63 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:03.395-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 63, blockHash: 0xe0c06dd53ab11156657807bfcfa20cebf74e40d4429c318bcff3bc2d924a6d52 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:03.395-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:03.395-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 63 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:03.395-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:03.442-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.442-0600 INFO runtime/asm_arm64.s:1222 GER 0x43ad54b56952a29754d82aaffe2a1248ab7fb9ab1b2f624d2b4767a3601d1630 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.444-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x43ad54b56952a29754d82aaffe2a1248ab7fb9ab1b2f624d2b4767a3601d1630 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.463-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x43ad54b56952a29754d82aaffe2a1248ab7fb9ab1b2f624d2b4767a3601d1630 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.484-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x43ad54b56952a29754d82aaffe2a1248ab7fb9ab1b2f624d2b4767a3601d1630 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.503-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x43ad54b56952a29754d82aaffe2a1248ab7fb9ab1b2f624d2b4767a3601d1630 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.515-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 63 to 63 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:03.517-0600 DEBUG sync/evmdownloader.go:99 sending block 63 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:03.517-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 63, last block seen on L1 63 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:03.517-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 63, blockHash: 0x279c7c0ab0f6c570d7c7dece1096f6bbfa232671899b7ec3cafb1d61caccf174 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:03.517-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.517-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 63 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.518-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 63, BlockPosition: 1, L1InfoTreeIndex: 58, PreviousBlockHash: 0xea3929daa33cef6417a05cc535092d827f07f2c6ca1f8b09bb4c389bef6cf5c2, Timestamp: 1731611402, MainnetExitRoot: 0x246202edbc02e3412793d743a1e7951c7aee7a375060de662ba178c62ff288ea, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x7fabf9c25a6ee4f23ced5482c8c42ae323d5d41dfbbb7cf520081e123f532204, Hash: 0x51f714ef237ecaa865852df81527de44fc54c18dff47c54f0d14a6015af73fea {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.518-0600 INFO l1infotreesync/processor.go:432 block 63 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.518-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.519-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 63 to 63 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:03.521-0600 DEBUG sync/evmdownloader.go:99 sending block 63 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:03.521-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 63, last block seen on L1 63 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:03.521-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 63, blockHash: 0x279c7c0ab0f6c570d7c7dece1096f6bbfa232671899b7ec3cafb1d61caccf174 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:03.521-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:03.522-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 63 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:03.522-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:03.523-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x7fabf9c25a6ee4f23ced5482c8c42ae323d5d41dfbbb7cf520081e123f532204 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.536-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 64 to 64 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:03.537-0600 DEBUG sync/evmdownloader.go:104 sending block 64 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:03.538-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 64, last block seen on L1 64 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:03.538-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 64, blockHash: 0x12c07151bfbb4cbc6b65a0dbeef095276fe6ef03fff63439292cb237f80fe5c3 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:03.538-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:03.538-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 64 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:03.538-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:03.582-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.582-0600 INFO runtime/asm_arm64.s:1222 GER 0x7fabf9c25a6ee4f23ced5482c8c42ae323d5d41dfbbb7cf520081e123f532204 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.584-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x7fabf9c25a6ee4f23ced5482c8c42ae323d5d41dfbbb7cf520081e123f532204 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.603-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x7fabf9c25a6ee4f23ced5482c8c42ae323d5d41dfbbb7cf520081e123f532204 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.623-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x7fabf9c25a6ee4f23ced5482c8c42ae323d5d41dfbbb7cf520081e123f532204 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.643-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x7fabf9c25a6ee4f23ced5482c8c42ae323d5d41dfbbb7cf520081e123f532204 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.654-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 64 to 64 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:03.656-0600 DEBUG sync/evmdownloader.go:99 sending block 64 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:03.656-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 64, last block seen on L1 64 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:03.656-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 64, blockHash: 0x9f596a06b21ba66c0d1a53bd3161e2b39ac565fa068f3764539ded6f7db5a70f {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:03.656-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.656-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 64 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.657-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 64, BlockPosition: 1, L1InfoTreeIndex: 59, PreviousBlockHash: 0x279c7c0ab0f6c570d7c7dece1096f6bbfa232671899b7ec3cafb1d61caccf174, Timestamp: 1731611403, MainnetExitRoot: 0x4edadfeac2ad206ec3c686e9593032336aabb2c15374cf0928cbce29ec33cc5f, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x0c3dd9fa7a933bebe625bcfe16d6784beab171d5edf5f0ad553abc3dcc239edf, Hash: 0x39636a9de23ab95532d9752bb732100d9d84c4a92593bef7c5b58adfcac3ef8d {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.659-0600 INFO l1infotreesync/processor.go:432 block 64 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.659-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.662-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 64 to 64 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:03.663-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x0c3dd9fa7a933bebe625bcfe16d6784beab171d5edf5f0ad553abc3dcc239edf {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.664-0600 DEBUG sync/evmdownloader.go:99 sending block 64 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:03.664-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 64, last block seen on L1 64 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:03.664-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 64, blockHash: 0x9f596a06b21ba66c0d1a53bd3161e2b39ac565fa068f3764539ded6f7db5a70f {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:03.665-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:03.666-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 64 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:03.666-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:03.679-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 65 to 65 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:03.679-0600 DEBUG sync/evmdownloader.go:104 sending block 65 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:03.681-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 65, last block seen on L1 65 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:03.681-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 65, blockHash: 0x0c25a33cb78a72d10a5d4368b50d92bb3d937c9a7253772250fdd045cbb2c298 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:03.681-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:03.681-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 65 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:03.681-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:03.722-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.722-0600 INFO runtime/asm_arm64.s:1222 GER 0x0c3dd9fa7a933bebe625bcfe16d6784beab171d5edf5f0ad553abc3dcc239edf injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.723-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x0c3dd9fa7a933bebe625bcfe16d6784beab171d5edf5f0ad553abc3dcc239edf already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.743-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x0c3dd9fa7a933bebe625bcfe16d6784beab171d5edf5f0ad553abc3dcc239edf already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.763-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x0c3dd9fa7a933bebe625bcfe16d6784beab171d5edf5f0ad553abc3dcc239edf already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.783-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x0c3dd9fa7a933bebe625bcfe16d6784beab171d5edf5f0ad553abc3dcc239edf already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.790-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 65 to 65 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:03.792-0600 DEBUG sync/evmdownloader.go:99 sending block 65 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:03.792-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 65, last block seen on L1 65 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:03.792-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 65, blockHash: 0x1e1c006cc707ff7326635b3074980b3a5f1a53f2c89877e05c9c8796f8a1fd0d {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:03.792-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.792-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 65 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.793-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 65, BlockPosition: 1, L1InfoTreeIndex: 60, PreviousBlockHash: 0x9f596a06b21ba66c0d1a53bd3161e2b39ac565fa068f3764539ded6f7db5a70f, Timestamp: 1731611404, MainnetExitRoot: 0xfd70dcbf52b54167b46d18f8525d84ceaaba3fe3a5857d93629abbe00309a15a, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x61d8f3cf6fc65e57fde546346d564fd17919700addb9b43ad64e25a7fe52fa13, Hash: 0x50eaa88a021d684cc952725ea2024b0d6ea3ddd7aaaca183f0d0ad497a4d8fad {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.794-0600 INFO l1infotreesync/processor.go:432 block 65 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.794-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.796-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 65 to 65 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:03.798-0600 DEBUG sync/evmdownloader.go:99 sending block 65 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:03.798-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 65, last block seen on L1 65 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:03.798-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 65, blockHash: 0x1e1c006cc707ff7326635b3074980b3a5f1a53f2c89877e05c9c8796f8a1fd0d {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:03.798-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:03.800-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 65 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:03.800-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:03.803-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x61d8f3cf6fc65e57fde546346d564fd17919700addb9b43ad64e25a7fe52fa13 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.822-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 66 to 66 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:03.822-0600 DEBUG sync/evmdownloader.go:104 sending block 66 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:03.824-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 66, last block seen on L1 66 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:03.824-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 66, blockHash: 0x9c108fb65a6f0761cc12fdf8c95395be59c5c4aa10bc87a3f57b76d02f171345 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:03.824-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:03.824-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 66 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:03.824-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:03.862-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.862-0600 INFO runtime/asm_arm64.s:1222 GER 0x61d8f3cf6fc65e57fde546346d564fd17919700addb9b43ad64e25a7fe52fa13 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.864-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x61d8f3cf6fc65e57fde546346d564fd17919700addb9b43ad64e25a7fe52fa13 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.883-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x61d8f3cf6fc65e57fde546346d564fd17919700addb9b43ad64e25a7fe52fa13 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.903-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x61d8f3cf6fc65e57fde546346d564fd17919700addb9b43ad64e25a7fe52fa13 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.923-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x61d8f3cf6fc65e57fde546346d564fd17919700addb9b43ad64e25a7fe52fa13 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.928-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 66 to 66 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:03.929-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 66 to 66 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:03.930-0600 DEBUG sync/evmdownloader.go:99 sending block 66 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:03.930-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 66, last block seen on L1 66 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:03.930-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 66, blockHash: 0xaf2bbe43285f04abe0da73cc2525a4c566647164b305e61409b388efb0f6953e {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:03.931-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.931-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 66 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.931-0600 DEBUG sync/evmdownloader.go:99 sending block 66 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:03.931-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 66, last block seen on L1 66 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:03.932-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 66, blockHash: 0xaf2bbe43285f04abe0da73cc2525a4c566647164b305e61409b388efb0f6953e {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:03.932-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:03.932-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 66, BlockPosition: 1, L1InfoTreeIndex: 61, PreviousBlockHash: 0x1e1c006cc707ff7326635b3074980b3a5f1a53f2c89877e05c9c8796f8a1fd0d, Timestamp: 1731611405, MainnetExitRoot: 0xf3a06012e3c1c753bcff9e57ca4d0de8cda2496f0ac6d9e32754e2e3d8fef4ba, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x45bea33d2c8b3abe00434632a3d6e00d622d5d74ee3a14af92c59255414cf58a, Hash: 0x966f9b65e4e15fdef39743b82ffbcddfb6a5bf94bb133000fd6793792bed210b {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.932-0600 INFO l1infotreesync/processor.go:432 block 66 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.932-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.933-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 66 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:03.933-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:03.943-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x45bea33d2c8b3abe00434632a3d6e00d622d5d74ee3a14af92c59255414cf58a {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:03.955-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 67 to 67 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:03.955-0600 DEBUG sync/evmdownloader.go:104 sending block 67 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:03.956-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 67, last block seen on L1 67 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:03.956-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 67, blockHash: 0x327809ab237e1380f18e365f6e1fef38a83f7b29a6733897e8dc6a061253528f {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:03.956-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:03.957-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 67 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:03.957-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:04.002-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.002-0600 INFO runtime/asm_arm64.s:1222 GER 0x45bea33d2c8b3abe00434632a3d6e00d622d5d74ee3a14af92c59255414cf58a injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.004-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x45bea33d2c8b3abe00434632a3d6e00d622d5d74ee3a14af92c59255414cf58a already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.023-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x45bea33d2c8b3abe00434632a3d6e00d622d5d74ee3a14af92c59255414cf58a already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.043-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x45bea33d2c8b3abe00434632a3d6e00d622d5d74ee3a14af92c59255414cf58a already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.063-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x45bea33d2c8b3abe00434632a3d6e00d622d5d74ee3a14af92c59255414cf58a already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.067-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 67 to 67 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.069-0600 DEBUG sync/evmdownloader.go:99 sending block 67 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.069-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 67, last block seen on L1 67 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.069-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 67, blockHash: 0x6707185f1f86a9b77c3b430288d682ec907bb4d2a84125887de24d6605dbf976 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.069-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.069-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 67 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.070-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 67, BlockPosition: 1, L1InfoTreeIndex: 62, PreviousBlockHash: 0xaf2bbe43285f04abe0da73cc2525a4c566647164b305e61409b388efb0f6953e, Timestamp: 1731611406, MainnetExitRoot: 0x8a6b33c596c517b789bc8948077c21c6ae9303a3f5c17452679f72076bfac6c9, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xd9a002fc76d645ac53d907bc2671f4a8a5e1a082142efe21570152ebdb8960b3, Hash: 0xb4fa42a8f573c76499029858e0281f4e89e52ffa1b48edcb4203faf4ec232e58 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.071-0600 INFO l1infotreesync/processor.go:432 block 67 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.071-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.073-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 67 to 67 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.075-0600 DEBUG sync/evmdownloader.go:99 sending block 67 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.075-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 67, last block seen on L1 67 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.075-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 67, blockHash: 0x6707185f1f86a9b77c3b430288d682ec907bb4d2a84125887de24d6605dbf976 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.075-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.077-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 67 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.077-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.083-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0xd9a002fc76d645ac53d907bc2671f4a8a5e1a082142efe21570152ebdb8960b3 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.098-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 68 to 68 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:04.098-0600 DEBUG sync/evmdownloader.go:104 sending block 68 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:04.099-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 68, last block seen on L1 68 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:04.099-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 68, blockHash: 0x99a3249097472c13a06cc3e42acdef3c36cdcd78e4cb1fedf21b1683b909c925 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:04.099-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:04.099-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 68 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:04.099-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:04.142-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.142-0600 INFO runtime/asm_arm64.s:1222 GER 0xd9a002fc76d645ac53d907bc2671f4a8a5e1a082142efe21570152ebdb8960b3 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.144-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xd9a002fc76d645ac53d907bc2671f4a8a5e1a082142efe21570152ebdb8960b3 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.163-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xd9a002fc76d645ac53d907bc2671f4a8a5e1a082142efe21570152ebdb8960b3 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.183-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xd9a002fc76d645ac53d907bc2671f4a8a5e1a082142efe21570152ebdb8960b3 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.203-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xd9a002fc76d645ac53d907bc2671f4a8a5e1a082142efe21570152ebdb8960b3 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.207-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 68 to 68 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.209-0600 DEBUG sync/evmdownloader.go:99 sending block 68 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.209-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 68, last block seen on L1 68 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.209-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 68, blockHash: 0x2d876ff3cbb7de67902d04d29b83c1ec61669e9982df450be84f51e8e4420cb4 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.210-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.210-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 68 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.211-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 68, BlockPosition: 1, L1InfoTreeIndex: 63, PreviousBlockHash: 0x6707185f1f86a9b77c3b430288d682ec907bb4d2a84125887de24d6605dbf976, Timestamp: 1731611407, MainnetExitRoot: 0x1f95729c2c4ba464d87c3a5040095831b62c115b79785b3c0f668963f598bba5, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x71e6e171a054d1aeb521184fe2c96733912f89377d08dfbe481da3129da92c16, Hash: 0xa2f541d7426d0961a358ff3b7a0550229c24be84179956a597b8f13404637616 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.211-0600 INFO l1infotreesync/processor.go:432 block 68 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.211-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.217-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 68 to 68 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.219-0600 DEBUG sync/evmdownloader.go:99 sending block 68 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.219-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 68, last block seen on L1 68 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.219-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 68, blockHash: 0x2d876ff3cbb7de67902d04d29b83c1ec61669e9982df450be84f51e8e4420cb4 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.219-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.222-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 68 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.222-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.223-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x71e6e171a054d1aeb521184fe2c96733912f89377d08dfbe481da3129da92c16 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.241-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 69 to 69 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:04.241-0600 DEBUG sync/evmdownloader.go:104 sending block 69 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:04.242-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 69, last block seen on L1 69 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:04.242-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 69, blockHash: 0xb9be8d5441809f053f94f63e3d219c8666561fd134a56aa8096b766081349bf9 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:04.242-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:04.242-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 69 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:04.242-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:04.282-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.282-0600 INFO runtime/asm_arm64.s:1222 GER 0x71e6e171a054d1aeb521184fe2c96733912f89377d08dfbe481da3129da92c16 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.284-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x71e6e171a054d1aeb521184fe2c96733912f89377d08dfbe481da3129da92c16 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.303-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x71e6e171a054d1aeb521184fe2c96733912f89377d08dfbe481da3129da92c16 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.312-0600 DEBUG helpers/reorg.go:31 reorging until block 67. Current block 68 (before reorg) {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.314-0600 DEBUG bridgesync/e2e_test.go:72 removing expectedBridge with depositCount 63 due to reorg {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.314-0600 DEBUG bridgesync/e2e_test.go:81 reorgs: 7 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.323-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x71e6e171a054d1aeb521184fe2c96733912f89377d08dfbe481da3129da92c16 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.343-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x71e6e171a054d1aeb521184fe2c96733912f89377d08dfbe481da3129da92c16 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.363-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x71e6e171a054d1aeb521184fe2c96733912f89377d08dfbe481da3129da92c16 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.383-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x71e6e171a054d1aeb521184fe2c96733912f89377d08dfbe481da3129da92c16 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.403-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x71e6e171a054d1aeb521184fe2c96733912f89377d08dfbe481da3129da92c16 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.423-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x71e6e171a054d1aeb521184fe2c96733912f89377d08dfbe481da3129da92c16 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.444-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x71e6e171a054d1aeb521184fe2c96733912f89377d08dfbe481da3129da92c16 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.464-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x71e6e171a054d1aeb521184fe2c96733912f89377d08dfbe481da3129da92c16 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.468-0600 DEBUG sync/evmdriver.go:104 handleReorg from block: 59 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.468-0600 DEBUG l1infotreesync/processor.go:243 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.469-0600 INFO sync/evmdriver.go:89 Starting sync... lastProcessedBlock 58 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.469-0600 DEBUG bridgesync/processor.go:259 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx BRIDGE SYNC xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.469-0600 INFO sync/evmdriver.go:89 Starting sync... lastProcessedBlock 58 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.471-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 59 to 68 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.480-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 59 to 68 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.482-0600 DEBUG runtime/asm_arm64.s:1222 syncer is not ready for the block 68 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.490-0600 DEBUG sync/evmdownloader.go:99 sending block 59 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.490-0600 DEBUG sync/evmdownloader.go:99 sending block 60 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.490-0600 DEBUG sync/evmdownloader.go:99 sending block 61 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.490-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 59, blockHash: 0x81ba93420a93776264fb1437c896b5b146fc6a4392fa209855e57c3298da2d78 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.490-0600 DEBUG sync/evmdownloader.go:99 sending block 62 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.490-0600 DEBUG sync/evmdownloader.go:99 sending block 63 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.490-0600 DEBUG sync/evmdownloader.go:99 sending block 64 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.490-0600 DEBUG sync/evmdownloader.go:99 sending block 65 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.490-0600 DEBUG sync/evmdownloader.go:99 sending block 66 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.490-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.490-0600 DEBUG sync/evmdownloader.go:99 sending block 67 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.490-0600 DEBUG sync/evmdownloader.go:99 sending block 68 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.490-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 59 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.490-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 68, last block seen on L1 68 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.493-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 59, BlockPosition: 1, L1InfoTreeIndex: 54, PreviousBlockHash: 0x723c3b7910ba9eaf56394bb241b360afc272c89dd8da072218aedee1404444cf, Timestamp: 1731611398, MainnetExitRoot: 0x9a3855a19c88a78b0aea5defab3af21e4e35c39dd60dce4bbcc26306e360ac08, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xee7d1e5d844ce0be87f9040621c6e0d0c48aec181e993d50b6febf3b074ae75d, Hash: 0xd32fd69f6735f77bde94350ff03fa4b89a80ca77f2cb5bfadbc8bbda5d40de69 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.493-0600 INFO l1infotreesync/processor.go:432 block 59 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.493-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.493-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 60, blockHash: 0x99a56276ca01bb88f7c721e4a93e74e4f9db0b4a070cccb736a9dc5e797122e3 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.493-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.493-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 60 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.495-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 60, BlockPosition: 1, L1InfoTreeIndex: 55, PreviousBlockHash: 0x81ba93420a93776264fb1437c896b5b146fc6a4392fa209855e57c3298da2d78, Timestamp: 1731611399, MainnetExitRoot: 0x1d4952c250e8cfb2dc234e6b1592857d0636ee12b700354af968e7a3cffc1d48, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x3c9915e3db45ec268f5de970175458bb45b06e935fadd38b8aa9a6467fb31c24, Hash: 0xd440a0e131924e4c1dab70f76fa040572531b4e6282e039a99cb6366a88824a8 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.495-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 69 to 69 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.495-0600 INFO l1infotreesync/processor.go:432 block 60 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.495-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.495-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 61, blockHash: 0xeff74cc7ee0684c2dde7c701658ffbf56df9e9503fe59be8c4ec73cb283c5cde {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.495-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.495-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 61 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.496-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 61, BlockPosition: 1, L1InfoTreeIndex: 56, PreviousBlockHash: 0x99a56276ca01bb88f7c721e4a93e74e4f9db0b4a070cccb736a9dc5e797122e3, Timestamp: 1731611400, MainnetExitRoot: 0x93f9b9645e93f5cc9cac08dc653eaafe287f067dad7c3d5f32fec7bb300fcbf8, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x709ab26b8f7f84b906d5a971276f4d8f6c37ddba2af2f25e1d848329a6274e87, Hash: 0x5c7248234c3872e7196fea75e276f5ea9d23af4fb5b33b97c5eb956384795500 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.497-0600 INFO l1infotreesync/processor.go:432 block 61 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.497-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.497-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 62, blockHash: 0xea3929daa33cef6417a05cc535092d827f07f2c6ca1f8b09bb4c389bef6cf5c2 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.497-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.497-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 62 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.497-0600 DEBUG sync/evmdownloader.go:99 sending block 69 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.497-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 69, last block seen on L1 69 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.498-0600 DEBUG sync/evmdownloader.go:99 sending block 59 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.498-0600 DEBUG sync/evmdownloader.go:99 sending block 60 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.498-0600 DEBUG sync/evmdownloader.go:99 sending block 61 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.498-0600 DEBUG sync/evmdownloader.go:99 sending block 62 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.498-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 59, blockHash: 0x81ba93420a93776264fb1437c896b5b146fc6a4392fa209855e57c3298da2d78 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.498-0600 DEBUG sync/evmdownloader.go:99 sending block 63 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.498-0600 DEBUG sync/evmdownloader.go:99 sending block 64 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.498-0600 DEBUG sync/evmdownloader.go:99 sending block 65 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.498-0600 DEBUG sync/evmdownloader.go:99 sending block 66 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.498-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 62, BlockPosition: 1, L1InfoTreeIndex: 57, PreviousBlockHash: 0xeff74cc7ee0684c2dde7c701658ffbf56df9e9503fe59be8c4ec73cb283c5cde, Timestamp: 1731611401, MainnetExitRoot: 0x9759ca6dcf3cda33f60e8e090476b8f6ffeb27acff808cc7e31baf18972383fd, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x43ad54b56952a29754d82aaffe2a1248ab7fb9ab1b2f624d2b4767a3601d1630, Hash: 0x5b5239c8ba4a0320280247fdcdfa3d72fc983458c7d5a4f47c1dc612248c984e {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.498-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.498-0600 DEBUG sync/evmdownloader.go:99 sending block 67 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.498-0600 DEBUG sync/evmdownloader.go:99 sending block 68 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.498-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 68, last block seen on L1 68 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.498-0600 INFO l1infotreesync/processor.go:432 block 62 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.498-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.498-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 63, blockHash: 0x279c7c0ab0f6c570d7c7dece1096f6bbfa232671899b7ec3cafb1d61caccf174 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.498-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.499-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 63 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.500-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 63, BlockPosition: 1, L1InfoTreeIndex: 58, PreviousBlockHash: 0xea3929daa33cef6417a05cc535092d827f07f2c6ca1f8b09bb4c389bef6cf5c2, Timestamp: 1731611402, MainnetExitRoot: 0x246202edbc02e3412793d743a1e7951c7aee7a375060de662ba178c62ff288ea, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x7fabf9c25a6ee4f23ced5482c8c42ae323d5d41dfbbb7cf520081e123f532204, Hash: 0x51f714ef237ecaa865852df81527de44fc54c18dff47c54f0d14a6015af73fea {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.500-0600 INFO l1infotreesync/processor.go:432 block 63 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.500-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.500-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 64, blockHash: 0x9f596a06b21ba66c0d1a53bd3161e2b39ac565fa068f3764539ded6f7db5a70f {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.500-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.500-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 64 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.501-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 59 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.501-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.501-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 60, blockHash: 0x99a56276ca01bb88f7c721e4a93e74e4f9db0b4a070cccb736a9dc5e797122e3 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.501-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.501-0600 DEBUG runtime/asm_arm64.s:1222 syncer is not ready for the block 68 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.502-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 64, BlockPosition: 1, L1InfoTreeIndex: 59, PreviousBlockHash: 0x279c7c0ab0f6c570d7c7dece1096f6bbfa232671899b7ec3cafb1d61caccf174, Timestamp: 1731611403, MainnetExitRoot: 0x4edadfeac2ad206ec3c686e9593032336aabb2c15374cf0928cbce29ec33cc5f, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x0c3dd9fa7a933bebe625bcfe16d6784beab171d5edf5f0ad553abc3dcc239edf, Hash: 0x39636a9de23ab95532d9752bb732100d9d84c4a92593bef7c5b58adfcac3ef8d {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.502-0600 INFO l1infotreesync/processor.go:432 block 64 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.502-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.502-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 65, blockHash: 0x1e1c006cc707ff7326635b3074980b3a5f1a53f2c89877e05c9c8796f8a1fd0d {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.502-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.502-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 65 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.503-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 60 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.503-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.503-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 61, blockHash: 0xeff74cc7ee0684c2dde7c701658ffbf56df9e9503fe59be8c4ec73cb283c5cde {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.503-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.504-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 65, BlockPosition: 1, L1InfoTreeIndex: 60, PreviousBlockHash: 0x9f596a06b21ba66c0d1a53bd3161e2b39ac565fa068f3764539ded6f7db5a70f, Timestamp: 1731611404, MainnetExitRoot: 0xfd70dcbf52b54167b46d18f8525d84ceaaba3fe3a5857d93629abbe00309a15a, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x61d8f3cf6fc65e57fde546346d564fd17919700addb9b43ad64e25a7fe52fa13, Hash: 0x50eaa88a021d684cc952725ea2024b0d6ea3ddd7aaaca183f0d0ad497a4d8fad {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.504-0600 INFO l1infotreesync/processor.go:432 block 65 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.504-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.504-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 66, blockHash: 0xaf2bbe43285f04abe0da73cc2525a4c566647164b305e61409b388efb0f6953e {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.504-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.504-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 66 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.504-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 61 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.504-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.504-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 62, blockHash: 0xea3929daa33cef6417a05cc535092d827f07f2c6ca1f8b09bb4c389bef6cf5c2 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.505-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.505-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 66, BlockPosition: 1, L1InfoTreeIndex: 61, PreviousBlockHash: 0x1e1c006cc707ff7326635b3074980b3a5f1a53f2c89877e05c9c8796f8a1fd0d, Timestamp: 1731611405, MainnetExitRoot: 0xf3a06012e3c1c753bcff9e57ca4d0de8cda2496f0ac6d9e32754e2e3d8fef4ba, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x45bea33d2c8b3abe00434632a3d6e00d622d5d74ee3a14af92c59255414cf58a, Hash: 0x966f9b65e4e15fdef39743b82ffbcddfb6a5bf94bb133000fd6793792bed210b {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.506-0600 INFO l1infotreesync/processor.go:432 block 66 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.506-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.506-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 67, blockHash: 0x6707185f1f86a9b77c3b430288d682ec907bb4d2a84125887de24d6605dbf976 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.506-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.506-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 67 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.506-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 62 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.506-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.506-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 63, blockHash: 0x279c7c0ab0f6c570d7c7dece1096f6bbfa232671899b7ec3cafb1d61caccf174 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.506-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.507-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 67, BlockPosition: 1, L1InfoTreeIndex: 62, PreviousBlockHash: 0xaf2bbe43285f04abe0da73cc2525a4c566647164b305e61409b388efb0f6953e, Timestamp: 1731611406, MainnetExitRoot: 0x8a6b33c596c517b789bc8948077c21c6ae9303a3f5c17452679f72076bfac6c9, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xd9a002fc76d645ac53d907bc2671f4a8a5e1a082142efe21570152ebdb8960b3, Hash: 0xb4fa42a8f573c76499029858e0281f4e89e52ffa1b48edcb4203faf4ec232e58 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.507-0600 INFO l1infotreesync/processor.go:432 block 67 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.507-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.507-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 68, blockHash: 0xb2dc09256f72e8f2cd3b870b14702300356efeeb6cdcba3532b0245f91d77ad1 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.507-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.508-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 68 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.508-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 63 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.508-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.508-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 64, blockHash: 0x9f596a06b21ba66c0d1a53bd3161e2b39ac565fa068f3764539ded6f7db5a70f {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.508-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.509-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 68, BlockPosition: 1, L1InfoTreeIndex: 63, PreviousBlockHash: 0x6707185f1f86a9b77c3b430288d682ec907bb4d2a84125887de24d6605dbf976, Timestamp: 1731611408, MainnetExitRoot: 0x8f0517538c470bcd5a9d65baecbd9fd453ba32b9cb0da08756012d01dda2a15f, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x972f702258a2a70f61c05eaff6ca5ee082b32e3eac5e681425305bf1123dec0c, Hash: 0x41370c85e1975eecda00b906eb9afc260caa5fe533eb08d6fd8f7f28baa5eedd {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.509-0600 INFO l1infotreesync/processor.go:432 block 68 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.509-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.509-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 69, blockHash: 0xc4b6dcd1c6bb91ea7f92db24858c41892b2a9af88e4fc2f549d1c5c95b8a0939 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.509-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.509-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 69 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.509-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 64 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.509-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.509-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 65, blockHash: 0x1e1c006cc707ff7326635b3074980b3a5f1a53f2c89877e05c9c8796f8a1fd0d {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.509-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 69 to 69 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.509-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.511-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 69, BlockPosition: 1, L1InfoTreeIndex: 64, PreviousBlockHash: 0xb2dc09256f72e8f2cd3b870b14702300356efeeb6cdcba3532b0245f91d77ad1, Timestamp: 1731611409, MainnetExitRoot: 0x13f2a76bc77c024c029ac91b2dd4d8207e1d750e84b98f7c9ccca95727b4c051, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xaad6d45d79a32d218921cbd9c85040ea5b0173a2c64e02f6ea32b41d7439b5e2, Hash: 0x64e74566e592ecef0faebc52df01e7a6e117ac93a0b31f606b392b58ec5e3d96 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.511-0600 INFO l1infotreesync/processor.go:432 block 69 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.511-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.511-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 65 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.511-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.511-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 66, blockHash: 0xaf2bbe43285f04abe0da73cc2525a4c566647164b305e61409b388efb0f6953e {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.511-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.511-0600 DEBUG sync/evmdownloader.go:99 sending block 69 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.512-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 69, last block seen on L1 69 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.513-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 66 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.513-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.513-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 67, blockHash: 0x6707185f1f86a9b77c3b430288d682ec907bb4d2a84125887de24d6605dbf976 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.513-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.514-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 67 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.514-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.514-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 68, blockHash: 0xb2dc09256f72e8f2cd3b870b14702300356efeeb6cdcba3532b0245f91d77ad1 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.514-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.516-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 68 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.516-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.516-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 69, blockHash: 0xc4b6dcd1c6bb91ea7f92db24858c41892b2a9af88e4fc2f549d1c5c95b8a0939 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.516-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.517-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 69 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.517-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.522-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0xaad6d45d79a32d218921cbd9c85040ea5b0173a2c64e02f6ea32b41d7439b5e2 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.533-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 70 to 70 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:04.534-0600 DEBUG sync/evmdownloader.go:104 sending block 70 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:04.535-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 70, last block seen on L1 70 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:04.535-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 70, blockHash: 0x258a32284f3d3915d195efc693dda11f288dbf84b1334641e14dca679caab046 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:04.535-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:04.535-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 70 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:04.535-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:04.581-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.581-0600 INFO runtime/asm_arm64.s:1222 GER 0xaad6d45d79a32d218921cbd9c85040ea5b0173a2c64e02f6ea32b41d7439b5e2 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.583-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xaad6d45d79a32d218921cbd9c85040ea5b0173a2c64e02f6ea32b41d7439b5e2 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.603-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xaad6d45d79a32d218921cbd9c85040ea5b0173a2c64e02f6ea32b41d7439b5e2 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.623-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xaad6d45d79a32d218921cbd9c85040ea5b0173a2c64e02f6ea32b41d7439b5e2 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.632-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 70 to 70 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.633-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 70 to 70 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.634-0600 DEBUG sync/evmdownloader.go:99 sending block 70 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.634-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 70, last block seen on L1 70 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.634-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 70, blockHash: 0x0137b2dc5b811f1ddec713b9c50c0a98609e96e5a029354e99b6d3dd39590b63 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.635-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.635-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 70 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.635-0600 DEBUG sync/evmdownloader.go:99 sending block 70 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.635-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 70, last block seen on L1 70 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.635-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 70, blockHash: 0x0137b2dc5b811f1ddec713b9c50c0a98609e96e5a029354e99b6d3dd39590b63 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.635-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.636-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 70, BlockPosition: 1, L1InfoTreeIndex: 65, PreviousBlockHash: 0xc4b6dcd1c6bb91ea7f92db24858c41892b2a9af88e4fc2f549d1c5c95b8a0939, Timestamp: 1731611410, MainnetExitRoot: 0x91a25650d434bf90198709423c69b19e766b9c1ab75b08966f34083f0980f387, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x5d766f03830813a4e31c476ecac98a6ad1a18048e530ef9636a3b52b1a908c65, Hash: 0x5ca8ed00f0288701c5893709ceb8858d17404bf832176c125d894c7a5e72b6e9 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.636-0600 INFO l1infotreesync/processor.go:432 block 70 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.636-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.637-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 70 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.637-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.643-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x5d766f03830813a4e31c476ecac98a6ad1a18048e530ef9636a3b52b1a908c65 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.656-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 71 to 71 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:04.657-0600 DEBUG sync/evmdownloader.go:104 sending block 71 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:04.658-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 71, last block seen on L1 71 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:04.658-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 71, blockHash: 0x96ae906e8969d696262d363fead6e8aba0b2920902e1a9e6498e04016db61962 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:04.658-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:04.658-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 71 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:04.658-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:04.702-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.702-0600 INFO runtime/asm_arm64.s:1222 GER 0x5d766f03830813a4e31c476ecac98a6ad1a18048e530ef9636a3b52b1a908c65 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.704-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x5d766f03830813a4e31c476ecac98a6ad1a18048e530ef9636a3b52b1a908c65 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.723-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x5d766f03830813a4e31c476ecac98a6ad1a18048e530ef9636a3b52b1a908c65 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.743-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x5d766f03830813a4e31c476ecac98a6ad1a18048e530ef9636a3b52b1a908c65 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.763-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x5d766f03830813a4e31c476ecac98a6ad1a18048e530ef9636a3b52b1a908c65 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.768-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 71 to 71 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.770-0600 DEBUG sync/evmdownloader.go:99 sending block 71 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.770-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 71, last block seen on L1 71 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.770-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 71, blockHash: 0x86d91a636c4220d8e3f6194b5ca3bacc3e07457a399f1a0dc379f24c7d12f5bd {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.770-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.770-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 71 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.771-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 71, BlockPosition: 1, L1InfoTreeIndex: 66, PreviousBlockHash: 0x0137b2dc5b811f1ddec713b9c50c0a98609e96e5a029354e99b6d3dd39590b63, Timestamp: 1731611411, MainnetExitRoot: 0x376cf8956254ad6727aa0ecbfd83ec4718a298093839b022d3436dfebbbde952, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x326eef2f605d2076cfaf8606b402bbaf6920f28b83584cb7542bd98882190433, Hash: 0xe512955e6cf3f79caa5147647d651b3da5233b450906934db10cd38b50802ff4 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.772-0600 INFO l1infotreesync/processor.go:432 block 71 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.772-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.776-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 71 to 71 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.778-0600 DEBUG sync/evmdownloader.go:99 sending block 71 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.778-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 71, last block seen on L1 71 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.778-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 71, blockHash: 0x86d91a636c4220d8e3f6194b5ca3bacc3e07457a399f1a0dc379f24c7d12f5bd {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.778-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.780-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 71 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.780-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.783-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x326eef2f605d2076cfaf8606b402bbaf6920f28b83584cb7542bd98882190433 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.799-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 72 to 72 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:04.799-0600 DEBUG sync/evmdownloader.go:104 sending block 72 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:04.801-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 72, last block seen on L1 72 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:04.801-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 72, blockHash: 0x9dd5192d34f8b58d7af92b3f7a2df8d83a5127cbcf417b78363be64f2d198cbf {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:04.801-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:04.801-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 72 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:04.801-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:04.842-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.842-0600 INFO runtime/asm_arm64.s:1222 GER 0x326eef2f605d2076cfaf8606b402bbaf6920f28b83584cb7542bd98882190433 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.844-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x326eef2f605d2076cfaf8606b402bbaf6920f28b83584cb7542bd98882190433 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.863-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x326eef2f605d2076cfaf8606b402bbaf6920f28b83584cb7542bd98882190433 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.883-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x326eef2f605d2076cfaf8606b402bbaf6920f28b83584cb7542bd98882190433 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.903-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x326eef2f605d2076cfaf8606b402bbaf6920f28b83584cb7542bd98882190433 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.906-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 72 to 72 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.908-0600 DEBUG sync/evmdownloader.go:99 sending block 72 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.908-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 72, last block seen on L1 72 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.908-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 72, blockHash: 0xc008095524a29f7e3ef59b40e20cc86be13e3c64cd1a332e4a119533190b1976 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:04.908-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.908-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 72 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.910-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 72, BlockPosition: 1, L1InfoTreeIndex: 67, PreviousBlockHash: 0x86d91a636c4220d8e3f6194b5ca3bacc3e07457a399f1a0dc379f24c7d12f5bd, Timestamp: 1731611412, MainnetExitRoot: 0x78833b6a5c46b1dfc5de1d04737f630fa5ced55c315731004e382682d33cf892, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x331287bbff45cd7cdc05debc94e9774386c1ac2fd34009ffcc70f62c7d8a7484, Hash: 0xcb1c0ab93f2fe63f73fcda065c49f265821b5370a9402b99948119f5fd16d56a {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.910-0600 INFO l1infotreesync/processor.go:432 block 72 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.910-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 72 to 72 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.910-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.912-0600 DEBUG sync/evmdownloader.go:99 sending block 72 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.912-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 72, last block seen on L1 72 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.912-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 72, blockHash: 0xc008095524a29f7e3ef59b40e20cc86be13e3c64cd1a332e4a119533190b1976 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:04.912-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.914-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 72 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.914-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:04.923-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x331287bbff45cd7cdc05debc94e9774386c1ac2fd34009ffcc70f62c7d8a7484 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.942-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 73 to 73 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:04.942-0600 DEBUG sync/evmdownloader.go:104 sending block 73 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:04.944-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 73, last block seen on L1 73 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:04.944-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 73, blockHash: 0x2565c52648b057860f3533513d2d855667dff5499bfb8f1eb9a3959db7b1e038 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:04.944-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:04.944-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 73 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:04.944-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:04.981-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.982-0600 INFO runtime/asm_arm64.s:1222 GER 0x331287bbff45cd7cdc05debc94e9774386c1ac2fd34009ffcc70f62c7d8a7484 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:04.984-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x331287bbff45cd7cdc05debc94e9774386c1ac2fd34009ffcc70f62c7d8a7484 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.003-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x331287bbff45cd7cdc05debc94e9774386c1ac2fd34009ffcc70f62c7d8a7484 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.023-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x331287bbff45cd7cdc05debc94e9774386c1ac2fd34009ffcc70f62c7d8a7484 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.043-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x331287bbff45cd7cdc05debc94e9774386c1ac2fd34009ffcc70f62c7d8a7484 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.044-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 73 to 73 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:05.046-0600 DEBUG sync/evmdownloader.go:99 sending block 73 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:05.046-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 73, last block seen on L1 73 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:05.046-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 73, blockHash: 0x5ba35eee8510d3f9a20bd835f2d49f2dd196ab11bcda126bf81deded2f754ff7 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:05.046-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.046-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 73 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.048-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 73, BlockPosition: 1, L1InfoTreeIndex: 68, PreviousBlockHash: 0xc008095524a29f7e3ef59b40e20cc86be13e3c64cd1a332e4a119533190b1976, Timestamp: 1731611413, MainnetExitRoot: 0xcf828b4b85e7e5a31b66afda6baf13e297808684c9a7b71451ee48461f5aefb6, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xfd99ec83e8e101952b492408d768b1944a7898b473eedccb43090049ad39d454, Hash: 0x0645166423a84ce3f64982cfd659679b4af936c2320c34fd08787771c7c3fcad {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.048-0600 INFO l1infotreesync/processor.go:432 block 73 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.048-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.053-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 73 to 73 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:05.056-0600 DEBUG sync/evmdownloader.go:99 sending block 73 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:05.056-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 73, last block seen on L1 73 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:05.056-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 73, blockHash: 0x5ba35eee8510d3f9a20bd835f2d49f2dd196ab11bcda126bf81deded2f754ff7 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:05.056-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:05.057-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 73 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:05.057-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:05.063-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0xfd99ec83e8e101952b492408d768b1944a7898b473eedccb43090049ad39d454 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.075-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 74 to 74 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:05.075-0600 DEBUG sync/evmdownloader.go:104 sending block 74 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:05.076-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 74, last block seen on L1 74 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:05.076-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 74, blockHash: 0x41955b2a2c3f172d03ad1baac3759913dedc959397f308c58337510ca9d122c2 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:05.076-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:05.077-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 74 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:05.077-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:05.122-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.122-0600 INFO runtime/asm_arm64.s:1222 GER 0xfd99ec83e8e101952b492408d768b1944a7898b473eedccb43090049ad39d454 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.124-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xfd99ec83e8e101952b492408d768b1944a7898b473eedccb43090049ad39d454 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.143-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xfd99ec83e8e101952b492408d768b1944a7898b473eedccb43090049ad39d454 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.163-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xfd99ec83e8e101952b492408d768b1944a7898b473eedccb43090049ad39d454 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.182-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 74 to 74 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:05.182-0600 DEBUG runtime/asm_arm64.s:1222 syncer is not ready for the block 74 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.184-0600 DEBUG sync/evmdownloader.go:99 sending block 74 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:05.184-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 74, last block seen on L1 74 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:05.184-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 74, blockHash: 0xbae253d3c0cfe1764989d9ed9983585e6a35520bf8adb24c47ec615d2a51e8df {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:05.184-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.184-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 74 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.185-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 74, BlockPosition: 1, L1InfoTreeIndex: 69, PreviousBlockHash: 0x5ba35eee8510d3f9a20bd835f2d49f2dd196ab11bcda126bf81deded2f754ff7, Timestamp: 1731611414, MainnetExitRoot: 0xf424063d3b8226db5104755f96280027adcbc89e18135bc030606c3106bd403e, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x569c9498eb75bbb225d0605b8961f07d8c31f08cfeb496a3134ae23d85444ba0, Hash: 0xfe2f38b3dbb38154dea877eb2812010f32fb2dc8a2b3017e1065a2953606b681 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.186-0600 INFO l1infotreesync/processor.go:432 block 74 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.186-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.187-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 74 to 74 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:05.189-0600 DEBUG sync/evmdownloader.go:99 sending block 74 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:05.189-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 74, last block seen on L1 74 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:05.189-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 74, blockHash: 0xbae253d3c0cfe1764989d9ed9983585e6a35520bf8adb24c47ec615d2a51e8df {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:05.189-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:05.191-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 74 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:05.191-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:05.202-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x569c9498eb75bbb225d0605b8961f07d8c31f08cfeb496a3134ae23d85444ba0 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.218-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 75 to 75 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:05.218-0600 DEBUG sync/evmdownloader.go:104 sending block 75 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:05.219-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 75, last block seen on L1 75 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:05.219-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 75, blockHash: 0x9a282815428d12f0c0914c10503032c8dfa13a39907bf7c774c29d1d7c201e35 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:05.219-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:05.220-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 75 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:05.220-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:05.262-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.262-0600 INFO runtime/asm_arm64.s:1222 GER 0x569c9498eb75bbb225d0605b8961f07d8c31f08cfeb496a3134ae23d85444ba0 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.264-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x569c9498eb75bbb225d0605b8961f07d8c31f08cfeb496a3134ae23d85444ba0 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.283-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x569c9498eb75bbb225d0605b8961f07d8c31f08cfeb496a3134ae23d85444ba0 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.303-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x569c9498eb75bbb225d0605b8961f07d8c31f08cfeb496a3134ae23d85444ba0 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.321-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 75 to 75 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:05.322-0600 DEBUG runtime/asm_arm64.s:1222 syncer is not ready for the block 75 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.323-0600 DEBUG sync/evmdownloader.go:99 sending block 75 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:05.323-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 75, last block seen on L1 75 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:05.323-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 75, blockHash: 0x32bc398606bb8177026e6cc7ce23ff37803e81c798e449e744c779a7ec3a9388 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:05.323-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.323-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 75 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.324-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 75, BlockPosition: 1, L1InfoTreeIndex: 70, PreviousBlockHash: 0xbae253d3c0cfe1764989d9ed9983585e6a35520bf8adb24c47ec615d2a51e8df, Timestamp: 1731611415, MainnetExitRoot: 0xa6cde073676c70e031ba161a15633f7422c7cd243d506af8c1ed69cbff09fce4, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x89dcca89e05f0940432f5f3c683800de697d0baaf06cfc91eac1ba07e81206e0, Hash: 0x7d9a0bdf44cf8e9799363833e0afc3a43a688a9f00e947df7889bc835b8abd5f {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.325-0600 INFO l1infotreesync/processor.go:432 block 75 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.325-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.330-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 75 to 75 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:05.332-0600 DEBUG sync/evmdownloader.go:99 sending block 75 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:05.332-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 75, last block seen on L1 75 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:05.332-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 75, blockHash: 0x32bc398606bb8177026e6cc7ce23ff37803e81c798e449e744c779a7ec3a9388 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:05.332-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:05.334-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 75 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:05.334-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:05.342-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x89dcca89e05f0940432f5f3c683800de697d0baaf06cfc91eac1ba07e81206e0 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.361-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 76 to 76 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:05.361-0600 DEBUG sync/evmdownloader.go:104 sending block 76 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:05.362-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 76, last block seen on L1 76 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:05.362-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 76, blockHash: 0x740b8e766cea34f4271db926f8819859ce3c31df4befcb7da3b145e1e62799ae {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:05.362-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:05.362-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 76 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:05.362-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:05.401-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.401-0600 INFO runtime/asm_arm64.s:1222 GER 0x89dcca89e05f0940432f5f3c683800de697d0baaf06cfc91eac1ba07e81206e0 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.403-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x89dcca89e05f0940432f5f3c683800de697d0baaf06cfc91eac1ba07e81206e0 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.405-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x89dcca89e05f0940432f5f3c683800de697d0baaf06cfc91eac1ba07e81206e0 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.423-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x89dcca89e05f0940432f5f3c683800de697d0baaf06cfc91eac1ba07e81206e0 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.443-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x89dcca89e05f0940432f5f3c683800de697d0baaf06cfc91eac1ba07e81206e0 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.461-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 76 to 76 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:05.462-0600 DEBUG runtime/asm_arm64.s:1222 syncer is not ready for the block 76 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.463-0600 DEBUG sync/evmdownloader.go:99 sending block 76 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:05.463-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 76, last block seen on L1 76 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:05.463-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 76, blockHash: 0xe2709d1777a40de9ad088b3c6222ba4f9a8e886ae002baa5f39228cf558245f3 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:05.463-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.463-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 76 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.464-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 76 to 76 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:05.464-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 76, BlockPosition: 1, L1InfoTreeIndex: 71, PreviousBlockHash: 0x32bc398606bb8177026e6cc7ce23ff37803e81c798e449e744c779a7ec3a9388, Timestamp: 1731611416, MainnetExitRoot: 0x3b074d51fd8e14a12745bdb22a7e83f53f190a5c8ff040bed4187cd57bd3df09, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xbb1ece8203ba66c14fd024e78fa19af51c647904447da24b645112f8d3abea29, Hash: 0xe282a81ec309a950c1a33026cf63f79a184a972a9d9358be8bacbfc63fb9b298 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.465-0600 INFO l1infotreesync/processor.go:432 block 76 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.465-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.466-0600 DEBUG sync/evmdownloader.go:99 sending block 76 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:05.466-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 76, last block seen on L1 76 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:05.466-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 76, blockHash: 0xe2709d1777a40de9ad088b3c6222ba4f9a8e886ae002baa5f39228cf558245f3 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:05.466-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:05.467-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 76 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:05.467-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:05.482-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0xbb1ece8203ba66c14fd024e78fa19af51c647904447da24b645112f8d3abea29 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.493-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 77 to 77 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:05.494-0600 DEBUG sync/evmdownloader.go:104 sending block 77 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:05.495-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 77, last block seen on L1 77 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:05.495-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 77, blockHash: 0xebbf3d677bd08a0bfbe2083cfb850f20715b9a8f8a0f35fcf653e3a2967f5012 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:05.495-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:05.495-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 77 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:05.495-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:05.541-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.541-0600 INFO runtime/asm_arm64.s:1222 GER 0xbb1ece8203ba66c14fd024e78fa19af51c647904447da24b645112f8d3abea29 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.543-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xbb1ece8203ba66c14fd024e78fa19af51c647904447da24b645112f8d3abea29 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.545-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xbb1ece8203ba66c14fd024e78fa19af51c647904447da24b645112f8d3abea29 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.563-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xbb1ece8203ba66c14fd024e78fa19af51c647904447da24b645112f8d3abea29 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.583-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xbb1ece8203ba66c14fd024e78fa19af51c647904447da24b645112f8d3abea29 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.597-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 77 to 77 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:05.598-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 77 to 77 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:05.599-0600 DEBUG sync/evmdownloader.go:99 sending block 77 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:05.599-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 77, last block seen on L1 77 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:05.599-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 77, blockHash: 0xa6266d9d94543d537770d30529505ea3046f048fcff0714f913d64b941f404ec {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:05.599-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:05.600-0600 DEBUG sync/evmdownloader.go:99 sending block 77 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:05.600-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 77, last block seen on L1 77 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:05.600-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 77, blockHash: 0xa6266d9d94543d537770d30529505ea3046f048fcff0714f913d64b941f404ec {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:05.600-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.600-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 77 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.601-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 77 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:05.601-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:05.601-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 77, BlockPosition: 1, L1InfoTreeIndex: 72, PreviousBlockHash: 0xe2709d1777a40de9ad088b3c6222ba4f9a8e886ae002baa5f39228cf558245f3, Timestamp: 1731611417, MainnetExitRoot: 0x2c625e07f5d0ccd211530a92e013abbcbc0ed7b4a8ec3f3274cae393a9fc1987, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x4401294184407d13d37f641e5b8de4dd03955bf1eeec5f1c9535360d5f1495ea, Hash: 0x830a75e7b5a4e9ca87b80ec67af36b09bcaf0b0f763d8f4355c8c795b537cb46 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.603-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x4401294184407d13d37f641e5b8de4dd03955bf1eeec5f1c9535360d5f1495ea {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.603-0600 INFO l1infotreesync/processor.go:432 block 77 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.603-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.616-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 78 to 78 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:05.617-0600 DEBUG sync/evmdownloader.go:104 sending block 78 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:05.618-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 78, last block seen on L1 78 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:05.618-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 78, blockHash: 0x5da2b5276e644acc6e67550eff5bce396de4f9bdab2b4272da4a2c6d17ae99ec {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:05.618-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:05.618-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 78 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:05.618-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:05.662-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.662-0600 INFO runtime/asm_arm64.s:1222 GER 0x4401294184407d13d37f641e5b8de4dd03955bf1eeec5f1c9535360d5f1495ea injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.664-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x4401294184407d13d37f641e5b8de4dd03955bf1eeec5f1c9535360d5f1495ea already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.683-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x4401294184407d13d37f641e5b8de4dd03955bf1eeec5f1c9535360d5f1495ea already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.701-0600 DEBUG helpers/reorg.go:31 reorging until block 76. Current block 77 (before reorg) {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.703-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x4401294184407d13d37f641e5b8de4dd03955bf1eeec5f1c9535360d5f1495ea already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.703-0600 DEBUG bridgesync/e2e_test.go:72 removing expectedBridge with depositCount 72 due to reorg {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.703-0600 DEBUG bridgesync/e2e_test.go:81 reorgs: 8 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.723-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x4401294184407d13d37f641e5b8de4dd03955bf1eeec5f1c9535360d5f1495ea already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.743-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x4401294184407d13d37f641e5b8de4dd03955bf1eeec5f1c9535360d5f1495ea already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.763-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x4401294184407d13d37f641e5b8de4dd03955bf1eeec5f1c9535360d5f1495ea already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.783-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x4401294184407d13d37f641e5b8de4dd03955bf1eeec5f1c9535360d5f1495ea already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.803-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x4401294184407d13d37f641e5b8de4dd03955bf1eeec5f1c9535360d5f1495ea already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.823-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x4401294184407d13d37f641e5b8de4dd03955bf1eeec5f1c9535360d5f1495ea already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.843-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x4401294184407d13d37f641e5b8de4dd03955bf1eeec5f1c9535360d5f1495ea already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.863-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x4401294184407d13d37f641e5b8de4dd03955bf1eeec5f1c9535360d5f1495ea already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.881-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 78 to 78 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:05.881-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 78 to 78 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:05.883-0600 DEBUG runtime/asm_arm64.s:1222 syncer is not ready for the block 78 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.883-0600 DEBUG sync/evmdownloader.go:99 sending block 78 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:05.883-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 78, last block seen on L1 78 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:05.883-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 78, blockHash: 0xb9afb770f8437d87ebd862bf0cccb8c7d6f27b177a2b56ffec2b1d2ef1050295 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:05.883-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:05.883-0600 DEBUG sync/evmdownloader.go:99 sending block 78 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:05.883-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 78, last block seen on L1 78 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:05.883-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 78, blockHash: 0xb9afb770f8437d87ebd862bf0cccb8c7d6f27b177a2b56ffec2b1d2ef1050295 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:05.883-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.883-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 78 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.885-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 78 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:05.885-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:05.885-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 78, BlockPosition: 1, L1InfoTreeIndex: 73, PreviousBlockHash: 0xc8f6d685fbab299f23dffe7102c005b81034b6d4671dcf1212a090e09ab62716, Timestamp: 1731611419, MainnetExitRoot: 0x390e69c6a9955519c67496d30a0b5838cde3ed7ca35ffabdd1f1cb36d35e3315, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x592bd0e4bfca70f10405376fdb4a8301ebc89f924981ed41cab05226d503b412, Hash: 0xb95ae5fc4959599939edd2ed4b71ab8c9c814c65a18629383d553732e69326b8 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.886-0600 INFO l1infotreesync/processor.go:432 block 78 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.886-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.902-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x592bd0e4bfca70f10405376fdb4a8301ebc89f924981ed41cab05226d503b412 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.919-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 79 to 79 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:05.919-0600 DEBUG sync/evmdownloader.go:104 sending block 79 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:05.921-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 79, last block seen on L1 79 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:05.921-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 79, blockHash: 0x69770481929e8cb8520e85076247ef288ef339f308f76a13ace34ecae34d5251 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:05.921-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:05.921-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 79 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:05.921-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:05.962-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.963-0600 INFO runtime/asm_arm64.s:1222 GER 0x592bd0e4bfca70f10405376fdb4a8301ebc89f924981ed41cab05226d503b412 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.965-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x592bd0e4bfca70f10405376fdb4a8301ebc89f924981ed41cab05226d503b412 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:05.983-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x592bd0e4bfca70f10405376fdb4a8301ebc89f924981ed41cab05226d503b412 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.003-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x592bd0e4bfca70f10405376fdb4a8301ebc89f924981ed41cab05226d503b412 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.019-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 79 to 79 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.021-0600 DEBUG sync/evmdownloader.go:99 sending block 79 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.021-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 79, last block seen on L1 79 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.021-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 79, blockHash: 0x138b3f4f4169265a8092d4276f820a6d19c005a04a3e34983f4f257c3b08dc56 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.021-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.021-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 79 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.022-0600 DEBUG runtime/asm_arm64.s:1222 syncer is not ready for the block 79 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.023-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 79, BlockPosition: 1, L1InfoTreeIndex: 74, PreviousBlockHash: 0xb9afb770f8437d87ebd862bf0cccb8c7d6f27b177a2b56ffec2b1d2ef1050295, Timestamp: 1731611420, MainnetExitRoot: 0x6784bb5de507847a97da82f8b864b60010b52489a88486cfd4007314b91c750c, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xc15bde2a536c1fc4bee9b1c238343496f20387331cf61b84887bd3c1cb2476da, Hash: 0x0193f394b48b16dec2aedd0db5e25c14ad9b6731d59278a663e0dafefa894608 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.023-0600 INFO l1infotreesync/processor.go:432 block 79 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.023-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.024-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 79 to 79 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.026-0600 DEBUG sync/evmdownloader.go:99 sending block 79 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.026-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 79, last block seen on L1 79 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.026-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 79, blockHash: 0x138b3f4f4169265a8092d4276f820a6d19c005a04a3e34983f4f257c3b08dc56 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.026-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.028-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 79 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.028-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.042-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0xc15bde2a536c1fc4bee9b1c238343496f20387331cf61b84887bd3c1cb2476da {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.052-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 80 to 80 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:06.052-0600 DEBUG sync/evmdownloader.go:104 sending block 80 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:06.053-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 80, last block seen on L1 80 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:06.053-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 80, blockHash: 0x88dbab553f9aab198ca7238cf6be22d6c9a3ea8035185cd9d3a1791d47ca25f8 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:06.054-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:06.054-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 80 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:06.054-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:06.101-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.101-0600 INFO runtime/asm_arm64.s:1222 GER 0xc15bde2a536c1fc4bee9b1c238343496f20387331cf61b84887bd3c1cb2476da injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.103-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xc15bde2a536c1fc4bee9b1c238343496f20387331cf61b84887bd3c1cb2476da already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.105-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xc15bde2a536c1fc4bee9b1c238343496f20387331cf61b84887bd3c1cb2476da already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.123-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xc15bde2a536c1fc4bee9b1c238343496f20387331cf61b84887bd3c1cb2476da already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.143-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xc15bde2a536c1fc4bee9b1c238343496f20387331cf61b84887bd3c1cb2476da already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.159-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 80 to 80 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.161-0600 DEBUG sync/evmdownloader.go:99 sending block 80 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.161-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 80, last block seen on L1 80 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.161-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 80, blockHash: 0xb0f36f8cb2d8c6e588e654f07a079552b988583cdcc6cca5d0717fc38cbaa665 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.161-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.161-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 80 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.163-0600 DEBUG runtime/asm_arm64.s:1222 syncer is not ready for the block 80 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.163-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 80, BlockPosition: 1, L1InfoTreeIndex: 75, PreviousBlockHash: 0x138b3f4f4169265a8092d4276f820a6d19c005a04a3e34983f4f257c3b08dc56, Timestamp: 1731611421, MainnetExitRoot: 0x4b24ddec025373b1e6c57f9bf27b40263d0f56ac2dc9e55913616c1b5887ea83, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xbe874ca789f73982583038861f9b16072b8218695a569656520e27dd13a1f577, Hash: 0x47c8dea2a3836ec6b0e4d23903b63558cb9c00d52d71c95fb7f42cd89f1d8c92 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.163-0600 INFO l1infotreesync/processor.go:432 block 80 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.163-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.167-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 80 to 80 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.170-0600 DEBUG sync/evmdownloader.go:99 sending block 80 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.170-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 80, last block seen on L1 80 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.170-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 80, blockHash: 0xb0f36f8cb2d8c6e588e654f07a079552b988583cdcc6cca5d0717fc38cbaa665 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.170-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.171-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 80 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.171-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.182-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0xbe874ca789f73982583038861f9b16072b8218695a569656520e27dd13a1f577 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.195-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 81 to 81 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:06.195-0600 DEBUG sync/evmdownloader.go:104 sending block 81 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:06.196-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 81, last block seen on L1 81 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:06.196-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 81, blockHash: 0xeb9ef6be6e2cb4ec0b4d17d54f9bcb422950dedc2e458893e8944efb110eb6df {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:06.196-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:06.196-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 81 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:06.197-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:06.241-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.241-0600 INFO runtime/asm_arm64.s:1222 GER 0xbe874ca789f73982583038861f9b16072b8218695a569656520e27dd13a1f577 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.243-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xbe874ca789f73982583038861f9b16072b8218695a569656520e27dd13a1f577 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.245-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xbe874ca789f73982583038861f9b16072b8218695a569656520e27dd13a1f577 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.263-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xbe874ca789f73982583038861f9b16072b8218695a569656520e27dd13a1f577 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.283-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xbe874ca789f73982583038861f9b16072b8218695a569656520e27dd13a1f577 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.295-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 81 to 81 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.297-0600 DEBUG sync/evmdownloader.go:99 sending block 81 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.297-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 81, last block seen on L1 81 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.297-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 81, blockHash: 0xbe05df3d58acd96ab92101609ecac0673c59556a208e7f5f3b7cb575e0a4d8d9 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.298-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.298-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 81 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.299-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 81, BlockPosition: 1, L1InfoTreeIndex: 76, PreviousBlockHash: 0xb0f36f8cb2d8c6e588e654f07a079552b988583cdcc6cca5d0717fc38cbaa665, Timestamp: 1731611422, MainnetExitRoot: 0x10533efe61769f63d738a60dd2f45e084aebf5568644a3635b01e47797ae1c03, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xf20d5cea96094bd868da5a061217a62061c8cf4fe1e132cbf37aaa17407609d8, Hash: 0xfde4bfa1f8bfea059994cef40988ace332629bd82c04fb94f66267c68e1c05d2 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.299-0600 INFO l1infotreesync/processor.go:432 block 81 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.299-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.301-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 81 to 81 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.303-0600 DEBUG sync/evmdownloader.go:99 sending block 81 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.303-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 81, last block seen on L1 81 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.303-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 81, blockHash: 0xbe05df3d58acd96ab92101609ecac0673c59556a208e7f5f3b7cb575e0a4d8d9 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.303-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.303-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0xf20d5cea96094bd868da5a061217a62061c8cf4fe1e132cbf37aaa17407609d8 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.306-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 81 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.306-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.318-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 82 to 82 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:06.318-0600 DEBUG sync/evmdownloader.go:104 sending block 82 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:06.319-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 82, last block seen on L1 82 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:06.319-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 82, blockHash: 0x6381e664891b729d7c97ad62bd864eb71805adf457059abf71aa5ec7842a0514 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:06.319-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:06.319-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 82 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:06.319-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:06.363-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.363-0600 INFO runtime/asm_arm64.s:1222 GER 0xf20d5cea96094bd868da5a061217a62061c8cf4fe1e132cbf37aaa17407609d8 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.365-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xf20d5cea96094bd868da5a061217a62061c8cf4fe1e132cbf37aaa17407609d8 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.383-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xf20d5cea96094bd868da5a061217a62061c8cf4fe1e132cbf37aaa17407609d8 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.403-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xf20d5cea96094bd868da5a061217a62061c8cf4fe1e132cbf37aaa17407609d8 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.423-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xf20d5cea96094bd868da5a061217a62061c8cf4fe1e132cbf37aaa17407609d8 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.433-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 82 to 82 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.435-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 82 to 82 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.436-0600 DEBUG sync/evmdownloader.go:99 sending block 82 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.436-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 82, last block seen on L1 82 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.436-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 82, blockHash: 0xe9ae66cf8966d9c49da22ebaefc93d84169bf20e9676cdbca97e6cee73b870c5 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.436-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.436-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 82 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.437-0600 DEBUG sync/evmdownloader.go:99 sending block 82 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.437-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 82, last block seen on L1 82 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.437-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 82, BlockPosition: 1, L1InfoTreeIndex: 77, PreviousBlockHash: 0xbe05df3d58acd96ab92101609ecac0673c59556a208e7f5f3b7cb575e0a4d8d9, Timestamp: 1731611423, MainnetExitRoot: 0xcb4bf16f82a4a2fb57169213dcec5bb18fac9eb2b11d6ef90161909d25846da3, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x17e07d26bc6fdd6c74f548737a98e33ec41eb98c34495f306d3f6604c3fe94ee, Hash: 0xe9640245a06545504c691d2d1fbb55f6e0cb5576f5858108e33b5ac7deee9766 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.437-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 82, blockHash: 0xe9ae66cf8966d9c49da22ebaefc93d84169bf20e9676cdbca97e6cee73b870c5 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.437-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.437-0600 INFO l1infotreesync/processor.go:432 block 82 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.438-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.439-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 82 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.439-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.443-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x17e07d26bc6fdd6c74f548737a98e33ec41eb98c34495f306d3f6604c3fe94ee {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.452-0600 DEBUG sync/evmdriver.go:104 handleReorg from block: 77 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.452-0600 DEBUG l1infotreesync/processor.go:243 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.452-0600 WARN sync/evmdownloader.go:171 context has been canceled while trying to get header by number {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -github.com/0xPolygon/cdk/sync.(*EVMDownloaderImplementation).WaitForNewBlocks - /Users/arnaub/Documents/polygon/cdk/sync/evmdownloader.go:171 -github.com/0xPolygon/cdk/sync.(*EVMDownloader).Download - /Users/arnaub/Documents/polygon/cdk/sync/evmdownloader.go:93 -2024-11-14T13:09:06.452-0600 INFO sync/evmdriver.go:89 Starting sync... lastProcessedBlock 76 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.452-0600 INFO sync/evmdownloader.go:161 context cancelled {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.452-0600 DEBUG l1infotreesync/processor.go:300 reorged until block 77 (included) {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.452-0600 DEBUG sync/evmdownloader.go:79 closing channel {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.453-0600 DEBUG l1infotreesync/processor.go:302 last info: BlockNumber: 76, BlockPosition: 1, L1InfoTreeIndex: 71, PreviousBlockHash: 0x32bc398606bb8177026e6cc7ce23ff37803e81c798e449e744c779a7ec3a9388, Timestamp: 1731611416, MainnetExitRoot: 0x3b074d51fd8e14a12745bdb22a7e83f53f190a5c8ff040bed4187cd57bd3df09, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xbb1ece8203ba66c14fd024e78fa19af51c647904447da24b645112f8d3abea29, Hash: 0xe282a81ec309a950c1a33026cf63f79a184a972a9d9358be8bacbfc63fb9b298 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.453-0600 DEBUG l1infotreesync/processor.go:306 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx L1INFO xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.453-0600 INFO sync/evmdriver.go:89 Starting sync... lastProcessedBlock 76 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.455-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 77 to 82 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.461-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 83 to 83 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:06.461-0600 DEBUG sync/evmdownloader.go:104 sending block 83 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:06.462-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 83, last block seen on L1 83 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:06.462-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 83, blockHash: 0xcaea4c4826b393d2012d6bc852a6470d9a99eaf1c589239f51016961b952d0f7 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:06.462-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:06.462-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 83 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:06.462-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:06.464-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 77 to 82 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.465-0600 DEBUG sync/evmdownloader.go:99 sending block 77 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.465-0600 DEBUG sync/evmdownloader.go:99 sending block 78 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.465-0600 DEBUG sync/evmdownloader.go:99 sending block 79 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.465-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 77, blockHash: 0xc8f6d685fbab299f23dffe7102c005b81034b6d4671dcf1212a090e09ab62716 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.465-0600 DEBUG sync/evmdownloader.go:99 sending block 80 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.465-0600 DEBUG sync/evmdownloader.go:99 sending block 81 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.465-0600 DEBUG sync/evmdownloader.go:99 sending block 82 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.465-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 82, last block seen on L1 82 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.465-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.465-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 77 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.468-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 77, BlockPosition: 1, L1InfoTreeIndex: 72, PreviousBlockHash: 0xe2709d1777a40de9ad088b3c6222ba4f9a8e886ae002baa5f39228cf558245f3, Timestamp: 1731611418, MainnetExitRoot: 0xfee18f294a89c317bc230bf61ba86ccfe6c7843fad9cf85f0b5e784cc2438ec3, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x9c251c9cc8c9373af6d8cfb6c8d1b94d387c77edc39bba59c3f6fce6facda553, Hash: 0xb8b8bb5e8844b3a0e7832b80fd43779a8189839244ca04f5e0e3ab10ada9711e {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.468-0600 INFO l1infotreesync/processor.go:432 block 77 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.468-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.468-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 78, blockHash: 0xb9afb770f8437d87ebd862bf0cccb8c7d6f27b177a2b56ffec2b1d2ef1050295 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.468-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.468-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 78 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.469-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 78, BlockPosition: 1, L1InfoTreeIndex: 73, PreviousBlockHash: 0xc8f6d685fbab299f23dffe7102c005b81034b6d4671dcf1212a090e09ab62716, Timestamp: 1731611419, MainnetExitRoot: 0x390e69c6a9955519c67496d30a0b5838cde3ed7ca35ffabdd1f1cb36d35e3315, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x592bd0e4bfca70f10405376fdb4a8301ebc89f924981ed41cab05226d503b412, Hash: 0xb95ae5fc4959599939edd2ed4b71ab8c9c814c65a18629383d553732e69326b8 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.470-0600 INFO l1infotreesync/processor.go:432 block 78 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.470-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.470-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 79, blockHash: 0x138b3f4f4169265a8092d4276f820a6d19c005a04a3e34983f4f257c3b08dc56 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.470-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.470-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 79 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.471-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 79, BlockPosition: 1, L1InfoTreeIndex: 74, PreviousBlockHash: 0xb9afb770f8437d87ebd862bf0cccb8c7d6f27b177a2b56ffec2b1d2ef1050295, Timestamp: 1731611420, MainnetExitRoot: 0x6784bb5de507847a97da82f8b864b60010b52489a88486cfd4007314b91c750c, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xc15bde2a536c1fc4bee9b1c238343496f20387331cf61b84887bd3c1cb2476da, Hash: 0x0193f394b48b16dec2aedd0db5e25c14ad9b6731d59278a663e0dafefa894608 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.472-0600 INFO l1infotreesync/processor.go:432 block 79 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.472-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.472-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 80, blockHash: 0xb0f36f8cb2d8c6e588e654f07a079552b988583cdcc6cca5d0717fc38cbaa665 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.472-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.472-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 80 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.473-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 80, BlockPosition: 1, L1InfoTreeIndex: 75, PreviousBlockHash: 0x138b3f4f4169265a8092d4276f820a6d19c005a04a3e34983f4f257c3b08dc56, Timestamp: 1731611421, MainnetExitRoot: 0x4b24ddec025373b1e6c57f9bf27b40263d0f56ac2dc9e55913616c1b5887ea83, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xbe874ca789f73982583038861f9b16072b8218695a569656520e27dd13a1f577, Hash: 0x47c8dea2a3836ec6b0e4d23903b63558cb9c00d52d71c95fb7f42cd89f1d8c92 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.473-0600 INFO l1infotreesync/processor.go:432 block 80 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.473-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.473-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 81, blockHash: 0xbe05df3d58acd96ab92101609ecac0673c59556a208e7f5f3b7cb575e0a4d8d9 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.473-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.473-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 81 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.475-0600 DEBUG sync/evmdownloader.go:99 sending block 77 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.475-0600 DEBUG sync/evmdownloader.go:99 sending block 78 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.475-0600 DEBUG sync/evmdownloader.go:99 sending block 79 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.475-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 77, blockHash: 0xc8f6d685fbab299f23dffe7102c005b81034b6d4671dcf1212a090e09ab62716 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.475-0600 DEBUG sync/evmdownloader.go:99 sending block 80 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.475-0600 DEBUG sync/evmdownloader.go:99 sending block 81 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.475-0600 DEBUG sync/evmdownloader.go:99 sending block 82 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.475-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 82, last block seen on L1 82 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.475-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.475-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 81, BlockPosition: 1, L1InfoTreeIndex: 76, PreviousBlockHash: 0xb0f36f8cb2d8c6e588e654f07a079552b988583cdcc6cca5d0717fc38cbaa665, Timestamp: 1731611422, MainnetExitRoot: 0x10533efe61769f63d738a60dd2f45e084aebf5568644a3635b01e47797ae1c03, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xf20d5cea96094bd868da5a061217a62061c8cf4fe1e132cbf37aaa17407609d8, Hash: 0xfde4bfa1f8bfea059994cef40988ace332629bd82c04fb94f66267c68e1c05d2 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.475-0600 INFO l1infotreesync/processor.go:432 block 81 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.475-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.475-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 82, blockHash: 0xe9ae66cf8966d9c49da22ebaefc93d84169bf20e9676cdbca97e6cee73b870c5 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.475-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.475-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 82 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.477-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 82, BlockPosition: 1, L1InfoTreeIndex: 77, PreviousBlockHash: 0xbe05df3d58acd96ab92101609ecac0673c59556a208e7f5f3b7cb575e0a4d8d9, Timestamp: 1731611423, MainnetExitRoot: 0xcb4bf16f82a4a2fb57169213dcec5bb18fac9eb2b11d6ef90161909d25846da3, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x17e07d26bc6fdd6c74f548737a98e33ec41eb98c34495f306d3f6604c3fe94ee, Hash: 0xe9640245a06545504c691d2d1fbb55f6e0cb5576f5858108e33b5ac7deee9766 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.477-0600 INFO l1infotreesync/processor.go:432 block 82 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.477-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.478-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 77 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.478-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.478-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 78, blockHash: 0xb9afb770f8437d87ebd862bf0cccb8c7d6f27b177a2b56ffec2b1d2ef1050295 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.478-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.479-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 78 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.479-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.480-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 79, blockHash: 0x138b3f4f4169265a8092d4276f820a6d19c005a04a3e34983f4f257c3b08dc56 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.480-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.481-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 79 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.481-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.481-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 80, blockHash: 0xb0f36f8cb2d8c6e588e654f07a079552b988583cdcc6cca5d0717fc38cbaa665 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.481-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.482-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 80 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.483-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.483-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 81, blockHash: 0xbe05df3d58acd96ab92101609ecac0673c59556a208e7f5f3b7cb575e0a4d8d9 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.483-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.484-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 81 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.484-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.484-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 82, blockHash: 0xe9ae66cf8966d9c49da22ebaefc93d84169bf20e9676cdbca97e6cee73b870c5 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.484-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.486-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 82 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.486-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.502-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.502-0600 INFO runtime/asm_arm64.s:1222 GER 0x17e07d26bc6fdd6c74f548737a98e33ec41eb98c34495f306d3f6604c3fe94ee injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.504-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x17e07d26bc6fdd6c74f548737a98e33ec41eb98c34495f306d3f6604c3fe94ee already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.523-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x17e07d26bc6fdd6c74f548737a98e33ec41eb98c34495f306d3f6604c3fe94ee already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.543-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x17e07d26bc6fdd6c74f548737a98e33ec41eb98c34495f306d3f6604c3fe94ee already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.563-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x17e07d26bc6fdd6c74f548737a98e33ec41eb98c34495f306d3f6604c3fe94ee already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.573-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 83 to 83 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.575-0600 DEBUG sync/evmdownloader.go:99 sending block 83 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.575-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 83, last block seen on L1 83 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.576-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 83, blockHash: 0x0099ddf777b1c9075d8070d6120ae0cf77245013a327193cf0f7ac7c3b01c7c4 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.576-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.576-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 83 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.576-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 83 to 83 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.577-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 83, BlockPosition: 1, L1InfoTreeIndex: 78, PreviousBlockHash: 0xe9ae66cf8966d9c49da22ebaefc93d84169bf20e9676cdbca97e6cee73b870c5, Timestamp: 1731611424, MainnetExitRoot: 0x7df53178ddbbd093e3c6e5e7f705cc366fd2d97e313fb433c06919c942217b70, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x555be71b5fbb3b4ab228053ef7533c1eb283c8e55cf72f2a43dc8151bd7f20db, Hash: 0xe31d529bfd2dfbaa95e281c9e6641c1987ca7a763cc1de74a64b0a1e8027c0b6 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.577-0600 INFO l1infotreesync/processor.go:432 block 83 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.577-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.578-0600 DEBUG sync/evmdownloader.go:99 sending block 83 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.578-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 83, last block seen on L1 83 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.578-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 83, blockHash: 0x0099ddf777b1c9075d8070d6120ae0cf77245013a327193cf0f7ac7c3b01c7c4 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.578-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.580-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 83 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.580-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.584-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x555be71b5fbb3b4ab228053ef7533c1eb283c8e55cf72f2a43dc8151bd7f20db {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.593-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 84 to 84 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:06.594-0600 DEBUG sync/evmdownloader.go:104 sending block 84 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:06.595-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 84, last block seen on L1 84 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:06.595-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 84, blockHash: 0x346b9bbc5c3456953d42aaadc607e24b4715fb2427310673b81564a334f9fb44 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:06.595-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:06.595-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 84 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:06.595-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:06.643-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.643-0600 INFO runtime/asm_arm64.s:1222 GER 0x555be71b5fbb3b4ab228053ef7533c1eb283c8e55cf72f2a43dc8151bd7f20db injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.645-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x555be71b5fbb3b4ab228053ef7533c1eb283c8e55cf72f2a43dc8151bd7f20db already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.663-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x555be71b5fbb3b4ab228053ef7533c1eb283c8e55cf72f2a43dc8151bd7f20db already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.683-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x555be71b5fbb3b4ab228053ef7533c1eb283c8e55cf72f2a43dc8151bd7f20db already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.703-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x555be71b5fbb3b4ab228053ef7533c1eb283c8e55cf72f2a43dc8151bd7f20db already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.712-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 84 to 84 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.714-0600 DEBUG sync/evmdownloader.go:99 sending block 84 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.714-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 84, last block seen on L1 84 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.714-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 84, blockHash: 0x5317ba27bff4761cd0515d590d2a495af2bf86c8c0ddcaee28adb916a654f5cb {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.714-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.714-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 84 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.716-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 84, BlockPosition: 1, L1InfoTreeIndex: 79, PreviousBlockHash: 0x0099ddf777b1c9075d8070d6120ae0cf77245013a327193cf0f7ac7c3b01c7c4, Timestamp: 1731611425, MainnetExitRoot: 0xb94736f1ea7db67b24014a4677260891f9380975f7a395652bd88cfd08fe9093, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xbf8b15cf950ea74bcb78b888a9d68511300907902b885c1d207b66b7b1687362, Hash: 0xc02aa1148246d16dab57f59481143ea184e9e7c28dc868d230bf23309e08a581 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.716-0600 INFO l1infotreesync/processor.go:432 block 84 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.716-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.719-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 84 to 84 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.722-0600 DEBUG sync/evmdownloader.go:99 sending block 84 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.722-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 84, last block seen on L1 84 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.722-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 84, blockHash: 0x5317ba27bff4761cd0515d590d2a495af2bf86c8c0ddcaee28adb916a654f5cb {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.722-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.723-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 84 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.723-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.723-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0xbf8b15cf950ea74bcb78b888a9d68511300907902b885c1d207b66b7b1687362 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.736-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 85 to 85 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:06.737-0600 DEBUG sync/evmdownloader.go:104 sending block 85 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:06.738-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 85, last block seen on L1 85 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:06.738-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 85, blockHash: 0x458f45164115277a0a72786b4e1c1f3d305c2b913acd3aa712f2fa60ff725cd8 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:06.738-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:06.738-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 85 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:06.738-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:06.782-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.782-0600 INFO runtime/asm_arm64.s:1222 GER 0xbf8b15cf950ea74bcb78b888a9d68511300907902b885c1d207b66b7b1687362 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.784-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xbf8b15cf950ea74bcb78b888a9d68511300907902b885c1d207b66b7b1687362 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.803-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xbf8b15cf950ea74bcb78b888a9d68511300907902b885c1d207b66b7b1687362 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.823-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xbf8b15cf950ea74bcb78b888a9d68511300907902b885c1d207b66b7b1687362 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.843-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xbf8b15cf950ea74bcb78b888a9d68511300907902b885c1d207b66b7b1687362 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.849-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 85 to 85 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.851-0600 DEBUG sync/evmdownloader.go:99 sending block 85 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.851-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 85, last block seen on L1 85 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.851-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 85, blockHash: 0x87e3f351920a1900c2c9ef269deb7451fae3574da1d791f2075815f7e7aa552f {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.851-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.851-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 85 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.853-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 85, BlockPosition: 1, L1InfoTreeIndex: 80, PreviousBlockHash: 0x5317ba27bff4761cd0515d590d2a495af2bf86c8c0ddcaee28adb916a654f5cb, Timestamp: 1731611426, MainnetExitRoot: 0xd5505cb46eedcebdb62322f969edd7b2050b215fa257a4e03edb0ed85851cf23, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x28ebfcecec35b7a2ab577ca381a01467c52a0e2429d465e7044e304f649261ec, Hash: 0xbc0fef631da6963ae6b8709b34425fb7567d6c9d85df10946e697a5d3a44caa8 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.853-0600 INFO l1infotreesync/processor.go:432 block 85 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.853-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.853-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 85 to 85 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.855-0600 DEBUG sync/evmdownloader.go:99 sending block 85 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.855-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 85, last block seen on L1 85 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.855-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 85, blockHash: 0x87e3f351920a1900c2c9ef269deb7451fae3574da1d791f2075815f7e7aa552f {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.855-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.857-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 85 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.857-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.863-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x28ebfcecec35b7a2ab577ca381a01467c52a0e2429d465e7044e304f649261ec {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.879-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 86 to 86 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:06.880-0600 DEBUG sync/evmdownloader.go:104 sending block 86 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:06.881-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 86, last block seen on L1 86 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:06.881-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 86, blockHash: 0x0988dd6136589db949568655c642db7a256e06d81f1204d98812691cbd5f3fc5 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:06.881-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:06.881-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 86 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:06.881-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:06.922-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.922-0600 INFO runtime/asm_arm64.s:1222 GER 0x28ebfcecec35b7a2ab577ca381a01467c52a0e2429d465e7044e304f649261ec injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.924-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x28ebfcecec35b7a2ab577ca381a01467c52a0e2429d465e7044e304f649261ec already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.943-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x28ebfcecec35b7a2ab577ca381a01467c52a0e2429d465e7044e304f649261ec already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.963-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x28ebfcecec35b7a2ab577ca381a01467c52a0e2429d465e7044e304f649261ec already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.983-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x28ebfcecec35b7a2ab577ca381a01467c52a0e2429d465e7044e304f649261ec already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.987-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 86 to 86 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.987-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 86 to 86 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.989-0600 DEBUG sync/evmdownloader.go:99 sending block 86 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.989-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 86, last block seen on L1 86 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.989-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 86, blockHash: 0x6e2f74c1861b2b301f3b21666b65c09a6fa2fedc0fdce23ed34ca5cf9718cdf2 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:06.989-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.989-0600 DEBUG sync/evmdownloader.go:99 sending block 86 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.989-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 86, last block seen on L1 86 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.989-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 86, blockHash: 0x6e2f74c1861b2b301f3b21666b65c09a6fa2fedc0fdce23ed34ca5cf9718cdf2 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:06.989-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.989-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 86 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.991-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 86 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.991-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:06.991-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 86, BlockPosition: 1, L1InfoTreeIndex: 81, PreviousBlockHash: 0x87e3f351920a1900c2c9ef269deb7451fae3574da1d791f2075815f7e7aa552f, Timestamp: 1731611427, MainnetExitRoot: 0x779cfcb87ea46c13817a94bb3b7867017bbb8a84f64d4fbc584a057633248787, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xa5b5fc8581118e402777a86de66dcd1f39325812932879bbcfeb35e707126f0b, Hash: 0x602a49661bed4994d4be629537aae9e879746fed1d89f13c860f48acc2891ee1 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.991-0600 INFO l1infotreesync/processor.go:432 block 86 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:06.991-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.003-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0xa5b5fc8581118e402777a86de66dcd1f39325812932879bbcfeb35e707126f0b {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.022-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 87 to 87 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:07.022-0600 DEBUG sync/evmdownloader.go:104 sending block 87 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:07.024-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 87, last block seen on L1 87 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:07.024-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 87, blockHash: 0x7137828844a1f9247122eac38f75d946173895733aab35b5585140946f40cf25 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:07.024-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:07.024-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 87 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:07.024-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:07.062-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.062-0600 INFO runtime/asm_arm64.s:1222 GER 0xa5b5fc8581118e402777a86de66dcd1f39325812932879bbcfeb35e707126f0b injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.065-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xa5b5fc8581118e402777a86de66dcd1f39325812932879bbcfeb35e707126f0b already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.083-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xa5b5fc8581118e402777a86de66dcd1f39325812932879bbcfeb35e707126f0b already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.090-0600 DEBUG helpers/reorg.go:31 reorging until block 85. Current block 86 (before reorg) {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.092-0600 DEBUG bridgesync/e2e_test.go:72 removing expectedBridge with depositCount 81 due to reorg {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.092-0600 DEBUG bridgesync/e2e_test.go:81 reorgs: 9 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.103-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xa5b5fc8581118e402777a86de66dcd1f39325812932879bbcfeb35e707126f0b already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.123-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xa5b5fc8581118e402777a86de66dcd1f39325812932879bbcfeb35e707126f0b already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.143-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xa5b5fc8581118e402777a86de66dcd1f39325812932879bbcfeb35e707126f0b already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.163-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xa5b5fc8581118e402777a86de66dcd1f39325812932879bbcfeb35e707126f0b already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.183-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xa5b5fc8581118e402777a86de66dcd1f39325812932879bbcfeb35e707126f0b already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.203-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xa5b5fc8581118e402777a86de66dcd1f39325812932879bbcfeb35e707126f0b already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.223-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xa5b5fc8581118e402777a86de66dcd1f39325812932879bbcfeb35e707126f0b already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.243-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xa5b5fc8581118e402777a86de66dcd1f39325812932879bbcfeb35e707126f0b already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.263-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xa5b5fc8581118e402777a86de66dcd1f39325812932879bbcfeb35e707126f0b already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.269-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 87 to 87 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:07.270-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 87 to 87 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:07.271-0600 DEBUG sync/evmdownloader.go:99 sending block 87 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:07.271-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 87, last block seen on L1 87 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:07.271-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 87, blockHash: 0x348dcb3a75f1c205e583014d7dd017e6811513a8d1f14534111844dfe0e230c0 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:07.272-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.272-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 87 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.272-0600 DEBUG sync/evmdownloader.go:99 sending block 87 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:07.273-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 87, last block seen on L1 87 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:07.273-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 87, blockHash: 0x348dcb3a75f1c205e583014d7dd017e6811513a8d1f14534111844dfe0e230c0 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:07.273-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:07.273-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 87, BlockPosition: 1, L1InfoTreeIndex: 82, PreviousBlockHash: 0x24cd6ea21d8b6a2952e23264f2f565607ef89bff640fe6d9338af3d674ce81db, Timestamp: 1731611429, MainnetExitRoot: 0x9e7e244de616224a3021ee2762bde49126001b5b85de19c554faad279d8d118a, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x5f0eafb8befef91f6da5d040890979492041e897863779669fbad336824d8f5f, Hash: 0xb5c8ea26fe0144e74b22992fe0189a54bd8e684639539e301cf03899dd26e873 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.273-0600 INFO l1infotreesync/processor.go:432 block 87 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.273-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.274-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 87 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:07.274-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:07.283-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x5f0eafb8befef91f6da5d040890979492041e897863779669fbad336824d8f5f {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.295-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 88 to 88 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:07.295-0600 DEBUG sync/evmdownloader.go:104 sending block 88 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:07.297-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 88, last block seen on L1 88 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:07.298-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 88, blockHash: 0xe43be7328d2f49e739ca919eb9c1355727d7cd2c87946a023d5cf0edbdde019e {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:07.298-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:07.298-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 88 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:07.298-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:07.342-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.342-0600 INFO runtime/asm_arm64.s:1222 GER 0x5f0eafb8befef91f6da5d040890979492041e897863779669fbad336824d8f5f injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.344-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x5f0eafb8befef91f6da5d040890979492041e897863779669fbad336824d8f5f already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.363-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x5f0eafb8befef91f6da5d040890979492041e897863779669fbad336824d8f5f already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.383-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x5f0eafb8befef91f6da5d040890979492041e897863779669fbad336824d8f5f already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.403-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x5f0eafb8befef91f6da5d040890979492041e897863779669fbad336824d8f5f already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.409-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 88 to 88 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:07.411-0600 DEBUG sync/evmdownloader.go:99 sending block 88 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:07.411-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 88, last block seen on L1 88 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:07.411-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 88, blockHash: 0xbd7f6c9f7fd9b1050bed5f7690a7a6f44c4fff8fd6a93d18e21911b5451c4be2 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:07.411-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.411-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 88 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.412-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 88, BlockPosition: 1, L1InfoTreeIndex: 83, PreviousBlockHash: 0x348dcb3a75f1c205e583014d7dd017e6811513a8d1f14534111844dfe0e230c0, Timestamp: 1731611430, MainnetExitRoot: 0x87b22eb8008bad3e6e54e5e5226f41faf5266e244f5c1d3c22b5c22587731a9b, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x3e98a83d0e0348768ac55c56315e711c38a436c7f77011dcb9e0603f14e7743d, Hash: 0xe8c77f198913f445462595b43c824b0057afdfb9e411c7c2ddb87508b2e4996e {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.412-0600 INFO l1infotreesync/processor.go:432 block 88 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.412-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.414-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 88 to 88 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:07.416-0600 DEBUG sync/evmdownloader.go:99 sending block 88 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:07.416-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 88, last block seen on L1 88 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:07.416-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 88, blockHash: 0xbd7f6c9f7fd9b1050bed5f7690a7a6f44c4fff8fd6a93d18e21911b5451c4be2 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:07.416-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:07.417-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 88 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:07.417-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:07.423-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x3e98a83d0e0348768ac55c56315e711c38a436c7f77011dcb9e0603f14e7743d {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.439-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 89 to 89 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:07.439-0600 DEBUG sync/evmdownloader.go:104 sending block 89 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:07.441-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 89, last block seen on L1 89 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:07.441-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 89, blockHash: 0xf96398cb7d6811b6dab81fb52435b35232175d282c4dd06d1768a25f49103fe5 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:07.441-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:07.441-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 89 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:07.441-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:07.482-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.482-0600 INFO runtime/asm_arm64.s:1222 GER 0x3e98a83d0e0348768ac55c56315e711c38a436c7f77011dcb9e0603f14e7743d injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.484-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x3e98a83d0e0348768ac55c56315e711c38a436c7f77011dcb9e0603f14e7743d already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.503-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x3e98a83d0e0348768ac55c56315e711c38a436c7f77011dcb9e0603f14e7743d already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.523-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x3e98a83d0e0348768ac55c56315e711c38a436c7f77011dcb9e0603f14e7743d already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.543-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x3e98a83d0e0348768ac55c56315e711c38a436c7f77011dcb9e0603f14e7743d already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.545-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 89 to 89 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:07.547-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 89 to 89 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:07.547-0600 DEBUG sync/evmdownloader.go:99 sending block 89 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:07.548-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 89, last block seen on L1 89 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:07.548-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 89, blockHash: 0x3f33f5d70448fbbf536a5589f5e993fa713a88cc436df4c94675b32149afddf1 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:07.548-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.548-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 89 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.549-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 89, BlockPosition: 1, L1InfoTreeIndex: 84, PreviousBlockHash: 0xbd7f6c9f7fd9b1050bed5f7690a7a6f44c4fff8fd6a93d18e21911b5451c4be2, Timestamp: 1731611431, MainnetExitRoot: 0xb91a953e7d479b3d218980f301d34dc9769b103280f1048fa21b08799e6e9fde, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x64add2a3333197ef2aac0c85b4fcba327f7eb15d792f99bd559fb985c9cd9893, Hash: 0x4c6f91d6623c161d6e1b58c7134a1605bf5c06908ebfccb2ed8a2f43a417220a {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.549-0600 DEBUG sync/evmdownloader.go:99 sending block 89 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:07.549-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 89, last block seen on L1 89 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:07.549-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 89, blockHash: 0x3f33f5d70448fbbf536a5589f5e993fa713a88cc436df4c94675b32149afddf1 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:07.549-0600 INFO l1infotreesync/processor.go:432 block 89 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.549-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.549-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:07.551-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 89 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:07.551-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:07.563-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x64add2a3333197ef2aac0c85b4fcba327f7eb15d792f99bd559fb985c9cd9893 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.582-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 90 to 90 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:07.582-0600 DEBUG sync/evmdownloader.go:104 sending block 90 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:07.583-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 90, last block seen on L1 90 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:07.584-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 90, blockHash: 0x53fb1024cf590d368db026d13d57715cd3c186d6d8cc87eed2fc73015b25f657 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:07.584-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:07.584-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 90 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:07.584-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:07.622-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.622-0600 INFO runtime/asm_arm64.s:1222 GER 0x64add2a3333197ef2aac0c85b4fcba327f7eb15d792f99bd559fb985c9cd9893 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.624-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x64add2a3333197ef2aac0c85b4fcba327f7eb15d792f99bd559fb985c9cd9893 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.643-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x64add2a3333197ef2aac0c85b4fcba327f7eb15d792f99bd559fb985c9cd9893 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.663-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x64add2a3333197ef2aac0c85b4fcba327f7eb15d792f99bd559fb985c9cd9893 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.683-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x64add2a3333197ef2aac0c85b4fcba327f7eb15d792f99bd559fb985c9cd9893 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.684-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 90 to 90 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:07.686-0600 DEBUG sync/evmdownloader.go:99 sending block 90 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:07.686-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 90, last block seen on L1 90 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:07.686-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 90, blockHash: 0x711879929812ff0afef9ea06eacac148c39c2728847972fe77d5582ffcf0ec37 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:07.687-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.687-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 90 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.688-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 90, BlockPosition: 1, L1InfoTreeIndex: 85, PreviousBlockHash: 0x3f33f5d70448fbbf536a5589f5e993fa713a88cc436df4c94675b32149afddf1, Timestamp: 1731611432, MainnetExitRoot: 0x3f95d185471a2b3fc51a92444513f0b3d3f71e12deae663dd48c54307046003f, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x8dba8e8433b6fdbe71404e29c02fca4a66b9f664dedc62120bb0615144851b51, Hash: 0xabce4df1238c21fab9fb6f70d6a6b0119e5f9f1cfcdc3bdd2ae642fcd54f3db6 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.688-0600 INFO l1infotreesync/processor.go:432 block 90 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.688-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.690-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 90 to 90 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:07.693-0600 DEBUG sync/evmdownloader.go:99 sending block 90 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:07.693-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 90, last block seen on L1 90 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:07.693-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 90, blockHash: 0x711879929812ff0afef9ea06eacac148c39c2728847972fe77d5582ffcf0ec37 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:07.693-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:07.694-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 90 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:07.694-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:07.703-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x8dba8e8433b6fdbe71404e29c02fca4a66b9f664dedc62120bb0615144851b51 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.715-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 91 to 91 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:07.715-0600 DEBUG sync/evmdownloader.go:104 sending block 91 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:07.716-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 91, last block seen on L1 91 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:07.716-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 91, blockHash: 0xb10feb4f429fea1bb93ead42b12c035a1a65ea1ca02b9d9d2dbbad58d2dd1eea {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:07.716-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:07.717-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 91 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:07.717-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:07.762-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.762-0600 INFO runtime/asm_arm64.s:1222 GER 0x8dba8e8433b6fdbe71404e29c02fca4a66b9f664dedc62120bb0615144851b51 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.764-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x8dba8e8433b6fdbe71404e29c02fca4a66b9f664dedc62120bb0615144851b51 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.783-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x8dba8e8433b6fdbe71404e29c02fca4a66b9f664dedc62120bb0615144851b51 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.803-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x8dba8e8433b6fdbe71404e29c02fca4a66b9f664dedc62120bb0615144851b51 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.822-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 91 to 91 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:07.823-0600 DEBUG runtime/asm_arm64.s:1222 syncer is not ready for the block 91 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.824-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 91 to 91 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:07.824-0600 DEBUG sync/evmdownloader.go:99 sending block 91 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:07.824-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 91, last block seen on L1 91 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:07.824-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 91, blockHash: 0x5100ae0a3e9d224c96f566e46930b1cc40f78325f30d2c2d48eec2d61a238e4b {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:07.824-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.824-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 91 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.826-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 91, BlockPosition: 1, L1InfoTreeIndex: 86, PreviousBlockHash: 0x711879929812ff0afef9ea06eacac148c39c2728847972fe77d5582ffcf0ec37, Timestamp: 1731611433, MainnetExitRoot: 0xb1e6d8a34987071de5069eef710f316a93a031ca65ecde2c9e11118119d34f3f, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x6303f28fecd04a360a8302fd41476bc654f243556015c1dc119d3f238911662a, Hash: 0xf50f18aa51a43890870d6b92eccb34284b0d05b1babe3c72898589131beefdbe {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.826-0600 DEBUG sync/evmdownloader.go:99 sending block 91 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:07.826-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 91, last block seen on L1 91 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:07.826-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 91, blockHash: 0x5100ae0a3e9d224c96f566e46930b1cc40f78325f30d2c2d48eec2d61a238e4b {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:07.826-0600 INFO l1infotreesync/processor.go:432 block 91 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.826-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:07.826-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.828-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 91 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:07.828-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:07.842-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x6303f28fecd04a360a8302fd41476bc654f243556015c1dc119d3f238911662a {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.858-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 92 to 92 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:07.858-0600 DEBUG sync/evmdownloader.go:104 sending block 92 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:07.859-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 92, last block seen on L1 92 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:07.859-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 92, blockHash: 0x58f1291aadbd3cbef719f4fe06f5619f1bebc4df9682bc760702b008a4640fc6 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:07.859-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:07.859-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 92 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:07.859-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:07.901-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.901-0600 INFO runtime/asm_arm64.s:1222 GER 0x6303f28fecd04a360a8302fd41476bc654f243556015c1dc119d3f238911662a injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.903-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x6303f28fecd04a360a8302fd41476bc654f243556015c1dc119d3f238911662a already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.923-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x6303f28fecd04a360a8302fd41476bc654f243556015c1dc119d3f238911662a already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.943-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x6303f28fecd04a360a8302fd41476bc654f243556015c1dc119d3f238911662a already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.963-0600 DEBUG runtime/asm_arm64.s:1222 GER 0x6303f28fecd04a360a8302fd41476bc654f243556015c1dc119d3f238911662a already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.964-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 92 to 92 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:07.966-0600 DEBUG sync/evmdownloader.go:99 sending block 92 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:07.966-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 92, last block seen on L1 92 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:07.966-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 92, blockHash: 0x41e1d9ad029a216f817b16db07d3f3bdee6c959af3ac110a1f3de158be41d9c6 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:07.966-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.966-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 92 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.967-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 92 to 92 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:07.968-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 92, BlockPosition: 1, L1InfoTreeIndex: 87, PreviousBlockHash: 0x5100ae0a3e9d224c96f566e46930b1cc40f78325f30d2c2d48eec2d61a238e4b, Timestamp: 1731611434, MainnetExitRoot: 0x85f6b10c83534bdc3527dd14d56661a5e0c9dfc6de9cb7d4f47fd6cfa2f23937, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xff167f8651482938f21d33480255d97cf5b6d9d09e7719709eb61171465fc80a, Hash: 0x4307a7b19843902051d305c2f02af63944380d7b16e71d491284021e7d24e554 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.968-0600 INFO l1infotreesync/processor.go:432 block 92 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.968-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:07.970-0600 DEBUG sync/evmdownloader.go:99 sending block 92 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:07.970-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 92, last block seen on L1 92 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:07.970-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 92, blockHash: 0x41e1d9ad029a216f817b16db07d3f3bdee6c959af3ac110a1f3de158be41d9c6 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:07.970-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:07.971-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 92 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:07.971-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:07.983-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0xff167f8651482938f21d33480255d97cf5b6d9d09e7719709eb61171465fc80a {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.000-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 93 to 93 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:08.001-0600 DEBUG sync/evmdownloader.go:104 sending block 93 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:08.002-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 93, last block seen on L1 93 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:08.002-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 93, blockHash: 0x28acfad272714c5388d9ef1c2aa6a69ad97ed72c7a456c397a87fb146a0f7967 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:08.002-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:08.002-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 93 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:08.002-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:08.042-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.042-0600 INFO runtime/asm_arm64.s:1222 GER 0xff167f8651482938f21d33480255d97cf5b6d9d09e7719709eb61171465fc80a injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.044-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xff167f8651482938f21d33480255d97cf5b6d9d09e7719709eb61171465fc80a already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.063-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xff167f8651482938f21d33480255d97cf5b6d9d09e7719709eb61171465fc80a already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.085-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xff167f8651482938f21d33480255d97cf5b6d9d09e7719709eb61171465fc80a already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.103-0600 DEBUG runtime/asm_arm64.s:1222 syncer is not ready for the block 93 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.103-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 93 to 93 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:08.105-0600 DEBUG sync/evmdownloader.go:99 sending block 93 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:08.105-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 93, last block seen on L1 93 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:08.105-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 93, blockHash: 0xba3c1616c8e5773a85403bd2e49882a844710be2534c0c14f472866408675b0f {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:08.105-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.105-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 93 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.107-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 93, BlockPosition: 1, L1InfoTreeIndex: 88, PreviousBlockHash: 0x41e1d9ad029a216f817b16db07d3f3bdee6c959af3ac110a1f3de158be41d9c6, Timestamp: 1731611435, MainnetExitRoot: 0x2d965e84e3178940210eeb5272c636c0a8144d49324f85eb94602e4bc4ac70dc, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xc41579efdb056827f2dd559d27e6aae5bff9c11e7111e3aa67bda45501950e08, Hash: 0xdc8861a87ab02ae371cde0795a6173320f8bbbc7fe51fd53c2e5c9a76e35a308 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.109-0600 INFO l1infotreesync/processor.go:432 block 93 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.109-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.111-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 93 to 93 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:08.113-0600 DEBUG sync/evmdownloader.go:99 sending block 93 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:08.113-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 93, last block seen on L1 93 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:08.113-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 93, blockHash: 0xba3c1616c8e5773a85403bd2e49882a844710be2534c0c14f472866408675b0f {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:08.113-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:08.114-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 93 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:08.114-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:08.122-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0xc41579efdb056827f2dd559d27e6aae5bff9c11e7111e3aa67bda45501950e08 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.133-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 94 to 94 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:08.134-0600 DEBUG sync/evmdownloader.go:104 sending block 94 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:08.135-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 94, last block seen on L1 94 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:08.135-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 94, blockHash: 0xde6c4da21864e7baf63a169821b1bfa0c941ae73700bf07a4cdac079919f1012 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:08.135-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:08.135-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 94 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:08.135-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:08.181-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.181-0600 INFO runtime/asm_arm64.s:1222 GER 0xc41579efdb056827f2dd559d27e6aae5bff9c11e7111e3aa67bda45501950e08 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.183-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xc41579efdb056827f2dd559d27e6aae5bff9c11e7111e3aa67bda45501950e08 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.203-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xc41579efdb056827f2dd559d27e6aae5bff9c11e7111e3aa67bda45501950e08 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.223-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xc41579efdb056827f2dd559d27e6aae5bff9c11e7111e3aa67bda45501950e08 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.242-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 94 to 94 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:08.243-0600 DEBUG runtime/asm_arm64.s:1222 syncer is not ready for the block 94 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.244-0600 DEBUG sync/evmdownloader.go:99 sending block 94 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:08.244-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 94, last block seen on L1 94 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:08.244-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 94, blockHash: 0xc80bc3549ebd54c028a1ad9cadbc0d6649824e11ec821e72b2004e61266e04c0 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:08.244-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.244-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 94 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.244-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 94 to 94 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:08.245-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 94, BlockPosition: 1, L1InfoTreeIndex: 89, PreviousBlockHash: 0xba3c1616c8e5773a85403bd2e49882a844710be2534c0c14f472866408675b0f, Timestamp: 1731611436, MainnetExitRoot: 0xc08c42b2357fbadaf5e5c82d812aff7595735bbaefcc292644c9510d83cd05a4, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0xa7039cf92759a3140f3cb0619d9e17c0e3c7236b81d9599f90571396a0bbe511, Hash: 0x7e08a50003106cd446adfa5385efdd90b4e546299e44cf72efb53a6bb2a3cac9 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.246-0600 INFO l1infotreesync/processor.go:432 block 94 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.246-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.247-0600 DEBUG sync/evmdownloader.go:99 sending block 94 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:08.247-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 94, last block seen on L1 94 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:08.247-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 94, blockHash: 0xc80bc3549ebd54c028a1ad9cadbc0d6649824e11ec821e72b2004e61266e04c0 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:08.247-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:08.248-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 94 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:08.248-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:08.262-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0xa7039cf92759a3140f3cb0619d9e17c0e3c7236b81d9599f90571396a0bbe511 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.276-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 95 to 95 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:08.276-0600 DEBUG sync/evmdownloader.go:104 sending block 95 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:08.278-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 95, last block seen on L1 95 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:08.278-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 95, blockHash: 0xb86671bd2dfc99e34da71030caf396f9b1cbc9070646fba0b88f80012b5ce64f {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:08.278-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:08.278-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 95 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:08.278-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:08.321-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.321-0600 INFO runtime/asm_arm64.s:1222 GER 0xa7039cf92759a3140f3cb0619d9e17c0e3c7236b81d9599f90571396a0bbe511 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.323-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xa7039cf92759a3140f3cb0619d9e17c0e3c7236b81d9599f90571396a0bbe511 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.325-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xa7039cf92759a3140f3cb0619d9e17c0e3c7236b81d9599f90571396a0bbe511 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.343-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xa7039cf92759a3140f3cb0619d9e17c0e3c7236b81d9599f90571396a0bbe511 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.363-0600 DEBUG runtime/asm_arm64.s:1222 GER 0xa7039cf92759a3140f3cb0619d9e17c0e3c7236b81d9599f90571396a0bbe511 already injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.380-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 95 to 95 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:08.382-0600 DEBUG sync/evmdownloader.go:99 sending block 95 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:08.382-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 95, last block seen on L1 95 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:08.382-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 95, blockHash: 0x6503060de47bc0c826abc1831fe001d381c326e528d369b67425ae154146b943 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:08.382-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.382-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 95 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.383-0600 DEBUG runtime/asm_arm64.s:1222 syncer is not ready for the block 95 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.383-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 95, BlockPosition: 1, L1InfoTreeIndex: 90, PreviousBlockHash: 0xc80bc3549ebd54c028a1ad9cadbc0d6649824e11ec821e72b2004e61266e04c0, Timestamp: 1731611437, MainnetExitRoot: 0x8c98fb1f6e9daca5fcddf96987b752af07915fdd13c72c01e3dac22f042b4db0, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x986df0a56870983cff1da29f935759055fc182bc8391f1795514bdf165cc0cd6, Hash: 0x2a3fc6084f5eb4cc5b890f795de8d99ff7ba8c45d83eaab878dd8c9b76de6387 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.384-0600 INFO l1infotreesync/processor.go:432 block 95 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.384-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.388-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 95 to 95 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:08.390-0600 DEBUG sync/evmdownloader.go:99 sending block 95 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:08.390-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 95, last block seen on L1 95 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:08.390-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 95, blockHash: 0x6503060de47bc0c826abc1831fe001d381c326e528d369b67425ae154146b943 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:08.390-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:08.392-0600 DEBUG bridgesync/processor.go:311 processed 1 events until block 95 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:08.392-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl1"} -2024-11-14T13:09:08.402-0600 INFO runtime/asm_arm64.s:1222 injecting new GER: 0x986df0a56870983cff1da29f935759055fc182bc8391f1795514bdf165cc0cd6 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.419-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 96 to 96 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:08.419-0600 DEBUG sync/evmdownloader.go:104 sending block 96 to the driver (without events) {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:08.420-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 96, last block seen on L1 96 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:08.420-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 96, blockHash: 0xc471f15da545bf751ec8e2b5a1e4db9a47b79dbf0f7867935b7453567a473d1a {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl2"} -2024-11-14T13:09:08.421-0600 DEBUG bridgesync/processor.go:270 <======================= BRIDGE SYNC ================================= {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:08.421-0600 DEBUG bridgesync/processor.go:311 processed 0 events until block 96 {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:08.421-0600 DEBUG bridgesync/processor.go:312 ======================= BRIDGE SYNC =================================> {"pid": 7274, "version": "v0.1.0", "bridge-syncer": "bridgesyncl2"} -2024-11-14T13:09:08.457-0600 DEBUG sync/evmdriver.go:104 handleReorg from block: 86 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:08.457-0600 DEBUG sync/evmdriver.go:104 handleReorg from block: 86 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:08.457-0600 DEBUG l1infotreesync/processor.go:243 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.457-0600 DEBUG sync/evmdownloader.go:79 closing channel {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:08.457-0600 DEBUG l1infotreesync/processor.go:286 last info: BlockNumber: 85, BlockPosition: 1, L1InfoTreeIndex: 80, PreviousBlockHash: 0x5317ba27bff4761cd0515d590d2a495af2bf86c8c0ddcaee28adb916a654f5cb, Timestamp: 1731611426, MainnetExitRoot: 0xd5505cb46eedcebdb62322f969edd7b2050b215fa257a4e03edb0ed85851cf23, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x28ebfcecec35b7a2ab577ca381a01467c52a0e2429d465e7044e304f649261ec, Hash: 0xbc0fef631da6963ae6b8709b34425fb7567d6c9d85df10946e697a5d3a44caa8 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.457-0600 INFO sync/evmdriver.go:89 Starting sync... lastProcessedBlock 85 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:08.457-0600 DEBUG l1infotreesync/processor.go:300 reorged until block 86 (included) {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.458-0600 DEBUG l1infotreesync/processor.go:302 last info: BlockNumber: 85, BlockPosition: 1, L1InfoTreeIndex: 80, PreviousBlockHash: 0x5317ba27bff4761cd0515d590d2a495af2bf86c8c0ddcaee28adb916a654f5cb, Timestamp: 1731611426, MainnetExitRoot: 0xd5505cb46eedcebdb62322f969edd7b2050b215fa257a4e03edb0ed85851cf23, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x28ebfcecec35b7a2ab577ca381a01467c52a0e2429d465e7044e304f649261ec, Hash: 0xbc0fef631da6963ae6b8709b34425fb7567d6c9d85df10946e697a5d3a44caa8 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.458-0600 DEBUG l1infotreesync/processor.go:306 xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx L1INFO xxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxxx> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.458-0600 INFO sync/evmdriver.go:89 Starting sync... lastProcessedBlock 85 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:08.460-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 86 to 95 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:08.461-0600 DEBUG aggoracle/oracle.go:92 waiting for tx 0x0000000000000000000000000000000000000000000000000000000000000000 to be mined {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.461-0600 INFO runtime/asm_arm64.s:1222 GER 0x986df0a56870983cff1da29f935759055fc182bc8391f1795514bdf165cc0cd6 injected {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.462-0600 DEBUG runtime/asm_arm64.s:1222 syncer is not ready for the block 95 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.462-0600 DEBUG runtime/asm_arm64.s:1222 syncer is not ready for the block 95 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.469-0600 DEBUG sync/evmdownloader.go:96 getting events from blocks 86 to 95 {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -2024-11-14T13:09:08.477-0600 DEBUG sync/evmdownloader.go:99 sending block 86 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:08.477-0600 DEBUG sync/evmdownloader.go:99 sending block 87 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:08.477-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 86, blockHash: 0x24cd6ea21d8b6a2952e23264f2f565607ef89bff640fe6d9338af3d674ce81db {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:08.477-0600 DEBUG sync/evmdownloader.go:99 sending block 88 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:08.478-0600 DEBUG sync/evmdownloader.go:99 sending block 89 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:08.478-0600 DEBUG sync/evmdownloader.go:99 sending block 90 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:08.478-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.478-0600 DEBUG sync/evmdownloader.go:99 sending block 91 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:08.478-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 86 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.478-0600 DEBUG sync/evmdownloader.go:99 sending block 92 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:08.478-0600 DEBUG sync/evmdownloader.go:99 sending block 93 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:08.478-0600 DEBUG sync/evmdownloader.go:99 sending block 94 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:08.478-0600 DEBUG sync/evmdownloader.go:99 sending block 95 to the driver (with events) {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:08.478-0600 DEBUG sync/evmdownloader.go:89 waiting for new blocks, last block processed 95, last block seen on L1 95 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:08.480-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 86, BlockPosition: 1, L1InfoTreeIndex: 81, PreviousBlockHash: 0x87e3f351920a1900c2c9ef269deb7451fae3574da1d791f2075815f7e7aa552f, Timestamp: 1731611428, MainnetExitRoot: 0xb16988221fa029250db816b80160e83edce68d156cc7efb65885aacb87fbedb1, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x5516719ff24ce595d2a1de00c5b3269996c36876392d6e2268a28fbb43f32260, Hash: 0x512a5375431bcd0517602853c4ff9384d9aa04a9456871750c8154eb4b4defbe {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.481-0600 INFO l1infotreesync/processor.go:432 block 86 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.481-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.481-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 87, blockHash: 0x348dcb3a75f1c205e583014d7dd017e6811513a8d1f14534111844dfe0e230c0 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:08.481-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.481-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 87 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.481-0600 DEBUG runtime/asm_arm64.s:1222 syncer is not ready for the block 95 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.482-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 87, BlockPosition: 1, L1InfoTreeIndex: 82, PreviousBlockHash: 0x24cd6ea21d8b6a2952e23264f2f565607ef89bff640fe6d9338af3d674ce81db, Timestamp: 1731611429, MainnetExitRoot: 0x9e7e244de616224a3021ee2762bde49126001b5b85de19c554faad279d8d118a, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x5f0eafb8befef91f6da5d040890979492041e897863779669fbad336824d8f5f, Hash: 0xb5c8ea26fe0144e74b22992fe0189a54bd8e684639539e301cf03899dd26e873 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.482-0600 INFO l1infotreesync/processor.go:432 block 87 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.483-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.483-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 88, blockHash: 0xbd7f6c9f7fd9b1050bed5f7690a7a6f44c4fff8fd6a93d18e21911b5451c4be2 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:08.483-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.483-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 88 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.484-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 88, BlockPosition: 1, L1InfoTreeIndex: 83, PreviousBlockHash: 0x348dcb3a75f1c205e583014d7dd017e6811513a8d1f14534111844dfe0e230c0, Timestamp: 1731611430, MainnetExitRoot: 0x87b22eb8008bad3e6e54e5e5226f41faf5266e244f5c1d3c22b5c22587731a9b, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x3e98a83d0e0348768ac55c56315e711c38a436c7f77011dcb9e0603f14e7743d, Hash: 0xe8c77f198913f445462595b43c824b0057afdfb9e411c7c2ddb87508b2e4996e {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.484-0600 DEBUG helpers/reorg.go:31 reorging until block 94. Current block 95 (before reorg) {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.484-0600 INFO l1infotreesync/processor.go:432 block 88 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.484-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.484-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 89, blockHash: 0x3f33f5d70448fbbf536a5589f5e993fa713a88cc436df4c94675b32149afddf1 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:08.484-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.484-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 89 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.486-0600 INFO l1infotreesync/processor.go:379 inserted L1InfoTreeLeaf BlockNumber: 89, BlockPosition: 1, L1InfoTreeIndex: 84, PreviousBlockHash: 0xbd7f6c9f7fd9b1050bed5f7690a7a6f44c4fff8fd6a93d18e21911b5451c4be2, Timestamp: 1731611431, MainnetExitRoot: 0xb91a953e7d479b3d218980f301d34dc9769b103280f1048fa21b08799e6e9fde, RollupExitRoot: 0x0000000000000000000000000000000000000000000000000000000000000000, GlobalExitRoot: 0x64add2a3333197ef2aac0c85b4fcba327f7eb15d792f99bd559fb985c9cd9893, Hash: 0x4c6f91d6623c161d6e1b58c7134a1605bf5c06908ebfccb2ed8a2f43a417220a {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.486-0600 INFO l1infotreesync/processor.go:432 block 89 processed with 1 events {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.486-0600 DEBUG l1infotreesync/processor.go:433 ======================= L1 INFO =================================> {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.486-0600 DEBUG sync/evmdriver.go:101 handleNewBlock, blockNum: 90, blockHash: 0x711879929812ff0afef9ea06eacac148c39c2728847972fe77d5582ffcf0ec37 {"pid": 7274, "version": "v0.1.0", "syncer": "l1infotreesync"} -2024-11-14T13:09:08.486-0600 DEBUG l1infotreesync/processor.go:321 <======================= L1 INFO ================================= {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.486-0600 DEBUG l1infotreesync/processor.go:322 init block processing for block 90 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.486-0600 DEBUG bridgesync/e2e_test.go:72 removing expectedBridge with depositCount 90 due to reorg {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.486-0600 DEBUG bridgesync/e2e_test.go:81 reorgs: 10 {"pid": 7274, "version": "v0.1.0"} -2024-11-14T13:09:08.486-0600 ERROR sync/evmdownloader.go:281 error getting block header for block 95, err: not found {"pid": 7274, "version": "v0.1.0", "syncer": "bridgesyncl1"} -github.com/0xPolygon/cdk/sync.(*EVMDownloaderImplementation).GetBlockHeader - /Users/arnaub/Documents/polygon/cdk/sync/evmdownloader.go:281 -github.com/0xPolygon/cdk/sync.(*EVMDownloaderImplementation).GetEventsByBlockRange - /Users/arnaub/Documents/polygon/cdk/sync/evmdownloader.go:191 -github.com/0xPolygon/cdk/sync.(*EVMDownloader).Download - /Users/arnaub/Documents/polygon/cdk/sync/evmdownloader.go:97 -2024/11/14 13:09:08 getBlockHeader failed too many times (0) -FAIL github.com/0xPolygon/cdk/bridgesync 15.136s -FAIL