Skip to content
Merged
Show file tree
Hide file tree
Changes from 60 commits
Commits
Show all changes
61 commits
Select commit Hold shift + click to select a range
d24184c
ci: add dprint
greged93 Feb 19, 2025
065fe5b
feat: initial work + handle_latest_block
greged93 Feb 23, 2025
26e4a8a
Rollup node manager (#21)
frisitano Feb 26, 2025
6209e94
feat(watcher): reorg detection
greged93 Mar 4, 2025
abd3314
feat(primitives): add batch and l1 transaction
greged93 Mar 5, 2025
d8c13e8
feat(watcher): contracts and constants
greged93 Mar 5, 2025
507cdd7
feat(watcher): imports
greged93 Mar 5, 2025
2c18c77
feat(watcher): add error types
greged93 Mar 5, 2025
b83bb82
feat(watcher): handle l1 messages and commit logs
greged93 Mar 5, 2025
10821af
feat: handle batch commit and finalize
greged93 Mar 5, 2025
924bf66
test: handle_latest_block
greged93 Mar 6, 2025
e30f48a
test: wip events decoding
greged93 Mar 6, 2025
3de6a3f
test: commit and finalize batch logs
greged93 Mar 7, 2025
99c90af
test: utils
greged93 Mar 7, 2025
883e160
feat: tracing
greged93 Mar 7, 2025
e608882
test: wip reorg integration
greged93 Mar 7, 2025
58b3686
test: reorg detection integration test
greged93 Mar 11, 2025
7181918
test: gaps
greged93 Mar 11, 2025
dc76637
fix: lints
greged93 Mar 12, 2025
a4e6e7b
feat: point deps to default reth branch
greged93 Mar 12, 2025
04aa54d
fix: security issue on ring
greged93 Mar 12, 2025
a021906
fix: bump alloy
greged93 Mar 12, 2025
17fbd3a
feat: move abi to separate crate
greged93 Mar 12, 2025
8f80042
chore: remove ArbitraryTxBuilder
greged93 Mar 12, 2025
d8c9d74
init database
frisitano Mar 13, 2025
1f820cb
add database iterator
frisitano Mar 13, 2025
041b354
add test
frisitano Mar 13, 2025
1bf3042
update streaming implementation
frisitano Mar 13, 2025
55945e1
init indexer
frisitano Mar 13, 2025
15257a2
fix: answer comments
greged93 Mar 13, 2025
fc498fb
fix: lints
greged93 Mar 13, 2025
fff498c
fix: no std issues
greged93 Mar 14, 2025
efeb80c
fix: cargo features check
greged93 Mar 14, 2025
88cf5fe
extend indexer
frisitano Mar 14, 2025
beec5a9
Merge branch 'feat/watcher' into feat/database-impl
frisitano Mar 17, 2025
204a0d1
extend and refactor database, migrations and batch primitive
frisitano Mar 17, 2025
fb95b89
lint
frisitano Mar 17, 2025
3aedc28
lint
frisitano Mar 17, 2025
43ab06c
lint
frisitano Mar 17, 2025
e61626b
improve database implementation
frisitano Mar 17, 2025
046565c
lint
frisitano Mar 17, 2025
cf49aba
lint
frisitano Mar 17, 2025
7502687
database transaction refactor
frisitano Mar 17, 2025
59be87a
lint:
frisitano Mar 17, 2025
d550fd2
use GAT for DatabaseConnectionProvider trait
frisitano Mar 17, 2025
36abac7
refactor & lint
frisitano Mar 18, 2025
f1aa5d6
merge database and refactor
frisitano Mar 18, 2025
6d52d5d
merge database and refactor
frisitano Mar 18, 2025
a44b6a2
clippy fix
frisitano Mar 18, 2025
25ebfee
skip rolllup-node-indexer no_std
frisitano Mar 18, 2025
d15e438
refactor databse interface for insert_batch_input
frisitano Mar 18, 2025
c3f803a
Merge branch 'feat/database-impl' into feat/indexer-impl
frisitano Mar 18, 2025
7420c9f
refactor
frisitano Mar 19, 2025
67f8477
lint
frisitano Mar 19, 2025
f62de3b
refactor indexer
frisitano Mar 19, 2025
c7b2412
refactor indexer
frisitano Mar 19, 2025
b53220e
Merge branch 'main' into feat/database-impl
frisitano Mar 19, 2025
8e7dfba
lint:
frisitano Mar 19, 2025
dc08aeb
lint
frisitano Mar 19, 2025
28045ba
Merge branch 'feat/database-impl' into feat/indexer-impl
frisitano Mar 19, 2025
e9027d8
Merge branch 'main' into feat/indexer-impl
frisitano Mar 19, 2025
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -127,10 +127,10 @@ jobs:
include:
- type: wasm
target: wasm32-unknown-unknown
exclude: scroll-engine,scroll-wire,scroll-bridge,scroll-network,rollup-node-manager,rollup-node-watcher
exclude: scroll-engine,scroll-wire,scroll-bridge,scroll-network,rollup-node-manager,rollup-node-watcher,scroll-db,scroll-migration,rollup-node-indexer
- type: riscv
target: riscv32imac-unknown-none-elf
exclude: scroll-engine,scroll-wire,scroll-bridge,scroll-network,rollup-node-manager,rollup-node-watcher
exclude: scroll-engine,scroll-wire,scroll-bridge,scroll-network,rollup-node-manager,rollup-node-watcher,scroll-db,scroll-migration,rollup-node-indexer
steps:
- uses: actions/checkout@v4
- uses: rui314/setup-mold@v1
Expand Down
Loading
Loading