Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
26 commits
Select commit Hold shift + click to select a range
deeac2e
feat: update retry mechanism using tower::Service
greged93 Oct 13, 2025
bfb8ba7
feat: add retry metrics
greged93 Oct 13, 2025
4b082b4
fix: lints
greged93 Oct 13, 2025
a5f5bdd
feat: hide abstractions and use concrete type
greged93 Oct 14, 2025
2468aae
Merge branch 'main' into feat/update-retry
greged93 Oct 14, 2025
cd0aad7
Merge branch 'main' into feat/update-retry
greged93 Oct 14, 2025
e5744a9
chore: cleaning docs + test-utils
greged93 Oct 14, 2025
1d930f7
Merge branch 'main' into feat/update-retry
greged93 Oct 14, 2025
060dc10
fix: benchmark
greged93 Oct 14, 2025
088a8d4
fix: switch to walltime mode
greged93 Oct 15, 2025
ffe96f1
feat: answer comments
greged93 Oct 16, 2025
508face
Merge branch 'main' into feat/update-retry
greged93 Oct 16, 2025
bf1bc82
Merge branch 'main' into feat/update-retry
frisitano Oct 16, 2025
1d44ce6
fix: revert codspeed
greged93 Oct 16, 2025
22e5d4c
feat: get_n_l2_block_data_hint
greged93 Oct 17, 2025
f758011
Merge branch 'main' into feat/update-retry
greged93 Oct 20, 2025
1b7b64f
fix:get_n_l2_block_data_hint sql query
greged93 Oct 20, 2025
6694b8f
Merge branch 'main' into feat/database-metrics
greged93 Oct 20, 2025
67461cd
feat: database metrics
greged93 Oct 20, 2025
41388bb
Merge branch 'main' into feat/database-metrics
greged93 Oct 21, 2025
d6863b6
fix: incorrect function call
greged93 Oct 21, 2025
649112f
Merge branch 'main' into feat/database-metrics
greged93 Oct 22, 2025
5328477
fix: tests
greged93 Oct 22, 2025
4fa3ee9
fix: doc lints
greged93 Oct 22, 2025
0ea23da
feat: add update_skipped_l1_messages
greged93 Oct 22, 2025
bfa5fea
Merge branch 'main' into feat/database-metrics
greged93 Oct 22, 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
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

1 change: 1 addition & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -228,6 +228,7 @@ reqwest = "0.12"
serde = { version = "1.0" }
serde_json = { version = "1.0" }
sea-orm = { version = "1.1.0" }
strum = "0.27.1"
thiserror = "2.0"
tokio = { version = "1.39", default-features = false }
tokio-stream = { version = "0.1", default-features = false }
Expand Down
2 changes: 1 addition & 1 deletion crates/chain-orchestrator/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ futures.workspace = true
metrics.workspace = true
metrics-derive.workspace = true
serde = { workspace = true, optional = true, features = ["derive"] }
strum = "0.27.1"
strum.workspace = true
thiserror.workspace = true
tokio = { workspace = true, features = ["full"] }
tokio-stream.workspace = true
Expand Down
1 change: 1 addition & 0 deletions crates/database/db/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ metrics-derive.workspace = true
sea-orm = { workspace = true, features = ["sqlx-sqlite", "runtime-tokio-native-tls", "macros"] }
serde.workspace = true
serde_json.workspace = true
strum.workspace = true
tempfile = { version = "3.20.0", optional = true }
thiserror.workspace = true
tokio = { workspace = true, features = ["macros", "sync"] }
Expand Down
Loading
Loading