diff --git a/proto/src/main/proto/grpc.proto b/proto/src/main/proto/grpc.proto index 234b5e7762..ed2cb4fd61 100644 --- a/proto/src/main/proto/grpc.proto +++ b/proto/src/main/proto/grpc.proto @@ -23,6 +23,23 @@ import "pb.proto"; option java_package = "bisq.proto.grpc"; option java_multiple_files = true; +/////////////////////////////////////////////////////////////////////////////////////////// +// DisputeAgents +/////////////////////////////////////////////////////////////////////////////////////////// + +service DisputeAgents { + rpc RegisterDisputeAgent (RegisterDisputeAgentRequest) returns (RegisterDisputeAgentReply) { + } +} + +message RegisterDisputeAgentRequest { + string disputeAgentType = 1; + string registrationKey = 2; +} + +message RegisterDisputeAgentReply { +} + /////////////////////////////////////////////////////////////////////////////////////////// // Offers ///////////////////////////////////////////////////////////////////////////////////////////