Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
30 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
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
d07c270
feat: bounded vec
greged93 Mar 18, 2025
25fe57c
fix: lints
greged93 Mar 18, 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
14 changes: 12 additions & 2 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,16 @@ jobs:
- name: Run fmt
run: cargo fmt --all --check

check-toml:
runs-on: ubuntu-latest
timeout-minutes: 30
steps:
- uses: actions/checkout@v4
- name: Run dprint
uses: dprint/[email protected]
with:
config-path: dprint.json

udeps:
runs-on: ubuntu-latest
timeout-minutes: 60
Expand Down Expand Up @@ -117,10 +127,10 @@ jobs:
include:
- type: wasm
target: wasm32-unknown-unknown
exclude: scroll-engine,scroll-wire,scroll-bridge,scroll-network,rollup-node-manager
exclude: scroll-engine,scroll-wire,scroll-bridge,scroll-network,rollup-node-manager,rollup-node-watcher
- type: riscv
target: riscv32imac-unknown-none-elf
exclude: scroll-engine,scroll-wire,scroll-bridge,scroll-network,rollup-node-manager
exclude: scroll-engine,scroll-wire,scroll-bridge,scroll-network,rollup-node-manager,rollup-node-watcher
steps:
- uses: actions/checkout@v4
- uses: rui314/setup-mold@v1
Expand Down
Loading