Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
40 commits
Select commit Hold shift + click to select a range
d1ddf42
wip: ace cleanup
Will-Smith11 Oct 15, 2025
725cf81
feat: get baseline building
Will-Smith11 Oct 15, 2025
a0d45aa
feat: get ace top of block commit added
Will-Smith11 Oct 15, 2025
f5aecb3
Merge develop into feat/ace-add-on
Will-Smith11 Oct 23, 2025
587f9e1
fix: sim tree
Will-Smith11 Oct 23, 2025
4d96ed4
wip: almost done cleaning up sequencing
Will-Smith11 Oct 24, 2025
0b29bc6
feat: finish baseline impl
Will-Smith11 Oct 27, 2025
c72ef7e
fix: linting
Will-Smith11 Oct 27, 2025
b6fbb3a
Merge branch 'flashbots:develop' into feat/ace-add-on
Will-Smith11 Nov 10, 2025
8f39ca8
chore: cleanup ace tx order type
Will-Smith11 Nov 10, 2025
299dc5d
feat: rename ace bundler
Will-Smith11 Nov 10, 2025
6363250
feat: wire in ace collector config
Will-Smith11 Nov 10, 2025
4dfdb8a
feat: just missing new detection
Will-Smith11 Nov 10, 2025
c461a8a
feat: add new detection
Will-Smith11 Nov 11, 2025
330a808
fix: wiring + linting
Will-Smith11 Nov 25, 2025
34a7b59
feat: more cleanup of old code
Will-Smith11 Nov 25, 2025
58cc561
removed unused error
ZanCorDX Nov 26, 2025
a6daa3a
wip: refactor to new model discussed
Will-Smith11 Dec 1, 2025
47e4853
feat: wip
Will-Smith11 Dec 2, 2025
85dd20a
wip: some featur cleanup
Will-Smith11 Dec 2, 2025
ce6e06c
feat: refactor angstrom out of the codebase, only ace
Will-Smith11 Dec 2, 2025
6c751aa
fix: comment
Will-Smith11 Dec 2, 2025
05b1be2
feat: add tests for simtree
Will-Smith11 Dec 3, 2025
caea1e2
some cleanup
Will-Smith11 Dec 3, 2025
0eff0aa
cleanup
Will-Smith11 Dec 3, 2025
2c29128
fix: slot access logic
Will-Smith11 Dec 5, 2025
808024e
feat: merge develop + some basic refactor
Will-Smith11 Dec 5, 2025
850ea7a
feat: refactor sim_job
Will-Smith11 Dec 5, 2025
5ed2785
feat: cleanup simjob
Will-Smith11 Dec 5, 2025
a643176
fix: clippy
Will-Smith11 Dec 8, 2025
e947f1a
feat: add ability to disable ace + remove hacky code
Will-Smith11 Jan 5, 2026
feda589
make sure that clippy happy
Will-Smith11 Jan 6, 2026
e819c74
bug fixes
Will-Smith11 Jan 6, 2026
a61b91f
cleanup ace enabled flag
Will-Smith11 Jan 6, 2026
1be6dd5
fix: remove unused code
Will-Smith11 Jan 6, 2026
91d48f1
more cleanup
Will-Smith11 Jan 6, 2026
32247d0
feat: test and cases
Will-Smith11 Jan 6, 2026
1ccbd75
cleanup from bad merge
Will-Smith11 Jan 6, 2026
930a892
wip
Will-Smith11 Jan 6, 2026
d9f3e80
bug fixes
Will-Smith11 Jan 6, 2026
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.

2 changes: 1 addition & 1 deletion crates/rbuilder-operator/src/flashbots_config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ use serde::Deserialize;
use serde_with::serde_as;
use time::OffsetDateTime;
use tokio_util::sync::CancellationToken;
use tracing::{error, warn};
use tracing::warn;
use url::Url;

use crate::{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,6 @@ use crate::{
use alloy_signer_local::PrivateKeySigner;
use jsonrpsee::core::client::ClientT;
use tokio::runtime::Runtime;
use tracing::error;

use super::best_true_value_pusher::{Backend, BuiltBlockInfo};

Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
use redis::Commands;
use tracing::error;

use super::best_true_value_pusher::{Backend, BuiltBlockInfo};

Expand Down
1 change: 1 addition & 0 deletions crates/rbuilder-primitives/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@ eyre.workspace = true
serde.workspace = true
derive_more.workspace = true
serde_json.workspace = true
strum = { version = "0.27.2", features = ["derive"] }

[dev-dependencies]
alloy-primitives = { workspace = true, features = ["arbitrary"] }
Expand Down
Loading