Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Faster MEV tip claiming (v1.17) #568

Merged
merged 1 commit into from
Jan 29, 2024
Merged

Faster MEV tip claiming (v1.17) #568

merged 1 commit into from
Jan 29, 2024

Conversation

buffalu
Copy link
Contributor

@buffalu buffalu commented Jan 21, 2024

Problem

MEV tip claiming has been slow and almost taking an epoch.

Summary of Changes

  • Gather all transactions, take a random subset of them, and send them all on-chain until the blockhash expires.
  • Periodically check to see which signatures landed.
  • Repeat until timeout or finished.
  • Run reclaim rent and claim mev in parallel. This should prevent us from needing to top up as frequently as reclaim rent should re-fill. One could even run reclaim rent first then run mev claim since there can be race conditions between claim mev + reclaim rent, but running in parallel seems more ideal

Note: I need to merge this upstream into master, but this makes it easier to work on

let epoch = merkle_trees.epoch;

let mut futs = vec![];
futs.push(tokio::spawn(start_mev_claim_process(
Copy link
Contributor

@esemeniuc esemeniuc Jan 23, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

a bit confused why spawning futures through join_all? tokio::spawn is non async

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can you explain more? this is typical pattern we do throughout our own codebases

) -> solana_rpc_client_api::client_error::Result<Vec<(Signature, Option<TransactionStatus>)>> {
let mut signature_statuses = Vec::new();

for signatures_batch in signatures.chunks(100) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

old code would request in parallel, any issues come up because of that?

.collect();

datapoint_info!(
"build_transactions_new",
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

prefix with claim_mev_tips-...?

solana_metrics::flush(); // sometimes last datapoint doesn't get emitted. this increases likelihood.
for r in results {
r.map_err(|e| ClaimMevError::UncaughtError { e: e.to_string() })??;
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

could just unwrap these directly?

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

main returns error, so just propagating that out

Be more aggressive about sending transactions.
@buffalu buffalu changed the title Faster MEV tip claiming Faster MEV tip claiming (v1.17) Jan 29, 2024
@buffalu buffalu merged commit 3b86307 into v1.17 Jan 29, 2024
18 checks passed
@buffalu buffalu deleted the lb/faster_claim_117 branch January 29, 2024 15:03
buffalu added a commit that referenced this pull request Jan 29, 2024
Backport clone derivation (416) (#418)

backports #430: update jito-programs (#432)

Backport #446 to v1.17 (#448)

[JIT-1661] Faster Autosnapshot (#445)

v1.17: Backport #449 (#451)

backports #419: add upsert to accountoverrides (#421)

backport 428 runtime-plugin (#458)

[JIT-1713] Fix bundle's blockspace preallocation (Backport to 1.17) (#499)

Backport #500 to v1.17 (#507)

Backport #520: add priority fees to mev claim (#525)

Faster MEV tip claiming (v1.17) (#568)
buffalu added a commit that referenced this pull request Jan 29, 2024
Backport clone derivation (416) (#418)

backports #430: update jito-programs (#432)

Backport #446 to v1.17 (#448)

[JIT-1661] Faster Autosnapshot (#445)

v1.17: Backport #449 (#451)

backports #419: add upsert to accountoverrides (#421)

backport 428 runtime-plugin (#458)

[JIT-1713] Fix bundle's blockspace preallocation (Backport to 1.17) (#499)

Backport #500 to v1.17 (#507)

Backport #520: add priority fees to mev claim (#525)

Faster MEV tip claiming (v1.17) (#568)
buffalu added a commit that referenced this pull request Feb 1, 2024
Backport clone derivation (416) (#418)

backports #430: update jito-programs (#432)

Backport #446 to v1.17 (#448)

[JIT-1661] Faster Autosnapshot (#445)

v1.17: Backport #449 (#451)

backports #419: add upsert to accountoverrides (#421)

backport 428 runtime-plugin (#458)

[JIT-1713] Fix bundle's blockspace preallocation (Backport to 1.17) (#499)

Backport #500 to v1.17 (#507)

Backport #520: add priority fees to mev claim (#525)

Faster MEV tip claiming (v1.17) (#568)

Backport Release Fixes (#586)
buffalu added a commit that referenced this pull request Feb 6, 2024
Backport clone derivation (416) (#418)

backports #430: update jito-programs (#432)

Backport #446 to v1.17 (#448)

[JIT-1661] Faster Autosnapshot (#445)

v1.17: Backport #449 (#451)

backports #419: add upsert to accountoverrides (#421)

backport 428 runtime-plugin (#458)

[JIT-1713] Fix bundle's blockspace preallocation (Backport to 1.17) (#499)

Backport #500 to v1.17 (#507)

Backport #520: add priority fees to mev claim (#525)

Faster MEV tip claiming (v1.17) (#568)

Backport Release Fixes (#586)
buffalu added a commit that referenced this pull request Feb 6, 2024
Backport clone derivation (416) (#418)

backports #430: update jito-programs (#432)

Backport #446 to v1.17 (#448)

[JIT-1661] Faster Autosnapshot (#445)

v1.17: Backport #449 (#451)

backports #419: add upsert to accountoverrides (#421)

backport 428 runtime-plugin (#458)

[JIT-1713] Fix bundle's blockspace preallocation (Backport to 1.17) (#499)

Backport #500 to v1.17 (#507)

Backport #520: add priority fees to mev claim (#525)

Faster MEV tip claiming (v1.17) (#568)

Backport Release Fixes (#586)
buffalu added a commit that referenced this pull request Feb 9, 2024
Backport clone derivation (416) (#418)

backports #430: update jito-programs (#432)

Backport #446 to v1.17 (#448)

[JIT-1661] Faster Autosnapshot (#445)

v1.17: Backport #449 (#451)

backports #419: add upsert to accountoverrides (#421)

backport 428 runtime-plugin (#458)

[JIT-1713] Fix bundle's blockspace preallocation (Backport to 1.17) (#499)

Backport #500 to v1.17 (#507)

Backport #520: add priority fees to mev claim (#525)

Faster MEV tip claiming (v1.17) (#568)

Backport Release Fixes (#586)
github-actions bot pushed a commit that referenced this pull request Feb 21, 2024
Backport clone derivation (416) (#418)

backports #430: update jito-programs (#432)

Backport #446 to v1.17 (#448)

[JIT-1661] Faster Autosnapshot (#445)

v1.17: Backport #449 (#451)

backports #419: add upsert to accountoverrides (#421)

backport 428 runtime-plugin (#458)

[JIT-1713] Fix bundle's blockspace preallocation (Backport to 1.17) (#499)

Backport #500 to v1.17 (#507)

Backport #520: add priority fees to mev claim (#525)

Faster MEV tip claiming (v1.17) (#568)

Backport Release Fixes (#586)
github-actions bot pushed a commit that referenced this pull request Feb 21, 2024
Backport clone derivation (416) (#418)

backports #430: update jito-programs (#432)

Backport #446 to v1.17 (#448)

[JIT-1661] Faster Autosnapshot (#445)

v1.17: Backport #449 (#451)

backports #419: add upsert to accountoverrides (#421)

backport 428 runtime-plugin (#458)

[JIT-1713] Fix bundle's blockspace preallocation (Backport to 1.17) (#499)

Backport #500 to v1.17 (#507)

Backport #520: add priority fees to mev claim (#525)

Faster MEV tip claiming (v1.17) (#568)

Backport Release Fixes (#586)
github-actions bot pushed a commit that referenced this pull request Feb 21, 2024
Backport clone derivation (416) (#418)

backports #430: update jito-programs (#432)

Backport #446 to v1.17 (#448)

[JIT-1661] Faster Autosnapshot (#445)

v1.17: Backport #449 (#451)

backports #419: add upsert to accountoverrides (#421)

backport 428 runtime-plugin (#458)

[JIT-1713] Fix bundle's blockspace preallocation (Backport to 1.17) (#499)

Backport #500 to v1.17 (#507)

Backport #520: add priority fees to mev claim (#525)

Faster MEV tip claiming (v1.17) (#568)

Backport Release Fixes (#586)
jito-infra pushed a commit that referenced this pull request Feb 21, 2024
Backport clone derivation (416) (#418)

backports #430: update jito-programs (#432)

Backport #446 to v1.17 (#448)

[JIT-1661] Faster Autosnapshot (#445)

v1.17: Backport #449 (#451)

backports #419: add upsert to accountoverrides (#421)

backport 428 runtime-plugin (#458)

[JIT-1713] Fix bundle's blockspace preallocation (Backport to 1.17) (#499)

Backport #500 to v1.17 (#507)

Backport #520: add priority fees to mev claim (#525)

Faster MEV tip claiming (v1.17) (#568)

Backport Release Fixes (#586)
buffalu added a commit that referenced this pull request Feb 22, 2024
Backport clone derivation (416) (#418)

backports #430: update jito-programs (#432)

Backport #446 to v1.17 (#448)

[JIT-1661] Faster Autosnapshot (#445)

v1.17: Backport #449 (#451)

backports #419: add upsert to accountoverrides (#421)

backport 428 runtime-plugin (#458)

[JIT-1713] Fix bundle's blockspace preallocation (Backport to 1.17) (#499)

Backport #500 to v1.17 (#507)

Backport #520: add priority fees to mev claim (#525)

Faster MEV tip claiming (v1.17) (#568)
jito-infra pushed a commit that referenced this pull request Feb 22, 2024
Backport clone derivation (416) (#418)

backports #430: update jito-programs (#432)

Backport #446 to v1.17 (#448)

[JIT-1661] Faster Autosnapshot (#445)

v1.17: Backport #449 (#451)

backports #419: add upsert to accountoverrides (#421)

backport 428 runtime-plugin (#458)

[JIT-1713] Fix bundle's blockspace preallocation (Backport to 1.17) (#499)

Backport #500 to v1.17 (#507)

Backport #520: add priority fees to mev claim (#525)

Faster MEV tip claiming (v1.17) (#568)

Backport Release Fixes (#586)
buffalu added a commit that referenced this pull request Feb 26, 2024
Backport clone derivation (416) (#418)

backports #430: update jito-programs (#432)

Backport #446 to v1.17 (#448)

[JIT-1661] Faster Autosnapshot (#445)

v1.17: Backport #449 (#451)

backports #419: add upsert to accountoverrides (#421)

backport 428 runtime-plugin (#458)

[JIT-1713] Fix bundle's blockspace preallocation (Backport to 1.17) (#499)

Backport #500 to v1.17 (#507)

Backport #520: add priority fees to mev claim (#525)

Faster MEV tip claiming (v1.17) (#568)

Backport Release Fixes (#586)
buffalu added a commit that referenced this pull request Mar 4, 2024
Backport clone derivation (416) (#418)

backports #430: update jito-programs (#432)

Backport #446 to v1.17 (#448)

[JIT-1661] Faster Autosnapshot (#445)

v1.17: Backport #449 (#451)

backports #419: add upsert to accountoverrides (#421)

backport 428 runtime-plugin (#458)

[JIT-1713] Fix bundle's blockspace preallocation (Backport to 1.17) (#499)

Backport #500 to v1.17 (#507)

Backport #520: add priority fees to mev claim (#525)

Faster MEV tip claiming (v1.17) (#568)

Backport Release Fixes (#586)
buffalu added a commit that referenced this pull request Mar 8, 2024
Backport clone derivation (416) (#418)

backports #430: update jito-programs (#432)

Backport #446 to v1.17 (#448)

[JIT-1661] Faster Autosnapshot (#445)

v1.17: Backport #449 (#451)

backports #419: add upsert to accountoverrides (#421)

backport 428 runtime-plugin (#458)

[JIT-1713] Fix bundle's blockspace preallocation (Backport to 1.17) (#499)

Backport #500 to v1.17 (#507)

Backport #520: add priority fees to mev claim (#525)

Faster MEV tip claiming (v1.17) (#568)

Backport Release Fixes (#586)
semgoSE pushed a commit to solana-forge/forge-solana-deprecated that referenced this pull request Mar 13, 2024
Backport clone derivation (416) (jito-foundation#418)

backports jito-foundation#430: update jito-programs (jito-foundation#432)

Backport jito-foundation#446 to v1.17 (jito-foundation#448)

[JIT-1661] Faster Autosnapshot (jito-foundation#445)

v1.17: Backport jito-foundation#449 (jito-foundation#451)

backports jito-foundation#419: add upsert to accountoverrides (jito-foundation#421)

backport 428 runtime-plugin (jito-foundation#458)

[JIT-1713] Fix bundle's blockspace preallocation (Backport to 1.17) (jito-foundation#499)

Backport jito-foundation#500 to v1.17 (jito-foundation#507)

Backport jito-foundation#520: add priority fees to mev claim (jito-foundation#525)

Faster MEV tip claiming (v1.17) (jito-foundation#568)

Backport Release Fixes (jito-foundation#586)
buffalu added a commit that referenced this pull request Mar 14, 2024
Backport clone derivation (416) (#418)

backports #430: update jito-programs (#432)

Backport #446 to v1.17 (#448)

[JIT-1661] Faster Autosnapshot (#445)

v1.17: Backport #449 (#451)

backports #419: add upsert to accountoverrides (#421)

backport 428 runtime-plugin (#458)

[JIT-1713] Fix bundle's blockspace preallocation (Backport to 1.17) (#499)

Backport #500 to v1.17 (#507)

Backport #520: add priority fees to mev claim (#525)

Faster MEV tip claiming (v1.17) (#568)

Backport Release Fixes (#586)
buffalu added a commit that referenced this pull request Mar 14, 2024
Backport clone derivation (416) (#418)

backports #430: update jito-programs (#432)

Backport #446 to v1.17 (#448)

[JIT-1661] Faster Autosnapshot (#445)

v1.17: Backport #449 (#451)

backports #419: add upsert to accountoverrides (#421)

backport 428 runtime-plugin (#458)

[JIT-1713] Fix bundle's blockspace preallocation (Backport to 1.17) (#499)

Backport #500 to v1.17 (#507)

Backport #520: add priority fees to mev claim (#525)

Faster MEV tip claiming (v1.17) (#568)

Backport Release Fixes (#586)
buffalu added a commit that referenced this pull request Mar 14, 2024
Backport clone derivation (416) (#418)

backports #430: update jito-programs (#432)

Backport #446 to v1.17 (#448)

[JIT-1661] Faster Autosnapshot (#445)

v1.17: Backport #449 (#451)

backports #419: add upsert to accountoverrides (#421)

backport 428 runtime-plugin (#458)

[JIT-1713] Fix bundle's blockspace preallocation (Backport to 1.17) (#499)

Backport #500 to v1.17 (#507)

Backport #520: add priority fees to mev claim (#525)

Faster MEV tip claiming (v1.17) (#568)

Backport Release Fixes (#586)
buffalu added a commit that referenced this pull request Mar 14, 2024
Backport clone derivation (416) (#418)

backports #430: update jito-programs (#432)

Backport #446 to v1.17 (#448)

[JIT-1661] Faster Autosnapshot (#445)

v1.17: Backport #449 (#451)

backports #419: add upsert to accountoverrides (#421)

backport 428 runtime-plugin (#458)

[JIT-1713] Fix bundle's blockspace preallocation (Backport to 1.17) (#499)

Backport #500 to v1.17 (#507)

Backport #520: add priority fees to mev claim (#525)

Faster MEV tip claiming (v1.17) (#568)

Backport Release Fixes (#586)
buffalu added a commit that referenced this pull request Mar 18, 2024
Backport clone derivation (416) (#418)

backports #430: update jito-programs (#432)

Backport #446 to v1.17 (#448)

[JIT-1661] Faster Autosnapshot (#445)

v1.17: Backport #449 (#451)

backports #419: add upsert to accountoverrides (#421)

backport 428 runtime-plugin (#458)

[JIT-1713] Fix bundle's blockspace preallocation (Backport to 1.17) (#499)

Backport #500 to v1.17 (#507)

Backport #520: add priority fees to mev claim (#525)

Faster MEV tip claiming (v1.17) (#568)

Backport Release Fixes (#586)
buffalu added a commit that referenced this pull request Mar 25, 2024
Backport clone derivation (416) (#418)

backports #430: update jito-programs (#432)

Backport #446 to v1.17 (#448)

[JIT-1661] Faster Autosnapshot (#445)

v1.17: Backport #449 (#451)

backports #419: add upsert to accountoverrides (#421)

backport 428 runtime-plugin (#458)

[JIT-1713] Fix bundle's blockspace preallocation (Backport to 1.17) (#499)

Backport #500 to v1.17 (#507)

Backport #520: add priority fees to mev claim (#525)

Faster MEV tip claiming (v1.17) (#568)

Backport Release Fixes (#586)
buffalu added a commit that referenced this pull request Mar 27, 2024
Backport clone derivation (416) (#418)

backports #430: update jito-programs (#432)

Backport #446 to v1.17 (#448)

[JIT-1661] Faster Autosnapshot (#445)

v1.17: Backport #449 (#451)

backports #419: add upsert to accountoverrides (#421)

backport 428 runtime-plugin (#458)

[JIT-1713] Fix bundle's blockspace preallocation (Backport to 1.17) (#499)

Backport #500 to v1.17 (#507)

Backport #520: add priority fees to mev claim (#525)

Faster MEV tip claiming (v1.17) (#568)

Backport Release Fixes (#586)
buffalu added a commit that referenced this pull request Apr 1, 2024
Backport clone derivation (416) (#418)

backports #430: update jito-programs (#432)

Backport #446 to v1.17 (#448)

[JIT-1661] Faster Autosnapshot (#445)

v1.17: Backport #449 (#451)

backports #419: add upsert to accountoverrides (#421)

backport 428 runtime-plugin (#458)

[JIT-1713] Fix bundle's blockspace preallocation (Backport to 1.17) (#499)

Backport #500 to v1.17 (#507)

Backport #520: add priority fees to mev claim (#525)

Faster MEV tip claiming (v1.17) (#568)

Backport Release Fixes (#586)
buffalu added a commit that referenced this pull request Apr 10, 2024
Backport clone derivation (416) (#418)

backports #430: update jito-programs (#432)

Backport #446 to v1.17 (#448)

[JIT-1661] Faster Autosnapshot (#445)

v1.17: Backport #449 (#451)

backports #419: add upsert to accountoverrides (#421)

backport 428 runtime-plugin (#458)

[JIT-1713] Fix bundle's blockspace preallocation (Backport to 1.17) (#499)

Backport #500 to v1.17 (#507)

Backport #520: add priority fees to mev claim (#525)

Faster MEV tip claiming (v1.17) (#568)

Backport Release Fixes (#586)
buffalu added a commit that referenced this pull request Apr 11, 2024
Backport clone derivation (416) (#418)

backports #430: update jito-programs (#432)

Backport #446 to v1.17 (#448)

[JIT-1661] Faster Autosnapshot (#445)

v1.17: Backport #449 (#451)

backports #419: add upsert to accountoverrides (#421)

backport 428 runtime-plugin (#458)

[JIT-1713] Fix bundle's blockspace preallocation (Backport to 1.17) (#499)

Backport #500 to v1.17 (#507)

Backport #520: add priority fees to mev claim (#525)

Faster MEV tip claiming (v1.17) (#568)

Backport Release Fixes (#586)
buffalu added a commit that referenced this pull request Apr 11, 2024
Backport clone derivation (416) (#418)

backports #430: update jito-programs (#432)

Backport #446 to v1.17 (#448)

[JIT-1661] Faster Autosnapshot (#445)

v1.17: Backport #449 (#451)

backports #419: add upsert to accountoverrides (#421)

backport 428 runtime-plugin (#458)

[JIT-1713] Fix bundle's blockspace preallocation (Backport to 1.17) (#499)

Backport #500 to v1.17 (#507)

Backport #520: add priority fees to mev claim (#525)

Faster MEV tip claiming (v1.17) (#568)

Backport Release Fixes (#586)
buffalu added a commit that referenced this pull request Apr 13, 2024
Backport clone derivation (416) (#418)

backports #430: update jito-programs (#432)

Backport #446 to v1.17 (#448)

[JIT-1661] Faster Autosnapshot (#445)

v1.17: Backport #449 (#451)

backports #419: add upsert to accountoverrides (#421)

backport 428 runtime-plugin (#458)

[JIT-1713] Fix bundle's blockspace preallocation (Backport to 1.17) (#499)

Backport #500 to v1.17 (#507)

Backport #520: add priority fees to mev claim (#525)

Faster MEV tip claiming (v1.17) (#568)

Backport Release Fixes (#586)
buffalu added a commit that referenced this pull request Apr 15, 2024
Backport clone derivation (416) (#418)

backports #430: update jito-programs (#432)

Backport #446 to v1.17 (#448)

[JIT-1661] Faster Autosnapshot (#445)

v1.17: Backport #449 (#451)

backports #419: add upsert to accountoverrides (#421)

backport 428 runtime-plugin (#458)

[JIT-1713] Fix bundle's blockspace preallocation (Backport to 1.17) (#499)

Backport #500 to v1.17 (#507)

Backport #520: add priority fees to mev claim (#525)

Faster MEV tip claiming (v1.17) (#568)

Backport Release Fixes (#586)
buffalu added a commit that referenced this pull request Apr 29, 2024
Backport clone derivation (416) (#418)

backports #430: update jito-programs (#432)

Backport #446 to v1.17 (#448)

[JIT-1661] Faster Autosnapshot (#445)

v1.17: Backport #449 (#451)

backports #419: add upsert to accountoverrides (#421)

backport 428 runtime-plugin (#458)

[JIT-1713] Fix bundle's blockspace preallocation (Backport to 1.17) (#499)

Backport #500 to v1.17 (#507)

Backport #520: add priority fees to mev claim (#525)

Faster MEV tip claiming (v1.17) (#568)

Backport Release Fixes (#586)
buffalu added a commit that referenced this pull request May 1, 2024
Backport clone derivation (416) (#418)

backports #430: update jito-programs (#432)

Backport #446 to v1.17 (#448)

[JIT-1661] Faster Autosnapshot (#445)

v1.17: Backport #449 (#451)

backports #419: add upsert to accountoverrides (#421)

backport 428 runtime-plugin (#458)

[JIT-1713] Fix bundle's blockspace preallocation (Backport to 1.17) (#499)

Backport #500 to v1.17 (#507)

Backport #520: add priority fees to mev claim (#525)

Faster MEV tip claiming (v1.17) (#568)

Backport Release Fixes (#586)

Update release URLs for jito-solana (#589)

Backports #595: correctly initialize account overrides (#599)

Fix: Ensure set contact info to UDP port instead of QUIC (#601)

Buffer bundles that exceed processing time and make the allowed processing time longer (#609)
buffalu added a commit that referenced this pull request May 1, 2024
Backport clone derivation (416) (#418)

backports #430: update jito-programs (#432)

Backport #446 to v1.17 (#448)

[JIT-1661] Faster Autosnapshot (#445)

v1.17: Backport #449 (#451)

backports #419: add upsert to accountoverrides (#421)

backport 428 runtime-plugin (#458)

[JIT-1713] Fix bundle's blockspace preallocation (Backport to 1.17) (#499)

Backport #500 to v1.17 (#507)

Backport #520: add priority fees to mev claim (#525)

Faster MEV tip claiming (v1.17) (#568)

Backport Release Fixes (#586)
buffalu added a commit that referenced this pull request May 1, 2024
Backport clone derivation (416) (#418)

backports #430: update jito-programs (#432)

Backport #446 to v1.17 (#448)

[JIT-1661] Faster Autosnapshot (#445)

v1.17: Backport #449 (#451)

backports #419: add upsert to accountoverrides (#421)

backport 428 runtime-plugin (#458)

[JIT-1713] Fix bundle's blockspace preallocation (Backport to 1.17) (#499)

Backport #500 to v1.17 (#507)

Backport #520: add priority fees to mev claim (#525)

Faster MEV tip claiming (v1.17) (#568)

Backport Release Fixes (#586)
buffalu added a commit that referenced this pull request May 8, 2024
Backport clone derivation (416) (#418)

backports #430: update jito-programs (#432)

Backport #446 to v1.17 (#448)

[JIT-1661] Faster Autosnapshot (#445)

v1.17: Backport #449 (#451)

backports #419: add upsert to accountoverrides (#421)

backport 428 runtime-plugin (#458)

[JIT-1713] Fix bundle's blockspace preallocation (Backport to 1.17) (#499)

Backport #500 to v1.17 (#507)

Backport #520: add priority fees to mev claim (#525)

Faster MEV tip claiming (v1.17) (#568)

Backport Release Fixes (#586)

Update release URLs for jito-solana (#589)

Backports #595: correctly initialize account overrides (#599)

Fix: Ensure set contact info to UDP port instead of QUIC (#601)

Buffer bundles that exceed processing time and make the allowed processing time longer (#609)
buffalu added a commit that referenced this pull request May 20, 2024
Backport clone derivation (416) (#418)

backports #430: update jito-programs (#432)

Backport #446 to v1.17 (#448)

[JIT-1661] Faster Autosnapshot (#445)

v1.17: Backport #449 (#451)

backports #419: add upsert to accountoverrides (#421)

backport 428 runtime-plugin (#458)

[JIT-1713] Fix bundle's blockspace preallocation (Backport to 1.17) (#499)

Backport #500 to v1.17 (#507)

Backport #520: add priority fees to mev claim (#525)

Faster MEV tip claiming (v1.17) (#568)

Backport Release Fixes (#586)

Update release URLs for jito-solana (#589)

Backports #595: correctly initialize account overrides (#599)

Fix: Ensure set contact info to UDP port instead of QUIC (#601)

Buffer bundles that exceed processing time and make the allowed processing time longer (#609)
buffalu added a commit that referenced this pull request May 21, 2024
Backport clone derivation (416) (#418)

backports #430: update jito-programs (#432)

Backport #446 to v1.17 (#448)

[JIT-1661] Faster Autosnapshot (#445)

v1.17: Backport #449 (#451)

backports #419: add upsert to accountoverrides (#421)

backport 428 runtime-plugin (#458)

[JIT-1713] Fix bundle's blockspace preallocation (Backport to 1.17) (#499)

Backport #500 to v1.17 (#507)

Backport #520: add priority fees to mev claim (#525)

Faster MEV tip claiming (v1.17) (#568)

Backport Release Fixes (#586)

Update release URLs for jito-solana (#589)

Backports #595: correctly initialize account overrides (#599)

Fix: Ensure set contact info to UDP port instead of QUIC (#601)

Buffer bundles that exceed processing time and make the allowed processing time longer (#609)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants