Files
sonr/proto/did/v1/tx.proto
T

151 lines
4.8 KiB
Protocol Buffer
Raw Normal View History

2024-07-05 22:20:13 -04:00
syntax = "proto3";
package did.v1;
import "cosmos/msg/v1/msg.proto";
2024-09-05 01:24:57 -04:00
import "cosmos_proto/cosmos.proto";
2024-07-05 22:20:13 -04:00
import "did/v1/genesis.proto";
import "gogoproto/gogo.proto";
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
// Msg defines the Msg service.
service Msg {
2024-09-05 01:24:57 -04:00
option (cosmos.msg.v1.service) = true;
2024-07-05 22:20:13 -04:00
2024-09-25 19:45:28 -04:00
// AuthorizeService asserts the given controller is the owner of the given
// address.
2024-09-11 15:10:54 -04:00
rpc AuthorizeService(MsgAuthorizeService) returns (MsgAuthorizeServiceResponse);
2024-09-25 19:45:28 -04:00
// ExecuteTx executes a transaction on the Sonr Blockchain. It leverages
// Macaroon for verification.
2024-09-24 17:54:33 -04:00
rpc ExecuteTx(MsgExecuteTx) returns (MsgExecuteTxResponse);
2024-08-10 17:08:05 -04:00
2024-09-25 19:45:28 -04:00
// RegisterController initializes a controller with the given authentication
// set, address, cid, publicKey, and user-defined alias.
2024-09-05 01:24:57 -04:00
rpc RegisterController(MsgRegisterController) returns (MsgRegisterControllerResponse);
2024-07-05 22:20:13 -04:00
2024-09-25 19:45:28 -04:00
// RegisterService initializes a Service with a given permission scope and
// URI. The domain must have a valid TXT record containing the public key.
2024-09-05 01:24:57 -04:00
rpc RegisterService(MsgRegisterService) returns (MsgRegisterServiceResponse);
2024-09-24 17:54:33 -04:00
// UpdateParams defines a governance operation for updating the parameters.
rpc UpdateParams(MsgUpdateParams) returns (MsgUpdateParamsResponse);
2024-07-05 22:20:13 -04:00
}
// MsgRegisterController is the message type for the InitializeController RPC.
message MsgRegisterController {
2024-09-05 01:24:57 -04:00
option (cosmos.msg.v1.signer) = "authority";
2024-07-05 22:20:13 -04:00
2024-09-05 01:24:57 -04:00
// authority is the address of the governance account.
string authority = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"];
// Assertions is the list of assertions to initialize the controller with.
2024-09-14 14:46:09 -04:00
repeated bytes assertions = 2;
2024-09-14 14:46:09 -04:00
// Keyshares is the list of keyshares to initialize the controller with.
repeated bytes keyshares = 3;
2024-09-25 19:45:28 -04:00
// Verifications is the list of verifications to initialize the controller
// with.
2024-09-14 14:46:09 -04:00
repeated bytes verifications = 4;
2024-07-05 22:20:13 -04:00
}
2024-09-25 19:45:28 -04:00
// MsgRegisterControllerResponse is the response type for the
// InitializeController RPC.
message MsgRegisterControllerResponse {
2024-09-25 19:45:28 -04:00
// Success returns true if the specified cid is valid and not already
// encrypted.
2024-09-05 01:24:57 -04:00
bool success = 1;
// Controller is the address of the initialized controller.
string controller = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"];
2024-07-05 22:20:13 -04:00
2024-09-05 01:24:57 -04:00
// Accounts are a Address Map and Supported coin Denoms for the controller
map<string, string> accounts = 3;
}
2024-07-05 22:20:13 -04:00
2024-09-24 17:54:33 -04:00
// MsgExecuteTx is the message type for the ExecuteTx RPC.
message MsgExecuteTx {
option (cosmos.msg.v1.signer) = "controller";
// Controller is the address of the controller to authenticate.
string controller = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"];
// Messages is the list of messages to execute.
map<string, bytes> messages = 2;
// MacaroonToken is the macaroon token to authenticate the operation.
string macaroon_token = 3;
}
// MsgExecuteTxResponse is the response type for the ExecuteTx RPC.
message MsgExecuteTxResponse {
bool success = 1;
string tx_hash = 2;
}
2024-09-11 15:10:54 -04:00
// MsgAuthorizeService is the message type for the AuthorizeService RPC.
message MsgAuthorizeService {
option (cosmos.msg.v1.signer) = "controller";
2024-07-05 22:20:13 -04:00
2024-09-05 01:24:57 -04:00
// Controller is the address of the controller to authenticate.
2024-09-11 15:10:54 -04:00
string controller = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"];
2024-09-05 01:24:57 -04:00
// Origin is the origin of the request in wildcard form.
2024-09-11 15:10:54 -04:00
string origin = 2;
// Permissions is the scope of the service.
2024-09-19 02:04:22 -04:00
map<string, string> permissions = 3;
2024-09-05 01:24:57 -04:00
// token is the macron token to authenticate the operation.
2024-09-14 12:47:25 -04:00
string token = 4;
2024-09-05 01:24:57 -04:00
}
2024-09-25 19:45:28 -04:00
// MsgAuthorizeServiceResponse is the response type for the AuthorizeService
// RPC.
2024-09-11 15:10:54 -04:00
message MsgAuthorizeServiceResponse {
2024-09-05 01:24:57 -04:00
bool success = 1;
2024-09-14 12:47:25 -04:00
string token = 2;
2024-09-05 01:24:57 -04:00
}
// MsgRegisterService is the message type for the RegisterService RPC.
message MsgRegisterService {
option (cosmos.msg.v1.signer) = "controller";
// authority is the address of the governance account.
string controller = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"];
2024-09-25 19:45:28 -04:00
// origin is the origin of the request in wildcard form. Requires valid TXT
// record in DNS.
2024-09-11 15:10:54 -04:00
Service service = 2;
2024-07-05 22:20:13 -04:00
}
// MsgRegisterServiceResponse is the response type for the RegisterService RPC.
message MsgRegisterServiceResponse {
bool success = 1;
2024-09-05 01:24:57 -04:00
string did = 2;
}
2024-09-21 21:42:51 -04:00
// MsgUpdateParams is the Msg/UpdateParams request type.
//
// Since: cosmos-sdk 0.47
message MsgUpdateParams {
option (cosmos.msg.v1.signer) = "authority";
// authority is the address of the governance account.
string authority = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"];
// params defines the parameters to update.
Params params = 2 [(gogoproto.nullable) = false];
// token is the macron token to authenticate the operation.
string token = 3;
}
// MsgUpdateParamsResponse defines the response structure for executing a
// MsgUpdateParams message.
//
// Since: cosmos-sdk 0.47
message MsgUpdateParamsResponse {}