Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
38 commits
Select commit Hold shift + click to select a range
6b071c7
feat: pod integration
ogabrielides Jan 15, 2026
da77b6a
removed unused function
ogabrielides Jan 15, 2026
9c77e6b
adjust pod-sdk and protocol
ogabrielides Jan 15, 2026
f198dd0
Suggestions
ogabrielides Jan 16, 2026
82bc66f
suggestions
ogabrielides Jan 16, 2026
d5e0fb8
hash solution
ogabrielides Jan 16, 2026
69f4b45
suggestion
ogabrielides Jan 16, 2026
b51cbcc
remove comment
ogabrielides Jan 16, 2026
f75a596
fix: pod bugs - dynamic WETH address, handle None score gracefully
AryanGodara Feb 24, 2026
010aa06
fix: cleanup spurious modules, dead deps, and non-feature files
AryanGodara Feb 24, 2026
c32af3d
fix(playground): add autopilot.toml and fix driver2 config for pod ne…
AryanGodara Feb 24, 2026
6924fe2
add configs for local testing, and add instructions for LLM agents
AryanGodara Mar 9, 2026
8cbd61a
remove driver2 and baseline2 services from playground compose files.R…
AryanGodara Mar 31, 2026
2d5dce2
fix: consolidate pod types, add pod test infrastructure, and cleanup …
AryanGodara Mar 31, 2026
08484df
pod e2e test with full order flow, and temp logging while testing
AryanGodara Mar 31, 2026
8388557
refactor: improve logging with structured tracing spans and reduce ve…
AryanGodara Apr 1, 2026
123d33a
feat: add pod network verification to e2e tests
AryanGodara Apr 1, 2026
b63713b
remove redundant script to spin up services
AryanGodara Apr 3, 2026
6d32e78
add temp verbose test command
AryanGodara Apr 3, 2026
09e6cca
refactor: reorganize local config files and remove unused eth domain …
AryanGodara Apr 7, 2026
512a7e7
remove local configs, not reqd
AryanGodara Apr 7, 2026
361bb27
reference config files to run driver and autopilot locally
AryanGodara Apr 7, 2026
b704cd3
chore: lint and clippy fixes
AryanGodara Apr 8, 2026
b653afe
fix: bring back the removed load_account function, missed while rebasing
AryanGodara Apr 8, 2026
5fbacce
lint: use tombi, missed in last commits
AryanGodara Apr 8, 2026
bba9df0
fix: attempt to fix rustls error in forked test CI
AryanGodara Apr 8, 2026
d66450d
chore: tombi lint fix
AryanGodara Apr 8, 2026
c1ea345
fix: add wait func for driver since the pod config takes longer to se…
AryanGodara Apr 8, 2026
0d6aa9b
add pod account recovery mechanism for locked accounts, and switch to…
AryanGodara Apr 9, 2026
31a127f
chore: upgrade alloy dependencies from 1.7.3 to 1.8.3 and remove rust…
AryanGodara Apr 10, 2026
f6301c8
fix: skip malformed bids instead of failing entire competition, log c…
AryanGodara Apr 14, 2026
364c65e
fix: update solver_winner_selection to match new winsel::Solution::ne…
AryanGodara Apr 20, 2026
aa562d8
fix: wrap score_value in vec for SolveResponse::new to match updated …
AryanGodara Apr 25, 2026
e2e96a9
refactoring, add order-quoting config section with baseline price est…
AryanGodara Apr 26, 2026
05b8ed6
refactor: optimize sorting of orders and prices in hash_solution func…
AryanGodara Apr 27, 2026
7007634
update acc to comments
AryanGodara May 1, 2026
80d6b8f
refactor(winner-selection): expose arbitrate_paired helper and dedupe…
AryanGodara May 4, 2026
61e1846
refactor(competition): introduce BidPayload for auction bids and upda…
AryanGodara May 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
209 changes: 199 additions & 10 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 @@ -90,6 +90,7 @@ order-validation = { path = "crates/order-validation" }
orderbook = { path = "crates/orderbook" }
paste = "1.0"
pin-project-lite = "0.2.14"
pod-sdk = "0.5.1"
prettyplease = "0.2.37"
price-estimation = { path = "crates/price-estimation" }
proc-macro2 = "1.0.103"
Expand Down
Loading
Loading