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

Update builders to vector of strings in privacy struct #983

Merged
merged 1 commit into from
Jun 28, 2024
Merged
Changes from all commits
Commits
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
5 changes: 3 additions & 2 deletions crates/rpc-types-mev/src/common.rs
Original file line number Diff line number Diff line change
Expand Up @@ -54,9 +54,10 @@ pub struct Privacy {
/// Hints on what data should be shared about the bundle and its transactions
#[serde(skip_serializing_if = "Option::is_none")]
pub hints: Option<PrivacyHint>,
/// The addresses of the builders that should be allowed to see the bundle/transaction.
/// Names of the builders that should be allowed to see the bundle/transaction.
/// <https://github.com/flashbots/dowg/blob/main/builder-registrations.json>
#[serde(skip_serializing_if = "Option::is_none")]
pub builders: Option<Vec<Address>>,
pub builders: Option<Vec<String>>,
}

/// Hints on what data should be shared about the bundle and its transactions
Expand Down