Skip to content
Open
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
8 changes: 8 additions & 0 deletions sf/firehose/v2/firehose.proto
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,10 @@ message SingleBlockRequest {
}

repeated google.protobuf.Any transforms = 6;

// requestor_id is an optional string that the requestor can set and should appear
// in the firehose logs for debugging. It must be limited to Base58-compatible characters.
optional string requestor_id = 7;
}

message SingleBlockResponse {
Expand Down Expand Up @@ -82,6 +86,10 @@ message Request {
// Default behavior will send blocks as STEP_NEW, with occasional STEP_UNDO
bool final_blocks_only = 4;

// requestor_id is an optional string that the requestor can set and should appear
// in the firehose logs for debugging. It must be limited to Base58-compatible characters.
optional string requestor_id = 5;

repeated google.protobuf.Any transforms = 10;
}

Expand Down