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

add verified data transfer ingest report #421

Merged
merged 1 commit into from
Oct 8, 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
16 changes: 16 additions & 0 deletions src/service/poc_mobile.proto
Original file line number Diff line number Diff line change
Expand Up @@ -755,6 +755,22 @@ message invalid_data_transfer_ingest_report_v1 {
uint64 timestamp = 3;
}

message verified_data_transfer_ingest_report_v1 {
enum report_status {
valid = 0;
invalid_gateway_key = 1;
invalid_routing_key = 2;
duplicate = 3;
}
// the invalid ingest report
data_transfer_session_ingest_report_v1 report = 1;
// the invalid reason as determined by the verifications
report_status status = 2;
// Timestamp at which verification was determined, in milliseconds since unix
// epoch
uint64 timestamp = 3;
}

message oracle_boosting_report_v1 {
// UUID of the coverage object for the given hex
bytes coverage_object = 1;
Expand Down
Loading