feature/1118 formatter interface creation (#1147)

- **refactor: improve query service code structure**
- **chore(deps): update protoc-gen-go-grpc to v1.5.1**
- **refactor: replace  package with**
- **chore(deps): update dependencies**
- **fix(deps): update webauthn to v0.11.2**
- **refactor: remove onsonr.sonr from package names**
- **refactor: improve code readability in vault querier**
- **refactor: simplify controller initialization**
- **fix: remove unnecessary function for counter data**
- **refactor: update button component file paths**
- **refactor(authentication): simplify register page**
- **fix: update error filenames in marketing section templates**
This commit is contained in:
Prad Nukala
2024-10-21 11:30:52 -04:00
committed by GitHub
parent 3ad6036eb8
commit 311b957550
57 changed files with 722 additions and 548 deletions
+6 -4
View File
@@ -1,9 +1,9 @@
version: v1
name: buf.build/onsonr/sonr
deps:
- buf.build/cosmos/cosmos-sdk:05419252bcc241ea8023acf1ed4cadc5
- buf.build/cosmos/cosmos-proto:04467658e59e44bbb22fe568206e1f70
- buf.build/cosmos/gogo-proto:88ef6483f90f478fb938c37dde52ece3
- buf.build/cosmos/cosmos-sdk
- buf.build/cosmos/cosmos-proto
- buf.build/cosmos/gogo-proto
- buf.build/googleapis/googleapis
breaking:
use:
@@ -14,7 +14,6 @@ lint:
- COMMENTS
- FILE_LOWER_SNAKE_CASE
except:
- PACKAGE_NO_IMPORT_CYCLE
- UNARY_RPC
- COMMENT_FIELD
- COMMENT_MESSAGE
@@ -31,5 +30,8 @@ lint:
- COMMENT_ENUM
- ENUM_ZERO_VALUE_SUFFIX
ignore:
- PACKAGE_NO_IMPORT_CYCLE
- IMPORT_USED
- tendermint
- amino
- cosmos
+2 -2
View File
@@ -1,11 +1,11 @@
syntax = "proto3";
package did.module.v1;
package onsonr.sonr.did.module.v1;
import "cosmos/app/v1alpha1/module.proto";
// Module is the app config object of the module.
// Learn more: https://docs.cosmos.network/main/building-modules/depinject
message Module {
option (cosmos.app.v1alpha1.module) = {go_import: "github.com/onsonr/sonr"};
option (cosmos.app.v1alpha1.module) = {go_import: "github.com/onsonr/sonr/x/did"};
}
+3 -5
View File
@@ -1,13 +1,11 @@
syntax = "proto3";
package macaroon.module.v1;
package onsonr.sonr.macaroon.module.v1;
import "cosmos/app/v1alpha1/module.proto";
// Module is the app config object of the module.
// Learn more: https://docs.cosmos.network/main/building-modules/depinject
message Module {
option (cosmos.app.v1alpha1.module) = {
go_import : "github.com/onsonr/sonr"
};
}
option (cosmos.app.v1alpha1.module) = {go_import: "github.com/onsonr/sonr/x/macaroon"};
}
+3 -5
View File
@@ -1,13 +1,11 @@
syntax = "proto3";
package service.module.v1;
package onsonr.sonr.service.module.v1;
import "cosmos/app/v1alpha1/module.proto";
// Module is the app config object of the module.
// Learn more: https://docs.cosmos.network/main/building-modules/depinject
message Module {
option (cosmos.app.v1alpha1.module) = {
go_import : "github.com/onsonr/sonr"
};
}
option (cosmos.app.v1alpha1.module) = {go_import: "github.com/onsonr/sonr/x/service"};
}
+3 -5
View File
@@ -1,13 +1,11 @@
syntax = "proto3";
package vault.module.v1;
package onsonr.sonr.vault.module.v1;
import "cosmos/app/v1alpha1/module.proto";
// Module is the app config object of the module.
// Learn more: https://docs.cosmos.network/main/building-modules/depinject
message Module {
option (cosmos.app.v1alpha1.module) = {
go_import : "github.com/onsonr/sonr"
};
}
option (cosmos.app.v1alpha1.module) = {go_import: "github.com/onsonr/sonr/x/vault"};
}
+8
View File
@@ -6,6 +6,10 @@ import "vault/v1/genesis.proto";
option go_package = "github.com/onsonr/sonr/x/vault/types";
// ╭─────────────────────────────────────────────────────────╮
// │ RPC Query Service │
// ╰─────────────────────────────────────────────────────────╯
// Query provides defines the gRPC querier service.
service Query {
// Params queries all parameters of the module.
@@ -32,6 +36,10 @@ service Query {
}
}
// ╭──────────────────────────────────────────────────────────╮
// │ RPC Query Messages │
// ╰──────────────────────────────────────────────────────────╯
// QueryParamsRequest is the request type for the Query/Params RPC method.
message QueryParamsRequest {}