2024-07-05 22:20:13 -04:00
|
|
|
syntax = "proto3";
|
|
|
|
|
package did.v1;
|
|
|
|
|
|
|
|
|
|
import "did/v1/genesis.proto";
|
2024-08-31 12:49:44 -04:00
|
|
|
import "did/v1/models.proto";
|
2024-09-05 01:24:57 -04:00
|
|
|
import "google/api/annotations.proto";
|
2024-07-05 22:20:13 -04:00
|
|
|
|
2024-09-05 01:24:57 -04:00
|
|
|
option go_package = "github.com/onsonr/sonr/x/did/types";
|
2024-07-05 22:20:13 -04:00
|
|
|
|
|
|
|
|
// Query provides defines the gRPC querier service.
|
|
|
|
|
service Query {
|
2024-09-05 01:24:57 -04:00
|
|
|
// Params queries all parameters of the module.
|
2024-09-11 15:10:54 -04:00
|
|
|
rpc Params(QueryRequest) returns (QueryResponse) {
|
2024-09-05 01:24:57 -04:00
|
|
|
option (google.api.http).get = "/did/params";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Resolve queries the DID document by its id.
|
2024-09-11 15:10:54 -04:00
|
|
|
rpc Resolve(QueryRequest) returns (QueryResponse) {
|
2024-09-05 01:24:57 -04:00
|
|
|
option (google.api.http).get = "/did/{did}";
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// Service returns associated ServiceInfo for a given Origin
|
2024-09-11 15:10:54 -04:00
|
|
|
// if the servie is not found, a fingerprint is generated to be used
|
|
|
|
|
// as a TXT record in DNS. v=sonr, o=origin, p=protocol
|
|
|
|
|
rpc Service(QueryRequest) returns (QueryResponse) {
|
2024-09-05 01:24:57 -04:00
|
|
|
option (google.api.http).get = "/service/{origin}";
|
|
|
|
|
}
|
2024-07-05 22:20:13 -04:00
|
|
|
}
|
|
|
|
|
|
2024-09-05 01:24:57 -04:00
|
|
|
// Queryequest is the request type for the Query/Params RPC method.
|
|
|
|
|
message QueryRequest {
|
|
|
|
|
string did = 1;
|
|
|
|
|
string origin = 2;
|
2024-07-05 22:20:13 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
// QueryResolveResponse is the response type for the Query/Resolve RPC method.
|
2024-09-11 15:10:54 -04:00
|
|
|
message QueryResponse {
|
2024-09-05 01:24:57 -04:00
|
|
|
bool success = 1;
|
2024-09-11 15:10:54 -04:00
|
|
|
string query = 2;
|
|
|
|
|
Document document = 3;
|
|
|
|
|
ServiceInfo service = 4;
|
2024-09-07 18:12:58 -04:00
|
|
|
Params params = 5;
|
2024-09-05 01:24:57 -04:00
|
|
|
}
|