diff --git a/sf/firehose/v2/firehose.proto b/sf/firehose/v2/firehose.proto index a4101a8..a736493 100644 --- a/sf/firehose/v2/firehose.proto +++ b/sf/firehose/v2/firehose.proto @@ -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 { @@ -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; }