Skip to content
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/mev-share-rpc-api/src/types.rs
Original file line number Diff line number Diff line change
Expand Up @@ -122,9 +122,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