mirror of
https://github.com/sonr-io/sonr.git
synced 2026-08-02 17:31:39 +00:00
* refactor: move constants to genesis.proto * feat: add ipfs_active flag to genesis state * feat: add IPFS connection initialization to keeper * feat: add testnet process-compose * refactor: rename sonr-testnet docker image to sonr-runner * refactor: update docker-vm-release workflow to use 'latest' tag * feat: add permission to workflows * feat: add new service chain execution * feat: add abstract vault class to pkl * feat: use jetpackio/devbox image for runner * feat: introduce dwn for local service worker * refactor: remove unnecessary dockerfile layers * refactor(deploy): Update Dockerfile to copy go.mod and go.sum from the parent directory * build: move Dockerfile to root directory * build: Add Dockerfile for deployment * feat: Update Dockerfile to work with Go project in parent directory * build: Update docker-compose.yaml to use relative paths * feat: Update docker-compose to work with new image and parent git directory * refactor: remove unnecessary test script * <no value> * feat: add test_node script for running node tests * feat: add IPFS cluster to testnet * feat: add docker image for sonr-runner * fix: typo in export path * feat(did): Add Localhost Registration Enabled Genesis Option * feat: add support for Sqlite DB in vault * feat: improve vault model JSON serialization * feat: support querying HTMX endpoint for DID * feat: Add primary key, unique, default, not null, auto increment, and foreign key field types * feat: Add PublicKey model in pkl/vault.pkl * feat: add frontend server * refactor: move dwn.wasm to vfs directory * feat(frontend): remove frontend server implementation * feat: Add a frontend server and web auth protocol * feat: implement new key types for MPC and ZK proofs * fix: Update enum types and DefaultKeyInfos * fix: correct typo in KeyAlgorithm enum * feat(did): add attestation format validation * feat: Add x/did/builder/extractor.go * feat: Update JWK parsing in x/did/builder/extractor.go * feat: Use github.com/onsonr/sonr/x/did/types package * feat: Extract and format public keys from WebAuthn credentials * feat: Introduce a new `mapToJWK` function to convert a map to a `types.JWK` struct * feat: add support for extracting JWK public keys * feat: remove VerificationMethod struct * refactor: extract public key extraction logic * feat: add helper functions to map COSECurveID to JWK curve names * feat: pin initial vault
214 lines
6.9 KiB
Protocol Buffer
214 lines
6.9 KiB
Protocol Buffer
syntax = "proto3";
|
|
|
|
package did.v1;
|
|
|
|
import "cosmos/msg/v1/msg.proto";
|
|
import "cosmos_proto/cosmos.proto";
|
|
import "did/v1/genesis.proto";
|
|
import "did/v1/models.proto";
|
|
import "gogoproto/gogo.proto";
|
|
|
|
option go_package = "github.com/onsonr/sonr/x/did/types";
|
|
|
|
// Msg defines the Msg service.
|
|
service Msg {
|
|
option (cosmos.msg.v1.service) = true;
|
|
// UpdateParams defines a governance operation for updating the parameters.
|
|
//
|
|
// Since: cosmos-sdk 0.47
|
|
rpc UpdateParams(MsgUpdateParams) returns (MsgUpdateParamsResponse);
|
|
|
|
// Authorize asserts the given controller is the owner of the given address.
|
|
rpc Authorize(MsgAuthorize) returns (MsgAuthorizeResponse);
|
|
|
|
// AllocateVault assembles a sqlite3 database in a local directory and returns the CID of the database.
|
|
// this operation is called by services initiating a controller registration.
|
|
rpc AllocateVault(MsgAllocateVault) returns (MsgAllocateVaultResponse);
|
|
|
|
// SyncVault synchronizes the controller with the Vault Motr DWN WASM Wallet.
|
|
rpc SyncVault(MsgSyncVault) returns (MsgSyncVaultResponse);
|
|
|
|
// RegisterController initializes a controller with the given authentication set, address, cid, publicKey, and user-defined alias.
|
|
rpc RegisterController(MsgRegisterController) returns (MsgRegisterControllerResponse);
|
|
|
|
// RegisterService initializes a Service with a given permission scope and URI. The domain must have a valid TXT record containing the public key.
|
|
rpc RegisterService(MsgRegisterService) returns (MsgRegisterServiceResponse);
|
|
}
|
|
|
|
// 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.
|
|
Token token = 3;
|
|
}
|
|
|
|
// MsgUpdateParamsResponse defines the response structure for executing a
|
|
// MsgUpdateParams message.
|
|
//
|
|
// Since: cosmos-sdk 0.47
|
|
message MsgUpdateParamsResponse {}
|
|
|
|
// MsgAllocateVault is the message type for the AllocateVault RPC.
|
|
message MsgAllocateVault {
|
|
option (cosmos.msg.v1.signer) = "authority";
|
|
|
|
// authority is the address of the service account.
|
|
string authority = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"];
|
|
|
|
// subject is a unique human-defined identifier to associate with the vault.
|
|
string subject = 2;
|
|
|
|
// origin is the origin of the request in wildcard form.
|
|
string origin = 3;
|
|
}
|
|
|
|
// MsgAllocateVaultResponse is the response type for the AllocateVault RPC.
|
|
message MsgAllocateVaultResponse {
|
|
// CID is the content identifier of the vault.
|
|
string cid = 1;
|
|
|
|
// ExpiryBlock is the block number at which the vault will expire.
|
|
int64 expiry_block = 2;
|
|
|
|
// RegistrationOptions is a json string of the PublicKeyCredentialCreationOptions for WebAuthn
|
|
string registration_options = 3;
|
|
}
|
|
|
|
// MsgProveWitness is the message type for the ProveWitness RPC.
|
|
message MsgProveWitness {
|
|
option (cosmos.msg.v1.signer) = "authority";
|
|
|
|
// authority is the address of the governance account.
|
|
string authority = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"];
|
|
|
|
// property is key to prove.
|
|
string property = 2;
|
|
|
|
// Witness Value is the bytes of the witness.
|
|
bytes witness = 3;
|
|
|
|
// token is the macron token to authenticate the operation.
|
|
Token token = 4;
|
|
}
|
|
|
|
// MsgProveWitnessResponse is the response type for the ProveWitness RPC.
|
|
message MsgProveWitnessResponse {
|
|
bool success = 1;
|
|
string property = 2;
|
|
}
|
|
|
|
// MsgSyncVault is the message type for the SyncVault RPC.
|
|
message MsgSyncVault {
|
|
option (cosmos.msg.v1.signer) = "controller";
|
|
|
|
// controller is the address of the controller to sync.
|
|
string controller = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"];
|
|
|
|
// Token is the public token to authenticate the operation.
|
|
Token token = 3;
|
|
}
|
|
|
|
// MsgSyncVaultResponse is the response type for the SyncVault RPC.
|
|
message MsgSyncVaultResponse {
|
|
bool success = 1;
|
|
}
|
|
|
|
// MsgRegisterController is the message type for the InitializeController RPC.
|
|
message MsgRegisterController {
|
|
option (cosmos.msg.v1.signer) = "authority";
|
|
|
|
// 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.
|
|
string cid = 2;
|
|
|
|
// Origin is the origin of the request in wildcard form.
|
|
string origin = 3;
|
|
|
|
// Credential is the list of keyshares to initialize the controller with.
|
|
repeated Credential authentication = 4;
|
|
|
|
// token is the macron token to authenticate the operation.
|
|
Token token = 5;
|
|
}
|
|
|
|
// MsgRegisterControllerResponse is the response type for the InitializeController RPC.
|
|
message MsgRegisterControllerResponse {
|
|
// Success returns true if the specified cid is valid and not already encrypted.
|
|
bool success = 1;
|
|
|
|
// Controller is the address of the initialized controller.
|
|
string controller = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"];
|
|
|
|
// Accounts are a Address Map and Supported coin Denoms for the controller
|
|
map<string, string> accounts = 3;
|
|
}
|
|
|
|
// MsgAuthorize is the message type for the Authorize RPC.
|
|
message MsgAuthorize {
|
|
option (cosmos.msg.v1.signer) = "authority";
|
|
|
|
// authority is the address of the governance account.
|
|
string authority = 1 [(cosmos_proto.scalar) = "cosmos.AddressString"];
|
|
|
|
// Controller is the address of the controller to authenticate.
|
|
string controller = 2 [(cosmos_proto.scalar) = "cosmos.AddressString"];
|
|
|
|
// Address is the address to authenticate.
|
|
string address = 3 [(cosmos_proto.scalar) = "cosmos.AddressString"];
|
|
|
|
// Origin is the origin of the request in wildcard form.
|
|
string origin = 4;
|
|
|
|
// token is the macron token to authenticate the operation.
|
|
Token token = 5;
|
|
}
|
|
|
|
// MsgAuthorizeResponse is the response type for the Authorize RPC.
|
|
message MsgAuthorizeResponse {
|
|
bool success = 1;
|
|
Token token = 2;
|
|
}
|
|
|
|
// 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"];
|
|
|
|
// origin is the origin of the request in wildcard form.
|
|
string origin_uri = 2;
|
|
|
|
// Permissions is the scope of the service.
|
|
Permissions scopes = 3;
|
|
|
|
// Description is the description of the service
|
|
string description = 4;
|
|
|
|
// service_endpoints is the endpoints of the service
|
|
map<string, string> service_endpoints = 5;
|
|
|
|
// Metadata is optional additional information about the service
|
|
Metadata metadata = 6;
|
|
|
|
// token is the macron token to authenticate the operation.
|
|
Token token = 7;
|
|
}
|
|
|
|
// MsgRegisterServiceResponse is the response type for the RegisterService RPC.
|
|
message MsgRegisterServiceResponse {
|
|
bool success = 1;
|
|
string did = 2;
|
|
}
|