From b3e3ece5d851826c415c5895e3da24b59a110935 Mon Sep 17 00:00:00 2001 From: Prad Nukala Date: Mon, 30 Oct 2023 17:50:25 -0400 Subject: [PATCH] fix: gomodule --- .github/contribution/CLIENT_GUIDELINES.md | 2 +- .github/contribution/DEVELOPERS.md | 2 +- .github/contribution/TESTNET.md | 4 +- .goreleaser.yaml | 2 +- README.md | 4 +- app/app.go | 24 +- app/encoding.go | 2 +- cmd/sonrd/cmd/geninit.go | 2 +- cmd/sonrd/cmd/plugin.go | 10 +- cmd/sonrd/cmd/plugin_default.go | 6 +- cmd/sonrd/cmd/root.go | 8 +- cmd/sonrd/main.go | 4 +- config/config.go | 4 +- config/defaults.go | 2 +- config/plugins/config.go | 2 +- config/plugins/config_test.go | 2 +- docker/start/Dockerfile.dev | 2 +- .../swagger/common/crypto/coin.swagger.json | 49 +++ .../swagger/common/crypto/ssi.swagger.json | 49 +++ .../swagger/common/crypto/vc.swagger.json | 49 +++ .../common/webauthn/credential.swagger.json | 49 +++ .../swagger/core/domain/genesis.swagger.json | 49 +++ .../swagger/core/domain/params.swagger.json | 49 +++ .../swagger/core/domain/record.swagger.json | 49 +++ .../swagger/core/domain/tx.swagger.json | 61 +++ .../core/identity/account.swagger.json | 49 +++ .../swagger/core/identity/did.swagger.json | 49 +++ .../core/identity/genesis.swagger.json | 49 +++ .../core/identity/identifier.swagger.json | 49 +++ .../swagger/core/identity/params.swagger.json | 49 +++ .../swagger/core/identity/query.swagger.json | 139 ------- .../swagger/core/identity/state.swagger.json | 49 +++ .../swagger/core/identity/tx.swagger.json | 218 ++++++++++ .../swagger/core/service/genesis.swagger.json | 49 +++ .../swagger/core/service/params.swagger.json | 49 +++ .../swagger/core/service/query.swagger.json | 3 + .../swagger/core/service/record.swagger.json | 49 +++ .../swagger/core/service/tx.swagger.json | 67 +++ .../highway/wallet/v1/service.swagger.json | 6 +- go.mod | 2 +- internal/crypto/credential.go | 2 +- internal/crypto/crypto.go | 2 +- internal/highway/handler/auth.go | 6 +- internal/highway/handler/database.go | 2 +- internal/highway/handler/handler.go | 8 +- internal/highway/handler/storage.go | 2 +- internal/highway/handler/wallet.go | 6 +- internal/highway/highway.go | 2 +- internal/highway/middleware/options.go | 2 +- internal/highway/middleware/proxy.go | 6 +- internal/highway/middleware/verifier.go | 14 +- internal/highway/types/claims.go | 4 +- internal/highway/types/response.go | 4 +- internal/sfs/base/redis/client.go | 2 +- internal/sfs/base/redis/map.go | 2 +- internal/sfs/base/redis/set.go | 2 +- internal/sfs/sfs.go | 4 +- internal/zk/zkset.go | 2 +- internal/zk/zkset_test.go | 2 +- pkg/cache/cache_test.go | 2 +- pkg/cliui/cliui.go | 10 +- pkg/cliui/entrywriter/entrywriter.go | 2 +- pkg/cliui/entrywriter/entrywriter_test.go | 2 +- pkg/cliui/icons/icon.go | 2 +- pkg/cliui/log/output.go | 8 +- pkg/cliui/model/events.go | 6 +- pkg/cliui/model/events_test.go | 8 +- pkg/cliui/prefixgen/prefixgen.go | 2 +- pkg/cliui/view/accountview/account.go | 4 +- pkg/cliui/view/errorview/error.go | 2 +- pkg/cmdrunner/cmdrunner.go | 6 +- pkg/cmdrunner/exec/exec.go | 4 +- pkg/env/env.go | 2 +- pkg/events/events_test.go | 2 +- pkg/gocmd/gocmd.go | 6 +- pkg/gomodule/gomodule.go | 6 +- pkg/placeholder/error.go | 2 +- pkg/xfilepath/xfilepath_test.go | 2 +- pkg/xgenny/run.go | 4 +- pkg/xgenny/sourcemodification_test.go | 2 +- pkg/xgenny/xgenny_test.go | 2 +- pkg/xgit/xgit_test.go | 4 +- pkg/xnet/xnet_test.go | 2 +- pkg/xos/cp_test.go | 2 +- pkg/xos/files_test.go | 2 +- pkg/xos/mv_test.go | 2 +- pkg/xstrings/xstrings_test.go | 2 +- pkg/xtime/clock_test.go | 2 +- pkg/xtime/unix_test.go | 2 +- pkg/yaml/map_test.go | 2 +- proto/common/crypto/coin.proto | 2 +- proto/common/crypto/ssi.proto | 2 +- proto/common/crypto/vc.proto | 2 +- proto/common/webauthn/credential.proto | 2 +- proto/core/domain/genesis.proto | 2 +- proto/core/domain/params.proto | 2 +- proto/core/domain/query.proto | 2 +- proto/core/domain/record.proto | 2 +- proto/core/domain/tx.proto | 2 +- proto/core/identity/account.proto | 2 +- proto/core/identity/did.proto | 2 +- proto/core/identity/genesis.proto | 2 +- proto/core/identity/identifier.proto | 2 +- proto/core/identity/params.proto | 2 +- proto/core/identity/query.proto | 2 +- proto/core/identity/state.cosmos_orm.go | 385 ++++++++++++++++++ proto/core/identity/state.proto | 2 +- proto/core/identity/tx.proto | 2 +- proto/core/service/genesis.proto | 2 +- proto/core/service/params.proto | 2 +- proto/core/service/query.proto | 2 +- proto/core/service/record.proto | 2 +- proto/core/service/tx.proto | 2 +- proto/highway/authentication/v1/service.proto | 2 +- proto/highway/database/v1/service.proto | 2 +- proto/highway/storage/v1/service.proto | 2 +- proto/highway/wallet/v1/service.proto | 2 +- scripts/protocgen.sh | 4 +- services/did/controller/controller.go | 12 +- services/did/controller/idx.go | 8 +- services/did/method/authr/authr.go | 4 +- services/did/method/authr/data.go | 2 +- services/did/method/authr/secret.go | 2 +- services/did/method/btcr/account.go | 6 +- services/did/method/ethr/account.go | 6 +- services/did/method/sonr/account.go | 6 +- services/did/method/sonr/client.go | 4 +- services/did/method/sonr/signer.go | 6 +- services/did/types/accumulator.go | 2 +- services/did/types/identifier.go | 4 +- services/did/types/method.go | 2 +- services/did/types/resource.go | 2 +- services/did/types/store.go | 2 +- services/did/types/url.go | 2 +- services/mpc/base/account.go | 6 +- services/mpc/mpc.go | 10 +- services/mpc/mpc_test.go | 4 +- services/mpc/protocol/dkls/dkls.go | 2 +- services/mpc/protocol/dkls/dkls_test.go | 4 +- services/mpc/types/keyshare.go | 4 +- services/mpc/types/kss.go | 2 +- services/plugin/cache.go | 2 +- services/plugin/interface_test.go | 2 +- services/plugin/plugin.go | 16 +- services/plugin/plugin_test.go | 6 +- services/plugin/scaffold.go | 4 +- testutil/keeper/domain.go | 4 +- testutil/keeper/identity.go | 4 +- testutil/keeper/service.go | 4 +- testutil/network/network.go | 4 +- types/crypto/coin.pb.go | 43 +- types/crypto/ssi.pb.go | 89 ++-- types/crypto/vc.pb.go | 12 +- types/highway/authentication/v1/service.pb.go | 99 +++-- types/highway/database/v1/service.pb.go | 47 ++- types/highway/storage/v1/service.pb.go | 43 +- types/highway/wallet/v1/service.pb.go | 97 +++-- types/webauthn/credential.go | 4 +- types/webauthn/credential.pb.go | 41 +- types/webauthn/webauthn.go | 2 +- x/domain/client/cli/query.go | 2 +- x/domain/client/cli/query_params.go | 2 +- x/domain/client/cli/query_username_records.go | 2 +- x/domain/client/cli/tx.go | 2 +- x/domain/client/cli/tx_username_records.go | 2 +- x/domain/client/proxy/query.go | 2 +- x/domain/genesis.go | 4 +- x/domain/genesis_test.go | 8 +- x/domain/keeper/keeper.go | 2 +- x/domain/keeper/msg_server.go | 2 +- x/domain/keeper/msg_server_test.go | 6 +- .../keeper/msg_server_username_records.go | 2 +- .../msg_server_username_records_test.go | 6 +- x/domain/keeper/params.go | 2 +- x/domain/keeper/params_test.go | 4 +- x/domain/keeper/query.go | 2 +- x/domain/keeper/query_params.go | 2 +- x/domain/keeper/query_params_test.go | 4 +- x/domain/keeper/query_username_records.go | 2 +- .../keeper/query_username_records_test.go | 6 +- x/domain/keeper/username_records.go | 2 +- x/domain/keeper/username_records_test.go | 8 +- x/domain/module.go | 6 +- x/domain/module_simulation.go | 6 +- x/domain/simulation/username_records.go | 4 +- x/domain/types/genesis.pb.go | 12 +- x/domain/types/genesis_test.go | 2 +- x/domain/types/keys.go | 2 +- .../types/messages_username_records_test.go | 2 +- x/domain/types/params.pb.go | 11 +- x/domain/types/query.pb.go | 62 +-- x/domain/types/record.pb.go | 11 +- x/domain/types/tx.pb.go | 40 +- x/identity/client/cli/query.go | 2 +- .../client/cli/query_controller_account.go | 2 +- x/identity/client/cli/query_did_document.go | 2 +- x/identity/client/cli/query_params.go | 2 +- x/identity/client/cli/tx.go | 2 +- .../client/cli/tx_controller_account.go | 2 +- x/identity/genesis.go | 4 +- x/identity/genesis_test.go | 8 +- x/identity/keeper/genesis.go | 2 +- x/identity/keeper/keeper.go | 2 +- x/identity/keeper/msg_server.go | 4 +- x/identity/keeper/params_test.go | 4 +- x/identity/keeper/query.go | 2 +- x/identity/module.go | 6 +- x/identity/module_simulation.go | 6 +- x/identity/simulation/controller_account.go | 4 +- x/identity/simulation/did_document.go | 4 +- x/identity/simulation/register_identity.go | 4 +- x/identity/types/account.pb.go | 12 +- x/identity/types/did.pb.go | 72 ++-- x/identity/types/did_document.go | 2 +- x/identity/types/genesis.pb.go | 11 +- x/identity/types/genesis_test.go | 2 +- x/identity/types/identifier.pb.go | 12 +- .../types/messages_controller_account_test.go | 2 +- x/identity/types/msg_identity.go | 2 +- x/identity/types/params.pb.go | 42 +- x/identity/types/query.pb.go | 111 +++-- x/identity/types/tx.pb.go | 67 ++- x/service/client/cli/query.go | 2 +- x/service/client/cli/query_params.go | 2 +- x/service/client/cli/tx.go | 2 +- x/service/client/cli/tx_service_record.go | 2 +- x/service/genesis.go | 4 +- x/service/genesis_test.go | 8 +- x/service/keeper/keeper.go | 2 +- x/service/keeper/msg_server.go | 2 +- x/service/keeper/params.go | 2 +- x/service/keeper/query.go | 2 +- x/service/module.go | 6 +- x/service/module_simulation.go | 6 +- x/service/simulation/service_record.go | 4 +- x/service/types/expected_keepers.go | 2 +- x/service/types/genesis.pb.go | 11 +- x/service/types/genesis_test.go | 2 +- .../types/messages_service_record_test.go | 2 +- x/service/types/params.go | 2 +- x/service/types/params.pb.go | 11 +- x/service/types/query.pb.go | 67 ++- x/service/types/record.go | 2 +- x/service/types/record.pb.go | 47 ++- x/service/types/tx.pb.go | 12 +- x/service/types/utils.go | 2 +- 246 files changed, 2402 insertions(+), 1039 deletions(-) create mode 100644 docs/static/swagger/common/crypto/coin.swagger.json create mode 100644 docs/static/swagger/common/crypto/ssi.swagger.json create mode 100644 docs/static/swagger/common/crypto/vc.swagger.json create mode 100644 docs/static/swagger/common/webauthn/credential.swagger.json create mode 100644 docs/static/swagger/core/domain/genesis.swagger.json create mode 100644 docs/static/swagger/core/domain/params.swagger.json create mode 100644 docs/static/swagger/core/domain/record.swagger.json create mode 100644 docs/static/swagger/core/domain/tx.swagger.json create mode 100644 docs/static/swagger/core/identity/account.swagger.json create mode 100644 docs/static/swagger/core/identity/did.swagger.json create mode 100644 docs/static/swagger/core/identity/genesis.swagger.json create mode 100644 docs/static/swagger/core/identity/identifier.swagger.json create mode 100644 docs/static/swagger/core/identity/params.swagger.json create mode 100644 docs/static/swagger/core/identity/state.swagger.json create mode 100644 docs/static/swagger/core/identity/tx.swagger.json create mode 100644 docs/static/swagger/core/service/genesis.swagger.json create mode 100644 docs/static/swagger/core/service/params.swagger.json create mode 100644 docs/static/swagger/core/service/record.swagger.json create mode 100644 docs/static/swagger/core/service/tx.swagger.json create mode 100644 proto/core/identity/state.cosmos_orm.go diff --git a/.github/contribution/CLIENT_GUIDELINES.md b/.github/contribution/CLIENT_GUIDELINES.md index ef06887ad..3ef11b707 100644 --- a/.github/contribution/CLIENT_GUIDELINES.md +++ b/.github/contribution/CLIENT_GUIDELINES.md @@ -34,7 +34,7 @@ You will need to install and configure the following dependencies on your machin You can setup your macOS or Linux machine to be ready for local development with these steps: ```sh -git clone https://github.com/sonr-io/core.git # Clone the repository +git clone https://sonr.io/core.git # Clone the repository sh scripts/install.sh # Install dependencies task # Display the available commands ``` diff --git a/.github/contribution/DEVELOPERS.md b/.github/contribution/DEVELOPERS.md index 48edd4ddb..3cc06c441 100644 --- a/.github/contribution/DEVELOPERS.md +++ b/.github/contribution/DEVELOPERS.md @@ -32,7 +32,7 @@ You will need to install and configure the following dependencies on your machin You can setup your macOS or Linux machine to be ready for local development with these steps: ```sh -git clone https://github.com/sonr-io/core.git # Clone the repository +git clone https://sonr.io/core.git # Clone the repository sh scripts/install.sh # Install dependencies task # Display the available commands ``` diff --git a/.github/contribution/TESTNET.md b/.github/contribution/TESTNET.md index 6b4d51454..ffacae475 100644 --- a/.github/contribution/TESTNET.md +++ b/.github/contribution/TESTNET.md @@ -29,7 +29,7 @@ You will need to install and configure the following dependencies on your machin You can setup your macOS or Linux machine to be ready for local development with these steps: ```sh -git clone https://github.com/sonr-io/core.git # Clone the repository +git clone https://sonr.io/core.git # Clone the repository sh scripts/install.sh # Install dependencies task # Display the available commands ``` @@ -45,7 +45,7 @@ You will need to install and configure the following dependencies on your machin You can setup your macOS or Linux machine to be ready for local development with these steps: ```sh -git clone https://github.com/sonr-io/core.git # Clone the repository +git clone https://sonr.io/core.git # Clone the repository sh scripts/install.sh # Install dependencies task # Display the available commands ``` diff --git a/.goreleaser.yaml b/.goreleaser.yaml index 2d03f5d68..2d87306da 100644 --- a/.goreleaser.yaml +++ b/.goreleaser.yaml @@ -142,7 +142,7 @@ release: If you prefer to build from source, you can use the following commands: ````bash - git clone https://github.com/sonr-io/core + git clone https://sonr.io/core cd core && git checkout v{{ .Version }} make install # Then run sonrd diff --git a/README.md b/README.md index 1aefa30fa..604fcef74 100644 --- a/README.md +++ b/README.md @@ -119,7 +119,7 @@ Our approach for client libraries is uniform. Abstract away any blockchain speci JavaScript (TypeScript) - sonr-js + sonr-js auth-js database-js storage-js @@ -127,7 +127,7 @@ Our approach for client libraries is uniform. Abstract away any blockchain speci Flutter - sonr-flutter + sonr-flutter auth-dart database-dart storage-dart diff --git a/app/app.go b/app/app.go index 176ab9e99..ee73be04b 100644 --- a/app/app.go +++ b/app/app.go @@ -112,18 +112,18 @@ import ( solomachine "github.com/cosmos/ibc-go/v7/modules/light-clients/06-solomachine" ibctm "github.com/cosmos/ibc-go/v7/modules/light-clients/07-tendermint" - appparams "github.com/sonr-io/core/app/params" - "github.com/sonr-io/core/docs" - "github.com/sonr-io/core/internal/highway" - domainmodule "github.com/sonr-io/core/x/domain" - domainmodulekeeper "github.com/sonr-io/core/x/domain/keeper" - domainmoduletypes "github.com/sonr-io/core/x/domain/types" - identitymodule "github.com/sonr-io/core/x/identity" - identitymodulekeeper "github.com/sonr-io/core/x/identity/keeper" - identitymoduletypes "github.com/sonr-io/core/x/identity/types" - servicemodule "github.com/sonr-io/core/x/service" - servicemodulekeeper "github.com/sonr-io/core/x/service/keeper" - servicemoduletypes "github.com/sonr-io/core/x/service/types" + appparams "sonr.io/core/app/params" + "sonr.io/core/docs" + "sonr.io/core/internal/highway" + domainmodule "sonr.io/core/x/domain" + domainmodulekeeper "sonr.io/core/x/domain/keeper" + domainmoduletypes "sonr.io/core/x/domain/types" + identitymodule "sonr.io/core/x/identity" + identitymodulekeeper "sonr.io/core/x/identity/keeper" + identitymoduletypes "sonr.io/core/x/identity/types" + servicemodule "sonr.io/core/x/service" + servicemodulekeeper "sonr.io/core/x/service/keeper" + servicemoduletypes "sonr.io/core/x/service/types" "github.com/spf13/cast" ) diff --git a/app/encoding.go b/app/encoding.go index 42e002899..436be2fb0 100644 --- a/app/encoding.go +++ b/app/encoding.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/std" "github.com/cosmos/cosmos-sdk/x/auth/tx" - "github.com/sonr-io/core/app/params" + "sonr.io/core/app/params" ) // makeEncodingConfig creates an EncodingConfig for an amino based test configuration. diff --git a/cmd/sonrd/cmd/geninit.go b/cmd/sonrd/cmd/geninit.go index 93cff9deb..385cf83e8 100644 --- a/cmd/sonrd/cmd/geninit.go +++ b/cmd/sonrd/cmd/geninit.go @@ -20,7 +20,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/genutil" "github.com/cosmos/go-bip39" "github.com/pkg/errors" - "github.com/sonr-io/core/config" + "sonr.io/core/config" "github.com/spf13/cobra" ) diff --git a/cmd/sonrd/cmd/plugin.go b/cmd/sonrd/cmd/plugin.go index ddce7f961..1e6fb6bfc 100644 --- a/cmd/sonrd/cmd/plugin.go +++ b/cmd/sonrd/cmd/plugin.go @@ -11,11 +11,11 @@ import ( "github.com/spf13/cobra" flag "github.com/spf13/pflag" - pluginsconfig "github.com/sonr-io/core/config/plugins" - "github.com/sonr-io/core/pkg/clictx" - "github.com/sonr-io/core/pkg/cliui" - "github.com/sonr-io/core/pkg/cliui/icons" - "github.com/sonr-io/core/services/plugin" + pluginsconfig "sonr.io/core/config/plugins" + "sonr.io/core/pkg/clictx" + "sonr.io/core/pkg/cliui" + "sonr.io/core/pkg/cliui/icons" + "sonr.io/core/services/plugin" ) const ( diff --git a/cmd/sonrd/cmd/plugin_default.go b/cmd/sonrd/cmd/plugin_default.go index fb8651e4d..80981d450 100644 --- a/cmd/sonrd/cmd/plugin_default.go +++ b/cmd/sonrd/cmd/plugin_default.go @@ -5,9 +5,9 @@ import ( "github.com/spf13/cobra" - pluginsconfig "github.com/sonr-io/core/config/plugins" - "github.com/sonr-io/core/pkg/cliui" - "github.com/sonr-io/core/services/plugin" + pluginsconfig "sonr.io/core/config/plugins" + "sonr.io/core/pkg/cliui" + "sonr.io/core/services/plugin" ) type defaultPlugin struct { diff --git a/cmd/sonrd/cmd/root.go b/cmd/sonrd/cmd/root.go index 3cce85240..9a4eaea5b 100644 --- a/cmd/sonrd/cmd/root.go +++ b/cmd/sonrd/cmd/root.go @@ -43,10 +43,10 @@ import ( "github.com/spf13/pflag" "github.com/spf13/viper" - "github.com/sonr-io/core/app" - appparams "github.com/sonr-io/core/app/params" - sonrdconfig "github.com/sonr-io/core/config" - "github.com/sonr-io/core/internal/highway" + "sonr.io/core/app" + appparams "sonr.io/core/app/params" + sonrdconfig "sonr.io/core/config" + "sonr.io/core/internal/highway" ) var ( diff --git a/cmd/sonrd/main.go b/cmd/sonrd/main.go index 2b35d9a19..6c94a85de 100644 --- a/cmd/sonrd/main.go +++ b/cmd/sonrd/main.go @@ -6,8 +6,8 @@ import ( "github.com/cosmos/cosmos-sdk/server" svrcmd "github.com/cosmos/cosmos-sdk/server/cmd" - "github.com/sonr-io/core/app" - sonrcmd "github.com/sonr-io/core/cmd/sonrd/cmd" + "sonr.io/core/app" + sonrcmd "sonr.io/core/cmd/sonrd/cmd" ) func main() { diff --git a/config/config.go b/config/config.go index 416845f1b..759cddfae 100644 --- a/config/config.go +++ b/config/config.go @@ -1,8 +1,8 @@ package config import ( - "github.com/sonr-io/core/pkg/env" - "github.com/sonr-io/core/pkg/xfilepath" + "sonr.io/core/pkg/env" + "sonr.io/core/pkg/xfilepath" ) var c Config diff --git a/config/defaults.go b/config/defaults.go index fe517eb21..4b10df79e 100644 --- a/config/defaults.go +++ b/config/defaults.go @@ -4,7 +4,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/spf13/viper" - "github.com/sonr-io/core/app" + "sonr.io/core/app" ) // Masthead is the masthead of the application. diff --git a/config/plugins/config.go b/config/plugins/config.go index a003d185d..721105430 100644 --- a/config/plugins/config.go +++ b/config/plugins/config.go @@ -9,7 +9,7 @@ import ( "golang.org/x/exp/slices" "gopkg.in/yaml.v2" - "github.com/sonr-io/core/pkg/gomodule" + "sonr.io/core/pkg/gomodule" ) type Config struct { diff --git a/config/plugins/config_test.go b/config/plugins/config_test.go index 57e7ce9d9..3d46a25fc 100644 --- a/config/plugins/config_test.go +++ b/config/plugins/config_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - pluginsconfig "github.com/sonr-io/core/config/plugins" + pluginsconfig "sonr.io/core/config/plugins" ) func TestPluginIsGlobal(t *testing.T) { diff --git a/docker/start/Dockerfile.dev b/docker/start/Dockerfile.dev index 9ee5e917a..5b9f6486a 100644 --- a/docker/start/Dockerfile.dev +++ b/docker/start/Dockerfile.dev @@ -7,7 +7,7 @@ ARG RUNNER_IMAGE="alpine:3.16" # ! ||----------------------------------------------------------------------------------|| FROM --platform=linux alpine -LABEL org.opencontainers.image.source https://github.com/sonr-io/core +LABEL org.opencontainers.image.source https://sonr.io/core LABEL org.opencontainers.image.description "Base sonr daemon image" # Copy sonrd binary and config COPY ../bin/sonrd /usr/local/bin/sonrd diff --git a/docs/static/swagger/common/crypto/coin.swagger.json b/docs/static/swagger/common/crypto/coin.swagger.json new file mode 100644 index 000000000..32fe2d8c8 --- /dev/null +++ b/docs/static/swagger/common/crypto/coin.swagger.json @@ -0,0 +1,49 @@ +{ + "swagger": "2.0", + "info": { + "title": "common/crypto/coin.proto", + "version": "version not set" + }, + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": {}, + "definitions": { + "google.protobuf.Any": { + "type": "object", + "properties": { + "type_url": { + "type": "string" + }, + "value": { + "type": "string", + "format": "byte" + } + } + }, + "grpc.gateway.runtime.Error": { + "type": "object", + "properties": { + "error": { + "type": "string" + }, + "code": { + "type": "integer", + "format": "int32" + }, + "message": { + "type": "string" + }, + "details": { + "type": "array", + "items": { + "$ref": "#/definitions/google.protobuf.Any" + } + } + } + } + } +} diff --git a/docs/static/swagger/common/crypto/ssi.swagger.json b/docs/static/swagger/common/crypto/ssi.swagger.json new file mode 100644 index 000000000..93d923d51 --- /dev/null +++ b/docs/static/swagger/common/crypto/ssi.swagger.json @@ -0,0 +1,49 @@ +{ + "swagger": "2.0", + "info": { + "title": "common/crypto/ssi.proto", + "version": "version not set" + }, + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": {}, + "definitions": { + "google.protobuf.Any": { + "type": "object", + "properties": { + "type_url": { + "type": "string" + }, + "value": { + "type": "string", + "format": "byte" + } + } + }, + "grpc.gateway.runtime.Error": { + "type": "object", + "properties": { + "error": { + "type": "string" + }, + "code": { + "type": "integer", + "format": "int32" + }, + "message": { + "type": "string" + }, + "details": { + "type": "array", + "items": { + "$ref": "#/definitions/google.protobuf.Any" + } + } + } + } + } +} diff --git a/docs/static/swagger/common/crypto/vc.swagger.json b/docs/static/swagger/common/crypto/vc.swagger.json new file mode 100644 index 000000000..682fc4488 --- /dev/null +++ b/docs/static/swagger/common/crypto/vc.swagger.json @@ -0,0 +1,49 @@ +{ + "swagger": "2.0", + "info": { + "title": "common/crypto/vc.proto", + "version": "version not set" + }, + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": {}, + "definitions": { + "google.protobuf.Any": { + "type": "object", + "properties": { + "type_url": { + "type": "string" + }, + "value": { + "type": "string", + "format": "byte" + } + } + }, + "grpc.gateway.runtime.Error": { + "type": "object", + "properties": { + "error": { + "type": "string" + }, + "code": { + "type": "integer", + "format": "int32" + }, + "message": { + "type": "string" + }, + "details": { + "type": "array", + "items": { + "$ref": "#/definitions/google.protobuf.Any" + } + } + } + } + } +} diff --git a/docs/static/swagger/common/webauthn/credential.swagger.json b/docs/static/swagger/common/webauthn/credential.swagger.json new file mode 100644 index 000000000..345026a70 --- /dev/null +++ b/docs/static/swagger/common/webauthn/credential.swagger.json @@ -0,0 +1,49 @@ +{ + "swagger": "2.0", + "info": { + "title": "common/webauthn/credential.proto", + "version": "version not set" + }, + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": {}, + "definitions": { + "google.protobuf.Any": { + "type": "object", + "properties": { + "type_url": { + "type": "string" + }, + "value": { + "type": "string", + "format": "byte" + } + } + }, + "grpc.gateway.runtime.Error": { + "type": "object", + "properties": { + "error": { + "type": "string" + }, + "code": { + "type": "integer", + "format": "int32" + }, + "message": { + "type": "string" + }, + "details": { + "type": "array", + "items": { + "$ref": "#/definitions/google.protobuf.Any" + } + } + } + } + } +} diff --git a/docs/static/swagger/core/domain/genesis.swagger.json b/docs/static/swagger/core/domain/genesis.swagger.json new file mode 100644 index 000000000..5e7924244 --- /dev/null +++ b/docs/static/swagger/core/domain/genesis.swagger.json @@ -0,0 +1,49 @@ +{ + "swagger": "2.0", + "info": { + "title": "core/domain/genesis.proto", + "version": "version not set" + }, + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": {}, + "definitions": { + "google.protobuf.Any": { + "type": "object", + "properties": { + "type_url": { + "type": "string" + }, + "value": { + "type": "string", + "format": "byte" + } + } + }, + "grpc.gateway.runtime.Error": { + "type": "object", + "properties": { + "error": { + "type": "string" + }, + "code": { + "type": "integer", + "format": "int32" + }, + "message": { + "type": "string" + }, + "details": { + "type": "array", + "items": { + "$ref": "#/definitions/google.protobuf.Any" + } + } + } + } + } +} diff --git a/docs/static/swagger/core/domain/params.swagger.json b/docs/static/swagger/core/domain/params.swagger.json new file mode 100644 index 000000000..4d24334d7 --- /dev/null +++ b/docs/static/swagger/core/domain/params.swagger.json @@ -0,0 +1,49 @@ +{ + "swagger": "2.0", + "info": { + "title": "core/domain/params.proto", + "version": "version not set" + }, + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": {}, + "definitions": { + "google.protobuf.Any": { + "type": "object", + "properties": { + "type_url": { + "type": "string" + }, + "value": { + "type": "string", + "format": "byte" + } + } + }, + "grpc.gateway.runtime.Error": { + "type": "object", + "properties": { + "error": { + "type": "string" + }, + "code": { + "type": "integer", + "format": "int32" + }, + "message": { + "type": "string" + }, + "details": { + "type": "array", + "items": { + "$ref": "#/definitions/google.protobuf.Any" + } + } + } + } + } +} diff --git a/docs/static/swagger/core/domain/record.swagger.json b/docs/static/swagger/core/domain/record.swagger.json new file mode 100644 index 000000000..26870f878 --- /dev/null +++ b/docs/static/swagger/core/domain/record.swagger.json @@ -0,0 +1,49 @@ +{ + "swagger": "2.0", + "info": { + "title": "core/domain/record.proto", + "version": "version not set" + }, + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": {}, + "definitions": { + "google.protobuf.Any": { + "type": "object", + "properties": { + "type_url": { + "type": "string" + }, + "value": { + "type": "string", + "format": "byte" + } + } + }, + "grpc.gateway.runtime.Error": { + "type": "object", + "properties": { + "error": { + "type": "string" + }, + "code": { + "type": "integer", + "format": "int32" + }, + "message": { + "type": "string" + }, + "details": { + "type": "array", + "items": { + "$ref": "#/definitions/google.protobuf.Any" + } + } + } + } + } +} diff --git a/docs/static/swagger/core/domain/tx.swagger.json b/docs/static/swagger/core/domain/tx.swagger.json new file mode 100644 index 000000000..9203e46e1 --- /dev/null +++ b/docs/static/swagger/core/domain/tx.swagger.json @@ -0,0 +1,61 @@ +{ + "swagger": "2.0", + "info": { + "title": "core/domain/tx.proto", + "version": "version not set" + }, + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": {}, + "definitions": { + "core.domain.MsgCreateUsernameRecordsResponse": { + "type": "object", + "description": "MsgCreateUsernameRecordsResponse represents the response from creating a\nUsernameRecord." + }, + "core.domain.MsgDeleteUsernameRecordsResponse": { + "type": "object", + "description": "MsgDeleteUsernameRecordsResponse represents the response from deleting a\nUsernameRecord." + }, + "core.domain.MsgUpdateUsernameRecordsResponse": { + "type": "object", + "description": "MsgUpdateUsernameRecordsResponse represents the response from updating a\nUsernameRecord." + }, + "google.protobuf.Any": { + "type": "object", + "properties": { + "type_url": { + "type": "string" + }, + "value": { + "type": "string", + "format": "byte" + } + } + }, + "grpc.gateway.runtime.Error": { + "type": "object", + "properties": { + "error": { + "type": "string" + }, + "code": { + "type": "integer", + "format": "int32" + }, + "message": { + "type": "string" + }, + "details": { + "type": "array", + "items": { + "$ref": "#/definitions/google.protobuf.Any" + } + } + } + } + } +} diff --git a/docs/static/swagger/core/identity/account.swagger.json b/docs/static/swagger/core/identity/account.swagger.json new file mode 100644 index 000000000..f1352f372 --- /dev/null +++ b/docs/static/swagger/core/identity/account.swagger.json @@ -0,0 +1,49 @@ +{ + "swagger": "2.0", + "info": { + "title": "core/identity/account.proto", + "version": "version not set" + }, + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": {}, + "definitions": { + "google.protobuf.Any": { + "type": "object", + "properties": { + "type_url": { + "type": "string" + }, + "value": { + "type": "string", + "format": "byte" + } + } + }, + "grpc.gateway.runtime.Error": { + "type": "object", + "properties": { + "error": { + "type": "string" + }, + "code": { + "type": "integer", + "format": "int32" + }, + "message": { + "type": "string" + }, + "details": { + "type": "array", + "items": { + "$ref": "#/definitions/google.protobuf.Any" + } + } + } + } + } +} diff --git a/docs/static/swagger/core/identity/did.swagger.json b/docs/static/swagger/core/identity/did.swagger.json new file mode 100644 index 000000000..736979a75 --- /dev/null +++ b/docs/static/swagger/core/identity/did.swagger.json @@ -0,0 +1,49 @@ +{ + "swagger": "2.0", + "info": { + "title": "core/identity/did.proto", + "version": "version not set" + }, + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": {}, + "definitions": { + "google.protobuf.Any": { + "type": "object", + "properties": { + "type_url": { + "type": "string" + }, + "value": { + "type": "string", + "format": "byte" + } + } + }, + "grpc.gateway.runtime.Error": { + "type": "object", + "properties": { + "error": { + "type": "string" + }, + "code": { + "type": "integer", + "format": "int32" + }, + "message": { + "type": "string" + }, + "details": { + "type": "array", + "items": { + "$ref": "#/definitions/google.protobuf.Any" + } + } + } + } + } +} diff --git a/docs/static/swagger/core/identity/genesis.swagger.json b/docs/static/swagger/core/identity/genesis.swagger.json new file mode 100644 index 000000000..bc36c8f43 --- /dev/null +++ b/docs/static/swagger/core/identity/genesis.swagger.json @@ -0,0 +1,49 @@ +{ + "swagger": "2.0", + "info": { + "title": "core/identity/genesis.proto", + "version": "version not set" + }, + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": {}, + "definitions": { + "google.protobuf.Any": { + "type": "object", + "properties": { + "type_url": { + "type": "string" + }, + "value": { + "type": "string", + "format": "byte" + } + } + }, + "grpc.gateway.runtime.Error": { + "type": "object", + "properties": { + "error": { + "type": "string" + }, + "code": { + "type": "integer", + "format": "int32" + }, + "message": { + "type": "string" + }, + "details": { + "type": "array", + "items": { + "$ref": "#/definitions/google.protobuf.Any" + } + } + } + } + } +} diff --git a/docs/static/swagger/core/identity/identifier.swagger.json b/docs/static/swagger/core/identity/identifier.swagger.json new file mode 100644 index 000000000..c89ab958c --- /dev/null +++ b/docs/static/swagger/core/identity/identifier.swagger.json @@ -0,0 +1,49 @@ +{ + "swagger": "2.0", + "info": { + "title": "core/identity/identifier.proto", + "version": "version not set" + }, + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": {}, + "definitions": { + "google.protobuf.Any": { + "type": "object", + "properties": { + "type_url": { + "type": "string" + }, + "value": { + "type": "string", + "format": "byte" + } + } + }, + "grpc.gateway.runtime.Error": { + "type": "object", + "properties": { + "error": { + "type": "string" + }, + "code": { + "type": "integer", + "format": "int32" + }, + "message": { + "type": "string" + }, + "details": { + "type": "array", + "items": { + "$ref": "#/definitions/google.protobuf.Any" + } + } + } + } + } +} diff --git a/docs/static/swagger/core/identity/params.swagger.json b/docs/static/swagger/core/identity/params.swagger.json new file mode 100644 index 000000000..f89abe0c8 --- /dev/null +++ b/docs/static/swagger/core/identity/params.swagger.json @@ -0,0 +1,49 @@ +{ + "swagger": "2.0", + "info": { + "title": "core/identity/params.proto", + "version": "version not set" + }, + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": {}, + "definitions": { + "google.protobuf.Any": { + "type": "object", + "properties": { + "type_url": { + "type": "string" + }, + "value": { + "type": "string", + "format": "byte" + } + } + }, + "grpc.gateway.runtime.Error": { + "type": "object", + "properties": { + "error": { + "type": "string" + }, + "code": { + "type": "integer", + "format": "int32" + }, + "message": { + "type": "string" + }, + "details": { + "type": "array", + "items": { + "$ref": "#/definitions/google.protobuf.Any" + } + } + } + } + } +} diff --git a/docs/static/swagger/core/identity/query.swagger.json b/docs/static/swagger/core/identity/query.swagger.json index e79d9e9d6..ad851cf33 100644 --- a/docs/static/swagger/core/identity/query.swagger.json +++ b/docs/static/swagger/core/identity/query.swagger.json @@ -316,100 +316,6 @@ "Query" ] } - }, - "/sonr-io/core/identity/escrow_account": { - "get": { - "summary": "EscrowAccountAll queries all EscrowAccount items.", - "operationId": "EscrowAccountAll", - "responses": { - "200": { - "description": "A successful response.", - "schema": { - "$ref": "#/definitions/core.identity.QueryAllEscrowAccountResponse" - } - }, - "default": { - "description": "An unexpected error response.", - "schema": { - "$ref": "#/definitions/grpc.gateway.runtime.Error" - } - } - }, - "parameters": [ - { - "name": "pagination.key", - "description": "key is a value returned in PageResponse.next_key to begin\nquerying the next page most efficiently. Only one of offset or key\nshould be set.", - "in": "query", - "required": false, - "type": "string", - "format": "byte" - }, - { - "name": "pagination.offset", - "description": "offset is a numeric offset that can be used when key is unavailable.\nIt is less efficient than using key. Only one of offset or key should\nbe set.", - "in": "query", - "required": false, - "type": "string", - "format": "uint64" - }, - { - "name": "pagination.limit", - "description": "limit is the total number of results to be returned in the result page.\nIf left empty it will default to a value to be set by each app.", - "in": "query", - "required": false, - "type": "string", - "format": "uint64" - }, - { - "name": "pagination.count_total", - "description": "count_total is set to true to indicate that the result set should include\na count of the total number of items available for pagination in UIs.\ncount_total is only respected when offset is used. It is ignored when key\nis set.", - "in": "query", - "required": false, - "type": "boolean" - }, - { - "name": "pagination.reverse", - "description": "reverse is set to true if results are to be returned in the descending order.\n\nSince: cosmos-sdk 0.43", - "in": "query", - "required": false, - "type": "boolean" - } - ], - "tags": [ - "Query" - ] - } - }, - "/sonr-io/core/identity/escrow_account/{address}": { - "get": { - "summary": "EscrowAccount queries a list of EscrowAccount items.", - "operationId": "EscrowAccount", - "responses": { - "200": { - "description": "A successful response.", - "schema": { - "$ref": "#/definitions/core.identity.QueryGetEscrowAccountResponse" - } - }, - "default": { - "description": "An unexpected error response.", - "schema": { - "$ref": "#/definitions/grpc.gateway.runtime.Error" - } - } - }, - "parameters": [ - { - "name": "address", - "in": "path", - "required": true, - "type": "string" - } - ], - "tags": [ - "Query" - ] - } } }, "definitions": { @@ -493,27 +399,6 @@ }, "description": "DIDDocument represents a Decentralized Identifier (DID) document that\ncontains information about the DID subject, such as public keys, verification\nmethods, and services." }, - "core.identity.EscrowAccount": { - "type": "object", - "properties": { - "id": { - "type": "string", - "format": "uint64" - }, - "address": { - "type": "string" - }, - "publicKey": { - "type": "string" - }, - "lockupUsdBalance": { - "type": "string" - }, - "creator": { - "type": "string" - } - } - }, "core.identity.Params": { "type": "object", "properties": { @@ -585,21 +470,6 @@ }, "description": "QueryAllDIDDocumentResponse is the response type for the Query/DIDDocumentAll\nRPC method." }, - "core.identity.QueryAllEscrowAccountResponse": { - "type": "object", - "properties": { - "escrowAccount": { - "type": "array", - "items": { - "$ref": "#/definitions/core.identity.EscrowAccount" - } - }, - "pagination": { - "$ref": "#/definitions/cosmos.base.query.v1beta1.PageResponse" - } - }, - "description": "QueryAllEscrowAccountResponse is the response type for the\nQuery/EscrowAccountAll RPC method." - }, "core.identity.QueryDidByAlsoKnownAsResponse": { "type": "object", "properties": { @@ -637,15 +507,6 @@ }, "description": "QueryGetDIDDocumentResponse is the response type for the Query/DIDDocument\nRPC method." }, - "core.identity.QueryGetEscrowAccountResponse": { - "type": "object", - "properties": { - "escrowAccount": { - "$ref": "#/definitions/core.identity.EscrowAccount" - } - }, - "description": "QueryGetEscrowAccountResponse is the response type for the\nQuery/EscrowAccount RPC method." - }, "core.identity.QueryParamsResponse": { "type": "object", "properties": { diff --git a/docs/static/swagger/core/identity/state.swagger.json b/docs/static/swagger/core/identity/state.swagger.json new file mode 100644 index 000000000..95bc564af --- /dev/null +++ b/docs/static/swagger/core/identity/state.swagger.json @@ -0,0 +1,49 @@ +{ + "swagger": "2.0", + "info": { + "title": "core/identity/state.proto", + "version": "version not set" + }, + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": {}, + "definitions": { + "google.protobuf.Any": { + "type": "object", + "properties": { + "type_url": { + "type": "string" + }, + "value": { + "type": "string", + "format": "byte" + } + } + }, + "grpc.gateway.runtime.Error": { + "type": "object", + "properties": { + "error": { + "type": "string" + }, + "code": { + "type": "integer", + "format": "int32" + }, + "message": { + "type": "string" + }, + "details": { + "type": "array", + "items": { + "$ref": "#/definitions/google.protobuf.Any" + } + } + } + } + } +} diff --git a/docs/static/swagger/core/identity/tx.swagger.json b/docs/static/swagger/core/identity/tx.swagger.json new file mode 100644 index 000000000..4b2950852 --- /dev/null +++ b/docs/static/swagger/core/identity/tx.swagger.json @@ -0,0 +1,218 @@ +{ + "swagger": "2.0", + "info": { + "title": "core/identity/tx.proto", + "version": "version not set" + }, + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": {}, + "definitions": { + "core.identity.ControllerAccount": { + "type": "object", + "properties": { + "address": { + "type": "string" + }, + "publicKey": { + "type": "string" + }, + "authenticators": { + "type": "array", + "items": { + "type": "string" + } + }, + "wallets": { + "type": "array", + "items": { + "type": "string" + } + } + } + }, + "core.identity.DIDDocument": { + "type": "object", + "properties": { + "context": { + "type": "array", + "items": { + "type": "string" + } + }, + "id": { + "type": "string" + }, + "controller": { + "type": "array", + "items": { + "type": "string" + } + }, + "authentication": { + "type": "array", + "items": { + "$ref": "#/definitions/core.identity.VerificationRelationship" + } + }, + "assertion_method": { + "type": "array", + "items": { + "$ref": "#/definitions/core.identity.VerificationRelationship" + } + }, + "capability_invocation": { + "type": "array", + "items": { + "$ref": "#/definitions/core.identity.VerificationRelationship" + } + }, + "capability_delegation": { + "type": "array", + "items": { + "$ref": "#/definitions/core.identity.VerificationRelationship" + } + }, + "key_agreement": { + "type": "array", + "items": { + "$ref": "#/definitions/core.identity.VerificationRelationship" + } + }, + "also_known_as": { + "type": "array", + "items": { + "type": "string" + } + } + }, + "description": "DIDDocument represents a Decentralized Identifier (DID) document that\ncontains information about the DID subject, such as public keys, verification\nmethods, and services." + }, + "core.identity.MsgCreateControllerAccountResponse": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uint64" + }, + "account": { + "$ref": "#/definitions/core.identity.ControllerAccount" + } + }, + "description": "MsgCreateControllerAccountResponse represents the response to a create\ncontroller account request." + }, + "core.identity.MsgDeleteControllerAccountResponse": { + "type": "object", + "description": "MsgDeleteControllerAccountResponse represents the response to a delete\ncontroller account request." + }, + "core.identity.MsgRegisterIdentityResponse": { + "type": "object", + "properties": { + "success": { + "type": "boolean" + }, + "did_document": { + "$ref": "#/definitions/core.identity.DIDDocument" + } + }, + "description": "MsgRegisterIdentityResponse represents the response to a register identity\nrequest." + }, + "core.identity.MsgUpdateControllerAccountResponse": { + "type": "object", + "properties": { + "account": { + "$ref": "#/definitions/core.identity.ControllerAccount" + } + }, + "description": "MsgUpdateControllerAccountResponse represents the response to an update\ncontroller account request." + }, + "core.identity.VerificationMethod": { + "type": "object", + "properties": { + "id": { + "type": "string" + }, + "type": { + "type": "string" + }, + "controller": { + "type": "string" + }, + "public_key_jwk": { + "type": "string" + }, + "public_key_multibase": { + "type": "string" + }, + "blockchain_account_id": { + "type": "string" + }, + "attestation_type": { + "type": "string" + }, + "transports": { + "type": "array", + "items": { + "type": "string" + } + } + }, + "description": "VerificationMethod represents a verification method that can be used to\nauthenticate the DID subject or perform other cryptographic operations." + }, + "core.identity.VerificationRelationship": { + "type": "object", + "properties": { + "verification_method": { + "$ref": "#/definitions/core.identity.VerificationMethod" + }, + "reference": { + "type": "string" + }, + "type": { + "type": "string" + }, + "owner": { + "type": "string" + } + }, + "description": "VerificationRelationship represents a relationship between a verification\nmethod and a specific verification purpose (e.g., authentication, assertion,\netc.)." + }, + "google.protobuf.Any": { + "type": "object", + "properties": { + "type_url": { + "type": "string" + }, + "value": { + "type": "string", + "format": "byte" + } + } + }, + "grpc.gateway.runtime.Error": { + "type": "object", + "properties": { + "error": { + "type": "string" + }, + "code": { + "type": "integer", + "format": "int32" + }, + "message": { + "type": "string" + }, + "details": { + "type": "array", + "items": { + "$ref": "#/definitions/google.protobuf.Any" + } + } + } + } + } +} diff --git a/docs/static/swagger/core/service/genesis.swagger.json b/docs/static/swagger/core/service/genesis.swagger.json new file mode 100644 index 000000000..e79ee3d70 --- /dev/null +++ b/docs/static/swagger/core/service/genesis.swagger.json @@ -0,0 +1,49 @@ +{ + "swagger": "2.0", + "info": { + "title": "core/service/genesis.proto", + "version": "version not set" + }, + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": {}, + "definitions": { + "google.protobuf.Any": { + "type": "object", + "properties": { + "type_url": { + "type": "string" + }, + "value": { + "type": "string", + "format": "byte" + } + } + }, + "grpc.gateway.runtime.Error": { + "type": "object", + "properties": { + "error": { + "type": "string" + }, + "code": { + "type": "integer", + "format": "int32" + }, + "message": { + "type": "string" + }, + "details": { + "type": "array", + "items": { + "$ref": "#/definitions/google.protobuf.Any" + } + } + } + } + } +} diff --git a/docs/static/swagger/core/service/params.swagger.json b/docs/static/swagger/core/service/params.swagger.json new file mode 100644 index 000000000..08cb28f54 --- /dev/null +++ b/docs/static/swagger/core/service/params.swagger.json @@ -0,0 +1,49 @@ +{ + "swagger": "2.0", + "info": { + "title": "core/service/params.proto", + "version": "version not set" + }, + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": {}, + "definitions": { + "google.protobuf.Any": { + "type": "object", + "properties": { + "type_url": { + "type": "string" + }, + "value": { + "type": "string", + "format": "byte" + } + } + }, + "grpc.gateway.runtime.Error": { + "type": "object", + "properties": { + "error": { + "type": "string" + }, + "code": { + "type": "integer", + "format": "int32" + }, + "message": { + "type": "string" + }, + "details": { + "type": "array", + "items": { + "$ref": "#/definitions/google.protobuf.Any" + } + } + } + } + } +} diff --git a/docs/static/swagger/core/service/query.swagger.json b/docs/static/swagger/core/service/query.swagger.json index 511312158..2cdf49593 100644 --- a/docs/static/swagger/core/service/query.swagger.json +++ b/docs/static/swagger/core/service/query.swagger.json @@ -188,6 +188,9 @@ }, "description": { "type": "string" + }, + "category": { + "type": "string" } } }, diff --git a/docs/static/swagger/core/service/record.swagger.json b/docs/static/swagger/core/service/record.swagger.json new file mode 100644 index 000000000..1ada32e6a --- /dev/null +++ b/docs/static/swagger/core/service/record.swagger.json @@ -0,0 +1,49 @@ +{ + "swagger": "2.0", + "info": { + "title": "core/service/record.proto", + "version": "version not set" + }, + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": {}, + "definitions": { + "google.protobuf.Any": { + "type": "object", + "properties": { + "type_url": { + "type": "string" + }, + "value": { + "type": "string", + "format": "byte" + } + } + }, + "grpc.gateway.runtime.Error": { + "type": "object", + "properties": { + "error": { + "type": "string" + }, + "code": { + "type": "integer", + "format": "int32" + }, + "message": { + "type": "string" + }, + "details": { + "type": "array", + "items": { + "$ref": "#/definitions/google.protobuf.Any" + } + } + } + } + } +} diff --git a/docs/static/swagger/core/service/tx.swagger.json b/docs/static/swagger/core/service/tx.swagger.json new file mode 100644 index 000000000..78930c6c6 --- /dev/null +++ b/docs/static/swagger/core/service/tx.swagger.json @@ -0,0 +1,67 @@ +{ + "swagger": "2.0", + "info": { + "title": "core/service/tx.proto", + "version": "version not set" + }, + "consumes": [ + "application/json" + ], + "produces": [ + "application/json" + ], + "paths": {}, + "definitions": { + "core.service.MsgCreateServiceRecordResponse": { + "type": "object", + "properties": { + "id": { + "type": "string", + "format": "uint64" + } + }, + "description": "MsgCreateServiceRecordResponse is the response type for the\nCreateServiceRecord method. It returns the id of the created ServiceRecord." + }, + "core.service.MsgDeleteServiceRecordResponse": { + "type": "object", + "description": "MsgDeleteServiceRecordResponse is the response type for the\nDeleteServiceRecord method. It doesn't return any specific value." + }, + "core.service.MsgUpdateServiceRecordResponse": { + "type": "object", + "description": "MsgUpdateServiceRecordResponse is the response type for the\nUpdateServiceRecord method. It doesn't return any specific value." + }, + "google.protobuf.Any": { + "type": "object", + "properties": { + "type_url": { + "type": "string" + }, + "value": { + "type": "string", + "format": "byte" + } + } + }, + "grpc.gateway.runtime.Error": { + "type": "object", + "properties": { + "error": { + "type": "string" + }, + "code": { + "type": "integer", + "format": "int32" + }, + "message": { + "type": "string" + }, + "details": { + "type": "array", + "items": { + "$ref": "#/definitions/google.protobuf.Any" + } + } + } + } + } +} diff --git a/docs/static/swagger/highway/wallet/v1/service.swagger.json b/docs/static/swagger/highway/wallet/v1/service.swagger.json index 45afca5f5..18a0212bc 100644 --- a/docs/static/swagger/highway/wallet/v1/service.swagger.json +++ b/docs/static/swagger/highway/wallet/v1/service.swagger.json @@ -151,7 +151,7 @@ } }, "definitions": { - "core.crypto.CoinType": { + "common.crypto.CoinType": { "type": "string", "enum": [ "CoinType_BITCOIN", @@ -215,7 +215,7 @@ "type": "string" }, "coin_type": { - "$ref": "#/definitions/core.crypto.CoinType" + "$ref": "#/definitions/common.crypto.CoinType" }, "owner": { "type": "string" @@ -251,7 +251,7 @@ "type": "string" }, "coin_type": { - "$ref": "#/definitions/core.crypto.CoinType" + "$ref": "#/definitions/common.crypto.CoinType" }, "owner": { "type": "string" diff --git a/go.mod b/go.mod index 4a9fe5d07..40e4c5c0e 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/sonr-io/core +module sonr.io/core go 1.21 diff --git a/internal/crypto/credential.go b/internal/crypto/credential.go index 03ffd7817..b37aa8102 100644 --- a/internal/crypto/credential.go +++ b/internal/crypto/credential.go @@ -6,7 +6,7 @@ import ( "github.com/go-webauthn/webauthn/protocol" - "github.com/sonr-io/core/types/crypto" + "sonr.io/core/types/crypto" ) const ( diff --git a/internal/crypto/crypto.go b/internal/crypto/crypto.go index a1846bb17..4177a63bd 100644 --- a/internal/crypto/crypto.go +++ b/internal/crypto/crypto.go @@ -11,7 +11,7 @@ import ( mb "github.com/multiformats/go-multibase" "github.com/multiformats/go-varint" "github.com/shengdoushi/base58" - types "github.com/sonr-io/core/types/crypto" + types "sonr.io/core/types/crypto" ) // Secp256k1PubKey is a type alias for secp256k1.PubKey in pkg/crypto/keys/secp256k1. diff --git a/internal/highway/handler/auth.go b/internal/highway/handler/auth.go index 7dc221132..5afc0fd17 100644 --- a/internal/highway/handler/auth.go +++ b/internal/highway/handler/auth.go @@ -5,9 +5,9 @@ import ( "fmt" "github.com/cosmos/cosmos-sdk/client" - mdw "github.com/sonr-io/core/internal/highway/middleware" - "github.com/sonr-io/core/internal/highway/types" - authenticationpb "github.com/sonr-io/core/types/highway/authentication/v1" + mdw "sonr.io/core/internal/highway/middleware" + "sonr.io/core/internal/highway/types" + authenticationpb "sonr.io/core/types/highway/authentication/v1" emptypb "google.golang.org/protobuf/types/known/emptypb" ) diff --git a/internal/highway/handler/database.go b/internal/highway/handler/database.go index 8e6d1937f..2a5e4b226 100644 --- a/internal/highway/handler/database.go +++ b/internal/highway/handler/database.go @@ -3,7 +3,7 @@ package handler import ( "context" - databasepb "github.com/sonr-io/core/types/highway/database/v1" + databasepb "sonr.io/core/types/highway/database/v1" ) // DatabaseHandler is the handler for the authentication service diff --git a/internal/highway/handler/handler.go b/internal/highway/handler/handler.go index 6aff9b13b..583937893 100644 --- a/internal/highway/handler/handler.go +++ b/internal/highway/handler/handler.go @@ -4,10 +4,10 @@ import ( "context" "github.com/grpc-ecosystem/grpc-gateway/runtime" - authenticationpb "github.com/sonr-io/core/types/highway/authentication/v1" - databasepb "github.com/sonr-io/core/types/highway/database/v1" - storagepb "github.com/sonr-io/core/types/highway/storage/v1" - walletpb "github.com/sonr-io/core/types/highway/wallet/v1" + authenticationpb "sonr.io/core/types/highway/authentication/v1" + databasepb "sonr.io/core/types/highway/database/v1" + storagepb "sonr.io/core/types/highway/storage/v1" + walletpb "sonr.io/core/types/highway/wallet/v1" ) // RegisterHandlers registers the Highway Service Server. diff --git a/internal/highway/handler/storage.go b/internal/highway/handler/storage.go index 94e995856..3761bba78 100644 --- a/internal/highway/handler/storage.go +++ b/internal/highway/handler/storage.go @@ -5,7 +5,7 @@ import ( "fmt" "github.com/cosmos/cosmos-sdk/client" - storagepb "github.com/sonr-io/core/types/highway/storage/v1" + storagepb "sonr.io/core/types/highway/storage/v1" ) // StorageHandler is the handler for the authentication service diff --git a/internal/highway/handler/wallet.go b/internal/highway/handler/wallet.go index 71d632cdb..be688c6b9 100644 --- a/internal/highway/handler/wallet.go +++ b/internal/highway/handler/wallet.go @@ -5,10 +5,10 @@ import ( "fmt" "github.com/cosmos/cosmos-sdk/client" - "github.com/sonr-io/core/internal/crypto" - mdw "github.com/sonr-io/core/internal/highway/middleware" + "sonr.io/core/internal/crypto" + mdw "sonr.io/core/internal/highway/middleware" - walletpb "github.com/sonr-io/core/types/highway/wallet/v1" + walletpb "sonr.io/core/types/highway/wallet/v1" ) // WalletAPI is the alias for the Highway Wallet Service Server. diff --git a/internal/highway/highway.go b/internal/highway/highway.go index 93ddcc178..d20dee26b 100644 --- a/internal/highway/highway.go +++ b/internal/highway/highway.go @@ -6,7 +6,7 @@ import ( "net/http" "github.com/grpc-ecosystem/grpc-gateway/runtime" - "github.com/sonr-io/core/internal/highway/handler" + "sonr.io/core/internal/highway/handler" ) var hway *Instance diff --git a/internal/highway/middleware/options.go b/internal/highway/middleware/options.go index 8af75b6f8..86878ff22 100644 --- a/internal/highway/middleware/options.go +++ b/internal/highway/middleware/options.go @@ -5,7 +5,7 @@ import ( "github.com/go-webauthn/webauthn/protocol" - authenticationpb "github.com/sonr-io/core/types/highway/authentication/v1" + authenticationpb "sonr.io/core/types/highway/authentication/v1" ) // GetCredentialAttestationParams returns the credential attestation options to start wallet registration. diff --git a/internal/highway/middleware/proxy.go b/internal/highway/middleware/proxy.go index a807efdc0..94ce4c845 100644 --- a/internal/highway/middleware/proxy.go +++ b/internal/highway/middleware/proxy.go @@ -4,9 +4,9 @@ import ( "context" "fmt" - domaintypes "github.com/sonr-io/core/x/domain/types" - identitytypes "github.com/sonr-io/core/x/identity/types" - servicetypes "github.com/sonr-io/core/x/service/types" + domaintypes "sonr.io/core/x/domain/types" + identitytypes "sonr.io/core/x/identity/types" + servicetypes "sonr.io/core/x/service/types" "github.com/spf13/viper" "google.golang.org/grpc" ) diff --git a/internal/highway/middleware/verifier.go b/internal/highway/middleware/verifier.go index dca688623..1caed968a 100644 --- a/internal/highway/middleware/verifier.go +++ b/internal/highway/middleware/verifier.go @@ -6,13 +6,13 @@ import ( "github.com/gin-gonic/gin" "github.com/go-webauthn/webauthn/protocol" - "github.com/sonr-io/core/internal/crypto" - "github.com/sonr-io/core/internal/highway/types" - "github.com/sonr-io/core/services/did/controller" - "github.com/sonr-io/core/types/webauthn" - domaintypes "github.com/sonr-io/core/x/domain/types" - identitytypes "github.com/sonr-io/core/x/identity/types" - servicetypes "github.com/sonr-io/core/x/service/types" + "sonr.io/core/internal/crypto" + "sonr.io/core/internal/highway/types" + "sonr.io/core/services/did/controller" + "sonr.io/core/types/webauthn" + domaintypes "sonr.io/core/x/domain/types" + identitytypes "sonr.io/core/x/identity/types" + servicetypes "sonr.io/core/x/service/types" ) // The function GetAuthCookies takes a gin.Context as input and returns three strings and an error. diff --git a/internal/highway/types/claims.go b/internal/highway/types/claims.go index 23e2dfdd3..228d5c53f 100644 --- a/internal/highway/types/claims.go +++ b/internal/highway/types/claims.go @@ -9,8 +9,8 @@ import ( "github.com/kataras/jwt" "github.com/spf13/viper" - "github.com/sonr-io/core/internal/crypto" - identitytypes "github.com/sonr-io/core/x/identity/types" + "sonr.io/core/internal/crypto" + identitytypes "sonr.io/core/x/identity/types" ) // ! ||--------------------------------------------------------------------------------|| diff --git a/internal/highway/types/response.go b/internal/highway/types/response.go index 3d354253a..18e4aa1b6 100644 --- a/internal/highway/types/response.go +++ b/internal/highway/types/response.go @@ -3,8 +3,8 @@ package types import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/sonr-io/core/internal/crypto" - identitytypes "github.com/sonr-io/core/x/identity/types" + "sonr.io/core/internal/crypto" + identitytypes "sonr.io/core/x/identity/types" ) // AuthenticationResult struct is defining a data structure that represents the response returned after a successful authentication process. It contains various fields such as `Account`, `Address`, `Alias`, `DID`, `DIDDocument`, and `JWT`, which hold information related to diff --git a/internal/sfs/base/redis/client.go b/internal/sfs/base/redis/client.go index 35284c402..e29c2fc32 100644 --- a/internal/sfs/base/redis/client.go +++ b/internal/sfs/base/redis/client.go @@ -5,7 +5,7 @@ import ( "fmt" "github.com/go-redis/redis/v8" - "github.com/sonr-io/core/internal/sfs/types" + "sonr.io/core/internal/sfs/types" "github.com/spf13/viper" ) diff --git a/internal/sfs/base/redis/map.go b/internal/sfs/base/redis/map.go index d2f038e2f..b5b6f8978 100644 --- a/internal/sfs/base/redis/map.go +++ b/internal/sfs/base/redis/map.go @@ -1,7 +1,7 @@ package redis import ( - "github.com/sonr-io/core/internal/sfs/types" + "sonr.io/core/internal/sfs/types" ) type sfsMap struct { diff --git a/internal/sfs/base/redis/set.go b/internal/sfs/base/redis/set.go index 3cb9135b6..30c641cac 100644 --- a/internal/sfs/base/redis/set.go +++ b/internal/sfs/base/redis/set.go @@ -3,7 +3,7 @@ package redis import ( "fmt" - "github.com/sonr-io/core/internal/sfs/types" + "sonr.io/core/internal/sfs/types" ) type sfsSet struct { diff --git a/internal/sfs/sfs.go b/internal/sfs/sfs.go index f4de55fa7..f162a4ff9 100644 --- a/internal/sfs/sfs.go +++ b/internal/sfs/sfs.go @@ -1,8 +1,8 @@ package sfs import ( - "github.com/sonr-io/core/internal/sfs/base/redis" - "github.com/sonr-io/core/internal/sfs/types" + "sonr.io/core/internal/sfs/base/redis" + "sonr.io/core/internal/sfs/types" ) type Map = types.SFSMap diff --git a/internal/zk/zkset.go b/internal/zk/zkset.go index b067a2b37..1cd2a96fb 100644 --- a/internal/zk/zkset.go +++ b/internal/zk/zkset.go @@ -7,7 +7,7 @@ import ( "errors" "io" - "github.com/sonr-io/core/internal/crypto" + "sonr.io/core/internal/crypto" "github.com/sonr-io/kryptology/pkg/accumulator" "github.com/sonr-io/kryptology/pkg/core/curves" ) diff --git a/internal/zk/zkset_test.go b/internal/zk/zkset_test.go index 83d9043fb..5793a9090 100644 --- a/internal/zk/zkset_test.go +++ b/internal/zk/zkset_test.go @@ -8,7 +8,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/sonr-io/core/internal/zk" + "sonr.io/core/internal/zk" ) func TestZkSet(t *testing.T) { diff --git a/pkg/cache/cache_test.go b/pkg/cache/cache_test.go index f8f46d91d..7cddecd50 100644 --- a/pkg/cache/cache_test.go +++ b/pkg/cache/cache_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/sonr-io/core/pkg/cache" + "sonr.io/core/pkg/cache" ) type TestStruct struct { diff --git a/pkg/cliui/cliui.go b/pkg/cliui/cliui.go index 8e00ae90a..ab4baea83 100755 --- a/pkg/cliui/cliui.go +++ b/pkg/cliui/cliui.go @@ -8,11 +8,11 @@ import ( "github.com/manifoldco/promptui" - "github.com/sonr-io/core/pkg/cliui/cliquiz" - "github.com/sonr-io/core/pkg/cliui/clispinner" - "github.com/sonr-io/core/pkg/cliui/entrywriter" - uilog "github.com/sonr-io/core/pkg/cliui/log" - "github.com/sonr-io/core/pkg/events" + "sonr.io/core/pkg/cliui/cliquiz" + "sonr.io/core/pkg/cliui/clispinner" + "sonr.io/core/pkg/cliui/entrywriter" + uilog "sonr.io/core/pkg/cliui/log" + "sonr.io/core/pkg/events" ) type sessionOptions struct { diff --git a/pkg/cliui/entrywriter/entrywriter.go b/pkg/cliui/entrywriter/entrywriter.go index 566aaeb66..54557c46e 100755 --- a/pkg/cliui/entrywriter/entrywriter.go +++ b/pkg/cliui/entrywriter/entrywriter.go @@ -7,7 +7,7 @@ import ( "github.com/pkg/errors" - "github.com/sonr-io/core/pkg/xstrings" + "sonr.io/core/pkg/xstrings" ) const ( diff --git a/pkg/cliui/entrywriter/entrywriter_test.go b/pkg/cliui/entrywriter/entrywriter_test.go index 3193304e6..3ffb86680 100755 --- a/pkg/cliui/entrywriter/entrywriter_test.go +++ b/pkg/cliui/entrywriter/entrywriter_test.go @@ -7,7 +7,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/sonr-io/core/pkg/cliui/entrywriter" + "sonr.io/core/pkg/cliui/entrywriter" ) type WriterWithError struct{} diff --git a/pkg/cliui/icons/icon.go b/pkg/cliui/icons/icon.go index 3c613e1e4..04acf2852 100755 --- a/pkg/cliui/icons/icon.go +++ b/pkg/cliui/icons/icon.go @@ -1,7 +1,7 @@ package icons import ( - "github.com/sonr-io/core/pkg/cliui/colors" + "sonr.io/core/pkg/cliui/colors" ) var ( diff --git a/pkg/cliui/log/output.go b/pkg/cliui/log/output.go index b4e0b1d9f..62348c693 100755 --- a/pkg/cliui/log/output.go +++ b/pkg/cliui/log/output.go @@ -4,10 +4,10 @@ import ( "io" "os" - "github.com/sonr-io/core/pkg/cliui/colors" - "github.com/sonr-io/core/pkg/cliui/lineprefixer" - "github.com/sonr-io/core/pkg/cliui/prefixgen" - "github.com/sonr-io/core/pkg/xio" + "sonr.io/core/pkg/cliui/colors" + "sonr.io/core/pkg/cliui/lineprefixer" + "sonr.io/core/pkg/cliui/prefixgen" + "sonr.io/core/pkg/xio" ) const ( diff --git a/pkg/cliui/model/events.go b/pkg/cliui/model/events.go index e8d6fc50c..af8c3f0f8 100755 --- a/pkg/cliui/model/events.go +++ b/pkg/cliui/model/events.go @@ -9,9 +9,9 @@ import ( "github.com/charmbracelet/bubbles/spinner" tea "github.com/charmbracelet/bubbletea" - "github.com/sonr-io/core/pkg/cliui/colors" - "github.com/sonr-io/core/pkg/cliui/icons" - "github.com/sonr-io/core/pkg/events" + "sonr.io/core/pkg/cliui/colors" + "sonr.io/core/pkg/cliui/icons" + "sonr.io/core/pkg/events" ) // EventMsg defines a message for events. diff --git a/pkg/cliui/model/events_test.go b/pkg/cliui/model/events_test.go index a8ab79f95..50c0b277a 100755 --- a/pkg/cliui/model/events_test.go +++ b/pkg/cliui/model/events_test.go @@ -8,10 +8,10 @@ import ( "github.com/stretchr/testify/require" - "github.com/sonr-io/core/pkg/cliui/colors" - "github.com/sonr-io/core/pkg/cliui/icons" - cliuimodel "github.com/sonr-io/core/pkg/cliui/model" - "github.com/sonr-io/core/pkg/events" + "sonr.io/core/pkg/cliui/colors" + "sonr.io/core/pkg/cliui/icons" + cliuimodel "sonr.io/core/pkg/cliui/model" + "sonr.io/core/pkg/events" ) func TestStatusEventsView(t *testing.T) { diff --git a/pkg/cliui/prefixgen/prefixgen.go b/pkg/cliui/prefixgen/prefixgen.go index c0c2d3fc3..79548884e 100755 --- a/pkg/cliui/prefixgen/prefixgen.go +++ b/pkg/cliui/prefixgen/prefixgen.go @@ -6,7 +6,7 @@ import ( "fmt" "strings" - "github.com/sonr-io/core/pkg/cliui/colors" + "sonr.io/core/pkg/cliui/colors" ) // Prefixer generates prefixes. diff --git a/pkg/cliui/view/accountview/account.go b/pkg/cliui/view/accountview/account.go index 31cd2d95d..bf97d8dae 100755 --- a/pkg/cliui/view/accountview/account.go +++ b/pkg/cliui/view/accountview/account.go @@ -7,8 +7,8 @@ import ( "github.com/muesli/reflow/indent" "github.com/muesli/reflow/wordwrap" - "github.com/sonr-io/core/pkg/cliui/colors" - "github.com/sonr-io/core/pkg/cliui/icons" + "sonr.io/core/pkg/cliui/colors" + "sonr.io/core/pkg/cliui/icons" ) var ( diff --git a/pkg/cliui/view/errorview/error.go b/pkg/cliui/view/errorview/error.go index c4ba92f5e..260f79d98 100755 --- a/pkg/cliui/view/errorview/error.go +++ b/pkg/cliui/view/errorview/error.go @@ -5,7 +5,7 @@ import ( "github.com/muesli/reflow/wordwrap" - "github.com/sonr-io/core/pkg/cliui/colors" + "sonr.io/core/pkg/cliui/colors" ) func NewError(err error) Error { diff --git a/pkg/cmdrunner/cmdrunner.go b/pkg/cmdrunner/cmdrunner.go index b1e6dffe0..8041a9a86 100644 --- a/pkg/cmdrunner/cmdrunner.go +++ b/pkg/cmdrunner/cmdrunner.go @@ -10,9 +10,9 @@ import ( "golang.org/x/sync/errgroup" - "github.com/sonr-io/core/pkg/cmdrunner/step" - "github.com/sonr-io/core/pkg/env" - "github.com/sonr-io/core/pkg/goenv" + "sonr.io/core/pkg/cmdrunner/step" + "sonr.io/core/pkg/env" + "sonr.io/core/pkg/goenv" ) // Runner is an object to run commands. diff --git a/pkg/cmdrunner/exec/exec.go b/pkg/cmdrunner/exec/exec.go index 5e588bd4f..5085cdb49 100644 --- a/pkg/cmdrunner/exec/exec.go +++ b/pkg/cmdrunner/exec/exec.go @@ -10,8 +10,8 @@ import ( "github.com/pkg/errors" - "github.com/sonr-io/core/pkg/cmdrunner" - "github.com/sonr-io/core/pkg/cmdrunner/step" + "sonr.io/core/pkg/cmdrunner" + "sonr.io/core/pkg/cmdrunner/step" ) // ExitError is an alias to exec.ExitError. diff --git a/pkg/env/env.go b/pkg/env/env.go index bbbc479f0..249f951d5 100644 --- a/pkg/env/env.go +++ b/pkg/env/env.go @@ -5,7 +5,7 @@ import ( "os" "path" - "github.com/sonr-io/core/pkg/xfilepath" + "sonr.io/core/pkg/xfilepath" ) const ( diff --git a/pkg/events/events_test.go b/pkg/events/events_test.go index 977031b82..ad695d72a 100644 --- a/pkg/events/events_test.go +++ b/pkg/events/events_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/sonr-io/core/pkg/events" + "sonr.io/core/pkg/events" ) func TestNew(t *testing.T) { diff --git a/pkg/gocmd/gocmd.go b/pkg/gocmd/gocmd.go index e5d7b0f1e..f49823299 100644 --- a/pkg/gocmd/gocmd.go +++ b/pkg/gocmd/gocmd.go @@ -9,9 +9,9 @@ import ( "path/filepath" "strings" - "github.com/sonr-io/core/pkg/cmdrunner/exec" - "github.com/sonr-io/core/pkg/cmdrunner/step" - "github.com/sonr-io/core/pkg/goenv" + "sonr.io/core/pkg/cmdrunner/exec" + "sonr.io/core/pkg/cmdrunner/step" + "sonr.io/core/pkg/goenv" ) const ( diff --git a/pkg/gomodule/gomodule.go b/pkg/gomodule/gomodule.go index 456559ada..32c0eb399 100644 --- a/pkg/gomodule/gomodule.go +++ b/pkg/gomodule/gomodule.go @@ -14,9 +14,9 @@ import ( "golang.org/x/mod/modfile" "golang.org/x/mod/module" - "github.com/sonr-io/core/pkg/cache" - "github.com/sonr-io/core/pkg/cmdrunner" - "github.com/sonr-io/core/pkg/cmdrunner/step" + "sonr.io/core/pkg/cache" + "sonr.io/core/pkg/cmdrunner" + "sonr.io/core/pkg/cmdrunner/step" ) const pathCacheNamespace = "gomodule.path" diff --git a/pkg/placeholder/error.go b/pkg/placeholder/error.go index 6afbbd795..cd4e12f14 100755 --- a/pkg/placeholder/error.go +++ b/pkg/placeholder/error.go @@ -4,7 +4,7 @@ import ( "fmt" "strings" - "github.com/sonr-io/core/pkg/validation" + "sonr.io/core/pkg/validation" ) var _ validation.Error = (*MissingPlaceholdersError)(nil) diff --git a/pkg/xfilepath/xfilepath_test.go b/pkg/xfilepath/xfilepath_test.go index b4395dc3d..87603e6c1 100644 --- a/pkg/xfilepath/xfilepath_test.go +++ b/pkg/xfilepath/xfilepath_test.go @@ -9,7 +9,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/sonr-io/core/pkg/xfilepath" + "sonr.io/core/pkg/xfilepath" ) func TestJoin(t *testing.T) { diff --git a/pkg/xgenny/run.go b/pkg/xgenny/run.go index c34153df8..3fc1c2560 100755 --- a/pkg/xgenny/run.go +++ b/pkg/xgenny/run.go @@ -10,8 +10,8 @@ import ( "github.com/gobuffalo/logger" "github.com/gobuffalo/packd" - "github.com/sonr-io/core/pkg/placeholder" - "github.com/sonr-io/core/pkg/validation" + "sonr.io/core/pkg/placeholder" + "sonr.io/core/pkg/validation" ) var _ validation.Error = (*dryRunError)(nil) diff --git a/pkg/xgenny/sourcemodification_test.go b/pkg/xgenny/sourcemodification_test.go index 18d8887ac..307504fd6 100755 --- a/pkg/xgenny/sourcemodification_test.go +++ b/pkg/xgenny/sourcemodification_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/sonr-io/core/pkg/xgenny" + "sonr.io/core/pkg/xgenny" ) var ( diff --git a/pkg/xgenny/xgenny_test.go b/pkg/xgenny/xgenny_test.go index 153101922..c0a4fce7b 100755 --- a/pkg/xgenny/xgenny_test.go +++ b/pkg/xgenny/xgenny_test.go @@ -9,7 +9,7 @@ import ( "github.com/gobuffalo/plush/v4" "github.com/stretchr/testify/require" - "github.com/sonr-io/core/pkg/xgenny" + "sonr.io/core/pkg/xgenny" ) func Test_Transformer(t *testing.T) { diff --git a/pkg/xgit/xgit_test.go b/pkg/xgit/xgit_test.go index 62b1dac54..c0399aac1 100644 --- a/pkg/xgit/xgit_test.go +++ b/pkg/xgit/xgit_test.go @@ -14,8 +14,8 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/sonr-io/core/pkg/randstr" - "github.com/sonr-io/core/pkg/xgit" + "sonr.io/core/pkg/randstr" + "sonr.io/core/pkg/xgit" ) func TestInitAndCommit(t *testing.T) { diff --git a/pkg/xnet/xnet_test.go b/pkg/xnet/xnet_test.go index 99810a1cc..bd6ae3f98 100755 --- a/pkg/xnet/xnet_test.go +++ b/pkg/xnet/xnet_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/sonr-io/core/pkg/xnet" + "sonr.io/core/pkg/xnet" ) func TestLocalhostIPv4Address(t *testing.T) { diff --git a/pkg/xos/cp_test.go b/pkg/xos/cp_test.go index 9a830ace9..8cb111bfd 100755 --- a/pkg/xos/cp_test.go +++ b/pkg/xos/cp_test.go @@ -7,7 +7,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/sonr-io/core/pkg/xos" + "sonr.io/core/pkg/xos" ) func TestCopyFolder(t *testing.T) { diff --git a/pkg/xos/files_test.go b/pkg/xos/files_test.go index 164ccd6bd..de189fa0e 100755 --- a/pkg/xos/files_test.go +++ b/pkg/xos/files_test.go @@ -8,7 +8,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/sonr-io/core/pkg/xos" + "sonr.io/core/pkg/xos" ) func TestFindFiles(t *testing.T) { diff --git a/pkg/xos/mv_test.go b/pkg/xos/mv_test.go index 1c5839ac4..c80689e78 100755 --- a/pkg/xos/mv_test.go +++ b/pkg/xos/mv_test.go @@ -8,7 +8,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/sonr-io/core/pkg/xos" + "sonr.io/core/pkg/xos" ) func TestRename(t *testing.T) { diff --git a/pkg/xstrings/xstrings_test.go b/pkg/xstrings/xstrings_test.go index 6557ecea4..0979e4d0f 100755 --- a/pkg/xstrings/xstrings_test.go +++ b/pkg/xstrings/xstrings_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/sonr-io/core/pkg/xstrings" + "sonr.io/core/pkg/xstrings" ) func TestNoDash(t *testing.T) { diff --git a/pkg/xtime/clock_test.go b/pkg/xtime/clock_test.go index b9b1def6a..afdf71047 100755 --- a/pkg/xtime/clock_test.go +++ b/pkg/xtime/clock_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/sonr-io/core/pkg/xtime" + "sonr.io/core/pkg/xtime" ) func TestClockSystem(t *testing.T) { diff --git a/pkg/xtime/unix_test.go b/pkg/xtime/unix_test.go index c64d0242c..37fc2123c 100755 --- a/pkg/xtime/unix_test.go +++ b/pkg/xtime/unix_test.go @@ -5,7 +5,7 @@ import ( "testing" "time" - "github.com/sonr-io/core/pkg/xtime" + "sonr.io/core/pkg/xtime" "github.com/stretchr/testify/require" ) diff --git a/pkg/yaml/map_test.go b/pkg/yaml/map_test.go index b8ff34da2..746482ee2 100755 --- a/pkg/yaml/map_test.go +++ b/pkg/yaml/map_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" "gopkg.in/yaml.v2" - xyaml "github.com/sonr-io/core/pkg/yaml" + xyaml "sonr.io/core/pkg/yaml" ) func TestUnmarshalWithCustomMapType(t *testing.T) { diff --git a/proto/common/crypto/coin.proto b/proto/common/crypto/coin.proto index 648c51066..01a763509 100644 --- a/proto/common/crypto/coin.proto +++ b/proto/common/crypto/coin.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package common.crypto; -option go_package = "github.com/sonr-io/core/types/crypto"; +option go_package = "sonr.io/core/types/crypto"; // CoinType is the BIP-0044 coin type for each supported coin. enum CoinType { diff --git a/proto/common/crypto/ssi.proto b/proto/common/crypto/ssi.proto index b8361b1bd..98269f4a0 100644 --- a/proto/common/crypto/ssi.proto +++ b/proto/common/crypto/ssi.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package common.crypto; -option go_package = "github.com/sonr-io/core/types/crypto"; +option go_package = "sonr.io/core/types/crypto"; // KeyType is the type of key used to sign a DID document. enum KeyType { diff --git a/proto/common/crypto/vc.proto b/proto/common/crypto/vc.proto index b1bff1526..356e6566b 100644 --- a/proto/common/crypto/vc.proto +++ b/proto/common/crypto/vc.proto @@ -3,7 +3,7 @@ package common.crypto; // this line is used by starport scaffolding # proto/tx/import -option go_package = "github.com/sonr-io/core/types/crypto"; +option go_package = "sonr.io/core/types/crypto"; // PubKey represents a public key in bytes format. message PubKey { diff --git a/proto/common/webauthn/credential.proto b/proto/common/webauthn/credential.proto index 2fc66575b..cd1f7ea29 100644 --- a/proto/common/webauthn/credential.proto +++ b/proto/common/webauthn/credential.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package common.webauthn; -option go_package = "github.com/sonr-io/core/types/webauthn"; +option go_package = "sonr.io/core/types/webauthn"; // Credential is a message type that contains all needed information // about a WebAuthn credential for storage. diff --git a/proto/core/domain/genesis.proto b/proto/core/domain/genesis.proto index e6bb2e64f..351c52fa6 100644 --- a/proto/core/domain/genesis.proto +++ b/proto/core/domain/genesis.proto @@ -6,7 +6,7 @@ import "core/domain/params.proto"; import "core/domain/record.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/sonr-io/core/x/domain/types"; +option go_package = "sonr.io/core/x/domain/types"; // GenesisState defines the domain module's genesis state. message GenesisState { diff --git a/proto/core/domain/params.proto b/proto/core/domain/params.proto index a45a3a2f7..b60a7fd7c 100644 --- a/proto/core/domain/params.proto +++ b/proto/core/domain/params.proto @@ -3,7 +3,7 @@ package core.domain; import "gogoproto/gogo.proto"; -option go_package = "github.com/sonr-io/core/x/domain/types"; +option go_package = "sonr.io/core/x/domain/types"; // Params defines the parameters for the module. message Params { option (gogoproto.goproto_stringer) = false; } diff --git a/proto/core/domain/query.proto b/proto/core/domain/query.proto index 9cfe92137..8d7e70641 100644 --- a/proto/core/domain/query.proto +++ b/proto/core/domain/query.proto @@ -8,7 +8,7 @@ import "cosmos/base/query/v1beta1/pagination.proto"; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; -option go_package = "github.com/sonr-io/core/x/domain/types"; +option go_package = "sonr.io/core/x/domain/types"; // Query defines the gRPC querier service. // It provides methods to query parameters and UsernameRecords. diff --git a/proto/core/domain/record.proto b/proto/core/domain/record.proto index d0682a530..d1624529d 100644 --- a/proto/core/domain/record.proto +++ b/proto/core/domain/record.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package core.domain; -option go_package = "github.com/sonr-io/core/x/domain/types"; +option go_package = "sonr.io/core/x/domain/types"; message UsernameRecord { string index = 1; diff --git a/proto/core/domain/tx.proto b/proto/core/domain/tx.proto index a25f95587..183d47e29 100644 --- a/proto/core/domain/tx.proto +++ b/proto/core/domain/tx.proto @@ -4,7 +4,7 @@ package core.domain; import "core/domain/record.proto"; -option go_package = "github.com/sonr-io/core/x/domain/types"; +option go_package = "sonr.io/core/x/domain/types"; // Msg defines the Msg service. // This service provides CRUD operations for UsernameRecords. diff --git a/proto/core/identity/account.proto b/proto/core/identity/account.proto index 88b55480a..54f0e4ec1 100644 --- a/proto/core/identity/account.proto +++ b/proto/core/identity/account.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package core.identity; -option go_package = "github.com/sonr-io/core/x/identity/types"; +option go_package = "sonr.io/core/x/identity/types"; message ControllerAccount { string address = 1; diff --git a/proto/core/identity/did.proto b/proto/core/identity/did.proto index 1853e12eb..63aa5bbc3 100644 --- a/proto/core/identity/did.proto +++ b/proto/core/identity/did.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package core.identity; -option go_package = "github.com/sonr-io/core/x/identity/types"; +option go_package = "sonr.io/core/x/identity/types"; // DIDDocument represents a Decentralized Identifier (DID) document that // contains information about the DID subject, such as public keys, verification diff --git a/proto/core/identity/genesis.proto b/proto/core/identity/genesis.proto index 5cb372a73..48a35d1fc 100644 --- a/proto/core/identity/genesis.proto +++ b/proto/core/identity/genesis.proto @@ -7,7 +7,7 @@ import "core/identity/did.proto"; import "core/identity/params.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/sonr-io/core/x/identity/types"; +option go_package = "sonr.io/core/x/identity/types"; // GenesisState defines the identity module's genesis state. message GenesisState { diff --git a/proto/core/identity/identifier.proto b/proto/core/identity/identifier.proto index 33cb767de..1c41b2fcb 100644 --- a/proto/core/identity/identifier.proto +++ b/proto/core/identity/identifier.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package core.identity; -option go_package = "github.com/sonr-io/core/x/identity/types"; +option go_package = "sonr.io/core/x/identity/types"; // UserIdentifierType defines the type of the user identifier\ enum UserIdentifierType { diff --git a/proto/core/identity/params.proto b/proto/core/identity/params.proto index 5fee8dd3a..705871a94 100644 --- a/proto/core/identity/params.proto +++ b/proto/core/identity/params.proto @@ -3,7 +3,7 @@ package core.identity; import "gogoproto/gogo.proto"; -option go_package = "github.com/sonr-io/core/x/identity/types"; +option go_package = "sonr.io/core/x/identity/types"; // Params defines the parameters for the module. message Params { diff --git a/proto/core/identity/query.proto b/proto/core/identity/query.proto index 183c5262d..9359dda05 100644 --- a/proto/core/identity/query.proto +++ b/proto/core/identity/query.proto @@ -9,7 +9,7 @@ import "cosmos/base/query/v1beta1/pagination.proto"; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; -option go_package = "github.com/sonr-io/core/x/identity/types"; +option go_package = "sonr.io/core/x/identity/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/core/identity/state.cosmos_orm.go b/proto/core/identity/state.cosmos_orm.go new file mode 100644 index 000000000..a7cc5d030 --- /dev/null +++ b/proto/core/identity/state.cosmos_orm.go @@ -0,0 +1,385 @@ +// Code generated by protoc-gen-go-cosmos-orm. DO NOT EDIT. + +package identity + +import ( + context "context" + ormlist "cosmossdk.io/orm/model/ormlist" + ormtable "cosmossdk.io/orm/model/ormtable" + ormerrors "cosmossdk.io/orm/types/ormerrors" +) + +type BalanceTable interface { + Insert(ctx context.Context, balance *Balance) error + Update(ctx context.Context, balance *Balance) error + Save(ctx context.Context, balance *Balance) error + Delete(ctx context.Context, balance *Balance) error + Has(ctx context.Context, account []byte, denom string) (found bool, err error) + // Get returns nil and an error which responds true to ormerrors.IsNotFound() if the record was not found. + Get(ctx context.Context, account []byte, denom string) (*Balance, error) + List(ctx context.Context, prefixKey BalanceIndexKey, opts ...ormlist.Option) (BalanceIterator, error) + ListRange(ctx context.Context, from, to BalanceIndexKey, opts ...ormlist.Option) (BalanceIterator, error) + DeleteBy(ctx context.Context, prefixKey BalanceIndexKey) error + DeleteRange(ctx context.Context, from, to BalanceIndexKey) error + + doNotImplement() +} + +type BalanceIterator struct { + ormtable.Iterator +} + +func (i BalanceIterator) Value() (*Balance, error) { + var balance Balance + err := i.UnmarshalMessage(&balance) + return &balance, err +} + +type BalanceIndexKey interface { + id() uint32 + values() []interface{} + balanceIndexKey() +} + +// primary key starting index.. +type BalancePrimaryKey = BalanceAccountDenomIndexKey + +type BalanceAccountDenomIndexKey struct { + vs []interface{} +} + +func (x BalanceAccountDenomIndexKey) id() uint32 { return 0 } +func (x BalanceAccountDenomIndexKey) values() []interface{} { return x.vs } +func (x BalanceAccountDenomIndexKey) balanceIndexKey() {} + +func (this BalanceAccountDenomIndexKey) WithAccount(account []byte) BalanceAccountDenomIndexKey { + this.vs = []interface{}{account} + return this +} + +func (this BalanceAccountDenomIndexKey) WithAccountDenom(account []byte, denom string) BalanceAccountDenomIndexKey { + this.vs = []interface{}{account, denom} + return this +} + +type BalanceDenomIndexKey struct { + vs []interface{} +} + +func (x BalanceDenomIndexKey) id() uint32 { return 1 } +func (x BalanceDenomIndexKey) values() []interface{} { return x.vs } +func (x BalanceDenomIndexKey) balanceIndexKey() {} + +func (this BalanceDenomIndexKey) WithDenom(denom string) BalanceDenomIndexKey { + this.vs = []interface{}{denom} + return this +} + +type balanceTable struct { + table ormtable.Table +} + +func (this balanceTable) Insert(ctx context.Context, balance *Balance) error { + return this.table.Insert(ctx, balance) +} + +func (this balanceTable) Update(ctx context.Context, balance *Balance) error { + return this.table.Update(ctx, balance) +} + +func (this balanceTable) Save(ctx context.Context, balance *Balance) error { + return this.table.Save(ctx, balance) +} + +func (this balanceTable) Delete(ctx context.Context, balance *Balance) error { + return this.table.Delete(ctx, balance) +} + +func (this balanceTable) Has(ctx context.Context, account []byte, denom string) (found bool, err error) { + return this.table.PrimaryKey().Has(ctx, account, denom) +} + +func (this balanceTable) Get(ctx context.Context, account []byte, denom string) (*Balance, error) { + var balance Balance + found, err := this.table.PrimaryKey().Get(ctx, &balance, account, denom) + if err != nil { + return nil, err + } + if !found { + return nil, ormerrors.NotFound + } + return &balance, nil +} + +func (this balanceTable) List(ctx context.Context, prefixKey BalanceIndexKey, opts ...ormlist.Option) (BalanceIterator, error) { + it, err := this.table.GetIndexByID(prefixKey.id()).List(ctx, prefixKey.values(), opts...) + return BalanceIterator{it}, err +} + +func (this balanceTable) ListRange(ctx context.Context, from, to BalanceIndexKey, opts ...ormlist.Option) (BalanceIterator, error) { + it, err := this.table.GetIndexByID(from.id()).ListRange(ctx, from.values(), to.values(), opts...) + return BalanceIterator{it}, err +} + +func (this balanceTable) DeleteBy(ctx context.Context, prefixKey BalanceIndexKey) error { + return this.table.GetIndexByID(prefixKey.id()).DeleteBy(ctx, prefixKey.values()...) +} + +func (this balanceTable) DeleteRange(ctx context.Context, from, to BalanceIndexKey) error { + return this.table.GetIndexByID(from.id()).DeleteRange(ctx, from.values(), to.values()) +} + +func (this balanceTable) doNotImplement() {} + +var _ BalanceTable = balanceTable{} + +func NewBalanceTable(db ormtable.Schema) (BalanceTable, error) { + table := db.GetTable(&Balance{}) + if table == nil { + return nil, ormerrors.TableNotFound.Wrap(string((&Balance{}).ProtoReflect().Descriptor().FullName())) + } + return balanceTable{table}, nil +} + +type AccountTable interface { + Insert(ctx context.Context, account *Account) error + InsertReturningId(ctx context.Context, account *Account) (uint64, error) + LastInsertedSequence(ctx context.Context) (uint64, error) + Update(ctx context.Context, account *Account) error + Save(ctx context.Context, account *Account) error + Delete(ctx context.Context, account *Account) error + Has(ctx context.Context, id uint64) (found bool, err error) + // Get returns nil and an error which responds true to ormerrors.IsNotFound() if the record was not found. + Get(ctx context.Context, id uint64) (*Account, error) + HasByAddress(ctx context.Context, address []byte) (found bool, err error) + // GetByAddress returns nil and an error which responds true to ormerrors.IsNotFound() if the record was not found. + GetByAddress(ctx context.Context, address []byte) (*Account, error) + List(ctx context.Context, prefixKey AccountIndexKey, opts ...ormlist.Option) (AccountIterator, error) + ListRange(ctx context.Context, from, to AccountIndexKey, opts ...ormlist.Option) (AccountIterator, error) + DeleteBy(ctx context.Context, prefixKey AccountIndexKey) error + DeleteRange(ctx context.Context, from, to AccountIndexKey) error + + doNotImplement() +} + +type AccountIterator struct { + ormtable.Iterator +} + +func (i AccountIterator) Value() (*Account, error) { + var account Account + err := i.UnmarshalMessage(&account) + return &account, err +} + +type AccountIndexKey interface { + id() uint32 + values() []interface{} + accountIndexKey() +} + +// primary key starting index.. +type AccountPrimaryKey = AccountIdIndexKey + +type AccountIdIndexKey struct { + vs []interface{} +} + +func (x AccountIdIndexKey) id() uint32 { return 0 } +func (x AccountIdIndexKey) values() []interface{} { return x.vs } +func (x AccountIdIndexKey) accountIndexKey() {} + +func (this AccountIdIndexKey) WithId(id uint64) AccountIdIndexKey { + this.vs = []interface{}{id} + return this +} + +type AccountAddressIndexKey struct { + vs []interface{} +} + +func (x AccountAddressIndexKey) id() uint32 { return 1 } +func (x AccountAddressIndexKey) values() []interface{} { return x.vs } +func (x AccountAddressIndexKey) accountIndexKey() {} + +func (this AccountAddressIndexKey) WithAddress(address []byte) AccountAddressIndexKey { + this.vs = []interface{}{address} + return this +} + +type accountTable struct { + table ormtable.AutoIncrementTable +} + +func (this accountTable) Insert(ctx context.Context, account *Account) error { + return this.table.Insert(ctx, account) +} + +func (this accountTable) Update(ctx context.Context, account *Account) error { + return this.table.Update(ctx, account) +} + +func (this accountTable) Save(ctx context.Context, account *Account) error { + return this.table.Save(ctx, account) +} + +func (this accountTable) Delete(ctx context.Context, account *Account) error { + return this.table.Delete(ctx, account) +} + +func (this accountTable) InsertReturningId(ctx context.Context, account *Account) (uint64, error) { + return this.table.InsertReturningPKey(ctx, account) +} + +func (this accountTable) LastInsertedSequence(ctx context.Context) (uint64, error) { + return this.table.LastInsertedSequence(ctx) +} + +func (this accountTable) Has(ctx context.Context, id uint64) (found bool, err error) { + return this.table.PrimaryKey().Has(ctx, id) +} + +func (this accountTable) Get(ctx context.Context, id uint64) (*Account, error) { + var account Account + found, err := this.table.PrimaryKey().Get(ctx, &account, id) + if err != nil { + return nil, err + } + if !found { + return nil, ormerrors.NotFound + } + return &account, nil +} + +func (this accountTable) HasByAddress(ctx context.Context, address []byte) (found bool, err error) { + return this.table.GetIndexByID(1).(ormtable.UniqueIndex).Has(ctx, + address, + ) +} + +func (this accountTable) GetByAddress(ctx context.Context, address []byte) (*Account, error) { + var account Account + found, err := this.table.GetIndexByID(1).(ormtable.UniqueIndex).Get(ctx, &account, + address, + ) + if err != nil { + return nil, err + } + if !found { + return nil, ormerrors.NotFound + } + return &account, nil +} + +func (this accountTable) List(ctx context.Context, prefixKey AccountIndexKey, opts ...ormlist.Option) (AccountIterator, error) { + it, err := this.table.GetIndexByID(prefixKey.id()).List(ctx, prefixKey.values(), opts...) + return AccountIterator{it}, err +} + +func (this accountTable) ListRange(ctx context.Context, from, to AccountIndexKey, opts ...ormlist.Option) (AccountIterator, error) { + it, err := this.table.GetIndexByID(from.id()).ListRange(ctx, from.values(), to.values(), opts...) + return AccountIterator{it}, err +} + +func (this accountTable) DeleteBy(ctx context.Context, prefixKey AccountIndexKey) error { + return this.table.GetIndexByID(prefixKey.id()).DeleteBy(ctx, prefixKey.values()...) +} + +func (this accountTable) DeleteRange(ctx context.Context, from, to AccountIndexKey) error { + return this.table.GetIndexByID(from.id()).DeleteRange(ctx, from.values(), to.values()) +} + +func (this accountTable) doNotImplement() {} + +var _ AccountTable = accountTable{} + +func NewAccountTable(db ormtable.Schema) (AccountTable, error) { + table := db.GetTable(&Account{}) + if table == nil { + return nil, ormerrors.TableNotFound.Wrap(string((&Account{}).ProtoReflect().Descriptor().FullName())) + } + return accountTable{table.(ormtable.AutoIncrementTable)}, nil +} + +// singleton store +type ConfigTable interface { + Get(ctx context.Context) (*Config, error) + Save(ctx context.Context, config *Config) error +} + +type configTable struct { + table ormtable.Table +} + +var _ ConfigTable = configTable{} + +func (x configTable) Get(ctx context.Context) (*Config, error) { + config := &Config{} + _, err := x.table.Get(ctx, config) + return config, err +} + +func (x configTable) Save(ctx context.Context, config *Config) error { + return x.table.Save(ctx, config) +} + +func NewConfigTable(db ormtable.Schema) (ConfigTable, error) { + table := db.GetTable(&Config{}) + if table == nil { + return nil, ormerrors.TableNotFound.Wrap(string((&Config{}).ProtoReflect().Descriptor().FullName())) + } + return &configTable{table}, nil +} + +type StateStore interface { + BalanceTable() BalanceTable + AccountTable() AccountTable + ConfigTable() ConfigTable + + doNotImplement() +} + +type stateStore struct { + balance BalanceTable + account AccountTable + config ConfigTable +} + +func (x stateStore) BalanceTable() BalanceTable { + return x.balance +} + +func (x stateStore) AccountTable() AccountTable { + return x.account +} + +func (x stateStore) ConfigTable() ConfigTable { + return x.config +} + +func (stateStore) doNotImplement() {} + +var _ StateStore = stateStore{} + +func NewStateStore(db ormtable.Schema) (StateStore, error) { + balanceTable, err := NewBalanceTable(db) + if err != nil { + return nil, err + } + + accountTable, err := NewAccountTable(db) + if err != nil { + return nil, err + } + + configTable, err := NewConfigTable(db) + if err != nil { + return nil, err + } + + return stateStore{ + balanceTable, + accountTable, + configTable, + }, nil +} diff --git a/proto/core/identity/state.proto b/proto/core/identity/state.proto index 1413634da..5c6cc0234 100644 --- a/proto/core/identity/state.proto +++ b/proto/core/identity/state.proto @@ -4,7 +4,7 @@ package core.identity; import "cosmos/orm/v1/orm.proto"; -option go_package = "github.com/sonr-io/core/x/identity/types"; +option go_package = "sonr.io/core/x/identity/types"; message Balance { option (cosmos.orm.v1.table) = { diff --git a/proto/core/identity/tx.proto b/proto/core/identity/tx.proto index 36cf38c7b..55c800651 100644 --- a/proto/core/identity/tx.proto +++ b/proto/core/identity/tx.proto @@ -5,7 +5,7 @@ package core.identity; import "core/identity/account.proto"; import "core/identity/did.proto"; -option go_package = "github.com/sonr-io/core/x/identity/types"; +option go_package = "sonr.io/core/x/identity/types"; // Msg defines the Msg service. // This service provides methods for managing identities. diff --git a/proto/core/service/genesis.proto b/proto/core/service/genesis.proto index 82acf42fc..f7b5a7af5 100644 --- a/proto/core/service/genesis.proto +++ b/proto/core/service/genesis.proto @@ -6,7 +6,7 @@ import "core/service/params.proto"; import "core/service/record.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/sonr-io/core/x/service/types"; +option go_package = "sonr.io/core/x/service/types"; // GenesisState defines the service module's genesis state. message GenesisState { diff --git a/proto/core/service/params.proto b/proto/core/service/params.proto index d647de697..a3960fcf2 100644 --- a/proto/core/service/params.proto +++ b/proto/core/service/params.proto @@ -3,7 +3,7 @@ package core.service; import "gogoproto/gogo.proto"; -option go_package = "github.com/sonr-io/core/x/service/types"; +option go_package = "sonr.io/core/x/service/types"; // Params defines the parameters for the module. message Params { option (gogoproto.goproto_stringer) = false; } diff --git a/proto/core/service/query.proto b/proto/core/service/query.proto index 817d60519..73ff2b2ba 100644 --- a/proto/core/service/query.proto +++ b/proto/core/service/query.proto @@ -10,7 +10,7 @@ import "cosmos/base/query/v1beta1/pagination.proto"; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; -option go_package = "github.com/sonr-io/core/x/service/types"; +option go_package = "sonr.io/core/x/service/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/core/service/record.proto b/proto/core/service/record.proto index 9c41fe809..0d8a54467 100644 --- a/proto/core/service/record.proto +++ b/proto/core/service/record.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package core.service; -option go_package = "github.com/sonr-io/core/x/service/types"; +option go_package = "sonr.io/core/x/service/types"; message ServiceRecord { string id = 1; diff --git a/proto/core/service/tx.proto b/proto/core/service/tx.proto index 117436337..6004f5561 100644 --- a/proto/core/service/tx.proto +++ b/proto/core/service/tx.proto @@ -6,7 +6,7 @@ package core.service; import "core/service/record.proto"; // Specifying the go package for this service. -option go_package = "github.com/sonr-io/core/x/service/types"; +option go_package = "sonr.io/core/x/service/types"; // Msg defines the Msg service. // This service provides CRUD operations for ServiceRecord. diff --git a/proto/highway/authentication/v1/service.proto b/proto/highway/authentication/v1/service.proto index 341831702..f3fb9cc3f 100644 --- a/proto/highway/authentication/v1/service.proto +++ b/proto/highway/authentication/v1/service.proto @@ -6,7 +6,7 @@ package highway.authentication.v1; import "google/api/annotations.proto"; import "google/protobuf/empty.proto"; -option go_package = "github.com/sonr-io/core/types/highway/authentication/v1;authenticationpb"; +option go_package = "sonr.io/core/types/highway/authentication/v1;authenticationpb"; // AuthenticationService provides methods for user authentication. service AuthenticationService { diff --git a/proto/highway/database/v1/service.proto b/proto/highway/database/v1/service.proto index 31f404198..fa31b2a58 100644 --- a/proto/highway/database/v1/service.proto +++ b/proto/highway/database/v1/service.proto @@ -5,7 +5,7 @@ package highway.database.v1; import "google/api/annotations.proto"; import "google/protobuf/empty.proto"; -option go_package = "github.com/sonr-io/core/types/highway/database/v1;databasepb"; +option go_package = "sonr.io/core/types/highway/database/v1;databasepb"; service DatabaseService { rpc Health(HealthRequest) returns (HealthResponse) { diff --git a/proto/highway/storage/v1/service.proto b/proto/highway/storage/v1/service.proto index d576be9d9..e8b6ba6ed 100644 --- a/proto/highway/storage/v1/service.proto +++ b/proto/highway/storage/v1/service.proto @@ -4,7 +4,7 @@ package highway.storage.v1; import "google/api/annotations.proto"; -option go_package = "github.com/sonr-io/core/types/highway/storage/v1;storagepb"; +option go_package = "sonr.io/core/types/highway/storage/v1;storagepb"; // StorageService provides methods for storing and retrieving data. service StorageService { diff --git a/proto/highway/wallet/v1/service.proto b/proto/highway/wallet/v1/service.proto index aa1ae4cd4..76c28e163 100644 --- a/proto/highway/wallet/v1/service.proto +++ b/proto/highway/wallet/v1/service.proto @@ -5,7 +5,7 @@ package highway.wallet.v1; import "common/crypto/coin.proto"; import "google/api/annotations.proto"; -option go_package = "github.com/sonr-io/core/types/highway/wallet/v1;walletpb"; +option go_package = "sonr.io/core/types/highway/wallet/v1;walletpb"; // WalletService provides methods for managing wallet accounts. service WalletService { diff --git a/scripts/protocgen.sh b/scripts/protocgen.sh index 0860bd089..d02650644 100644 --- a/scripts/protocgen.sh +++ b/scripts/protocgen.sh @@ -22,5 +22,5 @@ done cd .. # move proto files to the right places -cp -r github.com/sonr-io/core/* ./ -rm -rf github.com +cp -r sonr.io/core/* ./ +rm -rf sonr.io diff --git a/services/did/controller/controller.go b/services/did/controller/controller.go index 976095e3a..96c85f227 100644 --- a/services/did/controller/controller.go +++ b/services/did/controller/controller.go @@ -5,12 +5,12 @@ import ( "fmt" "github.com/highlight/highlight/sdk/highlight-go" - "github.com/sonr-io/core/internal/crypto" - "github.com/sonr-io/core/services/did/method/btcr" - "github.com/sonr-io/core/services/did/method/ethr" - "github.com/sonr-io/core/services/did/method/sonr" - "github.com/sonr-io/core/services/did/types" - identitytypes "github.com/sonr-io/core/x/identity/types" + "sonr.io/core/internal/crypto" + "sonr.io/core/services/did/method/btcr" + "sonr.io/core/services/did/method/ethr" + "sonr.io/core/services/did/method/sonr" + "sonr.io/core/services/did/types" + identitytypes "sonr.io/core/x/identity/types" ) // Account returns the controller account diff --git a/services/did/controller/idx.go b/services/did/controller/idx.go index 5ba37ccec..7b027996c 100644 --- a/services/did/controller/idx.go +++ b/services/did/controller/idx.go @@ -6,10 +6,10 @@ import ( "fmt" - "github.com/sonr-io/core/services/did/method/authr" - "github.com/sonr-io/core/services/did/method/sonr" - "github.com/sonr-io/core/services/did/types" - identitytypes "github.com/sonr-io/core/x/identity/types" + "sonr.io/core/services/did/method/authr" + "sonr.io/core/services/did/method/sonr" + "sonr.io/core/services/did/types" + identitytypes "sonr.io/core/x/identity/types" ) var defaultDidMethod = types.DIDMethod("idxr") diff --git a/services/did/method/authr/authr.go b/services/did/method/authr/authr.go index d9d050a14..14593470d 100644 --- a/services/did/method/authr/authr.go +++ b/services/did/method/authr/authr.go @@ -4,8 +4,8 @@ import ( "fmt" "github.com/go-webauthn/webauthn/protocol" - "github.com/sonr-io/core/internal/crypto" - "github.com/sonr-io/core/services/did/types" + "sonr.io/core/internal/crypto" + "sonr.io/core/services/did/types" "github.com/sonr-io/kryptology/pkg/core/curves" ) diff --git a/services/did/method/authr/data.go b/services/did/method/authr/data.go index 777c35d9a..4c1d2604e 100644 --- a/services/did/method/authr/data.go +++ b/services/did/method/authr/data.go @@ -9,7 +9,7 @@ import ( "fmt" "io" - "github.com/sonr-io/core/services/did/types" + "sonr.io/core/services/did/types" "golang.org/x/crypto/hkdf" "lukechampine.com/blake3" ) diff --git a/services/did/method/authr/secret.go b/services/did/method/authr/secret.go index 02f7918c5..77eed95e1 100644 --- a/services/did/method/authr/secret.go +++ b/services/did/method/authr/secret.go @@ -9,7 +9,7 @@ import ( "io" "github.com/google/uuid" - "github.com/sonr-io/core/internal/crypto" + "sonr.io/core/internal/crypto" "github.com/sonr-io/kryptology/pkg/accumulator" "github.com/sonr-io/kryptology/pkg/core/curves" "golang.org/x/crypto/hkdf" diff --git a/services/did/method/btcr/account.go b/services/did/method/btcr/account.go index 6b453fd4b..ee8669370 100644 --- a/services/did/method/btcr/account.go +++ b/services/did/method/btcr/account.go @@ -1,9 +1,9 @@ package btcr import ( - "github.com/sonr-io/core/internal/crypto" - "github.com/sonr-io/core/services/did/types" - "github.com/sonr-io/core/services/mpc" + "sonr.io/core/internal/crypto" + "sonr.io/core/services/did/types" + "sonr.io/core/services/mpc" ) const Method = types.DIDMethod("btcr") diff --git a/services/did/method/ethr/account.go b/services/did/method/ethr/account.go index da95db058..c9ec62fdd 100644 --- a/services/did/method/ethr/account.go +++ b/services/did/method/ethr/account.go @@ -1,9 +1,9 @@ package ethr import ( - "github.com/sonr-io/core/internal/crypto" - "github.com/sonr-io/core/services/did/types" - "github.com/sonr-io/core/services/mpc" + "sonr.io/core/internal/crypto" + "sonr.io/core/services/did/types" + "sonr.io/core/services/mpc" ) const Method = types.DIDMethod("ethr") diff --git a/services/did/method/sonr/account.go b/services/did/method/sonr/account.go index 7d57e97dd..1cf1309ff 100644 --- a/services/did/method/sonr/account.go +++ b/services/did/method/sonr/account.go @@ -3,9 +3,9 @@ package sonr import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/sonr-io/core/internal/crypto" - "github.com/sonr-io/core/services/did/types" - "github.com/sonr-io/core/services/mpc" + "sonr.io/core/internal/crypto" + "sonr.io/core/services/did/types" + "sonr.io/core/services/mpc" ) // Method is the DID method for Sonr Wallet Actor DIDs diff --git a/services/did/method/sonr/client.go b/services/did/method/sonr/client.go index 7aa75ca08..202bdd4a5 100644 --- a/services/did/method/sonr/client.go +++ b/services/did/method/sonr/client.go @@ -9,8 +9,8 @@ import ( "github.com/spf13/viper" "google.golang.org/grpc" - "github.com/sonr-io/core/internal/local" - "github.com/sonr-io/core/services/did/types" + "sonr.io/core/internal/local" + "sonr.io/core/services/did/types" ) // ! ||--------------------------------------------------------------------------------|| diff --git a/services/did/method/sonr/signer.go b/services/did/method/sonr/signer.go index 782166537..bf3e70dfb 100644 --- a/services/did/method/sonr/signer.go +++ b/services/did/method/sonr/signer.go @@ -7,9 +7,9 @@ import ( codectypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" txtypes "github.com/cosmos/cosmos-sdk/types/tx" - "github.com/sonr-io/core/internal/crypto" - "github.com/sonr-io/core/services/did/types" - identitytypes "github.com/sonr-io/core/x/identity/types" + "sonr.io/core/internal/crypto" + "sonr.io/core/services/did/types" + identitytypes "sonr.io/core/x/identity/types" ) // SignCosmosTx signs a transaction with the given inputs. diff --git a/services/did/types/accumulator.go b/services/did/types/accumulator.go index cdc789802..9314ebec4 100644 --- a/services/did/types/accumulator.go +++ b/services/did/types/accumulator.go @@ -7,7 +7,7 @@ import ( "github.com/sonr-io/kryptology/pkg/accumulator" "github.com/sonr-io/kryptology/pkg/core/curves" - "github.com/sonr-io/core/internal/crypto" + "sonr.io/core/internal/crypto" ) // DIDAccumulator is a ZKSet accumulator for a DID diff --git a/services/did/types/identifier.go b/services/did/types/identifier.go index 7ca91fa83..7e3811cc4 100644 --- a/services/did/types/identifier.go +++ b/services/did/types/identifier.go @@ -3,8 +3,8 @@ package types import ( "github.com/sonr-io/kryptology/pkg/accumulator" - "github.com/sonr-io/core/internal/crypto" - identitytypes "github.com/sonr-io/core/x/identity/types" + "sonr.io/core/internal/crypto" + identitytypes "sonr.io/core/x/identity/types" ) // DIDIdentifier is a DID identifier diff --git a/services/did/types/method.go b/services/did/types/method.go index 9efb3b5f5..5dbc16b43 100644 --- a/services/did/types/method.go +++ b/services/did/types/method.go @@ -1,6 +1,6 @@ package types -import "github.com/sonr-io/core/internal/crypto" +import "sonr.io/core/internal/crypto" // DIDMethod is a DID method type DIDMethod string diff --git a/services/did/types/resource.go b/services/did/types/resource.go index 6e9d72d35..df386a4a2 100644 --- a/services/did/types/resource.go +++ b/services/did/types/resource.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/sonr-io/core/internal/crypto" + "sonr.io/core/internal/crypto" ) // TxResponse is a type alias for sdk.TxResponse diff --git a/services/did/types/store.go b/services/did/types/store.go index abb621dfc..da1cec96f 100644 --- a/services/did/types/store.go +++ b/services/did/types/store.go @@ -6,7 +6,7 @@ import ( "lukechampine.com/blake3" - "github.com/sonr-io/core/internal/sfs" + "sonr.io/core/internal/sfs" "github.com/spf13/viper" ) diff --git a/services/did/types/url.go b/services/did/types/url.go index b74faf4c6..74db9cd8c 100644 --- a/services/did/types/url.go +++ b/services/did/types/url.go @@ -5,7 +5,7 @@ import ( "strings" txtypes "github.com/cosmos/cosmos-sdk/types/tx" - "github.com/sonr-io/core/types/webauthn" + "sonr.io/core/types/webauthn" ) // Credential is a webauthn credential diff --git a/services/mpc/base/account.go b/services/mpc/base/account.go index fe343107e..d4935d0ec 100644 --- a/services/mpc/base/account.go +++ b/services/mpc/base/account.go @@ -4,11 +4,11 @@ import ( "encoding/json" "fmt" - "github.com/sonr-io/core/internal/crypto" + "sonr.io/core/internal/crypto" secp256k1 "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1" - algo "github.com/sonr-io/core/services/mpc/protocol/dkls" - v1types "github.com/sonr-io/core/services/mpc/types" + algo "sonr.io/core/services/mpc/protocol/dkls" + v1types "sonr.io/core/services/mpc/types" ) type EncryptionKey = *secp256k1.PubKey diff --git a/services/mpc/mpc.go b/services/mpc/mpc.go index 5e6665172..c887e966a 100644 --- a/services/mpc/mpc.go +++ b/services/mpc/mpc.go @@ -1,11 +1,11 @@ package mpc import ( - "github.com/sonr-io/core/internal/crypto" - "github.com/sonr-io/core/services/mpc/base" - models "github.com/sonr-io/core/services/mpc/base" - v1algo "github.com/sonr-io/core/services/mpc/protocol/dkls" - v1types "github.com/sonr-io/core/services/mpc/types" + "sonr.io/core/internal/crypto" + "sonr.io/core/services/mpc/base" + models "sonr.io/core/services/mpc/base" + v1algo "sonr.io/core/services/mpc/protocol/dkls" + v1types "sonr.io/core/services/mpc/types" ) // AccountV1 is a type alias for the AccountV1 struct in the base package. diff --git a/services/mpc/mpc_test.go b/services/mpc/mpc_test.go index acc97b775..8bcc380b2 100644 --- a/services/mpc/mpc_test.go +++ b/services/mpc/mpc_test.go @@ -4,8 +4,8 @@ import ( "strings" "testing" - "github.com/sonr-io/core/internal/crypto" - v1 "github.com/sonr-io/core/services/mpc/base" + "sonr.io/core/internal/crypto" + v1 "sonr.io/core/services/mpc/base" "github.com/stretchr/testify/assert" ) diff --git a/services/mpc/protocol/dkls/dkls.go b/services/mpc/protocol/dkls/dkls.go index 8e26652df..6410acd49 100644 --- a/services/mpc/protocol/dkls/dkls.go +++ b/services/mpc/protocol/dkls/dkls.go @@ -3,7 +3,7 @@ package dkls import ( "fmt" - mpcv1types "github.com/sonr-io/core/services/mpc/types" + mpcv1types "sonr.io/core/services/mpc/types" "github.com/sonr-io/kryptology/pkg/core/curves" "github.com/sonr-io/kryptology/pkg/core/protocol" dklsv1 "github.com/sonr-io/kryptology/pkg/tecdsa/dkls/v1" diff --git a/services/mpc/protocol/dkls/dkls_test.go b/services/mpc/protocol/dkls/dkls_test.go index 21e4af40d..3a03b19c5 100644 --- a/services/mpc/protocol/dkls/dkls_test.go +++ b/services/mpc/protocol/dkls/dkls_test.go @@ -3,8 +3,8 @@ package dkls_test import ( "testing" - "github.com/sonr-io/core/internal/crypto" - "github.com/sonr-io/core/services/mpc/protocol/dkls" + "sonr.io/core/internal/crypto" + "sonr.io/core/services/mpc/protocol/dkls" "github.com/stretchr/testify/assert" ) diff --git a/services/mpc/types/keyshare.go b/services/mpc/types/keyshare.go index 4bfa823bc..09697d83d 100644 --- a/services/mpc/types/keyshare.go +++ b/services/mpc/types/keyshare.go @@ -5,8 +5,8 @@ import ( "fmt" "math/big" - sonrcrypto "github.com/sonr-io/core/internal/crypto" - "github.com/sonr-io/core/types/crypto" + sonrcrypto "sonr.io/core/internal/crypto" + "sonr.io/core/types/crypto" "github.com/sonr-io/kryptology/pkg/core/curves" "github.com/sonr-io/kryptology/pkg/core/protocol" dklsv1 "github.com/sonr-io/kryptology/pkg/tecdsa/dkls/v1" diff --git a/services/mpc/types/kss.go b/services/mpc/types/kss.go index 3a4e62c88..f81cba18a 100644 --- a/services/mpc/types/kss.go +++ b/services/mpc/types/kss.go @@ -8,7 +8,7 @@ import ( dklsv1 "github.com/sonr-io/kryptology/pkg/tecdsa/dkls/v1" secp256k1 "github.com/cosmos/cosmos-sdk/crypto/keys/secp256k1" - "github.com/sonr-io/core/internal/crypto" + "sonr.io/core/internal/crypto" "golang.org/x/crypto/sha3" ) diff --git a/services/plugin/cache.go b/services/plugin/cache.go index 8708c8dd6..d38d9bffc 100644 --- a/services/plugin/cache.go +++ b/services/plugin/cache.go @@ -8,7 +8,7 @@ import ( hplugin "github.com/hashicorp/go-plugin" - "github.com/sonr-io/core/pkg/cache" + "sonr.io/core/pkg/cache" ) const ( diff --git a/services/plugin/interface_test.go b/services/plugin/interface_test.go index f18b290a1..70227aed6 100755 --- a/services/plugin/interface_test.go +++ b/services/plugin/interface_test.go @@ -7,7 +7,7 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - "github.com/sonr-io/core/services/plugin" + "sonr.io/core/services/plugin" ) func TestCommandToCobraCommand(t *testing.T) { diff --git a/services/plugin/plugin.go b/services/plugin/plugin.go index 839ca96de..7c9237d07 100644 --- a/services/plugin/plugin.go +++ b/services/plugin/plugin.go @@ -18,14 +18,14 @@ import ( hplugin "github.com/hashicorp/go-plugin" "github.com/pkg/errors" - "github.com/sonr-io/core/config" - pluginsconfig "github.com/sonr-io/core/config/plugins" - "github.com/sonr-io/core/pkg/env" - "github.com/sonr-io/core/pkg/events" - "github.com/sonr-io/core/pkg/gocmd" - "github.com/sonr-io/core/pkg/xfilepath" - "github.com/sonr-io/core/pkg/xgit" - "github.com/sonr-io/core/pkg/xurl" + "sonr.io/core/config" + pluginsconfig "sonr.io/core/config/plugins" + "sonr.io/core/pkg/env" + "sonr.io/core/pkg/events" + "sonr.io/core/pkg/gocmd" + "sonr.io/core/pkg/xfilepath" + "sonr.io/core/pkg/xgit" + "sonr.io/core/pkg/xurl" ) // PluginsPath holds the plugin cache directory. diff --git a/services/plugin/plugin_test.go b/services/plugin/plugin_test.go index 62cb96430..ae014ef45 100644 --- a/services/plugin/plugin_test.go +++ b/services/plugin/plugin_test.go @@ -17,9 +17,9 @@ import ( "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" - pluginsconfig "github.com/sonr-io/core/config/plugins" - "github.com/sonr-io/core/pkg/gocmd" - "github.com/sonr-io/core/pkg/gomodule" + pluginsconfig "sonr.io/core/config/plugins" + "sonr.io/core/pkg/gocmd" + "sonr.io/core/pkg/gomodule" ) func TestNewPlugin(t *testing.T) { diff --git a/services/plugin/scaffold.go b/services/plugin/scaffold.go index 1ff9c5cfb..ae69ef3c9 100644 --- a/services/plugin/scaffold.go +++ b/services/plugin/scaffold.go @@ -11,8 +11,8 @@ import ( "github.com/gobuffalo/plush/v4" "github.com/pkg/errors" - "github.com/sonr-io/core/pkg/gocmd" - "github.com/sonr-io/core/pkg/xgenny" + "sonr.io/core/pkg/gocmd" + "sonr.io/core/pkg/xgenny" ) //go:embed template/* diff --git a/testutil/keeper/domain.go b/testutil/keeper/domain.go index c8d51a756..57ae36982 100644 --- a/testutil/keeper/domain.go +++ b/testutil/keeper/domain.go @@ -12,8 +12,8 @@ import ( storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" typesparams "github.com/cosmos/cosmos-sdk/x/params/types" - "github.com/sonr-io/core/x/domain/keeper" - "github.com/sonr-io/core/x/domain/types" + "sonr.io/core/x/domain/keeper" + "sonr.io/core/x/domain/types" "github.com/stretchr/testify/require" ) diff --git a/testutil/keeper/identity.go b/testutil/keeper/identity.go index 699bc5586..05aa0db5c 100644 --- a/testutil/keeper/identity.go +++ b/testutil/keeper/identity.go @@ -3,8 +3,8 @@ package keeper import ( "testing" - "github.com/sonr-io/core/x/identity/keeper" - "github.com/sonr-io/core/x/identity/types" + "sonr.io/core/x/identity/keeper" + "sonr.io/core/x/identity/types" tmdb "github.com/cometbft/cometbft-db" "github.com/cometbft/cometbft/libs/log" diff --git a/testutil/keeper/service.go b/testutil/keeper/service.go index 9884b649c..2cd7f702e 100644 --- a/testutil/keeper/service.go +++ b/testutil/keeper/service.go @@ -12,8 +12,8 @@ import ( storetypes "github.com/cosmos/cosmos-sdk/store/types" sdk "github.com/cosmos/cosmos-sdk/types" typesparams "github.com/cosmos/cosmos-sdk/x/params/types" - "github.com/sonr-io/core/x/service/keeper" - "github.com/sonr-io/core/x/service/types" + "sonr.io/core/x/service/keeper" + "sonr.io/core/x/service/types" "github.com/stretchr/testify/require" ) diff --git a/testutil/network/network.go b/testutil/network/network.go index 18adae145..609d2f0ec 100644 --- a/testutil/network/network.go +++ b/testutil/network/network.go @@ -18,8 +18,8 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" "github.com/stretchr/testify/require" - "github.com/sonr-io/core/app" - "github.com/sonr-io/core/internal/highway" + "sonr.io/core/app" + "sonr.io/core/internal/highway" ) type ( diff --git a/types/crypto/coin.pb.go b/types/crypto/coin.pb.go index cda3d32cb..8b4075db2 100644 --- a/types/crypto/coin.pb.go +++ b/types/crypto/coin.pb.go @@ -154,28 +154,27 @@ func init() { func init() { proto.RegisterFile("common/crypto/coin.proto", fileDescriptor_0aeeac340f2c4abc) } var fileDescriptor_0aeeac340f2c4abc = []byte{ - // 323 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x54, 0x91, 0xcb, 0x4a, 0xc3, 0x40, - 0x18, 0x85, 0x33, 0x6d, 0xed, 0xe5, 0xb7, 0xc5, 0xe9, 0xa8, 0x90, 0x85, 0x84, 0x22, 0x2e, 0x8a, - 0x60, 0xb3, 0x70, 0x2f, 0xf4, 0x32, 0xda, 0x60, 0x9b, 0x48, 0x32, 0x82, 0xba, 0x91, 0x74, 0x1a, - 0x6a, 0xa0, 0xcd, 0x84, 0x24, 0x5d, 0xe4, 0x2d, 0x7c, 0x2c, 0x97, 0x5d, 0xba, 0x94, 0xf6, 0x01, - 0x7c, 0x05, 0x31, 0xb1, 0x91, 0xd9, 0xfd, 0xf3, 0x9d, 0xef, 0x30, 0x8b, 0x03, 0x2a, 0x17, 0xab, - 0x95, 0x08, 0x74, 0x1e, 0xa5, 0x61, 0x22, 0x74, 0x2e, 0xfc, 0xa0, 0x17, 0x46, 0x22, 0x11, 0xa4, - 0x95, 0x27, 0xbd, 0x3c, 0x39, 0x7f, 0x86, 0xc3, 0x3e, 0xe7, 0x62, 0x1d, 0x24, 0x23, 0x37, 0x71, - 0x89, 0x0a, 0x35, 0x77, 0x3e, 0x8f, 0xbc, 0x38, 0x56, 0x51, 0x07, 0x75, 0x1b, 0xf6, 0xfe, 0x49, - 0x08, 0x54, 0xdc, 0xe5, 0x42, 0xa8, 0xa5, 0x0c, 0x67, 0x37, 0x39, 0x83, 0x46, 0xb8, 0x9e, 0x2d, - 0x7d, 0x7e, 0xef, 0xa5, 0x6a, 0xb9, 0x83, 0xba, 0x4d, 0xfb, 0x1f, 0x5c, 0x7e, 0x23, 0xa8, 0x0f, - 0x85, 0x1f, 0xb0, 0x34, 0xf4, 0xc8, 0x09, 0xe0, 0xfd, 0xfd, 0x3a, 0x30, 0xd8, 0xd0, 0x32, 0x4c, - 0xac, 0x48, 0x94, 0x51, 0x87, 0x99, 0x94, 0x61, 0x44, 0x4e, 0xa1, 0x5d, 0xd0, 0x89, 0xc1, 0x68, - 0x26, 0x97, 0x48, 0x1b, 0x5a, 0x05, 0x1e, 0x59, 0x77, 0x14, 0x97, 0x25, 0x93, 0xb2, 0x31, 0xb5, - 0xe9, 0xe3, 0x14, 0x57, 0x24, 0xd3, 0xb1, 0x4c, 0x1b, 0x1f, 0x90, 0x63, 0x38, 0x2a, 0xd0, 0xd0, - 0x72, 0xa6, 0x96, 0x83, 0xab, 0x52, 0xfd, 0xd6, 0x98, 0xe4, 0x1f, 0xd5, 0x08, 0x86, 0x66, 0x81, - 0xc7, 0xa6, 0x83, 0xeb, 0x52, 0xdb, 0xb1, 0x26, 0x7d, 0xb3, 0x8f, 0x1b, 0x92, 0xf6, 0x64, 0x3f, - 0x60, 0x18, 0xdc, 0x7c, 0x6c, 0x35, 0xb4, 0xd9, 0x6a, 0xe8, 0x6b, 0xab, 0xa1, 0xf7, 0x9d, 0xa6, - 0x6c, 0x76, 0x9a, 0xf2, 0xb9, 0xd3, 0x94, 0x97, 0x8b, 0x85, 0x9f, 0xbc, 0xad, 0x67, 0x3d, 0x2e, - 0x56, 0x7a, 0x2c, 0x82, 0xe8, 0xca, 0xff, 0x1d, 0x25, 0xf2, 0xf4, 0x24, 0x0d, 0xbd, 0xf8, 0x6f, - 0xa6, 0x59, 0x35, 0x9b, 0xe8, 0xfa, 0x27, 0x00, 0x00, 0xff, 0xff, 0xb5, 0x44, 0xab, 0xa6, 0xbe, - 0x01, 0x00, 0x00, + // 314 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x54, 0x91, 0xcd, 0x4e, 0xf2, 0x40, + 0x18, 0x85, 0x3b, 0xc0, 0xc7, 0xcf, 0xfb, 0x41, 0x1c, 0x46, 0x4d, 0x6a, 0x62, 0x1a, 0xe2, 0x8a, + 0xb8, 0x80, 0x05, 0x57, 0xc0, 0xcf, 0x28, 0x8d, 0xd0, 0x31, 0x9d, 0x31, 0x51, 0x37, 0xa6, 0x0c, + 0x8d, 0x69, 0x02, 0x9d, 0xa6, 0x2d, 0x8b, 0xde, 0x85, 0x97, 0xe5, 0x92, 0xa5, 0x4b, 0x03, 0x17, + 0xe0, 0x2d, 0x18, 0x8b, 0xd4, 0xcc, 0xee, 0x9d, 0xe7, 0x3c, 0x27, 0xb3, 0x38, 0x60, 0x4a, 0xb5, + 0x5e, 0xab, 0xb0, 0x2f, 0xe3, 0x2c, 0x4a, 0x55, 0x5f, 0xaa, 0x20, 0xec, 0x45, 0xb1, 0x4a, 0x15, + 0x69, 0x1d, 0x92, 0xde, 0x21, 0xb9, 0x7a, 0x82, 0xff, 0x43, 0x29, 0xd5, 0x26, 0x4c, 0x27, 0x5e, + 0xea, 0x11, 0x13, 0x6a, 0xde, 0x72, 0x19, 0xfb, 0x49, 0x62, 0xa2, 0x0e, 0xea, 0x36, 0xdc, 0xe3, + 0x93, 0x10, 0xa8, 0x78, 0xab, 0x57, 0x65, 0x96, 0x72, 0x9c, 0xdf, 0xe4, 0x12, 0x1a, 0xd1, 0x66, + 0xb1, 0x0a, 0xe4, 0x9d, 0x9f, 0x99, 0xe5, 0x0e, 0xea, 0x36, 0xdd, 0x3f, 0x70, 0xfd, 0x85, 0xa0, + 0x3e, 0x56, 0x41, 0x28, 0xb2, 0xc8, 0x27, 0x67, 0x80, 0x8f, 0xf7, 0xcb, 0xc8, 0x16, 0x63, 0x66, + 0x3b, 0xd8, 0xd0, 0xa8, 0xa0, 0x5c, 0x38, 0x54, 0x60, 0x44, 0xce, 0xa1, 0x5d, 0xd0, 0x99, 0x2d, + 0x68, 0x2e, 0x97, 0x48, 0x1b, 0x5a, 0x05, 0x9e, 0xb0, 0x5b, 0x8a, 0xcb, 0x9a, 0x49, 0xc5, 0x94, + 0xba, 0xf4, 0x61, 0x8e, 0x2b, 0x9a, 0xc9, 0x99, 0xe3, 0xe2, 0x7f, 0xe4, 0x14, 0x4e, 0x0a, 0x34, + 0x66, 0x7c, 0xce, 0x38, 0xae, 0x6a, 0xf5, 0x1b, 0x7b, 0x76, 0xf8, 0xa8, 0x46, 0x30, 0x34, 0x0b, + 0x3c, 0x75, 0x38, 0xae, 0x6b, 0x6d, 0xce, 0x66, 0x43, 0x67, 0x88, 0x1b, 0x9a, 0xf6, 0xe8, 0xde, + 0x63, 0x18, 0x0d, 0xde, 0x77, 0x16, 0xda, 0xee, 0x2c, 0xf4, 0xb9, 0xb3, 0xd0, 0xdb, 0xde, 0x32, + 0xb6, 0x7b, 0xcb, 0xf8, 0xd8, 0x5b, 0xc6, 0xf3, 0x45, 0xa2, 0xc2, 0xb8, 0x17, 0xfc, 0x2c, 0x11, + 0xfb, 0xfd, 0x34, 0x8b, 0xfc, 0xe4, 0x77, 0x9b, 0x45, 0x35, 0xdf, 0x65, 0xf0, 0x1d, 0x00, 0x00, + 0xff, 0xff, 0xa9, 0xc9, 0x39, 0x66, 0xb3, 0x01, 0x00, 0x00, } func (m *AccountData) Marshal() (dAtA []byte, err error) { diff --git a/types/crypto/ssi.pb.go b/types/crypto/ssi.pb.go index a9fba1e07..002eff6e8 100644 --- a/types/crypto/ssi.pb.go +++ b/types/crypto/ssi.pb.go @@ -382,51 +382,50 @@ func init() { func init() { proto.RegisterFile("common/crypto/ssi.proto", fileDescriptor_b4d65a10f7585d94) } var fileDescriptor_b4d65a10f7585d94 = []byte{ - // 691 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x94, 0x4d, 0x4f, 0xdb, 0x4c, - 0x10, 0xc7, 0xe3, 0x38, 0x09, 0x0f, 0xc3, 0xcb, 0x93, 0x2e, 0x14, 0x0c, 0x6a, 0xa3, 0x40, 0x41, - 0x4d, 0x11, 0x24, 0xc4, 0x15, 0x15, 0x70, 0xa8, 0x14, 0x12, 0xd3, 0xa6, 0xa8, 0x21, 0xb2, 0x03, - 0x88, 0x5e, 0x2c, 0xc7, 0x59, 0x60, 0x29, 0xf1, 0x5a, 0xf6, 0x86, 0x92, 0x6f, 0xd1, 0x2f, 0xd4, - 0x53, 0x2f, 0x3d, 0x72, 0xec, 0xb1, 0x82, 0x63, 0x4f, 0xfd, 0x06, 0xd5, 0xae, 0xed, 0x24, 0x44, - 0xa9, 0xd4, 0x5e, 0xa2, 0x79, 0xf9, 0xcd, 0x64, 0xfe, 0xe3, 0xb1, 0x61, 0xde, 0xa6, 0xed, 0x36, - 0x75, 0x0a, 0xb6, 0xd7, 0x75, 0x19, 0x2d, 0xf8, 0x3e, 0xc9, 0xbb, 0x1e, 0x65, 0x14, 0x4d, 0x05, - 0x89, 0x7c, 0x90, 0x58, 0xfe, 0x22, 0x41, 0xb2, 0xee, 0x51, 0x7a, 0x86, 0xd6, 0x21, 0xc1, 0xba, - 0x2e, 0x56, 0xa4, 0xac, 0x94, 0x9b, 0x56, 0x95, 0xfc, 0x03, 0x2e, 0x2f, 0x98, 0x46, 0xd7, 0xc5, - 0xba, 0xa0, 0xd0, 0x33, 0x98, 0x72, 0x79, 0xc8, 0x74, 0x3b, 0x9e, 0x4b, 0x7d, 0xac, 0xc4, 0xb3, - 0x52, 0x6e, 0x5c, 0x9f, 0x14, 0xc1, 0x7a, 0x10, 0x43, 0x05, 0x98, 0xb9, 0xc6, 0x1e, 0x39, 0x23, - 0xb6, 0xc5, 0x08, 0x75, 0xcc, 0x36, 0x66, 0x17, 0xb4, 0xa5, 0xc8, 0x02, 0x45, 0x83, 0xa9, 0xf7, - 0x22, 0x83, 0x14, 0x18, 0xb3, 0x3d, 0x6c, 0x31, 0xdc, 0x52, 0x12, 0x02, 0x8a, 0x5c, 0x34, 0x07, - 0xa9, 0x16, 0x6d, 0x5b, 0xc4, 0x51, 0x92, 0x22, 0x11, 0x7a, 0xcb, 0xa7, 0xb0, 0xf0, 0xce, 0x38, - 0xac, 0x9d, 0xe0, 0xa6, 0x41, 0xce, 0x1d, 0x8b, 0x75, 0x3c, 0xac, 0x6e, 0xaa, 0x9b, 0x81, 0xa4, - 0x35, 0x48, 0x8a, 0x79, 0x84, 0xa6, 0x09, 0x75, 0x76, 0x94, 0x26, 0x3d, 0x40, 0x50, 0x1a, 0xe4, - 0xcb, 0x4f, 0x7e, 0x28, 0x83, 0x9b, 0xcb, 0x3f, 0x65, 0x98, 0x3d, 0x16, 0x33, 0x5a, 0xcd, 0x2b, - 0x5c, 0xf6, 0x70, 0x0b, 0x3b, 0x8c, 0x58, 0x57, 0x68, 0x1a, 0xe2, 0xa4, 0x25, 0x7a, 0x8e, 0xeb, - 0x71, 0x12, 0x4c, 0x4d, 0x1d, 0x86, 0x6f, 0x98, 0x12, 0xcf, 0xca, 0x62, 0xea, 0xc0, 0x45, 0x28, - 0xdc, 0xa9, 0x2c, 0xc2, 0xc1, 0xe6, 0xe6, 0x20, 0x45, 0x7c, 0xbf, 0x83, 0xbd, 0x50, 0x62, 0xe8, - 0xf1, 0x8d, 0x72, 0xcb, 0x72, 0x6c, 0x6c, 0xb6, 0x2c, 0x86, 0x43, 0xa1, 0x93, 0x51, 0xb0, 0x62, - 0x31, 0x8c, 0x9e, 0xc3, 0xff, 0xf8, 0xc6, 0x25, 0x5e, 0xb0, 0x4f, 0x81, 0xa5, 0x04, 0x36, 0xdd, - 0x0f, 0x0b, 0x90, 0x00, 0xb2, 0x7b, 0x13, 0x9b, 0x7e, 0xa7, 0x79, 0x89, 0x6d, 0xa6, 0x8c, 0x65, - 0xe5, 0xdc, 0x84, 0xba, 0x3b, 0xb4, 0x87, 0x51, 0x22, 0xf3, 0x7d, 0xd3, 0x08, 0x8a, 0x35, 0x87, - 0x79, 0x5d, 0xfd, 0x91, 0x3d, 0x1c, 0x47, 0x95, 0x68, 0xcb, 0xff, 0x89, 0xee, 0xf9, 0xbf, 0xe9, - 0x2e, 0x56, 0x1f, 0x74, 0x0c, 0x8a, 0x17, 0x2b, 0x30, 0x37, 0xfa, 0x2f, 0xf9, 0x93, 0xf9, 0x88, - 0xbb, 0xe1, 0xbe, 0xb9, 0x89, 0x66, 0x21, 0x79, 0x6d, 0x5d, 0x75, 0xa2, 0xa3, 0x0b, 0x9c, 0xdd, - 0xf8, 0xb6, 0xb4, 0xb8, 0x0d, 0xd0, 0x6f, 0xfd, 0x2f, 0x95, 0x6b, 0xbf, 0x24, 0x18, 0x3b, 0xc0, - 0x5d, 0x7e, 0xe2, 0x68, 0x1e, 0x66, 0x42, 0xd3, 0x3c, 0xaa, 0x19, 0x75, 0xad, 0x5c, 0xdd, 0xaf, - 0x6a, 0x95, 0x74, 0x0c, 0x3d, 0x85, 0x85, 0x28, 0xc1, 0xaf, 0xce, 0x3c, 0xd1, 0xf6, 0xcc, 0x03, - 0xed, 0xd4, 0xe4, 0x27, 0x97, 0x96, 0xd0, 0x0b, 0x58, 0x8d, 0xd2, 0x5a, 0x45, 0xdd, 0xda, 0x2a, - 0xee, 0x98, 0xc7, 0x9a, 0x5e, 0xdd, 0xaf, 0x96, 0x4b, 0x8d, 0xea, 0x61, 0x2d, 0x44, 0x8b, 0xdb, - 0xe9, 0x38, 0x2a, 0xc2, 0x46, 0x0f, 0x2d, 0x57, 0x8c, 0x92, 0x69, 0x68, 0xe5, 0xba, 0xba, 0xf5, - 0xea, 0xa0, 0x38, 0xb2, 0x64, 0x27, 0x2d, 0xa3, 0x55, 0x58, 0x8a, 0x4a, 0x74, 0xa3, 0xf4, 0x87, - 0xce, 0x89, 0xc1, 0x21, 0xf8, 0x78, 0xa5, 0xa3, 0xc6, 0xdb, 0x9a, 0xf8, 0xd5, 0x6a, 0x8d, 0x08, - 0x17, 0x68, 0x72, 0xed, 0xab, 0x04, 0xe3, 0xbd, 0x17, 0x1b, 0x2d, 0xc0, 0xe3, 0x9e, 0x33, 0xa4, - 0x7b, 0x15, 0x96, 0xfa, 0xa9, 0x9e, 0x72, 0xa3, 0xfa, 0xa6, 0x56, 0x6a, 0x1c, 0xe9, 0x5a, 0xa4, - 0x7f, 0x05, 0xb2, 0x7d, 0x2c, 0xda, 0xc0, 0x20, 0x25, 0xa4, 0xaf, 0x43, 0x6e, 0x80, 0x1a, 0x12, - 0xff, 0x80, 0xe6, 0xaa, 0xb3, 0xf0, 0xa4, 0x4f, 0x73, 0xdd, 0x43, 0xfd, 0x12, 0x7b, 0xaf, 0xbf, - 0xdd, 0x65, 0xa4, 0xdb, 0xbb, 0x8c, 0xf4, 0xe3, 0x2e, 0x23, 0x7d, 0xbe, 0xcf, 0xc4, 0x6e, 0xef, - 0x33, 0xb1, 0xef, 0xf7, 0x99, 0xd8, 0x87, 0x95, 0x73, 0xc2, 0x2e, 0x3a, 0x4d, 0x7e, 0x90, 0x05, - 0x9f, 0x3a, 0xde, 0x06, 0xa1, 0x05, 0x9b, 0x7a, 0xb8, 0xc0, 0x5f, 0x44, 0x3f, 0xfc, 0x36, 0x36, - 0x53, 0xe2, 0xc3, 0xf8, 0xf2, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0x6d, 0xa1, 0x1f, 0x45, 0x33, - 0x05, 0x00, 0x00, + // 683 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x94, 0xcf, 0x4e, 0xdb, 0x4a, + 0x14, 0xc6, 0xe3, 0x38, 0x09, 0x97, 0xc3, 0x9f, 0x9b, 0x3b, 0x70, 0xc1, 0x41, 0xf7, 0x46, 0x81, + 0x16, 0x35, 0x45, 0xd4, 0x21, 0x46, 0x54, 0xc0, 0x2e, 0x24, 0xa6, 0x4d, 0x51, 0x43, 0x64, 0x07, + 0x10, 0xdd, 0x58, 0x8e, 0x33, 0xb4, 0xa6, 0xc4, 0x63, 0xd9, 0x13, 0x4a, 0xde, 0xa2, 0x2f, 0xd4, + 0x55, 0x37, 0x5d, 0xb2, 0xec, 0xb2, 0x82, 0x65, 0x57, 0x7d, 0x83, 0x6a, 0x66, 0xec, 0x24, 0x44, + 0xa9, 0xd4, 0x6e, 0xa2, 0x39, 0xe7, 0xfc, 0xce, 0xc9, 0xf9, 0x3e, 0x8f, 0x0d, 0xcb, 0x0e, 0xe9, + 0x76, 0x89, 0x57, 0x72, 0x82, 0xbe, 0x4f, 0x49, 0x29, 0x0c, 0x5d, 0xd5, 0x0f, 0x08, 0x25, 0x68, + 0x4e, 0x14, 0x54, 0x51, 0x58, 0xfb, 0x24, 0x41, 0xba, 0x19, 0x10, 0x72, 0x81, 0x36, 0x21, 0x45, + 0xfb, 0x3e, 0x56, 0xa4, 0x82, 0x54, 0x9c, 0xd7, 0x14, 0xf5, 0x01, 0xa7, 0x72, 0xa6, 0xd5, 0xf7, + 0xb1, 0xc1, 0x29, 0xf4, 0x08, 0xe6, 0x7c, 0x96, 0xb2, 0xfc, 0x5e, 0xe0, 0x93, 0x10, 0x2b, 0xc9, + 0x82, 0x54, 0x9c, 0x36, 0x66, 0x79, 0xb2, 0x29, 0x72, 0xa8, 0x04, 0x0b, 0xd7, 0x38, 0x70, 0x2f, + 0x5c, 0xc7, 0xa6, 0x2e, 0xf1, 0xac, 0x2e, 0xa6, 0xef, 0x48, 0x47, 0x91, 0x39, 0x8a, 0x46, 0x4b, + 0xaf, 0x79, 0x05, 0x29, 0x30, 0xe5, 0x04, 0xd8, 0xa6, 0xb8, 0xa3, 0xa4, 0x38, 0x14, 0x87, 0x68, + 0x09, 0x32, 0x1d, 0xd2, 0xb5, 0x5d, 0x4f, 0x49, 0xf3, 0x42, 0x14, 0xad, 0x9d, 0x43, 0xee, 0x95, + 0x79, 0xdc, 0x38, 0xc3, 0x6d, 0xd3, 0x7d, 0xeb, 0xd9, 0xb4, 0x17, 0x60, 0x6d, 0x4b, 0xdb, 0x12, + 0x92, 0x36, 0x20, 0xcd, 0xf7, 0xe1, 0x9a, 0x66, 0xb4, 0xc5, 0x49, 0x9a, 0x0c, 0x81, 0xa0, 0x2c, + 0xc8, 0x97, 0x1f, 0xc2, 0x48, 0x06, 0x3b, 0xae, 0x7d, 0x97, 0x61, 0xf1, 0x94, 0xef, 0x68, 0xb7, + 0xaf, 0x70, 0x35, 0xc0, 0x1d, 0xec, 0x51, 0xd7, 0xbe, 0x42, 0xf3, 0x90, 0x74, 0x3b, 0x7c, 0xe6, + 0xb4, 0x91, 0x74, 0xc5, 0xd6, 0xc4, 0xa3, 0xf8, 0x86, 0x2a, 0xc9, 0x82, 0xcc, 0xb7, 0x16, 0x21, + 0x42, 0x91, 0xa7, 0x32, 0x4f, 0x0b, 0xe7, 0x96, 0x20, 0xe3, 0x86, 0x61, 0x0f, 0x07, 0x91, 0xc4, + 0x28, 0x62, 0x8e, 0xb2, 0x93, 0xed, 0x39, 0xd8, 0xea, 0xd8, 0x14, 0x47, 0x42, 0x67, 0xe3, 0x64, + 0xcd, 0xa6, 0x18, 0x3d, 0x81, 0xbf, 0xf1, 0x8d, 0xef, 0x06, 0xc2, 0x4f, 0x8e, 0x65, 0x38, 0x36, + 0x3f, 0x4c, 0x73, 0xd0, 0x05, 0xe4, 0x0c, 0x36, 0xb6, 0xc2, 0x5e, 0xfb, 0x12, 0x3b, 0x54, 0x99, + 0x2a, 0xc8, 0xc5, 0x19, 0x6d, 0x7f, 0xcc, 0x87, 0x49, 0x22, 0xd5, 0xe1, 0xd1, 0x14, 0xcd, 0xba, + 0x47, 0x83, 0xbe, 0xf1, 0x8f, 0x33, 0x9e, 0x47, 0xb5, 0xd8, 0xe5, 0xbf, 0xf8, 0x74, 0xf5, 0x77, + 0xa6, 0x73, 0xeb, 0xc5, 0x44, 0xd1, 0xbc, 0x52, 0x83, 0xa5, 0xc9, 0x7f, 0xc9, 0x9e, 0xcc, 0x7b, + 0xdc, 0x8f, 0xfc, 0x66, 0x47, 0xb4, 0x08, 0xe9, 0x6b, 0xfb, 0xaa, 0x17, 0x5f, 0x3a, 0x11, 0xec, + 0x27, 0x77, 0xa5, 0x95, 0x5d, 0x80, 0xe1, 0xe8, 0x3f, 0xe9, 0xdc, 0xf8, 0x21, 0xc1, 0xd4, 0x11, + 0xee, 0xb3, 0x2b, 0x8e, 0x96, 0x61, 0x21, 0x3a, 0x5a, 0x27, 0x0d, 0xb3, 0xa9, 0x57, 0xeb, 0x87, + 0x75, 0xbd, 0x96, 0x4d, 0xa0, 0xff, 0x21, 0x17, 0x17, 0xd8, 0xad, 0xb3, 0xce, 0xf4, 0x03, 0xeb, + 0x48, 0x3f, 0xb7, 0xd8, 0x95, 0xcb, 0x4a, 0xe8, 0x29, 0xac, 0xc7, 0x65, 0xbd, 0xa6, 0xed, 0xec, + 0x94, 0xf7, 0xac, 0x53, 0xdd, 0xa8, 0x1f, 0xd6, 0xab, 0x95, 0x56, 0xfd, 0xb8, 0x11, 0xa1, 0xe5, + 0xdd, 0x6c, 0x12, 0x95, 0xe1, 0xd9, 0x00, 0xad, 0xd6, 0xcc, 0x8a, 0x65, 0xea, 0xd5, 0xa6, 0xb6, + 0xf3, 0xfc, 0xa8, 0x3c, 0xb1, 0x65, 0x2f, 0x2b, 0xa3, 0x75, 0x58, 0x8d, 0x5b, 0x0c, 0xb3, 0xf2, + 0x8b, 0xc9, 0xa9, 0xd1, 0x25, 0xd8, 0x7a, 0x95, 0x93, 0xd6, 0xcb, 0x06, 0xff, 0xd5, 0x1b, 0xad, + 0x18, 0xe7, 0x68, 0x7a, 0xe3, 0xb3, 0x04, 0xd3, 0x83, 0x17, 0x1b, 0xe5, 0xe0, 0xdf, 0x41, 0x30, + 0xa6, 0x7b, 0x1d, 0x56, 0x87, 0xa5, 0x81, 0x72, 0xb3, 0xfe, 0xa2, 0x51, 0x69, 0x9d, 0x18, 0x7a, + 0xac, 0xff, 0x31, 0x14, 0x86, 0x58, 0xec, 0xc0, 0x28, 0xc5, 0xa5, 0x6f, 0x42, 0x71, 0x84, 0x1a, + 0x13, 0xff, 0x80, 0x66, 0xaa, 0x0b, 0xf0, 0xdf, 0x90, 0x66, 0xba, 0xc7, 0xe6, 0xa5, 0x0e, 0xb6, + 0xbf, 0xdc, 0xe5, 0xa5, 0xdb, 0xbb, 0xbc, 0xf4, 0xed, 0x2e, 0x2f, 0x7d, 0xbc, 0xcf, 0x27, 0x6e, + 0xef, 0xf3, 0x89, 0xaf, 0xf7, 0xf9, 0xc4, 0x9b, 0x5c, 0x48, 0xbc, 0x40, 0x75, 0x49, 0xc9, 0x21, + 0x01, 0x2e, 0xb1, 0xb7, 0x2f, 0x8c, 0x3e, 0x88, 0xed, 0x0c, 0xff, 0x1a, 0x6e, 0xff, 0x0c, 0x00, + 0x00, 0xff, 0xff, 0x1f, 0x0a, 0x9c, 0x78, 0x28, 0x05, 0x00, 0x00, } func (m *Proof) Marshal() (dAtA []byte, err error) { diff --git a/types/crypto/vc.pb.go b/types/crypto/vc.pb.go index 09b77c805..f68088e75 100644 --- a/types/crypto/vc.pb.go +++ b/types/crypto/vc.pb.go @@ -82,18 +82,18 @@ func init() { func init() { proto.RegisterFile("common/crypto/vc.proto", fileDescriptor_64c0ba2ef76e413c) } var fileDescriptor_64c0ba2ef76e413c = []byte{ - // 172 bytes of a gzipped FileDescriptorProto + // 161 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x4b, 0xce, 0xcf, 0xcd, 0xcd, 0xcf, 0xd3, 0x4f, 0x2e, 0xaa, 0x2c, 0x28, 0xc9, 0xd7, 0x2f, 0x4b, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x85, 0x88, 0xeb, 0x41, 0xc4, 0x95, 0x4c, 0xb9, 0xd8, 0x02, 0x4a, 0x93, 0xbc, 0x53, 0x2b, 0x85, 0x04, 0xb8, 0x98, 0xb3, 0x53, 0x2b, 0x25, 0x18, 0x15, 0x18, 0x35, 0x78, 0x82, 0x40, 0x4c, 0x21, 0x49, 0x2e, 0x8e, 0xec, 0xd4, 0xca, 0xf8, 0x92, 0xca, 0x82, 0x54, 0x09, - 0x26, 0x05, 0x46, 0x0d, 0xce, 0x20, 0xf6, 0xec, 0xd4, 0xca, 0x90, 0xca, 0x82, 0x54, 0x27, 0xbb, + 0x26, 0x05, 0x46, 0x0d, 0xce, 0x20, 0xf6, 0xec, 0xd4, 0xca, 0x90, 0xca, 0x82, 0x54, 0x27, 0xe3, 0x13, 0x8f, 0xe4, 0x18, 0x2f, 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, 0x8e, 0x71, 0xc2, 0x63, 0x39, - 0x86, 0x0b, 0x8f, 0xe5, 0x18, 0x6e, 0x3c, 0x96, 0x63, 0x88, 0x52, 0x49, 0xcf, 0x2c, 0xc9, 0x28, - 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x2f, 0xce, 0xcf, 0x2b, 0xd2, 0xcd, 0xcc, 0xd7, 0x4f, 0xce, - 0x2f, 0x4a, 0xd5, 0x07, 0x19, 0x53, 0x0c, 0x75, 0x4e, 0x12, 0x1b, 0xd8, 0x31, 0xc6, 0x80, 0x00, - 0x00, 0x00, 0xff, 0xff, 0x83, 0x19, 0x15, 0xb6, 0xa6, 0x00, 0x00, 0x00, + 0x86, 0x0b, 0x8f, 0xe5, 0x18, 0x6e, 0x3c, 0x96, 0x63, 0x88, 0x92, 0x2c, 0xce, 0xcf, 0x2b, 0xd2, + 0xcb, 0xcc, 0xd7, 0x4f, 0xce, 0x2f, 0x4a, 0xd5, 0x07, 0xe9, 0x2d, 0x86, 0xba, 0x21, 0x89, 0x0d, + 0xec, 0x02, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0x5c, 0x54, 0xbc, 0x29, 0x9b, 0x00, 0x00, + 0x00, } func (m *PubKey) Marshal() (dAtA []byte, err error) { diff --git a/types/highway/authentication/v1/service.pb.go b/types/highway/authentication/v1/service.pb.go index d0f317c2f..3df912f39 100644 --- a/types/highway/authentication/v1/service.pb.go +++ b/types/highway/authentication/v1/service.pb.go @@ -801,60 +801,59 @@ func init() { } var fileDescriptor_a204e94b3257a8d4 = []byte{ - // 837 bytes of a gzipped FileDescriptorProto + // 829 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x56, 0xcf, 0x8f, 0xdb, 0x44, - 0x14, 0x5e, 0x6f, 0x36, 0x4e, 0xf2, 0xb6, 0x85, 0x65, 0xd2, 0x1f, 0xa9, 0x49, 0xdd, 0xc5, 0x82, - 0x66, 0xa1, 0xaa, 0x47, 0x85, 0x23, 0x27, 0x40, 0x48, 0x15, 0x42, 0x02, 0x05, 0xa8, 0x44, 0x2f, - 0xd1, 0xc4, 0x99, 0xb5, 0x67, 0x49, 0x6c, 0x33, 0x33, 0x49, 0x36, 0xaa, 0x2a, 0x21, 0x04, 0xe2, - 0xc2, 0x01, 0x04, 0x07, 0xee, 0xf0, 0xc7, 0x70, 0xac, 0xc4, 0xa5, 0x47, 0xb4, 0xcb, 0x1f, 0x82, - 0x3c, 0x9e, 0x38, 0xe3, 0x6e, 0xe2, 0xae, 0x94, 0x5b, 0xde, 0xbc, 0x2f, 0xef, 0x7d, 0xf3, 0xe6, - 0x7d, 0xef, 0x19, 0x7a, 0x11, 0x0b, 0xa3, 0x39, 0x59, 0x60, 0x32, 0x95, 0x11, 0x8d, 0x25, 0x0b, - 0x88, 0x64, 0x49, 0x8c, 0x67, 0x0f, 0xb0, 0xa0, 0x7c, 0xc6, 0x02, 0xea, 0xa7, 0x3c, 0x91, 0x09, - 0xba, 0xa5, 0x81, 0x7e, 0x19, 0xe8, 0xcf, 0x1e, 0x38, 0xdd, 0x30, 0x49, 0xc2, 0x31, 0xc5, 0x24, - 0x65, 0x98, 0xc4, 0x71, 0x22, 0x95, 0x47, 0xe4, 0x7f, 0x74, 0x5e, 0xd7, 0x5e, 0x65, 0x0d, 0xa7, - 0xc7, 0x98, 0x4e, 0x52, 0xb9, 0xc8, 0x9d, 0xde, 0x63, 0xb8, 0xf2, 0x69, 0x12, 0xb2, 0xb8, 0x4f, - 0xbf, 0x9d, 0x52, 0x21, 0xd1, 0x0d, 0xb0, 0x13, 0xce, 0x42, 0x16, 0x77, 0xac, 0x43, 0xeb, 0xa8, - 0xd5, 0xd7, 0x16, 0xba, 0x06, 0x75, 0x32, 0x66, 0x44, 0x74, 0x76, 0xd5, 0x71, 0x6e, 0xa0, 0x2e, - 0xb4, 0x88, 0x10, 0x94, 0x67, 0xe9, 0x3a, 0x35, 0xe5, 0x59, 0x1d, 0x78, 0x3f, 0x59, 0x70, 0x55, - 0x07, 0x17, 0x69, 0x12, 0x0b, 0x8a, 0x3a, 0xd0, 0x10, 0xd3, 0x20, 0xa0, 0x42, 0xa8, 0xf0, 0xcd, - 0xfe, 0xd2, 0xcc, 0x3c, 0x13, 0x2a, 0x04, 0x09, 0xa9, 0xce, 0xb0, 0x34, 0xd1, 0x01, 0xd4, 0x4e, - 0xe6, 0x52, 0x47, 0xcf, 0x7e, 0x66, 0x58, 0x32, 0x1a, 0xf1, 0x2c, 0xca, 0x5e, 0x8e, 0xd5, 0xa6, - 0xc1, 0xbe, 0x6e, 0xb2, 0xf7, 0x7e, 0xb5, 0xa0, 0xfd, 0xd1, 0x94, 0x73, 0x1a, 0xcb, 0xaf, 0x04, - 0xe5, 0x5b, 0xf1, 0x31, 0xb2, 0xd7, 0xca, 0xd9, 0x8b, 0x1a, 0xed, 0x99, 0x35, 0xda, 0xc4, 0xe9, - 0x6b, 0xb8, 0xfa, 0x39, 0xe1, 0x64, 0x22, 0x96, 0xa5, 0x77, 0xa0, 0x49, 0x4f, 0x99, 0x90, 0x2c, - 0x0e, 0x35, 0x9b, 0xc2, 0x36, 0x82, 0xec, 0xae, 0x7f, 0x96, 0x9a, 0x91, 0xd2, 0xfb, 0x6b, 0x17, - 0x5e, 0x59, 0xc6, 0xde, 0xe2, 0xa6, 0x26, 0xa1, 0xda, 0x46, 0x42, 0x7b, 0xeb, 0x09, 0xd5, 0xcd, - 0x1a, 0x18, 0x35, 0xb3, 0xcb, 0x35, 0xeb, 0x42, 0x2b, 0x88, 0xc8, 0x78, 0x4c, 0xe3, 0x90, 0x76, - 0x1a, 0x79, 0x07, 0x15, 0x07, 0x08, 0x43, 0x9b, 0x48, 0x49, 0x45, 0xde, 0xd0, 0x83, 0x24, 0x55, - 0x7d, 0xdd, 0x69, 0x2a, 0x1c, 0x32, 0x5c, 0x9f, 0xe5, 0x1e, 0x74, 0x0f, 0x5e, 0x2b, 0xfa, 0xaf, - 0x80, 0xb7, 0x14, 0xfc, 0xa0, 0x70, 0x68, 0xb0, 0xf7, 0xa3, 0x05, 0xaf, 0xf6, 0x69, 0xc8, 0x84, - 0xcc, 0x5a, 0xa2, 0xba, 0xff, 0x1d, 0x68, 0x4e, 0x05, 0xe5, 0x31, 0x99, 0x2c, 0xcb, 0x54, 0xd8, - 0xe8, 0x10, 0xf6, 0x0d, 0x2a, 0xfa, 0x29, 0xcc, 0xa3, 0xf2, 0x2d, 0xf7, 0x5e, 0xb8, 0xa5, 0xf7, - 0xa7, 0x05, 0x07, 0x2b, 0x1e, 0x5b, 0x3c, 0xd8, 0x4d, 0x68, 0xc8, 0xd3, 0x41, 0x44, 0x44, 0xa4, - 0x49, 0xd8, 0xf2, 0xf4, 0x21, 0x11, 0x51, 0x85, 0x62, 0xb4, 0xba, 0xea, 0x2b, 0x75, 0xad, 0x2a, - 0x60, 0x97, 0xfa, 0xb5, 0x07, 0xed, 0x3e, 0x3d, 0xe6, 0x54, 0x44, 0x5f, 0x26, 0xdf, 0xd0, 0x62, + 0x14, 0x5e, 0x6f, 0x12, 0x27, 0x79, 0xdb, 0xc2, 0x32, 0xe9, 0x8f, 0xd4, 0xa4, 0xee, 0x62, 0x41, + 0xb3, 0x50, 0xe1, 0x51, 0xe1, 0x88, 0x38, 0x00, 0x42, 0x42, 0x08, 0x09, 0x14, 0xa0, 0x88, 0x5e, + 0xa2, 0x59, 0x67, 0xd6, 0x9e, 0x25, 0xb1, 0xcd, 0xcc, 0x24, 0xd9, 0xa8, 0xaa, 0x84, 0x10, 0x88, + 0x0b, 0x07, 0x10, 0x1c, 0xb8, 0xc3, 0x1f, 0xc3, 0xb1, 0x12, 0x97, 0x1e, 0xd1, 0x2e, 0x7f, 0x08, + 0xf2, 0x78, 0xe2, 0x8c, 0xbb, 0x89, 0xbb, 0x52, 0x6e, 0x79, 0xf3, 0xbe, 0xbc, 0xf7, 0xcd, 0x9b, + 0xf7, 0xbd, 0x67, 0xe8, 0x47, 0x2c, 0x8c, 0xe6, 0x64, 0x81, 0xc9, 0x54, 0x46, 0x34, 0x96, 0x2c, + 0x20, 0x92, 0x25, 0x31, 0x9e, 0xdd, 0xc7, 0x82, 0xf2, 0x19, 0x0b, 0xa8, 0x9f, 0xf2, 0x44, 0x26, + 0xe8, 0x96, 0x06, 0xfa, 0x65, 0xa0, 0x3f, 0xbb, 0xef, 0xf4, 0xc2, 0x24, 0x09, 0xc7, 0x14, 0x93, + 0x94, 0x61, 0x12, 0xc7, 0x89, 0x54, 0x1e, 0x91, 0xff, 0xd1, 0x79, 0x59, 0x7b, 0x95, 0x75, 0x34, + 0x3d, 0xc6, 0x74, 0x92, 0xca, 0x45, 0xee, 0xf4, 0x1e, 0xc2, 0x95, 0x4f, 0x92, 0x90, 0xc5, 0x03, + 0xfa, 0xed, 0x94, 0x0a, 0x89, 0x6e, 0x80, 0x9d, 0x70, 0x16, 0xb2, 0xb8, 0x6b, 0x1d, 0x58, 0x87, + 0xed, 0x81, 0xb6, 0xd0, 0x35, 0x68, 0x90, 0x31, 0x23, 0xa2, 0xbb, 0xab, 0x8e, 0x73, 0x03, 0xf5, + 0xa0, 0x4d, 0x84, 0xa0, 0x3c, 0x4b, 0xd7, 0xad, 0x29, 0xcf, 0xea, 0xc0, 0xfb, 0xc9, 0x82, 0xab, + 0x3a, 0xb8, 0x48, 0x93, 0x58, 0x50, 0xd4, 0x85, 0xa6, 0x98, 0x06, 0x01, 0x15, 0x42, 0x85, 0x6f, + 0x0d, 0x96, 0x66, 0xe6, 0x99, 0x50, 0x21, 0x48, 0x48, 0x75, 0x86, 0xa5, 0x89, 0xf6, 0xa1, 0x76, + 0x32, 0x97, 0x3a, 0x7a, 0xf6, 0x33, 0xc3, 0x92, 0xd1, 0x88, 0x67, 0x51, 0xea, 0x39, 0x56, 0x9b, + 0x06, 0xfb, 0x86, 0xc9, 0xde, 0xfb, 0xd5, 0x82, 0xce, 0x07, 0x53, 0xce, 0x69, 0x2c, 0xbf, 0x14, + 0x94, 0x6f, 0xc5, 0xc7, 0xc8, 0x5e, 0x2b, 0x67, 0x2f, 0x6a, 0x54, 0x37, 0x6b, 0xb4, 0x89, 0xd3, + 0xd7, 0x70, 0xf5, 0x33, 0xc2, 0xc9, 0x44, 0x2c, 0x4b, 0xef, 0x40, 0x8b, 0x9e, 0x32, 0x21, 0x59, + 0x1c, 0x6a, 0x36, 0x85, 0x6d, 0x04, 0xd9, 0x5d, 0xff, 0x2c, 0x35, 0x23, 0xa5, 0xf7, 0xd7, 0x2e, + 0xbc, 0xb0, 0x8c, 0xbd, 0xc5, 0x4d, 0x4d, 0x42, 0xb5, 0x8d, 0x84, 0xea, 0xeb, 0x09, 0x35, 0xcc, + 0x1a, 0x18, 0x35, 0xb3, 0xcb, 0x35, 0xeb, 0x41, 0x3b, 0x88, 0xc8, 0x78, 0x4c, 0xe3, 0x90, 0x76, + 0x9b, 0x79, 0x07, 0x15, 0x07, 0x08, 0x43, 0x87, 0x48, 0x49, 0x45, 0xde, 0xd0, 0xc3, 0x24, 0x55, + 0x7d, 0xdd, 0x6d, 0x29, 0x1c, 0x32, 0x5c, 0x9f, 0xe6, 0x1e, 0x74, 0x0f, 0x5e, 0x2a, 0xfa, 0xaf, + 0x80, 0xb7, 0x15, 0x7c, 0xbf, 0x70, 0x68, 0xb0, 0xf7, 0xa3, 0x05, 0x2f, 0x0e, 0x68, 0xc8, 0x84, + 0xcc, 0x5a, 0xa2, 0xba, 0xff, 0x1d, 0x68, 0x4d, 0x05, 0xe5, 0x31, 0x99, 0x2c, 0xcb, 0x54, 0xd8, + 0xe8, 0x00, 0xf6, 0x0c, 0x2a, 0xfa, 0x29, 0xcc, 0xa3, 0xf2, 0x2d, 0xeb, 0xcf, 0xdc, 0xd2, 0xfb, + 0xd3, 0x82, 0xfd, 0x15, 0x8f, 0x2d, 0x1e, 0xec, 0x26, 0x34, 0xe5, 0xe9, 0x30, 0x22, 0x22, 0xd2, + 0x24, 0x6c, 0x79, 0xfa, 0x11, 0x11, 0x51, 0x85, 0x62, 0xb4, 0xba, 0x1a, 0x2b, 0x75, 0xad, 0x2a, + 0x60, 0x97, 0xfa, 0xb5, 0x0f, 0x9d, 0x01, 0x3d, 0xe6, 0x54, 0x44, 0x5f, 0x24, 0xdf, 0xd0, 0x62, 0x60, 0xe8, 0x00, 0x56, 0x11, 0xc0, 0x0b, 0xe0, 0x5a, 0x19, 0xb8, 0xdd, 0x8d, 0x62, 0x3a, 0x1f, - 0xac, 0x06, 0x80, 0x1d, 0xd3, 0xf9, 0x27, 0x73, 0xe9, 0xdd, 0x05, 0xf4, 0x88, 0x72, 0x76, 0xbc, - 0x78, 0x09, 0x99, 0x11, 0xb4, 0x4b, 0xb8, 0x2d, 0xb8, 0xdc, 0x82, 0x26, 0x13, 0x83, 0x19, 0x19, - 0xb3, 0x91, 0x96, 0x43, 0x83, 0x89, 0x47, 0x99, 0xf9, 0xee, 0x73, 0x1b, 0xae, 0x7f, 0x50, 0x1a, - 0xcb, 0x5f, 0xe4, 0xb3, 0x1b, 0xfd, 0x60, 0x81, 0x9d, 0x4b, 0x11, 0x1d, 0xf9, 0x1b, 0x27, 0xb8, - 0x5f, 0x9a, 0x04, 0xce, 0xdb, 0x97, 0x40, 0xe6, 0x17, 0xf1, 0xde, 0xfa, 0xfe, 0x9f, 0xff, 0x7e, - 0xdb, 0xbd, 0x83, 0x6e, 0x63, 0x73, 0x8f, 0xe0, 0x54, 0xa1, 0xf0, 0x93, 0xfc, 0xed, 0x9e, 0xa2, - 0xef, 0x2c, 0xa8, 0xab, 0x51, 0x8c, 0x7a, 0x15, 0xb1, 0xcd, 0x4d, 0xe0, 0x1c, 0xbd, 0x1c, 0xa8, - 0x39, 0xbc, 0xa9, 0x38, 0xb8, 0x5e, 0xb7, 0xcc, 0x61, 0x9c, 0x81, 0x56, 0x14, 0x7e, 0xb6, 0xa0, - 0xb9, 0xec, 0x72, 0xf4, 0x4e, 0x45, 0xf0, 0x17, 0x24, 0xe9, 0xdc, 0xbb, 0x14, 0x56, 0x73, 0xe9, - 0x29, 0x2e, 0x6f, 0x78, 0x77, 0xca, 0x5c, 0xb8, 0xc6, 0xad, 0xe8, 0x48, 0xd8, 0x37, 0x36, 0x02, - 0xba, 0xe1, 0xe7, 0x5b, 0xd2, 0x5f, 0x6e, 0x49, 0xff, 0xe3, 0x6c, 0x4b, 0x3a, 0x7e, 0x45, 0xf2, + 0xae, 0x06, 0x80, 0x1d, 0xd3, 0xf9, 0xc7, 0x73, 0xe9, 0xdd, 0x05, 0xf4, 0x80, 0x72, 0x76, 0xbc, + 0x78, 0x0e, 0x99, 0x11, 0x74, 0x4a, 0xb8, 0x2d, 0xb8, 0xdc, 0x82, 0x16, 0x13, 0xc3, 0x19, 0x19, + 0xb3, 0x91, 0x96, 0x43, 0x93, 0x89, 0x07, 0x99, 0xf9, 0xd6, 0x53, 0x1b, 0xae, 0xbf, 0x57, 0x1a, + 0xcb, 0x9f, 0xe7, 0xb3, 0x1b, 0xfd, 0x60, 0x81, 0x9d, 0x4b, 0x11, 0x1d, 0xfa, 0x1b, 0x27, 0xb8, + 0x5f, 0x9a, 0x04, 0xce, 0xeb, 0x97, 0x40, 0xe6, 0x17, 0xf1, 0x5e, 0xfb, 0xfe, 0x9f, 0xff, 0x7e, + 0xdb, 0xbd, 0x83, 0x6e, 0x63, 0x73, 0x8f, 0xe0, 0x54, 0xa1, 0xf0, 0xa3, 0xfc, 0xed, 0x1e, 0xa3, + 0xef, 0x2c, 0x68, 0xa8, 0x51, 0x8c, 0xfa, 0x15, 0xb1, 0xcd, 0x4d, 0xe0, 0x1c, 0x3e, 0x1f, 0xa8, + 0x39, 0xbc, 0xaa, 0x38, 0xb8, 0x5e, 0xaf, 0xcc, 0x61, 0x9c, 0x81, 0x56, 0x14, 0x7e, 0xb6, 0xa0, + 0xb5, 0xec, 0x72, 0xf4, 0x46, 0x45, 0xf0, 0x67, 0x24, 0xe9, 0xdc, 0xbb, 0x14, 0x56, 0x73, 0xe9, + 0x2b, 0x2e, 0xaf, 0x78, 0x77, 0xca, 0x5c, 0xb8, 0xc6, 0xad, 0xe8, 0x48, 0xd8, 0x33, 0x36, 0x02, + 0xba, 0xe1, 0xe7, 0x5b, 0xd2, 0x5f, 0x6e, 0x49, 0xff, 0xc3, 0x6c, 0x4b, 0x3a, 0x7e, 0x45, 0xf2, 0x35, 0x1b, 0xc5, 0xbb, 0xad, 0xf2, 0xdf, 0x44, 0xd7, 0xcb, 0xf9, 0x83, 0x1c, 0x8a, 0xfe, 0xb0, 0xe0, 0x8a, 0x29, 0x0e, 0xe4, 0x57, 0x5e, 0xee, 0x82, 0xdc, 0x1c, 0x7c, 0x69, 0x7c, 0x75, 0x41, - 0x4e, 0xe6, 0x12, 0xf3, 0x1c, 0x8f, 0x9f, 0x9c, 0xcc, 0xe5, 0x53, 0xf4, 0xbb, 0x05, 0xfb, 0x86, - 0x54, 0xd0, 0xfd, 0x8a, 0x4c, 0x17, 0xa5, 0x57, 0x59, 0xa8, 0x35, 0x0a, 0xf4, 0xee, 0x2a, 0x5e, - 0x87, 0x9e, 0x7b, 0x91, 0xd7, 0x4c, 0xc1, 0x73, 0x5a, 0x1f, 0x0e, 0xff, 0x3e, 0x73, 0xad, 0x67, - 0x67, 0xae, 0xf5, 0xef, 0x99, 0x6b, 0xfd, 0x72, 0xee, 0xee, 0x3c, 0x3b, 0x77, 0x77, 0x9e, 0x9f, - 0xbb, 0x3b, 0x8f, 0x1f, 0x86, 0x4c, 0x46, 0xd3, 0xa1, 0x1f, 0x24, 0x13, 0x2c, 0x92, 0x98, 0xdf, - 0x67, 0x09, 0x0e, 0x12, 0x4e, 0xb1, 0x5c, 0xa4, 0x54, 0xe0, 0x8d, 0xdf, 0x55, 0xef, 0x97, 0x4f, - 0xd2, 0xe1, 0xd0, 0x56, 0x8f, 0xfe, 0xde, 0xff, 0x01, 0x00, 0x00, 0xff, 0xff, 0x19, 0xb9, 0x48, - 0x43, 0x8c, 0x09, 0x00, 0x00, + 0x4e, 0xe6, 0x12, 0xf3, 0x1c, 0x8f, 0x1f, 0x9d, 0xcc, 0xe5, 0x63, 0xf4, 0xbb, 0x05, 0x7b, 0x86, + 0x54, 0xd0, 0x9b, 0x15, 0x99, 0x2e, 0x4a, 0xaf, 0xb2, 0x50, 0x6b, 0x14, 0xe8, 0xdd, 0x55, 0xbc, + 0x0e, 0x3c, 0xf7, 0x22, 0xaf, 0x99, 0x82, 0xe7, 0xb4, 0xde, 0xff, 0xea, 0xef, 0x33, 0xd7, 0x7a, + 0x72, 0xe6, 0x5a, 0xff, 0x9e, 0xb9, 0xd6, 0x2f, 0xe7, 0xee, 0xce, 0x93, 0x73, 0x77, 0xe7, 0xe9, + 0xb9, 0xbb, 0xf3, 0xf0, 0x5d, 0x91, 0xc4, 0xdc, 0x67, 0x09, 0x0e, 0x12, 0x4e, 0xb1, 0x5c, 0xa4, + 0x54, 0xe0, 0x8d, 0x1f, 0x53, 0xef, 0x94, 0x4f, 0xd2, 0xa3, 0x23, 0x5b, 0xbd, 0xf4, 0xdb, 0xff, + 0x07, 0x00, 0x00, 0xff, 0xff, 0xac, 0x76, 0xe1, 0x5b, 0x81, 0x09, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/types/highway/database/v1/service.pb.go b/types/highway/database/v1/service.pb.go index 601e30449..03dbe9b4f 100644 --- a/types/highway/database/v1/service.pb.go +++ b/types/highway/database/v1/service.pb.go @@ -134,30 +134,29 @@ func init() { func init() { proto.RegisterFile("highway/database/v1/service.proto", fileDescriptor_f6a3579db4bb4b52) } var fileDescriptor_f6a3579db4bb4b52 = []byte{ - // 358 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x91, 0xcf, 0x4a, 0xeb, 0x40, - 0x14, 0xc6, 0x3b, 0x29, 0xb7, 0xbd, 0x9d, 0x7b, 0x6f, 0x7b, 0x19, 0x5d, 0x84, 0x28, 0xa1, 0xc6, - 0x4d, 0x37, 0xce, 0xd8, 0xba, 0x91, 0xea, 0x4a, 0x2a, 0x88, 0xcb, 0x08, 0x2e, 0xdc, 0x4d, 0xda, - 0x63, 0x32, 0x34, 0xcd, 0xc4, 0xcc, 0x24, 0x92, 0xad, 0x4f, 0x20, 0xf8, 0x46, 0xae, 0x5c, 0x16, - 0xdc, 0xb8, 0x94, 0xd6, 0x07, 0x11, 0x93, 0x06, 0x14, 0x8a, 0xb8, 0x3b, 0xdf, 0xf9, 0xce, 0x9f, - 0x1f, 0xe7, 0xe0, 0x9d, 0x40, 0xf8, 0xc1, 0x2d, 0xcf, 0xd9, 0x84, 0x6b, 0xee, 0x71, 0x05, 0x2c, - 0xeb, 0x33, 0x05, 0x49, 0x26, 0xc6, 0x40, 0xe3, 0x44, 0x6a, 0x49, 0x36, 0x56, 0x25, 0xb4, 0x2a, - 0xa1, 0x59, 0xdf, 0xda, 0xf6, 0xa5, 0xf4, 0x43, 0x60, 0x3c, 0x16, 0x8c, 0x47, 0x91, 0xd4, 0x5c, - 0x0b, 0x19, 0xa9, 0xb2, 0xc5, 0xda, 0x5a, 0xb9, 0x85, 0xf2, 0xd2, 0x6b, 0x06, 0xb3, 0x58, 0xe7, - 0xa5, 0xe9, 0x74, 0xf0, 0xbf, 0x33, 0xe0, 0xa1, 0x0e, 0x5c, 0xb8, 0x49, 0x41, 0x69, 0xe7, 0x11, - 0xe1, 0x76, 0x95, 0x51, 0xb1, 0x8c, 0x14, 0x90, 0x36, 0x36, 0xe4, 0xd4, 0x44, 0x5d, 0xd4, 0xfb, - 0xed, 0x1a, 0x72, 0x4a, 0x4c, 0xdc, 0x9c, 0x81, 0x52, 0xdc, 0x07, 0xd3, 0xe8, 0xa2, 0x5e, 0xcb, - 0xad, 0x24, 0x39, 0xc7, 0xcd, 0x09, 0x68, 0x2e, 0x42, 0x65, 0xd6, 0xbb, 0xf5, 0xde, 0x9f, 0xc1, - 0x3e, 0x5d, 0xc3, 0x4b, 0xbf, 0xce, 0xa7, 0xa3, 0xb2, 0xe5, 0x34, 0xd2, 0x49, 0xee, 0x56, 0x03, - 0xac, 0x21, 0xfe, 0xfb, 0xd9, 0x20, 0xff, 0x71, 0x7d, 0x0a, 0x79, 0x81, 0xd1, 0x72, 0x3f, 0x42, - 0xb2, 0x89, 0x7f, 0x65, 0x3c, 0x4c, 0x2b, 0x8a, 0x52, 0x0c, 0x8d, 0x43, 0x34, 0x48, 0x71, 0x67, - 0xb4, 0xda, 0x77, 0x51, 0x9e, 0x8f, 0x78, 0xb8, 0x51, 0xae, 0x25, 0xce, 0xb7, 0x4c, 0xc5, 0x15, - 0xac, 0xdd, 0x1f, 0x70, 0x3b, 0x9d, 0xbb, 0xe7, 0xb7, 0x07, 0xa3, 0x45, 0x9a, 0x2c, 0x28, 0x8c, - 0x93, 0xcb, 0xa7, 0x85, 0x8d, 0xe6, 0x0b, 0x1b, 0xbd, 0x2e, 0x6c, 0x74, 0xbf, 0xb4, 0x6b, 0xf3, - 0xa5, 0x5d, 0x7b, 0x59, 0xda, 0xb5, 0xab, 0x63, 0x5f, 0xe8, 0x20, 0xf5, 0xe8, 0x58, 0xce, 0x98, - 0x92, 0x51, 0xb2, 0x27, 0x24, 0x1b, 0xcb, 0x04, 0x98, 0xce, 0x63, 0x50, 0x6c, 0xcd, 0xdf, 0x8f, - 0xaa, 0x38, 0xf6, 0xbc, 0x46, 0xf1, 0xab, 0x83, 0xf7, 0x00, 0x00, 0x00, 0xff, 0xff, 0x83, 0x08, - 0x7e, 0x7b, 0x20, 0x02, 0x00, 0x00, + // 346 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x91, 0x4f, 0x4b, 0xf3, 0x40, + 0x10, 0xc6, 0xbb, 0x29, 0x6f, 0xfb, 0x76, 0xd5, 0x56, 0x56, 0x0f, 0x21, 0x4a, 0xa8, 0xf1, 0xd2, + 0xd3, 0xae, 0xad, 0x17, 0xa9, 0x37, 0xa9, 0x20, 0x7a, 0x8b, 0x37, 0x6f, 0x9b, 0x76, 0x4c, 0x42, + 0xd3, 0x6c, 0xcc, 0x6e, 0x22, 0xb9, 0xfa, 0x09, 0x04, 0xbf, 0x91, 0x27, 0x8f, 0x05, 0x2f, 0x1e, + 0xa5, 0xf5, 0x83, 0x88, 0x49, 0x17, 0x14, 0x8a, 0x78, 0x9b, 0x67, 0x9e, 0xf9, 0xf3, 0x63, 0x06, + 0x1f, 0x04, 0xa1, 0x1f, 0xdc, 0xf3, 0x82, 0x4d, 0xb8, 0xe2, 0x1e, 0x97, 0xc0, 0xf2, 0x3e, 0x93, + 0x90, 0xe6, 0xe1, 0x18, 0x68, 0x92, 0x0a, 0x25, 0xc8, 0xce, 0xaa, 0x84, 0xea, 0x12, 0x9a, 0xf7, + 0xad, 0x7d, 0x5f, 0x08, 0x3f, 0x02, 0xc6, 0x93, 0x90, 0xf1, 0x38, 0x16, 0x8a, 0xab, 0x50, 0xc4, + 0xb2, 0x6a, 0xb1, 0xf6, 0x56, 0x6e, 0xa9, 0xbc, 0xec, 0x96, 0xc1, 0x2c, 0x51, 0x45, 0x65, 0x3a, + 0x1d, 0xbc, 0x75, 0x01, 0x3c, 0x52, 0x81, 0x0b, 0x77, 0x19, 0x48, 0xe5, 0x3c, 0x23, 0xdc, 0xd6, + 0x19, 0x99, 0x88, 0x58, 0x02, 0x69, 0x63, 0x43, 0x4c, 0x4d, 0xd4, 0x45, 0xbd, 0xff, 0xae, 0x21, + 0xa6, 0xc4, 0xc4, 0xcd, 0x19, 0x48, 0xc9, 0x7d, 0x30, 0x8d, 0x2e, 0xea, 0xb5, 0x5c, 0x2d, 0xc9, + 0x25, 0x6e, 0x4e, 0x40, 0xf1, 0x30, 0x92, 0x66, 0xbd, 0x5b, 0xef, 0x6d, 0x0c, 0x8e, 0xe8, 0x1a, + 0x5e, 0xfa, 0x73, 0x3e, 0x1d, 0x55, 0x2d, 0xe7, 0xb1, 0x4a, 0x0b, 0x57, 0x0f, 0xb0, 0x86, 0x78, + 0xf3, 0xbb, 0x41, 0xb6, 0x71, 0x7d, 0x0a, 0x45, 0x89, 0xd1, 0x72, 0xbf, 0x42, 0xb2, 0x8b, 0xff, + 0xe5, 0x3c, 0xca, 0x34, 0x45, 0x25, 0x86, 0xc6, 0x09, 0x1a, 0x64, 0xb8, 0x33, 0x5a, 0xed, 0xbb, + 0xae, 0xce, 0x47, 0x3c, 0xdc, 0xa8, 0xd6, 0x12, 0xe7, 0x57, 0xa6, 0xf2, 0x0a, 0xd6, 0xe1, 0x1f, + 0xb8, 0x9d, 0xce, 0xc3, 0xeb, 0xc7, 0x93, 0xd1, 0x22, 0x4d, 0x16, 0x94, 0xc6, 0xd9, 0xd5, 0xcb, + 0xc2, 0x46, 0xf3, 0x85, 0x8d, 0xde, 0x17, 0x36, 0x7a, 0x5c, 0xda, 0xb5, 0xf9, 0xd2, 0xae, 0xbd, + 0x2d, 0xed, 0xda, 0x4d, 0x5f, 0x8a, 0x38, 0xa5, 0xa1, 0x60, 0x63, 0x91, 0x02, 0x53, 0x45, 0x02, + 0x92, 0xad, 0x79, 0xf6, 0xa9, 0x8e, 0x13, 0xcf, 0x6b, 0x94, 0x0f, 0x3a, 0xfe, 0x0c, 0x00, 0x00, + 0xff, 0xff, 0xc1, 0x51, 0x6c, 0x8c, 0x15, 0x02, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/types/highway/storage/v1/service.pb.go b/types/highway/storage/v1/service.pb.go index bfb880752..120786200 100644 --- a/types/highway/storage/v1/service.pb.go +++ b/types/highway/storage/v1/service.pb.go @@ -240,28 +240,27 @@ func init() { func init() { proto.RegisterFile("highway/storage/v1/service.proto", fileDescriptor_913be91a9864b42e) } var fileDescriptor_913be91a9864b42e = []byte{ - // 325 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0xc8, 0xc8, 0x4c, 0xcf, - 0x28, 0x4f, 0xac, 0xd4, 0x2f, 0x2e, 0xc9, 0x2f, 0x4a, 0x4c, 0x4f, 0xd5, 0x2f, 0x33, 0xd4, 0x2f, - 0x4e, 0x2d, 0x2a, 0xcb, 0x4c, 0x4e, 0xd5, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x82, 0xaa, - 0xd0, 0x83, 0xaa, 0xd0, 0x2b, 0x33, 0x94, 0x92, 0x49, 0xcf, 0xcf, 0x4f, 0xcf, 0x49, 0xd5, 0x4f, - 0x2c, 0xc8, 0xd4, 0x4f, 0xcc, 0xcb, 0xcb, 0x2f, 0x49, 0x2c, 0xc9, 0xcc, 0xcf, 0x2b, 0x86, 0xe8, - 0x50, 0x52, 0xe4, 0xe2, 0x75, 0x4f, 0x2d, 0x71, 0xf6, 0x74, 0x09, 0x4a, 0x2d, 0x2c, 0x4d, 0x2d, - 0x2e, 0x11, 0x12, 0xe0, 0x62, 0x4e, 0xce, 0x4c, 0x91, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x0c, 0x02, - 0x31, 0x95, 0xcc, 0xb8, 0xf8, 0x60, 0x4a, 0x8a, 0x0b, 0xf2, 0xf3, 0x8a, 0x53, 0x31, 0xd5, 0x08, - 0x09, 0x71, 0xb1, 0xa4, 0x24, 0x96, 0x24, 0x4a, 0x30, 0x81, 0x85, 0xc0, 0x6c, 0x90, 0xbe, 0x80, - 0xd2, 0x12, 0x97, 0xc4, 0x92, 0x44, 0x9c, 0x66, 0x63, 0xd5, 0xa7, 0xcc, 0xc5, 0x0f, 0xd7, 0x87, - 0xcb, 0x42, 0xa3, 0xc7, 0x8c, 0x5c, 0x7c, 0xc1, 0x10, 0x4f, 0x06, 0x43, 0x82, 0x40, 0x28, 0x8d, - 0x8b, 0x0d, 0xe2, 0x4e, 0x21, 0x45, 0x3d, 0xcc, 0x70, 0xd0, 0x43, 0xf1, 0xa6, 0x94, 0x12, 0x3e, - 0x25, 0x10, 0x5b, 0x95, 0x44, 0x9b, 0x2e, 0x3f, 0x99, 0xcc, 0xc4, 0x2f, 0xc4, 0x0b, 0x0a, 0xe8, - 0xe4, 0xcc, 0x14, 0xfd, 0xea, 0xe4, 0xcc, 0x94, 0x5a, 0xa1, 0x4c, 0x2e, 0x76, 0xa8, 0xfb, 0x84, - 0xb0, 0x9a, 0x82, 0xea, 0x69, 0x29, 0x65, 0xbc, 0x6a, 0x50, 0xad, 0x52, 0x42, 0xb5, 0xca, 0x29, - 0xe4, 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, - 0x8e, 0xe1, 0xc2, 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0xac, 0xd2, 0x33, 0x4b, 0x32, - 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0x8b, 0xf3, 0xf3, 0x8a, 0x74, 0x33, 0xf3, 0xf5, 0x93, - 0xf3, 0x8b, 0x52, 0xf5, 0x4b, 0x2a, 0x0b, 0x52, 0x8b, 0xf5, 0x31, 0x53, 0x8a, 0x35, 0x94, 0x59, - 0x90, 0x94, 0xc4, 0x06, 0x8e, 0x7a, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0xe8, 0x7a, 0x71, - 0x04, 0x50, 0x02, 0x00, 0x00, + // 313 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x92, 0xc1, 0x4b, 0xc3, 0x30, + 0x14, 0xc6, 0x97, 0x29, 0x13, 0x03, 0xdb, 0x24, 0x20, 0x8c, 0x22, 0x61, 0xeb, 0x2e, 0x9e, 0x12, + 0xa6, 0xe0, 0xc5, 0x9b, 0x0e, 0x64, 0x37, 0xd9, 0x6e, 0xde, 0xb2, 0x36, 0x76, 0x01, 0xe9, 0xab, + 0x4d, 0x56, 0x19, 0xe2, 0xc5, 0xbf, 0x40, 0xf0, 0x9f, 0xf2, 0x38, 0xf0, 0xe2, 0x51, 0x5a, 0xff, + 0x10, 0x69, 0x53, 0x85, 0xd2, 0x6d, 0xb7, 0x47, 0xf9, 0x7d, 0xef, 0x7b, 0xdf, 0xd7, 0xe0, 0xfe, + 0x42, 0x05, 0x8b, 0x27, 0xb1, 0xe2, 0xda, 0x40, 0x2c, 0x02, 0xc9, 0x93, 0x11, 0xd7, 0x32, 0x4e, + 0x94, 0x27, 0x59, 0x14, 0x83, 0x01, 0x42, 0x4a, 0x82, 0x95, 0x04, 0x4b, 0x46, 0xce, 0x49, 0x00, + 0x10, 0x3c, 0x48, 0x2e, 0x22, 0xc5, 0x45, 0x18, 0x82, 0x11, 0x46, 0x41, 0xa8, 0xad, 0xc2, 0x1d, + 0xe0, 0xf6, 0x8d, 0x34, 0xd7, 0x93, 0xf1, 0x54, 0x3e, 0x2e, 0xa5, 0x36, 0xe4, 0x08, 0xef, 0x79, + 0xca, 0xef, 0xa1, 0x3e, 0x3a, 0x3d, 0x9c, 0xe6, 0xa3, 0x7b, 0x81, 0x3b, 0x7f, 0x88, 0x8e, 0x20, + 0xd4, 0xb2, 0xce, 0x10, 0x82, 0xf7, 0x7d, 0x61, 0x44, 0xaf, 0x59, 0x7c, 0x2a, 0xe6, 0x5c, 0x77, + 0xbb, 0x34, 0x63, 0x61, 0xc4, 0xd6, 0xdd, 0x1b, 0x75, 0x43, 0xdc, 0xfd, 0xd7, 0x6d, 0x33, 0x3c, + 0xcb, 0x10, 0xee, 0xcc, 0x6c, 0xc8, 0x99, 0xad, 0x80, 0xdc, 0xe3, 0x96, 0xbd, 0x93, 0x0c, 0x58, + 0xbd, 0x07, 0x56, 0x89, 0xe9, 0xb8, 0xbb, 0x10, 0xeb, 0xea, 0x1e, 0xbf, 0x7e, 0xfe, 0xbc, 0x37, + 0xbb, 0xa4, 0x9d, 0x17, 0xed, 0x29, 0x9f, 0x3f, 0x7b, 0xca, 0x7f, 0x21, 0x0a, 0x1f, 0x94, 0xf7, + 0x91, 0x8d, 0x5b, 0xaa, 0xa1, 0x9d, 0xe1, 0x4e, 0xa6, 0x6a, 0xe5, 0x56, 0xad, 0xae, 0x26, 0x1f, + 0x29, 0x45, 0xeb, 0x94, 0xa2, 0xef, 0x94, 0xa2, 0xb7, 0x8c, 0x36, 0xd6, 0x19, 0x6d, 0x7c, 0x65, + 0xb4, 0x71, 0xc7, 0x35, 0x84, 0x31, 0x53, 0xc0, 0x3d, 0x88, 0x25, 0x37, 0xab, 0x48, 0x6a, 0x5e, + 0x7f, 0x1e, 0x97, 0xe5, 0x18, 0xcd, 0xe7, 0xad, 0xe2, 0x7f, 0x9f, 0xff, 0x06, 0x00, 0x00, 0xff, + 0xff, 0x13, 0xbf, 0x08, 0x67, 0x45, 0x02, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/types/highway/wallet/v1/service.pb.go b/types/highway/wallet/v1/service.pb.go index 01efdfc2d..4bbac56c9 100644 --- a/types/highway/wallet/v1/service.pb.go +++ b/types/highway/wallet/v1/service.pb.go @@ -8,7 +8,6 @@ import ( fmt "fmt" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" - crypto "github.com/sonr-io/core/types/crypto" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" @@ -16,6 +15,7 @@ import ( io "io" math "math" math_bits "math/bits" + crypto "sonr.io/core/types/crypto" ) // Reference imports to suppress errors if they are not otherwise used. @@ -795,54 +795,53 @@ func init() { func init() { proto.RegisterFile("highway/wallet/v1/service.proto", fileDescriptor_6b44f8b21811e31c) } var fileDescriptor_6b44f8b21811e31c = []byte{ - // 745 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x56, 0xcd, 0x4e, 0xdb, 0x4a, - 0x14, 0xc6, 0x24, 0x70, 0x93, 0x73, 0xe1, 0x02, 0x43, 0x00, 0xcb, 0xe2, 0x1a, 0xee, 0x08, 0x48, - 0xb8, 0x52, 0x6d, 0x41, 0xab, 0xaa, 0x52, 0x17, 0x15, 0xa0, 0xaa, 0x9b, 0x76, 0x13, 0x2a, 0x2a, - 0xb1, 0x89, 0x1c, 0x67, 0x62, 0xdc, 0x26, 0x33, 0xae, 0x67, 0x92, 0x10, 0xa9, 0x12, 0x12, 0x95, - 0xba, 0x69, 0x17, 0xad, 0xfa, 0x1e, 0x95, 0xfa, 0x0a, 0x5d, 0x75, 0x89, 0xd4, 0x4d, 0x97, 0x15, - 0xf4, 0x41, 0x2a, 0x8f, 0x6d, 0xc8, 0x8f, 0x51, 0x22, 0xd2, 0x45, 0x77, 0x73, 0x7e, 0xe6, 0x9c, - 0xef, 0x78, 0xfc, 0x7d, 0x33, 0xb0, 0x72, 0xe4, 0x3a, 0x47, 0x2d, 0xab, 0x6d, 0xb6, 0xac, 0x5a, - 0x8d, 0x08, 0xb3, 0xb9, 0x65, 0x72, 0xe2, 0x37, 0x5d, 0x9b, 0x18, 0x9e, 0xcf, 0x04, 0x43, 0x73, - 0x51, 0x82, 0x11, 0x26, 0x18, 0xcd, 0x2d, 0x4d, 0xb5, 0x59, 0xbd, 0xce, 0xa8, 0x69, 0xfb, 0x6d, - 0x4f, 0x30, 0xd3, 0x66, 0x2e, 0x0d, 0x93, 0xb5, 0x65, 0x87, 0x31, 0xa7, 0x46, 0x4c, 0xcb, 0x73, - 0x4d, 0x8b, 0x52, 0x26, 0x2c, 0xe1, 0x32, 0xca, 0xc3, 0x28, 0x7e, 0xa7, 0x40, 0x6e, 0xcf, 0x27, - 0x96, 0x20, 0x3b, 0xb6, 0xcd, 0x1a, 0x54, 0x14, 0xc9, 0xcb, 0x06, 0xe1, 0x02, 0xcd, 0x42, 0xea, - 0x79, 0x4b, 0xa8, 0xca, 0xaa, 0x52, 0xc8, 0x16, 0x83, 0x25, 0x42, 0x90, 0xa6, 0x56, 0x9d, 0xa8, - 0xe3, 0xd2, 0x25, 0xd7, 0xe8, 0x0e, 0x64, 0x83, 0x56, 0x25, 0xd1, 0xf6, 0x88, 0x9a, 0x5a, 0x55, - 0x0a, 0xff, 0x6c, 0x2f, 0x19, 0x21, 0x14, 0x23, 0x84, 0x62, 0xec, 0x31, 0x97, 0x3e, 0x6d, 0x7b, - 0xa4, 0x98, 0xb1, 0xa3, 0x15, 0x52, 0xe1, 0x2f, 0x4a, 0x44, 0x8b, 0xf9, 0x2f, 0xd4, 0xb4, 0x2c, - 0x16, 0x9b, 0xf8, 0xb3, 0x02, 0x0b, 0x3d, 0x70, 0xb8, 0xc7, 0x28, 0x97, 0x7b, 0x78, 0xc3, 0xb6, - 0x09, 0xe7, 0x12, 0x53, 0xa6, 0x18, 0x9b, 0x41, 0xa4, 0x4e, 0x38, 0xb7, 0x9c, 0x18, 0x5a, 0x6c, - 0x06, 0x11, 0xab, 0x52, 0xf1, 0x83, 0x3d, 0xa9, 0x30, 0x12, 0x99, 0xdd, 0xb8, 0xd3, 0xc3, 0xe2, - 0xce, 0xc1, 0x04, 0x6b, 0x51, 0xe2, 0xab, 0x13, 0xb2, 0x5a, 0x68, 0xe0, 0x07, 0x30, 0xf7, 0x88, - 0x88, 0x81, 0x9f, 0xaf, 0x03, 0xcc, 0x78, 0x17, 0x18, 0xfc, 0x49, 0x01, 0xd4, 0x59, 0xe1, 0x8f, - 0x9f, 0x38, 0x0f, 0xf3, 0x8f, 0x5d, 0x1e, 0x03, 0xe6, 0xd7, 0xce, 0x8c, 0xab, 0x90, 0xeb, 0x4e, - 0x1c, 0x61, 0x34, 0x0d, 0x32, 0x56, 0x54, 0x47, 0x4d, 0xad, 0xa6, 0x0a, 0xd9, 0xe2, 0xa5, 0x8d, - 0x0f, 0x01, 0xed, 0xbb, 0x0e, 0x7d, 0x12, 0xa6, 0xde, 0xe0, 0x0c, 0x3a, 0xfb, 0x06, 0x1f, 0x6e, - 0xea, 0xb2, 0x2f, 0x76, 0x60, 0xbe, 0xab, 0xf6, 0x08, 0x23, 0x2c, 0x43, 0x96, 0xbb, 0x0e, 0xb5, - 0x44, 0xc3, 0x8f, 0xdb, 0x5c, 0x39, 0xf0, 0x2b, 0x58, 0x3c, 0x20, 0xbe, 0x5b, 0x6d, 0xef, 0xc7, - 0xae, 0xdf, 0x3a, 0x48, 0x77, 0xf7, 0x74, 0x6f, 0xf7, 0x63, 0x58, 0xea, 0xeb, 0x3e, 0xc2, 0xa8, - 0x9b, 0x30, 0x1b, 0x2d, 0x4b, 0xcd, 0xa0, 0xac, 0x4b, 0x2a, 0x12, 0x4f, 0xa6, 0x38, 0x13, 0xf9, - 0x0f, 0x22, 0x37, 0xde, 0x81, 0xf9, 0x87, 0xc7, 0x1e, 0xf3, 0xc5, 0x33, 0xa9, 0x66, 0x37, 0x61, - 0xd0, 0xa9, 0x02, 0xb9, 0xee, 0x1a, 0x23, 0x40, 0xbf, 0x0b, 0x4b, 0x84, 0x4a, 0x4a, 0x90, 0x4a, - 0x29, 0x54, 0xd8, 0x52, 0xb9, 0x51, 0xad, 0x12, 0x3f, 0xe2, 0xd4, 0xc2, 0x65, 0x38, 0xec, 0xb6, - 0x2b, 0x83, 0xdb, 0x5f, 0x26, 0x61, 0x3a, 0x74, 0xec, 0x87, 0x6a, 0x8d, 0xde, 0x2a, 0x30, 0xdd, - 0xa5, 0x66, 0x28, 0x6f, 0xf4, 0x49, 0xb7, 0x91, 0x24, 0xbf, 0x5a, 0x61, 0x70, 0x62, 0x38, 0x22, - 0xce, 0x9f, 0x7e, 0xfb, 0xf9, 0x71, 0xfc, 0x3f, 0xbc, 0x62, 0xf6, 0x5c, 0x1b, 0x31, 0x3b, 0x4c, - 0x5b, 0xee, 0x43, 0x27, 0x00, 0x57, 0x2a, 0x83, 0xd6, 0x12, 0x1a, 0xf4, 0xc9, 0x98, 0xb6, 0x3e, - 0x20, 0x2b, 0xc2, 0xb0, 0x26, 0x31, 0xe8, 0x78, 0xf9, 0x5a, 0x0c, 0x0e, 0x11, 0xe8, 0x8d, 0x02, - 0x53, 0x9d, 0x72, 0x80, 0x36, 0x12, 0xaa, 0x27, 0x08, 0x8b, 0x96, 0x1f, 0x98, 0x17, 0xe1, 0x58, - 0x97, 0x38, 0x56, 0xf0, 0xbf, 0xd7, 0xe2, 0xa8, 0xb9, 0x5c, 0xa0, 0xd7, 0x0a, 0xfc, 0xdd, 0xc1, - 0x69, 0x94, 0x34, 0x65, 0xbf, 0x9e, 0x68, 0x1b, 0x83, 0xd2, 0x86, 0x46, 0x11, 0xd0, 0x0e, 0x7d, - 0x50, 0x60, 0xa6, 0x87, 0x72, 0x68, 0x33, 0xa1, 0x45, 0xb2, 0x28, 0x68, 0xff, 0x0f, 0x93, 0x3a, - 0xf4, 0x3f, 0x22, 0x49, 0xda, 0x46, 0x27, 0x30, 0xd5, 0xc9, 0xa3, 0xc4, 0x13, 0x4a, 0x20, 0x6b, - 0xe2, 0x09, 0x25, 0x11, 0x12, 0xeb, 0x12, 0x89, 0x8a, 0x17, 0x7b, 0x91, 0x10, 0x99, 0xbd, 0x5b, - 0xfc, 0x7a, 0xae, 0x2b, 0x67, 0xe7, 0xba, 0xf2, 0xe3, 0x5c, 0x57, 0xde, 0x5f, 0xe8, 0x63, 0x67, - 0x17, 0xfa, 0xd8, 0xf7, 0x0b, 0x7d, 0xec, 0xf0, 0x9e, 0xe3, 0x8a, 0xa3, 0x46, 0x39, 0xb8, 0xb3, - 0x4c, 0xce, 0xa8, 0x7f, 0xcb, 0x0d, 0x9e, 0x39, 0x3e, 0x31, 0x83, 0x1b, 0x8d, 0x9b, 0x7d, 0x6f, - 0xa6, 0xfb, 0xe1, 0xca, 0x2b, 0x97, 0x27, 0xe5, 0x53, 0xe7, 0xf6, 0xaf, 0x00, 0x00, 0x00, 0xff, - 0xff, 0x39, 0xbd, 0x34, 0x07, 0x58, 0x09, 0x00, 0x00, + // 734 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xcc, 0x56, 0x4f, 0x4f, 0x13, 0x5f, + 0x14, 0x65, 0x68, 0xe1, 0xd7, 0xde, 0x1f, 0x08, 0x3c, 0x0a, 0x4c, 0x26, 0x38, 0xe0, 0x0b, 0xd0, + 0x62, 0xe2, 0x4c, 0x40, 0xe3, 0xc6, 0x85, 0x01, 0x62, 0xd8, 0xe8, 0xa6, 0x18, 0x4c, 0xd8, 0x34, + 0xc3, 0xf4, 0x75, 0x18, 0x6d, 0xdf, 0x1b, 0xe7, 0xbd, 0xb6, 0x34, 0x31, 0x21, 0xc1, 0xc4, 0x8d, + 0x2e, 0x34, 0x7e, 0x0f, 0x13, 0xbf, 0x82, 0x2b, 0x97, 0x24, 0x6e, 0x5c, 0x1a, 0xf0, 0x83, 0x98, + 0x79, 0x33, 0x03, 0xfd, 0x33, 0xa4, 0x0d, 0x75, 0xe1, 0xee, 0xdd, 0x7b, 0xcf, 0xdc, 0x7b, 0x6e, + 0xa7, 0xe7, 0xcc, 0x83, 0xa5, 0x23, 0xd7, 0x39, 0x6a, 0x5a, 0x2d, 0xb3, 0x69, 0x55, 0xab, 0x44, + 0x98, 0x8d, 0x0d, 0x93, 0x13, 0xbf, 0xe1, 0xda, 0xc4, 0xf0, 0x7c, 0x26, 0x18, 0x9a, 0x89, 0x00, + 0x46, 0x08, 0x30, 0x1a, 0x1b, 0x9a, 0x6a, 0xb3, 0x5a, 0x8d, 0x51, 0xd3, 0xf6, 0x5b, 0x9e, 0x60, + 0xa6, 0xcd, 0x5c, 0x1a, 0x82, 0xb5, 0x45, 0x87, 0x31, 0xa7, 0x4a, 0x4c, 0xcb, 0x73, 0x4d, 0x8b, + 0x52, 0x26, 0x2c, 0xe1, 0x32, 0xca, 0xc3, 0x2a, 0xfe, 0xa0, 0x40, 0x6e, 0xc7, 0x27, 0x96, 0x20, + 0x5b, 0xb6, 0xcd, 0xea, 0x54, 0x14, 0xc9, 0xeb, 0x3a, 0xe1, 0x02, 0x4d, 0x43, 0xea, 0x65, 0x53, + 0xa8, 0xca, 0xb2, 0x52, 0xc8, 0x16, 0x83, 0x23, 0x42, 0x90, 0xa6, 0x56, 0x8d, 0xa8, 0xa3, 0x32, + 0x25, 0xcf, 0xe8, 0x01, 0x64, 0x83, 0x51, 0x25, 0xd1, 0xf2, 0x88, 0x9a, 0x5a, 0x56, 0x0a, 0xb7, + 0x36, 0x17, 0x8c, 0x90, 0x8a, 0x11, 0x52, 0x31, 0x76, 0x98, 0x4b, 0x9f, 0xb7, 0x3c, 0x52, 0xcc, + 0xd8, 0xd1, 0x09, 0xa9, 0xf0, 0x1f, 0x25, 0xa2, 0xc9, 0xfc, 0x57, 0x6a, 0x5a, 0x36, 0x8b, 0x43, + 0xfc, 0x55, 0x81, 0xb9, 0x2e, 0x3a, 0xdc, 0x63, 0x94, 0xcb, 0x67, 0x78, 0xdd, 0xb6, 0x09, 0xe7, + 0x92, 0x53, 0xa6, 0x18, 0x87, 0x41, 0xa5, 0x46, 0x38, 0xb7, 0x9c, 0x98, 0x5a, 0x1c, 0x06, 0x15, + 0xab, 0x5c, 0xf6, 0x83, 0x67, 0x52, 0x61, 0x25, 0x0a, 0x3b, 0x79, 0xa7, 0x07, 0xe5, 0x9d, 0x83, + 0x31, 0xd6, 0xa4, 0xc4, 0x57, 0xc7, 0x64, 0xb7, 0x30, 0xc0, 0x8f, 0x61, 0x66, 0x97, 0x88, 0xbe, + 0x3f, 0x5f, 0x1b, 0x99, 0xd1, 0x0e, 0x32, 0xf8, 0x8b, 0x02, 0xa8, 0xbd, 0xc3, 0x3f, 0xbf, 0x71, + 0x1e, 0x66, 0x9f, 0xba, 0x3c, 0x26, 0xcc, 0xaf, 0xdd, 0x19, 0x57, 0x20, 0xd7, 0x09, 0x1c, 0x62, + 0x35, 0x0d, 0x32, 0x56, 0xd4, 0x47, 0x4d, 0x2d, 0xa7, 0x0a, 0xd9, 0xe2, 0x65, 0x8c, 0x0f, 0x00, + 0xed, 0xb9, 0x0e, 0x7d, 0x16, 0x42, 0x6f, 0xf0, 0x0e, 0xda, 0xe7, 0x06, 0x3f, 0xdc, 0xc4, 0xe5, + 0x5c, 0xec, 0xc0, 0x6c, 0x47, 0xef, 0x21, 0x56, 0x58, 0x84, 0x2c, 0x77, 0x1d, 0x6a, 0x89, 0xba, + 0x1f, 0x8f, 0xb9, 0x4a, 0xe0, 0x37, 0x30, 0xbf, 0x4f, 0x7c, 0xb7, 0xd2, 0xda, 0x8b, 0x53, 0x7f, + 0x75, 0x91, 0xce, 0xe9, 0xe9, 0xee, 0xe9, 0xc7, 0xb0, 0xd0, 0x33, 0x7d, 0x88, 0x55, 0xd7, 0x61, + 0x3a, 0x3a, 0x96, 0x1a, 0x41, 0x5b, 0x97, 0x94, 0x25, 0x9f, 0x4c, 0x71, 0x2a, 0xca, 0xef, 0x47, + 0x69, 0xbc, 0x05, 0xb3, 0x4f, 0x8e, 0x3d, 0xe6, 0x8b, 0x17, 0xd2, 0xcd, 0x6e, 0xa2, 0xa0, 0x53, + 0x05, 0x72, 0x9d, 0x3d, 0x86, 0xa0, 0xfe, 0x10, 0x16, 0x08, 0x95, 0x92, 0x20, 0xe5, 0x52, 0xe8, + 0xb0, 0xa5, 0xc3, 0x7a, 0xa5, 0x42, 0xfc, 0x48, 0x53, 0x73, 0x97, 0xe5, 0x70, 0xda, 0xb6, 0x2c, + 0x6e, 0x7e, 0x1b, 0x87, 0xc9, 0x30, 0xb1, 0x17, 0xba, 0x35, 0x7a, 0xaf, 0xc0, 0x64, 0x87, 0x9b, + 0xa1, 0xbc, 0xd1, 0x63, 0xdd, 0x46, 0x92, 0xfd, 0x6a, 0x85, 0xfe, 0xc0, 0x70, 0x45, 0x9c, 0x3f, + 0xfd, 0xf1, 0xfb, 0xf3, 0xe8, 0x1d, 0xbc, 0x64, 0x76, 0x7d, 0x36, 0x62, 0x75, 0x98, 0xb6, 0x7c, + 0x0e, 0x9d, 0x00, 0x5c, 0xb9, 0x0c, 0x5a, 0x49, 0x18, 0xd0, 0x63, 0x63, 0xda, 0x6a, 0x1f, 0x54, + 0xc4, 0x61, 0x45, 0x72, 0xd0, 0xf1, 0xe2, 0xb5, 0x1c, 0x1c, 0x22, 0xd0, 0x3b, 0x05, 0x26, 0xda, + 0xed, 0x00, 0xad, 0x25, 0x74, 0x4f, 0x30, 0x16, 0x2d, 0xdf, 0x17, 0x17, 0xf1, 0x58, 0x95, 0x3c, + 0x96, 0xf0, 0xed, 0x6b, 0x79, 0x54, 0x5d, 0x2e, 0xd0, 0x5b, 0x05, 0xfe, 0x6f, 0xd3, 0x34, 0x4a, + 0xda, 0xb2, 0xd7, 0x4f, 0xb4, 0xb5, 0x7e, 0xb0, 0x81, 0x59, 0x04, 0xb2, 0x43, 0x9f, 0x14, 0x98, + 0xea, 0x92, 0x1c, 0x5a, 0x4f, 0x18, 0x91, 0x6c, 0x0a, 0xda, 0xdd, 0x41, 0xa0, 0x03, 0xff, 0x47, + 0xa4, 0x48, 0x5b, 0xe8, 0x04, 0x26, 0xda, 0x75, 0x94, 0xf8, 0x86, 0x12, 0xc4, 0x9a, 0xf8, 0x86, + 0x92, 0x04, 0x89, 0x75, 0xc9, 0x44, 0xc5, 0xf3, 0xdd, 0x4c, 0x88, 0x44, 0x6f, 0xef, 0x7e, 0x3f, + 0xd7, 0x95, 0xb3, 0x73, 0x5d, 0xf9, 0x75, 0xae, 0x2b, 0x1f, 0x2f, 0xf4, 0x91, 0xb3, 0x0b, 0x7d, + 0xe4, 0xe7, 0x85, 0x3e, 0x72, 0x70, 0x8f, 0x33, 0xea, 0x1b, 0x6e, 0x70, 0xb7, 0xf1, 0x89, 0x19, + 0x7c, 0xc6, 0xb8, 0xd9, 0x73, 0x51, 0x7a, 0x14, 0x9e, 0xbc, 0xc3, 0xc3, 0x71, 0x79, 0xbf, 0xb9, + 0xff, 0x27, 0x00, 0x00, 0xff, 0xff, 0xf6, 0xd8, 0x79, 0xe9, 0x4d, 0x09, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/types/webauthn/credential.go b/types/webauthn/credential.go index 85d7b80fb..9f91d34eb 100644 --- a/types/webauthn/credential.go +++ b/types/webauthn/credential.go @@ -11,8 +11,8 @@ import ( "github.com/go-webauthn/webauthn/protocol" "github.com/go-webauthn/webauthn/protocol/webauthncose" - "github.com/sonr-io/core/internal/crypto" - idtypes "github.com/sonr-io/core/x/identity/types" + "sonr.io/core/internal/crypto" + idtypes "sonr.io/core/x/identity/types" "github.com/yoseplee/vrf" ) diff --git a/types/webauthn/credential.pb.go b/types/webauthn/credential.pb.go index caec5e77b..73d1b4f35 100644 --- a/types/webauthn/credential.pb.go +++ b/types/webauthn/credential.pb.go @@ -198,28 +198,27 @@ func init() { func init() { proto.RegisterFile("common/webauthn/credential.proto", fileDescriptor_9642ee7a70a978ce) } var fileDescriptor_9642ee7a70a978ce = []byte{ - // 322 bytes of a gzipped FileDescriptorProto + // 315 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x91, 0xb1, 0x4e, 0xeb, 0x30, - 0x14, 0x86, 0xeb, 0xf6, 0xde, 0x4a, 0x31, 0x94, 0x22, 0x0f, 0xc8, 0x03, 0x58, 0x51, 0x07, 0x14, - 0x06, 0x12, 0x09, 0x5e, 0x00, 0x28, 0x1b, 0x5b, 0xc4, 0xc4, 0x52, 0x39, 0xae, 0x69, 0x2d, 0x52, - 0x9f, 0xc8, 0x39, 0x11, 0xca, 0x5b, 0xf0, 0x58, 0x8c, 0x1d, 0x19, 0x51, 0xbb, 0xf1, 0x14, 0xc8, - 0x69, 0x29, 0x29, 0xa3, 0x3f, 0xfd, 0x47, 0xfe, 0xbf, 0x73, 0x68, 0xa8, 0x60, 0xb1, 0x00, 0x9b, - 0xbc, 0xea, 0x4c, 0x56, 0x38, 0xb7, 0x89, 0x72, 0x7a, 0xaa, 0x2d, 0x1a, 0x99, 0xc7, 0x85, 0x03, - 0x04, 0x36, 0xdc, 0x24, 0xe2, 0x9f, 0xc4, 0xe8, 0x8b, 0x50, 0x3a, 0xde, 0xa5, 0xd8, 0x11, 0xed, - 0x9a, 0x29, 0x27, 0x21, 0x89, 0x0e, 0xd3, 0xae, 0x99, 0xb2, 0x33, 0x4a, 0x8b, 0x2a, 0xcb, 0x8d, - 0x9a, 0xbc, 0xe8, 0x9a, 0x77, 0x1b, 0x1e, 0x6c, 0xc8, 0x83, 0xae, 0xd9, 0x05, 0x3d, 0x96, 0x88, - 0xba, 0x44, 0x89, 0x06, 0xec, 0x04, 0xeb, 0x42, 0xf3, 0x5e, 0x48, 0xa2, 0x20, 0x1d, 0xb6, 0xf8, - 0x63, 0x5d, 0x68, 0x76, 0x4a, 0x03, 0x74, 0xd2, 0x96, 0x05, 0x38, 0xe4, 0xff, 0xc2, 0x5e, 0x14, - 0xa4, 0xbf, 0x80, 0xdd, 0xd3, 0x81, 0xef, 0xe3, 0x5b, 0x28, 0x89, 0xe0, 0xf8, 0xff, 0x90, 0x44, - 0x07, 0x57, 0x22, 0xfe, 0xd3, 0x37, 0xbe, 0x6d, 0xa7, 0xd2, 0xfd, 0x21, 0x26, 0x28, 0x55, 0x60, - 0xd1, 0x41, 0x9e, 0x6b, 0xc7, 0xfb, 0x4d, 0x91, 0x16, 0x19, 0x3d, 0xd3, 0xc1, 0xde, 0x3c, 0x3b, - 0xa1, 0x7d, 0x29, 0x67, 0xd5, 0x4e, 0x79, 0xfb, 0xf2, 0xda, 0xa5, 0x99, 0xd9, 0x89, 0x82, 0xca, - 0x62, 0xa3, 0x3d, 0x48, 0x03, 0x4f, 0xc6, 0x1e, 0xf8, 0x7f, 0x24, 0xa2, 0x54, 0xf3, 0x85, 0xb6, - 0xb8, 0x15, 0x6e, 0x91, 0xbb, 0x9b, 0xf7, 0x95, 0x20, 0xcb, 0x95, 0x20, 0x9f, 0x2b, 0x41, 0xde, - 0xd6, 0xa2, 0xb3, 0x5c, 0x8b, 0xce, 0xc7, 0x5a, 0x74, 0x9e, 0xce, 0x67, 0x06, 0xe7, 0x55, 0xe6, - 0xb5, 0x92, 0x12, 0xac, 0xbb, 0x34, 0x90, 0x28, 0x70, 0x3a, 0xf1, 0xab, 0x2b, 0x77, 0x87, 0xcb, - 0xfa, 0xcd, 0xb9, 0xae, 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0x0f, 0x75, 0x82, 0x71, 0xd2, 0x01, - 0x00, 0x00, + 0x14, 0x86, 0xeb, 0xf6, 0xde, 0x4a, 0x39, 0xf7, 0x96, 0x22, 0x0f, 0x28, 0x12, 0x60, 0x45, 0x9d, + 0xc2, 0x92, 0x48, 0x20, 0x1e, 0x00, 0xca, 0xc6, 0x16, 0x31, 0xb1, 0x54, 0xae, 0x6b, 0x5a, 0x8b, + 0xd4, 0x27, 0x72, 0x4e, 0x84, 0xf2, 0x16, 0x3c, 0x16, 0x63, 0x47, 0x46, 0xd4, 0x6e, 0x3c, 0x05, + 0x72, 0x5a, 0x4a, 0xca, 0xe8, 0x4f, 0xff, 0x91, 0xff, 0xef, 0x1c, 0x88, 0x14, 0x2e, 0x97, 0x68, + 0xd3, 0x17, 0x3d, 0x95, 0x15, 0x2d, 0x6c, 0xaa, 0x9c, 0x9e, 0x69, 0x4b, 0x46, 0xe6, 0x49, 0xe1, + 0x90, 0x90, 0x0f, 0xb7, 0x89, 0xe4, 0x3b, 0x31, 0xfa, 0x64, 0x00, 0xe3, 0x7d, 0x8a, 0x1f, 0x41, + 0xd7, 0xcc, 0x42, 0x16, 0xb1, 0xf8, 0x7f, 0xd6, 0x35, 0x33, 0x7e, 0x0e, 0x50, 0x54, 0xd3, 0xdc, + 0xa8, 0xc9, 0xb3, 0xae, 0xc3, 0x6e, 0xc3, 0x83, 0x2d, 0xb9, 0xd7, 0x35, 0xbf, 0x80, 0x63, 0x49, + 0xa4, 0x4b, 0x92, 0x64, 0xd0, 0x4e, 0xa8, 0x2e, 0x74, 0xd8, 0x8b, 0x58, 0x1c, 0x64, 0xc3, 0x16, + 0x7f, 0xa8, 0x0b, 0xcd, 0xcf, 0x20, 0x20, 0x27, 0x6d, 0x59, 0xa0, 0xa3, 0xf0, 0x4f, 0xd4, 0x8b, + 0x83, 0xec, 0x07, 0xf0, 0x3b, 0x18, 0xf8, 0x3e, 0xbe, 0x85, 0x92, 0x84, 0x2e, 0xfc, 0x1b, 0xb1, + 0xf8, 0xdf, 0xa5, 0x48, 0x7e, 0xf5, 0x4d, 0x6e, 0xda, 0xa9, 0xec, 0x70, 0x88, 0x0b, 0x00, 0x85, + 0x96, 0x1c, 0xe6, 0xb9, 0x76, 0x61, 0xbf, 0x29, 0xd2, 0x22, 0xa3, 0x27, 0x18, 0x1c, 0xcc, 0xf3, + 0x13, 0xe8, 0x4b, 0x39, 0xaf, 0xf6, 0xca, 0xbb, 0x97, 0xd7, 0x2e, 0xcd, 0xdc, 0x4e, 0x14, 0x56, + 0x96, 0x1a, 0xed, 0x41, 0x16, 0x78, 0x32, 0xf6, 0xc0, 0xff, 0x23, 0x89, 0xa4, 0x5a, 0x2c, 0xb5, + 0xa5, 0x9d, 0x70, 0x8b, 0xdc, 0x5e, 0xbf, 0xad, 0x05, 0x5b, 0xad, 0x05, 0xfb, 0x58, 0x0b, 0xf6, + 0xba, 0x11, 0x9d, 0xd5, 0x46, 0x74, 0xde, 0x37, 0xa2, 0xf3, 0x78, 0x5a, 0xa2, 0x75, 0x89, 0xc1, + 0x54, 0xa1, 0xd3, 0xa9, 0xdf, 0x57, 0xb9, 0xbf, 0xd6, 0xb4, 0xdf, 0xdc, 0xe8, 0xea, 0x2b, 0x00, + 0x00, 0xff, 0xff, 0x69, 0x12, 0x4a, 0x52, 0xc7, 0x01, 0x00, 0x00, } func (m *Credential) Marshal() (dAtA []byte, err error) { diff --git a/types/webauthn/webauthn.go b/types/webauthn/webauthn.go index 68bc13e0a..0134b802f 100644 --- a/types/webauthn/webauthn.go +++ b/types/webauthn/webauthn.go @@ -7,7 +7,7 @@ import ( "github.com/go-webauthn/webauthn/protocol" "github.com/shengdoushi/base58" - "github.com/sonr-io/core/internal/crypto" + "sonr.io/core/internal/crypto" ) // PublicKeyMultibase returns the public key in multibase format diff --git a/x/domain/client/cli/query.go b/x/domain/client/cli/query.go index 2b3b9b5e6..173630ce7 100644 --- a/x/domain/client/cli/query.go +++ b/x/domain/client/cli/query.go @@ -10,7 +10,7 @@ import ( // "github.com/cosmos/cosmos-sdk/client/flags" // sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/sonr-io/core/x/domain/types" + "sonr.io/core/x/domain/types" ) // GetQueryCmd returns the cli query commands for this module diff --git a/x/domain/client/cli/query_params.go b/x/domain/client/cli/query_params.go index b7a455b52..1bb39e5f0 100644 --- a/x/domain/client/cli/query_params.go +++ b/x/domain/client/cli/query_params.go @@ -5,7 +5,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/sonr-io/core/x/domain/types" + "sonr.io/core/x/domain/types" ) func CmdQueryParams() *cobra.Command { diff --git a/x/domain/client/cli/query_username_records.go b/x/domain/client/cli/query_username_records.go index 9e780bb96..52405b7d4 100644 --- a/x/domain/client/cli/query_username_records.go +++ b/x/domain/client/cli/query_username_records.go @@ -5,7 +5,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/sonr-io/core/x/domain/types" + "sonr.io/core/x/domain/types" ) func CmdListUsernameRecords() *cobra.Command { diff --git a/x/domain/client/cli/tx.go b/x/domain/client/cli/tx.go index a3c0d9868..9bd24ba11 100644 --- a/x/domain/client/cli/tx.go +++ b/x/domain/client/cli/tx.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" // "github.com/cosmos/cosmos-sdk/client/flags" - "github.com/sonr-io/core/x/domain/types" + "sonr.io/core/x/domain/types" ) var ( diff --git a/x/domain/client/cli/tx_username_records.go b/x/domain/client/cli/tx_username_records.go index 702191bd4..1f46d95cf 100644 --- a/x/domain/client/cli/tx_username_records.go +++ b/x/domain/client/cli/tx_username_records.go @@ -4,7 +4,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/client/tx" - "github.com/sonr-io/core/x/domain/types" + "sonr.io/core/x/domain/types" "github.com/spf13/cobra" ) diff --git a/x/domain/client/proxy/query.go b/x/domain/client/proxy/query.go index 6e9418236..100fc3c32 100644 --- a/x/domain/client/proxy/query.go +++ b/x/domain/client/proxy/query.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - domaintypes "github.com/sonr-io/core/x/domain/types" + domaintypes "sonr.io/core/x/domain/types" "github.com/spf13/viper" "google.golang.org/grpc" ) diff --git a/x/domain/genesis.go b/x/domain/genesis.go index 0e406e12c..e9ffc2534 100644 --- a/x/domain/genesis.go +++ b/x/domain/genesis.go @@ -2,8 +2,8 @@ package domain import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/sonr-io/core/x/domain/keeper" - "github.com/sonr-io/core/x/domain/types" + "sonr.io/core/x/domain/keeper" + "sonr.io/core/x/domain/types" ) // InitGenesis initializes the module's state from a provided genesis state. diff --git a/x/domain/genesis_test.go b/x/domain/genesis_test.go index 569dfd11e..e5ea40e32 100644 --- a/x/domain/genesis_test.go +++ b/x/domain/genesis_test.go @@ -3,10 +3,10 @@ package domain_test import ( "testing" - keepertest "github.com/sonr-io/core/testutil/keeper" - "github.com/sonr-io/core/testutil/nullify" - "github.com/sonr-io/core/x/domain" - "github.com/sonr-io/core/x/domain/types" + keepertest "sonr.io/core/testutil/keeper" + "sonr.io/core/testutil/nullify" + "sonr.io/core/x/domain" + "sonr.io/core/x/domain/types" "github.com/stretchr/testify/require" ) diff --git a/x/domain/keeper/keeper.go b/x/domain/keeper/keeper.go index c3894578d..36f1bb5f9 100644 --- a/x/domain/keeper/keeper.go +++ b/x/domain/keeper/keeper.go @@ -9,7 +9,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - "github.com/sonr-io/core/x/domain/types" + "sonr.io/core/x/domain/types" ) type ( diff --git a/x/domain/keeper/msg_server.go b/x/domain/keeper/msg_server.go index 78887665b..67dd6ab9d 100644 --- a/x/domain/keeper/msg_server.go +++ b/x/domain/keeper/msg_server.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/sonr-io/core/x/domain/types" + "sonr.io/core/x/domain/types" ) type msgServer struct { diff --git a/x/domain/keeper/msg_server_test.go b/x/domain/keeper/msg_server_test.go index c321fddbc..ce5d422e6 100644 --- a/x/domain/keeper/msg_server_test.go +++ b/x/domain/keeper/msg_server_test.go @@ -5,9 +5,9 @@ import ( "testing" sdk "github.com/cosmos/cosmos-sdk/types" - keepertest "github.com/sonr-io/core/testutil/keeper" - "github.com/sonr-io/core/x/domain/keeper" - "github.com/sonr-io/core/x/domain/types" + keepertest "sonr.io/core/testutil/keeper" + "sonr.io/core/x/domain/keeper" + "sonr.io/core/x/domain/types" "github.com/stretchr/testify/require" ) diff --git a/x/domain/keeper/msg_server_username_records.go b/x/domain/keeper/msg_server_username_records.go index 29694eb90..ad9f2178c 100644 --- a/x/domain/keeper/msg_server_username_records.go +++ b/x/domain/keeper/msg_server_username_records.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/sonr-io/core/x/domain/types" + "sonr.io/core/x/domain/types" ) func (k msgServer) CreateUsernameRecord(goCtx context.Context, msg *types.MsgCreateUsernameRecords) (*types.MsgCreateUsernameRecordsResponse, error) { diff --git a/x/domain/keeper/msg_server_username_records_test.go b/x/domain/keeper/msg_server_username_records_test.go index 09b5bff5d..82e8b180f 100644 --- a/x/domain/keeper/msg_server_username_records_test.go +++ b/x/domain/keeper/msg_server_username_records_test.go @@ -8,9 +8,9 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/stretchr/testify/require" - keepertest "github.com/sonr-io/core/testutil/keeper" - "github.com/sonr-io/core/x/domain/keeper" - "github.com/sonr-io/core/x/domain/types" + keepertest "sonr.io/core/testutil/keeper" + "sonr.io/core/x/domain/keeper" + "sonr.io/core/x/domain/types" ) // Prevent strconv unused error diff --git a/x/domain/keeper/params.go b/x/domain/keeper/params.go index 01b9ec984..c763d15c4 100644 --- a/x/domain/keeper/params.go +++ b/x/domain/keeper/params.go @@ -2,7 +2,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/sonr-io/core/x/domain/types" + "sonr.io/core/x/domain/types" ) // GetParams get all parameters as types.Params diff --git a/x/domain/keeper/params_test.go b/x/domain/keeper/params_test.go index c320ce13c..3dc965f75 100644 --- a/x/domain/keeper/params_test.go +++ b/x/domain/keeper/params_test.go @@ -3,8 +3,8 @@ package keeper_test import ( "testing" - testkeeper "github.com/sonr-io/core/testutil/keeper" - "github.com/sonr-io/core/x/domain/types" + testkeeper "sonr.io/core/testutil/keeper" + "sonr.io/core/x/domain/types" "github.com/stretchr/testify/require" ) diff --git a/x/domain/keeper/query.go b/x/domain/keeper/query.go index 267198289..ee3808c2f 100644 --- a/x/domain/keeper/query.go +++ b/x/domain/keeper/query.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/sonr-io/core/x/domain/types" + "sonr.io/core/x/domain/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/domain/keeper/query_params.go b/x/domain/keeper/query_params.go index f6ff8fdcf..a546c6e6b 100644 --- a/x/domain/keeper/query_params.go +++ b/x/domain/keeper/query_params.go @@ -4,7 +4,7 @@ import ( "context" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/sonr-io/core/x/domain/types" + "sonr.io/core/x/domain/types" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" ) diff --git a/x/domain/keeper/query_params_test.go b/x/domain/keeper/query_params_test.go index 3ad49e09d..9c80eb688 100644 --- a/x/domain/keeper/query_params_test.go +++ b/x/domain/keeper/query_params_test.go @@ -4,8 +4,8 @@ import ( "testing" sdk "github.com/cosmos/cosmos-sdk/types" - testkeeper "github.com/sonr-io/core/testutil/keeper" - "github.com/sonr-io/core/x/domain/types" + testkeeper "sonr.io/core/testutil/keeper" + "sonr.io/core/x/domain/types" "github.com/stretchr/testify/require" ) diff --git a/x/domain/keeper/query_username_records.go b/x/domain/keeper/query_username_records.go index 26fdf081b..cfc5f58af 100644 --- a/x/domain/keeper/query_username_records.go +++ b/x/domain/keeper/query_username_records.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" - "github.com/sonr-io/core/x/domain/types" + "sonr.io/core/x/domain/types" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" ) diff --git a/x/domain/keeper/query_username_records_test.go b/x/domain/keeper/query_username_records_test.go index f88e2b37f..94fa4f1af 100644 --- a/x/domain/keeper/query_username_records_test.go +++ b/x/domain/keeper/query_username_records_test.go @@ -10,9 +10,9 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - keepertest "github.com/sonr-io/core/testutil/keeper" - "github.com/sonr-io/core/testutil/nullify" - "github.com/sonr-io/core/x/domain/types" + keepertest "sonr.io/core/testutil/keeper" + "sonr.io/core/testutil/nullify" + "sonr.io/core/x/domain/types" ) // Prevent strconv unused error diff --git a/x/domain/keeper/username_records.go b/x/domain/keeper/username_records.go index 4d6e1d2d3..310f34508 100644 --- a/x/domain/keeper/username_records.go +++ b/x/domain/keeper/username_records.go @@ -3,7 +3,7 @@ package keeper import ( "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/sonr-io/core/x/domain/types" + "sonr.io/core/x/domain/types" ) // SetUsernameRecords set a specific UsernameRecord in the store from its index diff --git a/x/domain/keeper/username_records_test.go b/x/domain/keeper/username_records_test.go index 3baac7855..6384f246a 100644 --- a/x/domain/keeper/username_records_test.go +++ b/x/domain/keeper/username_records_test.go @@ -5,10 +5,10 @@ import ( "testing" sdk "github.com/cosmos/cosmos-sdk/types" - keepertest "github.com/sonr-io/core/testutil/keeper" - "github.com/sonr-io/core/testutil/nullify" - "github.com/sonr-io/core/x/domain/keeper" - "github.com/sonr-io/core/x/domain/types" + keepertest "sonr.io/core/testutil/keeper" + "sonr.io/core/testutil/nullify" + "sonr.io/core/x/domain/keeper" + "sonr.io/core/x/domain/types" "github.com/stretchr/testify/require" ) diff --git a/x/domain/module.go b/x/domain/module.go index c1f308bec..e789959b5 100644 --- a/x/domain/module.go +++ b/x/domain/module.go @@ -17,9 +17,9 @@ import ( cdctypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/sonr-io/core/x/domain/client/cli" - "github.com/sonr-io/core/x/domain/keeper" - "github.com/sonr-io/core/x/domain/types" + "sonr.io/core/x/domain/client/cli" + "sonr.io/core/x/domain/keeper" + "sonr.io/core/x/domain/types" ) var ( diff --git a/x/domain/module_simulation.go b/x/domain/module_simulation.go index 75e34dc0c..b31f3f874 100644 --- a/x/domain/module_simulation.go +++ b/x/domain/module_simulation.go @@ -8,9 +8,9 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" - "github.com/sonr-io/core/testutil/sample" - domainsimulation "github.com/sonr-io/core/x/domain/simulation" - "github.com/sonr-io/core/x/domain/types" + "sonr.io/core/testutil/sample" + domainsimulation "sonr.io/core/x/domain/simulation" + "sonr.io/core/x/domain/types" ) // avoid unused import issue diff --git a/x/domain/simulation/username_records.go b/x/domain/simulation/username_records.go index 131711524..7f16ef53b 100644 --- a/x/domain/simulation/username_records.go +++ b/x/domain/simulation/username_records.go @@ -9,8 +9,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" - "github.com/sonr-io/core/x/domain/keeper" - "github.com/sonr-io/core/x/domain/types" + "sonr.io/core/x/domain/keeper" + "sonr.io/core/x/domain/types" ) // Prevent strconv unused error diff --git a/x/domain/types/genesis.pb.go b/x/domain/types/genesis.pb.go index b10464141..97a9b1e2f 100644 --- a/x/domain/types/genesis.pb.go +++ b/x/domain/types/genesis.pb.go @@ -83,7 +83,7 @@ func init() { func init() { proto.RegisterFile("core/domain/genesis.proto", fileDescriptor_f3758676deb05ab8) } var fileDescriptor_f3758676deb05ab8 = []byte{ - // 236 bytes of a gzipped FileDescriptorProto + // 225 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4c, 0xce, 0x2f, 0x4a, 0xd5, 0x4f, 0xc9, 0xcf, 0x4d, 0xcc, 0xcc, 0xd3, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x06, 0x49, 0xe9, 0x41, 0xa4, 0xa4, 0x24, 0x90, 0xd5, @@ -93,12 +93,12 @@ var fileDescriptor_f3758676deb05ab8 = []byte{ 0x09, 0x46, 0x05, 0x46, 0x0d, 0x6e, 0x23, 0x61, 0x3d, 0x24, 0x8b, 0xf5, 0x02, 0xc0, 0x52, 0x4e, 0x2c, 0x27, 0xee, 0xc9, 0x33, 0x04, 0x41, 0x15, 0x0a, 0x05, 0x73, 0x09, 0x97, 0x16, 0xa7, 0x16, 0xe5, 0x25, 0xe6, 0xa6, 0x06, 0x81, 0x6d, 0x2c, 0xf6, 0xc9, 0x2c, 0x2e, 0x91, 0x60, 0x52, 0x60, - 0xd6, 0xe0, 0x36, 0x92, 0x46, 0xd1, 0x1f, 0x8a, 0xa2, 0x0e, 0x6a, 0x0e, 0x36, 0xdd, 0x4e, 0x0e, + 0xd6, 0xe0, 0x36, 0x92, 0x46, 0xd1, 0x1f, 0x8a, 0xa2, 0x0e, 0x6a, 0x0e, 0x36, 0xdd, 0x4e, 0xa6, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x84, 0xc7, 0x72, - 0x0c, 0x17, 0x1e, 0xcb, 0x31, 0xdc, 0x78, 0x2c, 0xc7, 0x10, 0xa5, 0x96, 0x9e, 0x59, 0x92, 0x51, - 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, 0x5f, 0x9c, 0x9f, 0x57, 0xa4, 0x9b, 0x99, 0xaf, 0x0f, 0xf6, - 0x75, 0x05, 0xcc, 0xdf, 0x25, 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, 0x60, 0x1f, 0x1a, 0x03, 0x02, - 0x00, 0x00, 0xff, 0xff, 0xf9, 0x44, 0xcf, 0xaf, 0x55, 0x01, 0x00, 0x00, + 0x0c, 0x17, 0x1e, 0xcb, 0x31, 0xdc, 0x78, 0x2c, 0xc7, 0x10, 0x25, 0x5d, 0x9c, 0x9f, 0x57, 0xa4, + 0x97, 0x99, 0xaf, 0x0f, 0xf6, 0x6a, 0x05, 0xcc, 0xb3, 0x25, 0x95, 0x05, 0xa9, 0xc5, 0x49, 0x6c, + 0x60, 0x6f, 0x19, 0x03, 0x02, 0x00, 0x00, 0xff, 0xff, 0xc5, 0x41, 0xa9, 0xb9, 0x4a, 0x01, 0x00, + 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/domain/types/genesis_test.go b/x/domain/types/genesis_test.go index 545434840..cdb897c47 100644 --- a/x/domain/types/genesis_test.go +++ b/x/domain/types/genesis_test.go @@ -3,7 +3,7 @@ package types_test import ( "testing" - "github.com/sonr-io/core/x/domain/types" + "sonr.io/core/x/domain/types" "github.com/stretchr/testify/require" ) diff --git a/x/domain/types/keys.go b/x/domain/types/keys.go index ed14b783b..2634233a8 100644 --- a/x/domain/types/keys.go +++ b/x/domain/types/keys.go @@ -1,7 +1,7 @@ package types import ( - "github.com/sonr-io/core/internal/crypto" + "sonr.io/core/internal/crypto" "lukechampine.com/blake3" ) diff --git a/x/domain/types/messages_username_records_test.go b/x/domain/types/messages_username_records_test.go index 4bd5009d7..598ac0503 100644 --- a/x/domain/types/messages_username_records_test.go +++ b/x/domain/types/messages_username_records_test.go @@ -4,7 +4,7 @@ import ( "testing" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/sonr-io/core/testutil/sample" + "sonr.io/core/testutil/sample" "github.com/stretchr/testify/require" ) diff --git a/x/domain/types/params.pb.go b/x/domain/types/params.pb.go index 68c1ca4f3..6e5a23285 100644 --- a/x/domain/types/params.pb.go +++ b/x/domain/types/params.pb.go @@ -66,17 +66,16 @@ func init() { func init() { proto.RegisterFile("core/domain/params.proto", fileDescriptor_212b5bbc8abf73fb) } var fileDescriptor_212b5bbc8abf73fb = []byte{ - // 147 bytes of a gzipped FileDescriptorProto + // 136 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x48, 0xce, 0x2f, 0x4a, 0xd5, 0x4f, 0xc9, 0xcf, 0x4d, 0xcc, 0xcc, 0xd3, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x06, 0xc9, 0xe8, 0x41, 0x64, 0xa4, 0x44, 0xd2, 0xf3, 0xd3, 0xf3, 0xc1, 0xe2, 0xfa, 0x20, 0x16, 0x44, 0x89, 0x12, 0x1f, 0x17, 0x5b, 0x00, 0x58, 0x8b, 0x15, - 0xcb, 0x8c, 0x05, 0xf2, 0x0c, 0x4e, 0x0e, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, + 0xcb, 0x8c, 0x05, 0xf2, 0x0c, 0x4e, 0xa6, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x84, 0xc7, 0x72, 0x0c, 0x17, 0x1e, 0xcb, 0x31, 0xdc, 0x78, 0x2c, 0xc7, - 0x10, 0xa5, 0x96, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, 0x5f, 0x9c, 0x9f, - 0x57, 0xa4, 0x9b, 0x99, 0xaf, 0x0f, 0xb6, 0xb9, 0x02, 0x66, 0x77, 0x49, 0x65, 0x41, 0x6a, 0x71, - 0x12, 0x1b, 0xd8, 0x60, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0xbc, 0x4b, 0xb8, 0x9e, 0x97, - 0x00, 0x00, 0x00, + 0x10, 0x25, 0x5d, 0x9c, 0x9f, 0x57, 0xa4, 0x97, 0x99, 0xaf, 0x0f, 0xb6, 0xae, 0x02, 0x66, 0x61, + 0x49, 0x65, 0x41, 0x6a, 0x71, 0x12, 0x1b, 0xd8, 0x34, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, + 0x3b, 0x80, 0xc5, 0x8b, 0x8c, 0x00, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/domain/types/query.pb.go b/x/domain/types/query.pb.go index 6fd99c0bc..addf7a17e 100644 --- a/x/domain/types/query.pb.go +++ b/x/domain/types/query.pb.go @@ -321,38 +321,38 @@ func init() { func init() { proto.RegisterFile("core/domain/query.proto", fileDescriptor_8b7084fe185c90ac) } var fileDescriptor_8b7084fe185c90ac = []byte{ - // 496 bytes of a gzipped FileDescriptorProto + // 486 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x94, 0xcf, 0x6b, 0x13, 0x41, - 0x14, 0xc7, 0xb3, 0xad, 0x0d, 0x38, 0x05, 0xc5, 0x49, 0x4a, 0x4b, 0x6a, 0x37, 0x65, 0xc0, 0x2a, - 0xfe, 0x98, 0x21, 0x15, 0x3c, 0xdb, 0x1e, 0xac, 0xe0, 0xa5, 0x2e, 0x78, 0xf1, 0x36, 0x49, 0x86, - 0xcd, 0xc2, 0xee, 0xbc, 0xed, 0xcc, 0x44, 0x5a, 0xc4, 0x8b, 0x77, 0x41, 0x14, 0xfc, 0x57, 0xfc, - 0x17, 0x7a, 0x0c, 0x78, 0xf1, 0x24, 0x92, 0xf8, 0x87, 0x48, 0x66, 0x26, 0x98, 0x31, 0xbb, 0x2a, - 0xde, 0x26, 0xf3, 0xbe, 0xef, 0xfb, 0x3e, 0x6f, 0xde, 0xcb, 0xa2, 0xed, 0x01, 0x28, 0xc1, 0x86, - 0x50, 0xf0, 0x4c, 0xb2, 0xb3, 0xb1, 0x50, 0x17, 0xb4, 0x54, 0x60, 0x00, 0x6f, 0xce, 0x03, 0xd4, - 0x05, 0x3a, 0x3b, 0xcb, 0xaa, 0x92, 0x2b, 0x5e, 0x68, 0x27, 0x0b, 0x23, 0x4a, 0x0c, 0x40, 0x0d, - 0x7d, 0xe4, 0xee, 0x00, 0x74, 0x01, 0x9a, 0xf5, 0xb9, 0x16, 0xce, 0x99, 0xbd, 0xea, 0xf5, 0x85, - 0xe1, 0x3d, 0x56, 0xf2, 0x34, 0x93, 0xdc, 0x64, 0x20, 0xbd, 0xb6, 0x9d, 0x42, 0x0a, 0xf6, 0xc8, - 0xe6, 0x27, 0x7f, 0x7b, 0x33, 0x05, 0x48, 0x73, 0xc1, 0x78, 0x99, 0x31, 0x2e, 0x25, 0x18, 0x9b, - 0xe2, 0x2b, 0x93, 0x36, 0xc2, 0xcf, 0xe7, 0xae, 0xa7, 0x16, 0x27, 0x11, 0x67, 0x63, 0xa1, 0x0d, - 0x79, 0x8a, 0x5a, 0xc1, 0xad, 0x2e, 0x41, 0x6a, 0x81, 0x7b, 0xa8, 0xe9, 0xb0, 0x77, 0xa2, 0xfd, - 0xe8, 0xce, 0xe6, 0x61, 0x8b, 0x2e, 0xb5, 0x47, 0x9d, 0xf8, 0xf8, 0xca, 0xe5, 0xb7, 0x6e, 0x23, - 0xf1, 0x42, 0xf2, 0x08, 0xc5, 0xd6, 0xe9, 0x44, 0x98, 0x17, 0x5a, 0x28, 0xc9, 0x0b, 0x91, 0xd8, - 0xfe, 0x16, 0xb5, 0x70, 0x1b, 0x6d, 0x64, 0x72, 0x28, 0xce, 0xad, 0xe7, 0xd5, 0xc4, 0xfd, 0x20, - 0x12, 0x75, 0x6b, 0xf3, 0x3c, 0xcd, 0x33, 0x74, 0x7d, 0x1c, 0x86, 0x3c, 0xd6, 0x6e, 0x80, 0x15, - 0xa6, 0x7b, 0xbc, 0xdf, 0x33, 0xc9, 0xc8, 0x73, 0x1e, 0xe5, 0x79, 0x0d, 0xe7, 0x13, 0x84, 0x7e, - 0xbd, 0xb8, 0xaf, 0x74, 0x40, 0xdd, 0x78, 0xe8, 0x7c, 0x3c, 0xd4, 0x0d, 0xde, 0x8f, 0x87, 0x9e, - 0xf2, 0x54, 0xf8, 0xdc, 0x64, 0x29, 0x93, 0x7c, 0x8e, 0x7c, 0x6b, 0x55, 0xa5, 0xfe, 0xd4, 0xda, - 0xfa, 0xff, 0xb5, 0x86, 0x4f, 0x02, 0xf0, 0x35, 0x0b, 0x7e, 0xfb, 0xaf, 0xe0, 0x8e, 0x64, 0x99, - 0xfc, 0xf0, 0xd3, 0x3a, 0xda, 0xb0, 0xe4, 0x78, 0x84, 0x9a, 0x6e, 0xda, 0xb8, 0x1b, 0x00, 0xad, - 0xae, 0x52, 0x67, 0xbf, 0x5e, 0xe0, 0x4a, 0x90, 0xdd, 0xb7, 0x5f, 0x7e, 0x7c, 0x5c, 0xdb, 0xc2, - 0x2d, 0xb6, 0xfa, 0xff, 0xc0, 0x1f, 0x22, 0x74, 0x2d, 0x6c, 0x13, 0xdf, 0x5b, 0x75, 0xac, 0xdd, - 0xae, 0xce, 0xfd, 0x7f, 0x13, 0x7b, 0x94, 0x5b, 0x16, 0xa5, 0x8b, 0xf7, 0x02, 0x94, 0xc5, 0x83, - 0xb2, 0xd7, 0x76, 0x37, 0xdf, 0xe0, 0x77, 0x11, 0xba, 0x11, 0x5a, 0x1c, 0xe5, 0x79, 0x15, 0x57, - 0xed, 0x36, 0x55, 0x71, 0xd5, 0xef, 0x03, 0xd9, 0xb3, 0x5c, 0xdb, 0x78, 0xab, 0x92, 0xeb, 0xf8, - 0xf1, 0xe5, 0x34, 0x8e, 0x26, 0xd3, 0x38, 0xfa, 0x3e, 0x8d, 0xa3, 0xf7, 0xb3, 0xb8, 0x31, 0x99, - 0xc5, 0x8d, 0xaf, 0xb3, 0xb8, 0xf1, 0xf2, 0x20, 0xcd, 0xcc, 0x68, 0xdc, 0xa7, 0x03, 0x28, 0x98, - 0x06, 0xa9, 0x1e, 0x64, 0xe0, 0x2c, 0xce, 0x17, 0x26, 0xe6, 0xa2, 0x14, 0xba, 0xdf, 0xb4, 0x5f, - 0x83, 0x87, 0x3f, 0x03, 0x00, 0x00, 0xff, 0xff, 0x13, 0x1f, 0xea, 0x75, 0xc9, 0x04, 0x00, 0x00, + 0x14, 0xc7, 0x33, 0xad, 0x0d, 0x38, 0x05, 0xc5, 0x49, 0x4a, 0x4b, 0x62, 0x37, 0x65, 0xc0, 0x1f, + 0xa8, 0xcc, 0x90, 0x8a, 0xde, 0xdb, 0x83, 0x15, 0xbc, 0xd4, 0x05, 0x2f, 0xde, 0x26, 0xc9, 0xb0, + 0x5d, 0xd8, 0xcc, 0xdb, 0xce, 0x6c, 0xa4, 0x45, 0xbc, 0x78, 0x17, 0x44, 0xc1, 0x7f, 0xc5, 0x7f, + 0xa1, 0xc7, 0x82, 0x17, 0x4f, 0x22, 0x89, 0x7f, 0x88, 0xec, 0xcc, 0x04, 0x77, 0xcc, 0xae, 0x8a, + 0xb7, 0xc9, 0xbc, 0xef, 0xf7, 0xbd, 0xcf, 0x9b, 0xf7, 0xb2, 0x78, 0x7b, 0x0c, 0x5a, 0xf2, 0x09, + 0x4c, 0x45, 0xaa, 0xf8, 0xe9, 0x4c, 0xea, 0x73, 0x96, 0x6b, 0x28, 0x80, 0x6c, 0x96, 0x01, 0xe6, + 0x02, 0xbd, 0x9d, 0xaa, 0x2a, 0x17, 0x5a, 0x4c, 0x8d, 0x93, 0x85, 0x11, 0x2d, 0xc7, 0xa0, 0x27, + 0x3e, 0x72, 0x6f, 0x0c, 0x66, 0x0a, 0x86, 0x8f, 0x84, 0x91, 0x2e, 0x33, 0x7f, 0x35, 0x1c, 0xc9, + 0x42, 0x0c, 0x79, 0x2e, 0x92, 0x54, 0x89, 0x22, 0x05, 0xe5, 0xb5, 0xdd, 0x04, 0x12, 0xb0, 0x47, + 0x5e, 0x9e, 0xfc, 0xed, 0xcd, 0x04, 0x20, 0xc9, 0x24, 0x17, 0x79, 0xca, 0x85, 0x52, 0x50, 0x58, + 0x8b, 0xaf, 0x4c, 0xbb, 0x98, 0x3c, 0x2f, 0xb3, 0x1e, 0x5b, 0x9c, 0x58, 0x9e, 0xce, 0xa4, 0x29, + 0xe8, 0x53, 0xdc, 0x09, 0x6e, 0x4d, 0x0e, 0xca, 0x48, 0x32, 0xc4, 0x6d, 0x87, 0xbd, 0x83, 0xf6, + 0xd0, 0xdd, 0xcd, 0xfd, 0x0e, 0xab, 0xb4, 0xc7, 0x9c, 0xf8, 0xf0, 0xca, 0xc5, 0xb7, 0x41, 0x2b, + 0xf6, 0x42, 0xfa, 0x18, 0x47, 0x36, 0xd3, 0x91, 0x2c, 0x5e, 0x18, 0xa9, 0x95, 0x98, 0xca, 0xd8, + 0xf6, 0xb7, 0xac, 0x45, 0xba, 0x78, 0x23, 0x55, 0x13, 0x79, 0x66, 0x73, 0x5e, 0x8d, 0xdd, 0x0f, + 0xaa, 0xf0, 0xa0, 0xd1, 0xe7, 0x69, 0x9e, 0xe1, 0xeb, 0xb3, 0x30, 0xe4, 0xb1, 0xfa, 0x01, 0x56, + 0x68, 0xf7, 0x78, 0xbf, 0x3b, 0xe9, 0x89, 0xe7, 0x3c, 0xc8, 0xb2, 0x06, 0xce, 0x27, 0x18, 0xff, + 0x7a, 0x71, 0x5f, 0xe9, 0x36, 0x73, 0xe3, 0x61, 0xe5, 0x78, 0x98, 0x1b, 0xbc, 0x1f, 0x0f, 0x3b, + 0x16, 0x89, 0xf4, 0xde, 0xb8, 0xe2, 0xa4, 0x9f, 0x91, 0x6f, 0xad, 0xae, 0xd4, 0x9f, 0x5a, 0x5b, + 0xff, 0xbf, 0xd6, 0xc8, 0x51, 0x00, 0xbe, 0x66, 0xc1, 0xef, 0xfc, 0x15, 0xdc, 0x91, 0x54, 0xc9, + 0xf7, 0x3f, 0xad, 0xe3, 0x0d, 0x4b, 0x4e, 0x4e, 0x70, 0xdb, 0x4d, 0x9b, 0x0c, 0x02, 0xa0, 0xd5, + 0x55, 0xea, 0xed, 0x35, 0x0b, 0x5c, 0x09, 0xda, 0x7f, 0xfb, 0xe5, 0xc7, 0xc7, 0xb5, 0x2d, 0xd2, + 0xe1, 0xab, 0xff, 0x0f, 0xf2, 0x01, 0xe1, 0x6b, 0x61, 0x9b, 0xe4, 0xfe, 0x6a, 0xc6, 0xc6, 0xed, + 0xea, 0x3d, 0xf8, 0x37, 0xb1, 0x47, 0xb9, 0x65, 0x51, 0x06, 0x64, 0x37, 0x40, 0x59, 0x3e, 0x28, + 0x7f, 0x6d, 0x77, 0xf3, 0x0d, 0x79, 0x87, 0xf0, 0x8d, 0x30, 0xc5, 0x41, 0x96, 0xd5, 0x71, 0x35, + 0x6e, 0x53, 0x1d, 0x57, 0xf3, 0x3e, 0xd0, 0x5d, 0xcb, 0xb5, 0x4d, 0xb6, 0x6a, 0xb9, 0x0e, 0x1f, + 0x5d, 0xcc, 0x23, 0x74, 0x39, 0x8f, 0xd0, 0xf7, 0x79, 0x84, 0xde, 0x2f, 0xa2, 0xd6, 0xe5, 0x22, + 0x6a, 0x7d, 0x5d, 0x44, 0xad, 0x97, 0x7d, 0x03, 0x4a, 0xb3, 0x14, 0x9c, 0xef, 0x6c, 0xe9, 0x2c, + 0xce, 0x73, 0x69, 0x46, 0x6d, 0xfb, 0x09, 0x78, 0xf8, 0x33, 0x00, 0x00, 0xff, 0xff, 0xd6, 0x2d, + 0xea, 0x5b, 0xbe, 0x04, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/domain/types/record.pb.go b/x/domain/types/record.pb.go index 364d62e7c..9602b6fda 100644 --- a/x/domain/types/record.pb.go +++ b/x/domain/types/record.pb.go @@ -89,19 +89,18 @@ func init() { func init() { proto.RegisterFile("core/domain/record.proto", fileDescriptor_550832b98116f1e7) } var fileDescriptor_550832b98116f1e7 = []byte{ - // 186 bytes of a gzipped FileDescriptorProto + // 175 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x48, 0xce, 0x2f, 0x4a, 0xd5, 0x4f, 0xc9, 0xcf, 0x4d, 0xcc, 0xcc, 0xd3, 0x2f, 0x4a, 0x4d, 0xce, 0x2f, 0x4a, 0xd1, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x06, 0xc9, 0xe8, 0x41, 0x64, 0x94, 0x22, 0xb8, 0xf8, 0x42, 0x8b, 0x53, 0x8b, 0xf2, 0x12, 0x73, 0x53, 0x83, 0xc0, 0x8a, 0x84, 0x44, 0xb8, 0x58, 0x33, 0xf3, 0x52, 0x52, 0x2b, 0x24, 0x18, 0x15, 0x18, 0x35, 0x38, 0x83, 0x20, 0x1c, 0x21, 0x09, 0x2e, 0xf6, 0xc4, 0x94, 0x94, 0xa2, 0xd4, 0xe2, 0x62, 0x09, 0x26, 0xb0, 0x38, 0x8c, 0x2b, 0x24, 0xc6, 0xc5, - 0x96, 0x9b, 0x5a, 0x92, 0x91, 0x9f, 0x22, 0xc1, 0x0c, 0x96, 0x80, 0xf2, 0x9c, 0x1c, 0x4e, 0x3c, + 0x96, 0x9b, 0x5a, 0x92, 0x91, 0x9f, 0x22, 0xc1, 0x0c, 0x96, 0x80, 0xf2, 0x9c, 0x4c, 0x4f, 0x3c, 0x92, 0x63, 0xbc, 0xf0, 0x48, 0x8e, 0xf1, 0xc1, 0x23, 0x39, 0xc6, 0x09, 0x8f, 0xe5, 0x18, 0x2e, - 0x3c, 0x96, 0x63, 0xb8, 0xf1, 0x58, 0x8e, 0x21, 0x4a, 0x2d, 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, - 0x2f, 0x39, 0x3f, 0x57, 0xbf, 0x38, 0x3f, 0xaf, 0x48, 0x37, 0x33, 0x5f, 0x1f, 0xec, 0xda, 0x0a, - 0x98, 0x7b, 0x4b, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0xee, 0x35, 0x06, 0x04, 0x00, 0x00, - 0xff, 0xff, 0x08, 0x69, 0xf9, 0xf3, 0xcb, 0x00, 0x00, 0x00, + 0x3c, 0x96, 0x63, 0xb8, 0xf1, 0x58, 0x8e, 0x21, 0x4a, 0xba, 0x38, 0x3f, 0xaf, 0x48, 0x2f, 0x33, + 0x5f, 0x1f, 0xec, 0xc4, 0x0a, 0x98, 0x23, 0x4b, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0x8e, + 0x34, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0x54, 0xac, 0xcc, 0x87, 0xc0, 0x00, 0x00, 0x00, } func (m *UsernameRecord) Marshal() (dAtA []byte, err error) { diff --git a/x/domain/types/tx.pb.go b/x/domain/types/tx.pb.go index 65ff2d769..2ca4e6355 100644 --- a/x/domain/types/tx.pb.go +++ b/x/domain/types/tx.pb.go @@ -320,26 +320,26 @@ func init() { func init() { proto.RegisterFile("core/domain/tx.proto", fileDescriptor_d1e2442c81dc82e6) } var fileDescriptor_d1e2442c81dc82e6 = []byte{ - // 302 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x93, 0xcf, 0x4a, 0xc3, 0x40, - 0x10, 0xc6, 0x93, 0x16, 0x2b, 0xae, 0xb7, 0x25, 0xc8, 0xd2, 0xc3, 0x52, 0x02, 0x8a, 0x97, 0x26, - 0xa0, 0x2f, 0x20, 0xea, 0x49, 0xe8, 0x25, 0xd0, 0x8b, 0xb7, 0xfc, 0x19, 0xd2, 0x40, 0x93, 0x09, - 0xbb, 0x2b, 0xc4, 0xb7, 0xf0, 0xb1, 0xbc, 0xd9, 0xa3, 0x47, 0x49, 0x5e, 0x44, 0xb2, 0x69, 0xa4, - 0x98, 0x6d, 0x11, 0xec, 0x71, 0xbe, 0x7c, 0xec, 0x6f, 0xf8, 0x85, 0x21, 0x4e, 0x8c, 0x02, 0xfc, - 0x04, 0xf3, 0x30, 0x2b, 0x7c, 0x55, 0x79, 0xa5, 0x40, 0x85, 0xf4, 0xbc, 0x4d, 0xbd, 0x2e, 0x9d, - 0xb2, 0xdd, 0x8a, 0x80, 0x18, 0x45, 0xd2, 0xd5, 0xdc, 0x88, 0xb0, 0x85, 0x4c, 0x1f, 0x04, 0x84, - 0x0a, 0x96, 0x12, 0x44, 0x11, 0xe6, 0x10, 0xe8, 0x82, 0xa4, 0x8c, 0x9c, 0xc6, 0xed, 0x07, 0x14, - 0xcc, 0x9e, 0xd9, 0xd7, 0x67, 0x41, 0x3f, 0x52, 0x87, 0x9c, 0x64, 0x45, 0x02, 0x15, 0x1b, 0xe9, - 0xbc, 0x1b, 0xe8, 0x05, 0x99, 0xe4, 0xa0, 0x56, 0x98, 0xb0, 0xb1, 0x8e, 0xb7, 0x93, 0xeb, 0x92, - 0xd9, 0x3e, 0x46, 0x00, 0xb2, 0xc4, 0x42, 0x82, 0xfb, 0xa4, 0xf7, 0x58, 0x96, 0xc9, 0xff, 0xf7, - 0xd8, 0xf2, 0x8c, 0x6f, 0xfd, 0xe2, 0x3d, 0xc2, 0x1a, 0x8e, 0xc5, 0x33, 0xbe, 0xd5, 0xf3, 0x6e, - 0x3e, 0x46, 0x64, 0xbc, 0x90, 0x29, 0x5d, 0x13, 0xc7, 0x24, 0x82, 0x5e, 0x7a, 0x3b, 0xff, 0xcb, - 0xdb, 0xa7, 0x6b, 0x3a, 0xff, 0x53, 0xad, 0xa7, 0xb6, 0x34, 0x93, 0x86, 0x21, 0xcd, 0x28, 0x6b, - 0x48, 0x3b, 0xe8, 0xb4, 0xa5, 0x99, 0x24, 0x0c, 0x69, 0x46, 0x55, 0x43, 0xda, 0x41, 0xa3, 0xf7, - 0x77, 0xef, 0x35, 0xb7, 0x37, 0x35, 0xb7, 0xbf, 0x6a, 0x6e, 0xbf, 0x35, 0xdc, 0xda, 0x34, 0xdc, - 0xfa, 0x6c, 0xb8, 0xf5, 0x7c, 0x95, 0x66, 0x6a, 0xf5, 0x12, 0x79, 0x31, 0xe6, 0xbe, 0xc4, 0x42, - 0xcc, 0x33, 0xf4, 0xf5, 0x01, 0x54, 0x3f, 0x57, 0xf2, 0x5a, 0x82, 0x8c, 0x26, 0xfa, 0x04, 0x6e, - 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0xbc, 0x1c, 0x1f, 0x5a, 0x41, 0x03, 0x00, 0x00, + // 292 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x49, 0xce, 0x2f, 0x4a, + 0xd5, 0x4f, 0xc9, 0xcf, 0x4d, 0xcc, 0xcc, 0xd3, 0x2f, 0xa9, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, + 0x17, 0xe2, 0x06, 0x89, 0xea, 0x41, 0x44, 0xa5, 0x24, 0x90, 0x95, 0x14, 0xa5, 0x26, 0xe7, 0x17, + 0xa5, 0x40, 0x94, 0x29, 0x25, 0x71, 0x49, 0xf8, 0x16, 0xa7, 0x3b, 0x17, 0xa5, 0x26, 0x96, 0xa4, + 0x86, 0x16, 0xa7, 0x16, 0xe5, 0x25, 0xe6, 0xa6, 0x06, 0x81, 0x15, 0x14, 0x0b, 0x49, 0x70, 0xb1, + 0x27, 0x83, 0x24, 0xf2, 0x8b, 0x24, 0x18, 0x15, 0x18, 0x35, 0x38, 0x83, 0x60, 0x5c, 0x21, 0x11, + 0x2e, 0xd6, 0xcc, 0xbc, 0x94, 0xd4, 0x0a, 0x09, 0x26, 0xb0, 0x38, 0x84, 0x23, 0x24, 0xc6, 0xc5, + 0x96, 0x9b, 0x5a, 0x92, 0x91, 0x9f, 0x22, 0xc1, 0x0c, 0x16, 0x86, 0xf2, 0x94, 0x94, 0xb8, 0x14, + 0x70, 0xd9, 0x11, 0x94, 0x5a, 0x5c, 0x90, 0x9f, 0x57, 0x9c, 0xaa, 0xe4, 0x05, 0x76, 0x47, 0x68, + 0x41, 0x0a, 0xe5, 0xee, 0x80, 0xda, 0x87, 0xd5, 0x2c, 0x34, 0xfb, 0x5c, 0x52, 0x73, 0x52, 0xa9, + 0x65, 0x1f, 0x56, 0xb3, 0x60, 0xf6, 0x19, 0x9d, 0x67, 0xe2, 0x62, 0xf6, 0x2d, 0x4e, 0x17, 0xca, + 0xe1, 0x12, 0xc1, 0x16, 0x10, 0x42, 0xaa, 0x7a, 0x48, 0xf1, 0xa5, 0x87, 0x2b, 0xb8, 0xa4, 0x74, + 0x89, 0x52, 0x06, 0xb3, 0x15, 0x64, 0x1b, 0xb6, 0x60, 0xc0, 0xb4, 0x0d, 0x6b, 0x60, 0x61, 0xda, + 0x86, 0x37, 0x4c, 0x41, 0xb6, 0x61, 0x0b, 0x04, 0x4c, 0xdb, 0xb0, 0x06, 0x15, 0xa6, 0x6d, 0x78, + 0x43, 0xd4, 0xc9, 0xf4, 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, + 0x9c, 0xf0, 0x58, 0x8e, 0xe1, 0xc2, 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0xa4, 0x8b, + 0xf3, 0xf3, 0x8a, 0xf4, 0x32, 0xf3, 0xf5, 0xc1, 0xa9, 0xbe, 0x02, 0x9e, 0x35, 0x2a, 0x0b, 0x52, + 0x8b, 0x93, 0xd8, 0xc0, 0xe9, 0xde, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0xe0, 0x96, 0x61, 0x7f, + 0x36, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/identity/client/cli/query.go b/x/identity/client/cli/query.go index e939e991f..744cb2932 100644 --- a/x/identity/client/cli/query.go +++ b/x/identity/client/cli/query.go @@ -10,7 +10,7 @@ import ( // "github.com/cosmos/cosmos-sdk/client/flags" // sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/sonr-io/core/x/identity/types" + "sonr.io/core/x/identity/types" ) // GetQueryCmd returns the cli query commands for this module diff --git a/x/identity/client/cli/query_controller_account.go b/x/identity/client/cli/query_controller_account.go index d50cae25c..9844ffe61 100644 --- a/x/identity/client/cli/query_controller_account.go +++ b/x/identity/client/cli/query_controller_account.go @@ -3,7 +3,7 @@ package cli import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" - "github.com/sonr-io/core/x/identity/types" + "sonr.io/core/x/identity/types" "github.com/spf13/cobra" ) diff --git a/x/identity/client/cli/query_did_document.go b/x/identity/client/cli/query_did_document.go index c912a3b75..d77e5ed5f 100644 --- a/x/identity/client/cli/query_did_document.go +++ b/x/identity/client/cli/query_did_document.go @@ -5,7 +5,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/sonr-io/core/x/identity/types" + "sonr.io/core/x/identity/types" ) func CmdListDIDDocument() *cobra.Command { diff --git a/x/identity/client/cli/query_params.go b/x/identity/client/cli/query_params.go index 7bd04198c..34f0fafcd 100644 --- a/x/identity/client/cli/query_params.go +++ b/x/identity/client/cli/query_params.go @@ -5,7 +5,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/sonr-io/core/x/identity/types" + "sonr.io/core/x/identity/types" ) func CmdQueryParams() *cobra.Command { diff --git a/x/identity/client/cli/tx.go b/x/identity/client/cli/tx.go index 8b3798d0a..58ec41eaf 100644 --- a/x/identity/client/cli/tx.go +++ b/x/identity/client/cli/tx.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" // "github.com/cosmos/cosmos-sdk/client/flags" - "github.com/sonr-io/core/x/identity/types" + "sonr.io/core/x/identity/types" ) var ( diff --git a/x/identity/client/cli/tx_controller_account.go b/x/identity/client/cli/tx_controller_account.go index bdb0e9fb6..0114599ad 100644 --- a/x/identity/client/cli/tx_controller_account.go +++ b/x/identity/client/cli/tx_controller_account.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/client/tx" - "github.com/sonr-io/core/x/identity/types" + "sonr.io/core/x/identity/types" "github.com/spf13/cobra" ) diff --git a/x/identity/genesis.go b/x/identity/genesis.go index e219fe643..bd5f6212a 100644 --- a/x/identity/genesis.go +++ b/x/identity/genesis.go @@ -2,8 +2,8 @@ package identity import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/sonr-io/core/x/identity/keeper" - "github.com/sonr-io/core/x/identity/types" + "sonr.io/core/x/identity/keeper" + "sonr.io/core/x/identity/types" ) // InitGenesis initializes the module's state from a provided genesis state. diff --git a/x/identity/genesis_test.go b/x/identity/genesis_test.go index 70f6d26e1..f4b84c5f6 100644 --- a/x/identity/genesis_test.go +++ b/x/identity/genesis_test.go @@ -3,10 +3,10 @@ package identity_test import ( "testing" - keepertest "github.com/sonr-io/core/testutil/keeper" - "github.com/sonr-io/core/testutil/nullify" - "github.com/sonr-io/core/x/identity" - "github.com/sonr-io/core/x/identity/types" + keepertest "sonr.io/core/testutil/keeper" + "sonr.io/core/testutil/nullify" + "sonr.io/core/x/identity" + "sonr.io/core/x/identity/types" "github.com/stretchr/testify/require" ) diff --git a/x/identity/keeper/genesis.go b/x/identity/keeper/genesis.go index bf109884a..eee498280 100644 --- a/x/identity/keeper/genesis.go +++ b/x/identity/keeper/genesis.go @@ -5,7 +5,7 @@ import ( "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/sonr-io/core/x/identity/types" + "sonr.io/core/x/identity/types" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" ) diff --git a/x/identity/keeper/keeper.go b/x/identity/keeper/keeper.go index eae66f27d..ffb471261 100644 --- a/x/identity/keeper/keeper.go +++ b/x/identity/keeper/keeper.go @@ -14,7 +14,7 @@ import ( host "github.com/cosmos/ibc-go/v7/modules/core/24-host" "github.com/cosmos/ibc-go/v7/modules/core/exported" - "github.com/sonr-io/core/x/identity/types" + "sonr.io/core/x/identity/types" ) type ( diff --git a/x/identity/keeper/msg_server.go b/x/identity/keeper/msg_server.go index af352a935..7a40d4dba 100644 --- a/x/identity/keeper/msg_server.go +++ b/x/identity/keeper/msg_server.go @@ -8,8 +8,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/sonr-io/core/internal/crypto" - "github.com/sonr-io/core/x/identity/types" + "sonr.io/core/internal/crypto" + "sonr.io/core/x/identity/types" ) type msgServer struct { diff --git a/x/identity/keeper/params_test.go b/x/identity/keeper/params_test.go index 0dc298435..208acaeed 100644 --- a/x/identity/keeper/params_test.go +++ b/x/identity/keeper/params_test.go @@ -3,8 +3,8 @@ package keeper_test import ( "testing" - testkeeper "github.com/sonr-io/core/testutil/keeper" - "github.com/sonr-io/core/x/identity/types" + testkeeper "sonr.io/core/testutil/keeper" + "sonr.io/core/x/identity/types" "github.com/stretchr/testify/require" ) diff --git a/x/identity/keeper/query.go b/x/identity/keeper/query.go index 130d27cc0..292b7b805 100644 --- a/x/identity/keeper/query.go +++ b/x/identity/keeper/query.go @@ -8,7 +8,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/cosmos/cosmos-sdk/types/query" - "github.com/sonr-io/core/x/identity/types" + "sonr.io/core/x/identity/types" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" ) diff --git a/x/identity/module.go b/x/identity/module.go index f1360b8e0..f8ee9df07 100644 --- a/x/identity/module.go +++ b/x/identity/module.go @@ -17,9 +17,9 @@ import ( cdctypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/sonr-io/core/x/identity/client/cli" - "github.com/sonr-io/core/x/identity/keeper" - "github.com/sonr-io/core/x/identity/types" + "sonr.io/core/x/identity/client/cli" + "sonr.io/core/x/identity/keeper" + "sonr.io/core/x/identity/types" ) var ( diff --git a/x/identity/module_simulation.go b/x/identity/module_simulation.go index 20635f7cd..dec64c202 100644 --- a/x/identity/module_simulation.go +++ b/x/identity/module_simulation.go @@ -8,9 +8,9 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" - "github.com/sonr-io/core/testutil/sample" - identitysimulation "github.com/sonr-io/core/x/identity/simulation" - "github.com/sonr-io/core/x/identity/types" + "sonr.io/core/testutil/sample" + identitysimulation "sonr.io/core/x/identity/simulation" + "sonr.io/core/x/identity/types" ) // avoid unused import issue diff --git a/x/identity/simulation/controller_account.go b/x/identity/simulation/controller_account.go index 923349b83..68956ee90 100644 --- a/x/identity/simulation/controller_account.go +++ b/x/identity/simulation/controller_account.go @@ -8,8 +8,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" - "github.com/sonr-io/core/x/identity/keeper" - "github.com/sonr-io/core/x/identity/types" + "sonr.io/core/x/identity/keeper" + "sonr.io/core/x/identity/types" ) func SimulateMsgCreateControllerAccount( diff --git a/x/identity/simulation/did_document.go b/x/identity/simulation/did_document.go index c53c6a789..5df752e9c 100644 --- a/x/identity/simulation/did_document.go +++ b/x/identity/simulation/did_document.go @@ -7,8 +7,8 @@ import ( "github.com/cosmos/cosmos-sdk/baseapp" sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/sonr-io/core/x/identity/keeper" - "github.com/sonr-io/core/x/identity/types" + "sonr.io/core/x/identity/keeper" + "sonr.io/core/x/identity/types" ) // Prevent strconv unused error diff --git a/x/identity/simulation/register_identity.go b/x/identity/simulation/register_identity.go index 5916a6029..0e44d07ef 100644 --- a/x/identity/simulation/register_identity.go +++ b/x/identity/simulation/register_identity.go @@ -6,8 +6,8 @@ import ( "github.com/cosmos/cosmos-sdk/baseapp" sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/sonr-io/core/x/identity/keeper" - "github.com/sonr-io/core/x/identity/types" + "sonr.io/core/x/identity/keeper" + "sonr.io/core/x/identity/types" ) func SimulateMsgRegisterIdentity( diff --git a/x/identity/types/account.pb.go b/x/identity/types/account.pb.go index bc7cb2843..747fafb34 100644 --- a/x/identity/types/account.pb.go +++ b/x/identity/types/account.pb.go @@ -97,7 +97,7 @@ func init() { func init() { proto.RegisterFile("core/identity/account.proto", fileDescriptor_19070c8376816cff) } var fileDescriptor_19070c8376816cff = []byte{ - // 221 bytes of a gzipped FileDescriptorProto + // 210 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4e, 0xce, 0x2f, 0x4a, 0xd5, 0xcf, 0x4c, 0x49, 0xcd, 0x2b, 0xc9, 0x2c, 0xa9, 0xd4, 0x4f, 0x4c, 0x4e, 0xce, 0x2f, 0xcd, 0x2b, 0xd1, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x05, 0x49, 0xea, 0xc1, 0x24, 0x95, 0x7a, @@ -107,11 +107,11 @@ var fileDescriptor_19070c8376816cff = []byte{ 0x4a, 0x09, 0x26, 0xb0, 0x1c, 0x42, 0x40, 0x48, 0x8d, 0x8b, 0x2f, 0xb1, 0xb4, 0x24, 0x03, 0x64, 0x76, 0x72, 0x62, 0x49, 0x7e, 0x51, 0xb1, 0x04, 0xb3, 0x02, 0xb3, 0x06, 0x67, 0x10, 0x9a, 0x28, 0xc8, 0xfc, 0xf2, 0xc4, 0x9c, 0x9c, 0xd4, 0x92, 0x62, 0x09, 0x16, 0xb0, 0x02, 0x18, 0xd7, 0xc9, - 0xe9, 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, - 0x8e, 0xe1, 0xc2, 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0x34, 0xd2, 0x33, 0x4b, 0x32, - 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0x8b, 0xf3, 0xf3, 0x8a, 0x74, 0x33, 0xf3, 0xf5, 0xc1, - 0x1e, 0xad, 0x40, 0x78, 0xb5, 0xa4, 0xb2, 0x20, 0xb5, 0x38, 0x89, 0x0d, 0xec, 0x53, 0x63, 0x40, - 0x00, 0x00, 0x00, 0xff, 0xff, 0xab, 0x01, 0x89, 0x10, 0x08, 0x01, 0x00, 0x00, + 0xfc, 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, + 0x8e, 0xe1, 0xc2, 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0x64, 0x8b, 0xf3, 0xf3, 0x8a, + 0xf4, 0x32, 0xf3, 0xf5, 0xc1, 0xbe, 0xab, 0x40, 0xf8, 0xaf, 0xa4, 0xb2, 0x20, 0xb5, 0x38, 0x89, + 0x0d, 0xec, 0x3d, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0x36, 0x38, 0x37, 0x58, 0xfd, 0x00, + 0x00, 0x00, } func (m *ControllerAccount) Marshal() (dAtA []byte, err error) { diff --git a/x/identity/types/did.pb.go b/x/identity/types/did.pb.go index 587992813..0232ecc79 100644 --- a/x/identity/types/did.pb.go +++ b/x/identity/types/did.pb.go @@ -315,42 +315,42 @@ func init() { func init() { proto.RegisterFile("core/identity/did.proto", fileDescriptor_04e15460d8451849) } var fileDescriptor_04e15460d8451849 = []byte{ - // 555 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x54, 0xcb, 0x8e, 0xd3, 0x30, - 0x14, 0x9d, 0xb4, 0xf3, 0xa0, 0xee, 0xb4, 0x33, 0xf2, 0x74, 0x44, 0x16, 0x28, 0x2a, 0x15, 0x12, - 0x65, 0x41, 0x8b, 0xca, 0x17, 0x74, 0xd4, 0x4d, 0x19, 0x46, 0x48, 0x11, 0x62, 0x81, 0x90, 0x22, - 0xc7, 0xf1, 0xb4, 0x26, 0xa9, 0x1d, 0xd9, 0x4e, 0x3b, 0xf9, 0x0b, 0xbe, 0x83, 0x0d, 0x3b, 0xbe, - 0x81, 0xe5, 0x2c, 0x59, 0xa2, 0xf6, 0x47, 0x90, 0x9d, 0x47, 0x43, 0x47, 0x20, 0x95, 0x55, 0xeb, - 0x7b, 0xce, 0x3d, 0xf1, 0xbd, 0xe7, 0xc8, 0xe0, 0x31, 0xe6, 0x82, 0x0c, 0x69, 0x40, 0x98, 0xa2, - 0x2a, 0x1d, 0x06, 0x34, 0x18, 0xc4, 0x82, 0x2b, 0x0e, 0x5b, 0x1a, 0x18, 0x14, 0x40, 0xef, 0xeb, - 0x21, 0x68, 0x4e, 0xa6, 0x93, 0x09, 0xc7, 0xc9, 0x82, 0x30, 0x05, 0x6d, 0x70, 0x82, 0x39, 0x53, - 0xe4, 0x4e, 0xd9, 0x56, 0xb7, 0xde, 0x6f, 0xb8, 0xc5, 0x11, 0xb6, 0x41, 0x8d, 0x06, 0x76, 0xad, - 0x6b, 0xf5, 0x1b, 0x6e, 0x8d, 0x06, 0xd0, 0x01, 0x40, 0x43, 0x82, 0x47, 0x11, 0x11, 0x76, 0xdd, - 0x90, 0x2b, 0x15, 0xf8, 0x0e, 0xb4, 0x51, 0xa2, 0xe6, 0xfa, 0x3b, 0x18, 0x29, 0xca, 0x99, 0x7d, - 0xd4, 0xad, 0xf7, 0x9b, 0xa3, 0xe7, 0x83, 0x3f, 0x6e, 0x30, 0xf8, 0x40, 0x04, 0xbd, 0xcd, 0x29, - 0x2e, 0x89, 0xcc, 0xaf, 0x9c, 0xd3, 0xd8, 0xdd, 0x69, 0x87, 0x2e, 0x38, 0x47, 0x52, 0x12, 0xa1, - 0x0f, 0xde, 0x82, 0xa8, 0x39, 0x0f, 0xec, 0xe3, 0xfd, 0x24, 0xcf, 0x4a, 0x81, 0x1b, 0xd3, 0x0f, - 0x3f, 0x81, 0x4b, 0x8c, 0x62, 0xe4, 0xd3, 0x88, 0xaa, 0xd4, 0xa3, 0x6c, 0xc9, 0xf3, 0xbb, 0x9e, - 0xec, 0x27, 0xdc, 0xd9, 0xaa, 0x4c, 0x4b, 0x91, 0x1d, 0xf5, 0x80, 0x44, 0x64, 0x96, 0xa9, 0x3f, - 0xfa, 0x6f, 0xf5, 0x49, 0x29, 0x02, 0xdf, 0x82, 0x56, 0x48, 0x52, 0x0f, 0xcd, 0x04, 0x21, 0xda, - 0x3b, 0xbb, 0xb1, 0x9f, 0xea, 0x69, 0x48, 0xd2, 0x71, 0xd1, 0x0c, 0x7b, 0xa0, 0x85, 0x22, 0xc9, - 0xbd, 0x90, 0xf1, 0x15, 0xf3, 0x90, 0xb4, 0x81, 0x71, 0xb4, 0xa9, 0x8b, 0xd7, 0xba, 0x36, 0x96, - 0xbd, 0x6f, 0x35, 0x00, 0xab, 0x72, 0xf9, 0x12, 0xb3, 0x64, 0x58, 0x65, 0x32, 0x20, 0x38, 0x54, - 0x69, 0x4c, 0xf2, 0xac, 0x98, 0xff, 0x0f, 0xd2, 0x62, 0xed, 0xa4, 0xe5, 0x19, 0x68, 0xc7, 0x89, - 0x1f, 0x51, 0xec, 0xe9, 0x99, 0x3e, 0xaf, 0x42, 0xfb, 0xd0, 0x70, 0x4e, 0xb3, 0xea, 0x35, 0x49, - 0xdf, 0xac, 0x42, 0xf8, 0x0a, 0x74, 0x2a, 0xac, 0x45, 0x12, 0x29, 0xea, 0x23, 0x49, 0xec, 0x23, - 0xc3, 0x85, 0x25, 0xf7, 0xa6, 0x40, 0xe0, 0x08, 0x5c, 0xfa, 0x11, 0xc7, 0x21, 0x9e, 0x23, 0xca, - 0x3c, 0x84, 0x31, 0x4f, 0x98, 0xf2, 0xa8, 0x4e, 0x8e, 0x6e, 0xb9, 0xd8, 0x82, 0xe3, 0x0c, 0x9b, - 0x06, 0xf0, 0x05, 0x38, 0x47, 0x4a, 0x11, 0xa9, 0xcc, 0x90, 0x9e, 0x99, 0xe5, 0xc4, 0xd0, 0xcf, - 0x2a, 0xf5, 0xf7, 0xf9, 0x58, 0x4a, 0x20, 0x26, 0x63, 0x2e, 0x94, 0x34, 0xb6, 0x36, 0xdc, 0x4a, - 0xa5, 0xf7, 0xdd, 0x02, 0xf6, 0xdf, 0x0c, 0x80, 0x2e, 0xb8, 0x58, 0x56, 0xb0, 0x22, 0xd3, 0x7a, - 0x91, 0xcd, 0xd1, 0xd3, 0x7f, 0xd8, 0x98, 0xed, 0xdd, 0x85, 0xcb, 0x87, 0x5e, 0x3c, 0x01, 0x0d, - 0x41, 0x6e, 0x89, 0x20, 0x0c, 0x17, 0x06, 0x6c, 0x0b, 0xa5, 0x33, 0xf5, 0x8a, 0x33, 0x1d, 0x70, - 0xc4, 0x57, 0x8c, 0x88, 0x7c, 0xe1, 0xd9, 0xe1, 0xea, 0xea, 0xc7, 0xda, 0xb1, 0xee, 0xd7, 0x8e, - 0xf5, 0x6b, 0xed, 0x58, 0x5f, 0x36, 0xce, 0xc1, 0xfd, 0xc6, 0x39, 0xf8, 0xb9, 0x71, 0x0e, 0x3e, - 0xf6, 0x67, 0x54, 0xcd, 0x13, 0x7f, 0x80, 0xf9, 0x62, 0x28, 0x39, 0x13, 0x2f, 0x29, 0x1f, 0x9a, - 0xc7, 0xe6, 0x6e, 0xfb, 0xdc, 0x68, 0x61, 0xe9, 0x1f, 0x9b, 0x17, 0xe7, 0xf5, 0xef, 0x00, 0x00, - 0x00, 0xff, 0xff, 0x5d, 0x0a, 0x61, 0x72, 0x8c, 0x04, 0x00, 0x00, + // 547 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x54, 0xcf, 0x6f, 0x12, 0x41, + 0x14, 0xee, 0x42, 0x5b, 0x64, 0x28, 0xb4, 0x99, 0xd2, 0xb8, 0x07, 0xdd, 0x20, 0x31, 0x11, 0x2f, + 0x60, 0xf0, 0xe0, 0x19, 0xc3, 0x05, 0x6b, 0x63, 0xb2, 0x31, 0x1e, 0x8c, 0xc9, 0x66, 0xd8, 0x7d, + 0x2d, 0xe3, 0x2e, 0x33, 0x9b, 0x99, 0x01, 0xba, 0xff, 0x85, 0x7f, 0x87, 0x17, 0x6f, 0xfe, 0x0d, + 0x1e, 0x7b, 0xf4, 0x68, 0xe0, 0x1f, 0x31, 0x33, 0xfb, 0x83, 0x95, 0x46, 0x13, 0x3c, 0xc1, 0xbc, + 0xef, 0x7b, 0xdf, 0xce, 0x7b, 0xdf, 0x97, 0x41, 0x0f, 0x7d, 0x2e, 0x60, 0x40, 0x03, 0x60, 0x8a, + 0xaa, 0x64, 0x10, 0xd0, 0xa0, 0x1f, 0x0b, 0xae, 0x38, 0x6e, 0x6a, 0xa0, 0x9f, 0x03, 0xdd, 0xaf, + 0x87, 0xa8, 0x31, 0x9e, 0x8c, 0xc7, 0xdc, 0x5f, 0xcc, 0x81, 0x29, 0x6c, 0xa3, 0x9a, 0xcf, 0x99, + 0x82, 0x5b, 0x65, 0x5b, 0x9d, 0x6a, 0xaf, 0xee, 0xe6, 0x47, 0xdc, 0x42, 0x15, 0x1a, 0xd8, 0x95, + 0x8e, 0xd5, 0xab, 0xbb, 0x15, 0x1a, 0x60, 0x07, 0x21, 0x0d, 0x09, 0x1e, 0x45, 0x20, 0xec, 0xaa, + 0x21, 0x97, 0x2a, 0xf8, 0x1d, 0x6a, 0x91, 0x85, 0x9a, 0xe9, 0xef, 0xf8, 0x44, 0x51, 0xce, 0xec, + 0xa3, 0x4e, 0xb5, 0xd7, 0x18, 0x3e, 0xeb, 0xff, 0x71, 0x83, 0xfe, 0x07, 0x10, 0xf4, 0x3a, 0xa3, + 0xb8, 0x10, 0x99, 0x5f, 0x39, 0xa3, 0xb1, 0xbb, 0xd3, 0x8e, 0x5d, 0x74, 0x46, 0xa4, 0x04, 0xa1, + 0x0f, 0xde, 0x1c, 0xd4, 0x8c, 0x07, 0xf6, 0xf1, 0x7e, 0x92, 0xa7, 0x85, 0xc0, 0x95, 0xe9, 0xc7, + 0x9f, 0xd0, 0x85, 0x4f, 0x62, 0x32, 0xa5, 0x11, 0x55, 0x89, 0x47, 0xd9, 0x92, 0x67, 0x77, 0xad, + 0xed, 0x27, 0xdc, 0xde, 0xaa, 0x4c, 0x0a, 0x91, 0x1d, 0xf5, 0x00, 0x22, 0xb8, 0x49, 0xd5, 0x1f, + 0xfc, 0xb7, 0xfa, 0xb8, 0x10, 0xc1, 0x6f, 0x51, 0x33, 0x84, 0xc4, 0x23, 0x37, 0x02, 0x40, 0x7b, + 0x67, 0xd7, 0xf7, 0x53, 0x3d, 0x09, 0x21, 0x19, 0xe5, 0xcd, 0xb8, 0x8b, 0x9a, 0x24, 0x92, 0xdc, + 0x0b, 0x19, 0x5f, 0x31, 0x8f, 0x48, 0x1b, 0x19, 0x47, 0x1b, 0xba, 0x78, 0xa9, 0x6b, 0x23, 0xd9, + 0xfd, 0x56, 0x41, 0xb8, 0x2c, 0x97, 0x2d, 0x31, 0x4d, 0x86, 0x55, 0x24, 0x03, 0xa3, 0x43, 0x95, + 0xc4, 0x90, 0x65, 0xc5, 0xfc, 0xbf, 0x97, 0x16, 0x6b, 0x27, 0x2d, 0x4f, 0x51, 0x2b, 0x5e, 0x4c, + 0x23, 0xea, 0x7b, 0x7a, 0xa6, 0xcf, 0xab, 0xd0, 0x3e, 0x34, 0x9c, 0x93, 0xb4, 0x7a, 0x09, 0xc9, + 0x9b, 0x55, 0x88, 0x5f, 0xa0, 0x76, 0x89, 0x35, 0x5f, 0x44, 0x8a, 0x4e, 0x89, 0x04, 0xfb, 0xc8, + 0x70, 0x71, 0xc1, 0xbd, 0xca, 0x11, 0x3c, 0x44, 0x17, 0xd3, 0x88, 0xfb, 0xa1, 0x3f, 0x23, 0x94, + 0x79, 0xc4, 0xf7, 0xf9, 0x82, 0x29, 0x8f, 0xea, 0xe4, 0xe8, 0x96, 0xf3, 0x2d, 0x38, 0x4a, 0xb1, + 0x49, 0x80, 0x9f, 0xa3, 0x33, 0xa2, 0x14, 0x48, 0x65, 0x86, 0xf4, 0xcc, 0x2c, 0x35, 0x43, 0x3f, + 0x2d, 0xd5, 0xdf, 0x67, 0x63, 0x29, 0x41, 0x98, 0x8c, 0xb9, 0x50, 0xd2, 0xd8, 0x5a, 0x77, 0x4b, + 0x95, 0xee, 0x77, 0x0b, 0xd9, 0x7f, 0x33, 0x00, 0xbb, 0xe8, 0x7c, 0x59, 0xc2, 0xf2, 0x4c, 0xeb, + 0x45, 0x36, 0x86, 0x4f, 0xfe, 0x61, 0x63, 0xba, 0x77, 0x17, 0x2f, 0xef, 0x7b, 0xf1, 0x08, 0xd5, + 0x05, 0x5c, 0x83, 0x00, 0xe6, 0xe7, 0x06, 0x6c, 0x0b, 0x85, 0x33, 0xd5, 0x92, 0x33, 0x6d, 0x74, + 0xc4, 0x57, 0x0c, 0x44, 0xb6, 0xf0, 0xf4, 0xf0, 0xfa, 0xd5, 0x8f, 0xb5, 0x63, 0xdd, 0xad, 0x1d, + 0xeb, 0xd7, 0xda, 0xb1, 0xbe, 0x6c, 0x9c, 0x83, 0xbb, 0x8d, 0x73, 0xf0, 0x73, 0xe3, 0x1c, 0x7c, + 0x7c, 0x2c, 0x39, 0x13, 0x7d, 0xca, 0x07, 0xe6, 0x85, 0xb9, 0xdd, 0xbe, 0x31, 0x5a, 0x4d, 0x4e, + 0x8f, 0xcd, 0x33, 0xf3, 0xf2, 0x77, 0x00, 0x00, 0x00, 0xff, 0xff, 0xdb, 0xf6, 0x15, 0x8a, 0x81, + 0x04, 0x00, 0x00, } func (m *DIDDocument) Marshal() (dAtA []byte, err error) { diff --git a/x/identity/types/did_document.go b/x/identity/types/did_document.go index 9fa987fc6..abce104a5 100644 --- a/x/identity/types/did_document.go +++ b/x/identity/types/did_document.go @@ -7,7 +7,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/go-webauthn/webauthn/protocol" - crypto "github.com/sonr-io/core/internal/crypto" + crypto "sonr.io/core/internal/crypto" ) // NewDIDDocument creates a new DIDDocument from an Identification and optional VerificationRelationships diff --git a/x/identity/types/genesis.pb.go b/x/identity/types/genesis.pb.go index a914179e7..97c5b975a 100644 --- a/x/identity/types/genesis.pb.go +++ b/x/identity/types/genesis.pb.go @@ -99,7 +99,7 @@ func init() { func init() { proto.RegisterFile("core/identity/genesis.proto", fileDescriptor_22ee3e6e2aad889c) } var fileDescriptor_22ee3e6e2aad889c = []byte{ - // 299 bytes of a gzipped FileDescriptorProto + // 288 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4e, 0xce, 0x2f, 0x4a, 0xd5, 0xcf, 0x4c, 0x49, 0xcd, 0x2b, 0xc9, 0x2c, 0xa9, 0xd4, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x05, 0x49, 0xea, 0xc1, 0x24, 0xa5, 0xd0, @@ -113,12 +113,11 @@ var fileDescriptor_22ee3e6e2aad889c = []byte{ 0x85, 0xa6, 0xdb, 0x05, 0xa1, 0x0a, 0x6a, 0x04, 0xba, 0x46, 0xa1, 0x18, 0x2e, 0xd1, 0xe4, 0xfc, 0xbc, 0x92, 0xa2, 0xfc, 0x9c, 0x9c, 0xd4, 0x22, 0x47, 0x88, 0xbf, 0xc1, 0x26, 0x32, 0x83, 0x4d, 0x54, 0x40, 0x33, 0xd1, 0x19, 0x5d, 0x2d, 0xd4, 0x5c, 0xec, 0x86, 0x08, 0x99, 0x71, 0x89, 0x61, - 0x48, 0x38, 0x83, 0x08, 0x09, 0x16, 0x05, 0x46, 0x0d, 0x96, 0x20, 0x1c, 0xb2, 0x4e, 0x4e, 0x27, + 0x48, 0x38, 0x83, 0x08, 0x09, 0x16, 0x05, 0x46, 0x0d, 0x96, 0x20, 0x1c, 0xb2, 0x4e, 0xe6, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x84, 0xc7, 0x72, 0x0c, - 0x17, 0x1e, 0xcb, 0x31, 0xdc, 0x78, 0x2c, 0xc7, 0x10, 0xa5, 0x91, 0x9e, 0x59, 0x92, 0x51, 0x9a, - 0xa4, 0x97, 0x9c, 0x9f, 0xab, 0x5f, 0x9c, 0x9f, 0x57, 0xa4, 0x9b, 0x99, 0xaf, 0x0f, 0x8e, 0x86, - 0x0a, 0x44, 0x44, 0x94, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, 0x83, 0xdc, 0x18, 0x10, 0x00, - 0x00, 0xff, 0xff, 0x4d, 0xbd, 0xca, 0x30, 0x08, 0x02, 0x00, 0x00, + 0x17, 0x1e, 0xcb, 0x31, 0xdc, 0x78, 0x2c, 0xc7, 0x10, 0x25, 0x5b, 0x9c, 0x9f, 0x57, 0xa4, 0x97, + 0x99, 0xaf, 0x0f, 0x0e, 0xfb, 0x0a, 0x44, 0xe8, 0x97, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, + 0xc3, 0xd9, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0x78, 0x1e, 0xeb, 0x62, 0xfd, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/identity/types/genesis_test.go b/x/identity/types/genesis_test.go index e5a3abf71..886b395bb 100644 --- a/x/identity/types/genesis_test.go +++ b/x/identity/types/genesis_test.go @@ -3,7 +3,7 @@ package types_test import ( "testing" - "github.com/sonr-io/core/x/identity/types" + "sonr.io/core/x/identity/types" "github.com/stretchr/testify/require" ) diff --git a/x/identity/types/identifier.pb.go b/x/identity/types/identifier.pb.go index 28c50b233..8567a503d 100644 --- a/x/identity/types/identifier.pb.go +++ b/x/identity/types/identifier.pb.go @@ -175,7 +175,7 @@ func init() { func init() { proto.RegisterFile("core/identity/identifier.proto", fileDescriptor_279efc507d29e268) } var fileDescriptor_279efc507d29e268 = []byte{ - // 287 bytes of a gzipped FileDescriptorProto + // 276 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4b, 0xce, 0x2f, 0x4a, 0xd5, 0xcf, 0x4c, 0x49, 0xcd, 0x2b, 0xc9, 0x2c, 0xa9, 0x84, 0x32, 0xd2, 0x32, 0x53, 0x8b, 0xf4, 0x0a, 0x8a, 0xf2, 0x4b, 0xf2, 0x85, 0x78, 0x41, 0xf2, 0x7a, 0x30, 0x79, 0xa5, 0x74, 0x2e, 0xbe, @@ -189,11 +189,11 @@ var fileDescriptor_279efc507d29e268 = []byte{ 0x55, 0x80, 0x41, 0x88, 0x93, 0x8b, 0xd5, 0xd5, 0xd7, 0xd1, 0xd3, 0x47, 0x80, 0x11, 0xc4, 0x0c, 0xf0, 0x00, 0x89, 0x32, 0x81, 0xe4, 0xdd, 0x3c, 0x5d, 0xfc, 0x05, 0x98, 0x85, 0xb8, 0xb9, 0xd8, 0x03, 0x1c, 0x83, 0x83, 0xbd, 0x5d, 0x23, 0x05, 0x58, 0x84, 0xd8, 0xb9, 0x98, 0xdd, 0x03, 0xdc, - 0x05, 0x58, 0x9d, 0x9c, 0x4e, 0x3c, 0x92, 0x63, 0xbc, 0xf0, 0x48, 0x8e, 0xf1, 0xc1, 0x23, 0x39, - 0xc6, 0x09, 0x8f, 0xe5, 0x18, 0x2e, 0x3c, 0x96, 0x63, 0xb8, 0xf1, 0x58, 0x8e, 0x21, 0x4a, 0x23, - 0x3d, 0xb3, 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x57, 0xbf, 0x38, 0x3f, 0xaf, 0x48, 0x37, - 0x33, 0x5f, 0x1f, 0x1c, 0xc6, 0x15, 0x88, 0x50, 0x06, 0x85, 0x40, 0x71, 0x12, 0x1b, 0x38, 0x84, - 0x8d, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x4b, 0x85, 0xb2, 0x39, 0x83, 0x01, 0x00, 0x00, + 0x05, 0x58, 0x9d, 0xcc, 0x4f, 0x3c, 0x92, 0x63, 0xbc, 0xf0, 0x48, 0x8e, 0xf1, 0xc1, 0x23, 0x39, + 0xc6, 0x09, 0x8f, 0xe5, 0x18, 0x2e, 0x3c, 0x96, 0x63, 0xb8, 0xf1, 0x58, 0x8e, 0x21, 0x4a, 0xb6, + 0x38, 0x3f, 0xaf, 0x48, 0x2f, 0x33, 0x5f, 0x1f, 0x1c, 0xb0, 0x15, 0x88, 0xa0, 0x05, 0x79, 0xbb, + 0x38, 0x89, 0x0d, 0x1c, 0xac, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0x60, 0xbe, 0x44, 0x55, + 0x78, 0x01, 0x00, 0x00, } func (m *UserIdentifier) Marshal() (dAtA []byte, err error) { diff --git a/x/identity/types/messages_controller_account_test.go b/x/identity/types/messages_controller_account_test.go index cbe025ac7..9c344e106 100644 --- a/x/identity/types/messages_controller_account_test.go +++ b/x/identity/types/messages_controller_account_test.go @@ -4,7 +4,7 @@ import ( "testing" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/sonr-io/core/testutil/sample" + "sonr.io/core/testutil/sample" "github.com/stretchr/testify/require" ) diff --git a/x/identity/types/msg_identity.go b/x/identity/types/msg_identity.go index aa7aba8f1..e2cfea273 100644 --- a/x/identity/types/msg_identity.go +++ b/x/identity/types/msg_identity.go @@ -3,7 +3,7 @@ package types import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/sonr-io/core/internal/crypto" + "sonr.io/core/internal/crypto" ) const TypeMsgRegisterIdentity = "register_identity" diff --git a/x/identity/types/params.pb.go b/x/identity/types/params.pb.go index 12949e22e..5a7cfc031 100644 --- a/x/identity/types/params.pb.go +++ b/x/identity/types/params.pb.go @@ -114,28 +114,28 @@ func init() { func init() { proto.RegisterFile("core/identity/params.proto", fileDescriptor_2b3a47d8d2dc969e) } var fileDescriptor_2b3a47d8d2dc969e = []byte{ - // 334 bytes of a gzipped FileDescriptorProto + // 326 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0xd1, 0xbf, 0x4b, 0xc3, 0x40, - 0x14, 0xc0, 0xf1, 0xa4, 0xbf, 0xa0, 0x07, 0x8a, 0xc4, 0x6a, 0x63, 0x87, 0x18, 0x9c, 0xb2, 0xd8, - 0x80, 0x22, 0x48, 0x9d, 0xac, 0x2e, 0x0e, 0x8a, 0x64, 0x74, 0x09, 0xd7, 0xbb, 0x47, 0x7b, 0xe0, - 0xe5, 0x85, 0xbb, 0x8b, 0xb6, 0xff, 0x85, 0xa3, 0xa3, 0x7f, 0x8e, 0x63, 0x27, 0x71, 0x94, 0xf6, - 0x1f, 0x91, 0x5e, 0xd3, 0x28, 0xe2, 0x16, 0xf8, 0xe4, 0xcb, 0xe3, 0xdd, 0x23, 0x3d, 0x86, 0x0a, - 0x62, 0xc1, 0x21, 0x33, 0xc2, 0xcc, 0xe2, 0x9c, 0x2a, 0x2a, 0x75, 0x3f, 0x57, 0x68, 0xd0, 0xdb, - 0x5a, 0x59, 0x7f, 0x63, 0xbd, 0xce, 0x18, 0xc7, 0x68, 0x25, 0x5e, 0x7d, 0xad, 0x7f, 0x3a, 0xfa, - 0xa8, 0x91, 0xd6, 0xbd, 0xad, 0xbc, 0x33, 0xd2, 0xa5, 0x8c, 0x61, 0x91, 0x99, 0x94, 0x0b, 0x9e, - 0x4a, 0x30, 0x13, 0xe4, 0x69, 0x46, 0x25, 0xf8, 0x6e, 0xe8, 0x46, 0xed, 0xa4, 0x53, 0xf2, 0xb5, - 0xe0, 0xb7, 0x16, 0xef, 0xa8, 0x04, 0xef, 0x82, 0xf4, 0xfe, 0xc9, 0x18, 0x66, 0x06, 0xa6, 0xc6, - 0xaf, 0xd9, 0xb2, 0xfb, 0xb7, 0xbc, 0x5a, 0xb3, 0x37, 0x20, 0x07, 0x94, 0x55, 0xb5, 0x66, 0xf8, - 0x04, 0x6a, 0x96, 0x2a, 0x78, 0xa6, 0x8a, 0xfb, 0xf5, 0xd0, 0x8d, 0xea, 0xb6, 0x2d, 0xe3, 0xd2, - 0x13, 0xcb, 0x5e, 0x44, 0x76, 0x56, 0x03, 0x47, 0x54, 0x43, 0x35, 0xae, 0x61, 0xc7, 0x6d, 0x73, - 0xc1, 0x87, 0x54, 0xc3, 0x66, 0xca, 0x39, 0xf1, 0x25, 0x9d, 0x0a, 0x59, 0xc8, 0x74, 0xf3, 0x1c, - 0x29, 0x7d, 0x14, 0x54, 0x83, 0xf6, 0x9b, 0xa1, 0x1b, 0x35, 0x93, 0xfd, 0xd2, 0x6f, 0x4a, 0xbe, - 0x5c, 0xab, 0x77, 0x42, 0xf6, 0x74, 0x91, 0xe7, 0xa8, 0x0c, 0xf0, 0x5f, 0xeb, 0x69, 0xbf, 0x15, - 0xd6, 0xa3, 0x76, 0xb2, 0x5b, 0x61, 0xb5, 0x99, 0x1e, 0x34, 0x5e, 0xdf, 0x0e, 0x9d, 0xe1, 0xf0, - 0x7d, 0x11, 0xb8, 0xf3, 0x45, 0xe0, 0x7e, 0x2d, 0x02, 0xf7, 0x65, 0x19, 0x38, 0xf3, 0x65, 0xe0, - 0x7c, 0x2e, 0x03, 0xe7, 0x21, 0x1a, 0x0b, 0x33, 0x29, 0x46, 0x7d, 0x86, 0x32, 0xd6, 0x98, 0xa9, - 0x63, 0x81, 0xb1, 0x3d, 0xe3, 0xf4, 0xe7, 0x90, 0x66, 0x96, 0x83, 0x1e, 0xb5, 0xec, 0x8d, 0x4e, - 0xbf, 0x03, 0x00, 0x00, 0xff, 0xff, 0xe0, 0x36, 0x74, 0x96, 0xe6, 0x01, 0x00, 0x00, + 0x14, 0xc0, 0xf1, 0x5c, 0x7f, 0x41, 0x0f, 0x14, 0x89, 0xd5, 0xc6, 0x82, 0x31, 0x38, 0x65, 0x6a, + 0x40, 0x11, 0xa5, 0x4e, 0x56, 0x17, 0x07, 0x45, 0x32, 0xba, 0x84, 0x6b, 0xee, 0x51, 0x0f, 0xbc, + 0xbc, 0x70, 0x77, 0xd5, 0xf6, 0xbf, 0x70, 0x74, 0xf4, 0xcf, 0x71, 0xec, 0x24, 0x8e, 0xd2, 0xfe, + 0x23, 0xd2, 0x6b, 0x12, 0x45, 0xdc, 0x02, 0x9f, 0x7c, 0x79, 0xbc, 0x7b, 0xb4, 0x97, 0xa2, 0x82, + 0x48, 0x70, 0xc8, 0x8c, 0x30, 0xb3, 0x28, 0x67, 0x8a, 0x49, 0xdd, 0xcf, 0x15, 0x1a, 0x74, 0x37, + 0x56, 0xd6, 0x2f, 0xad, 0xd7, 0x19, 0xe3, 0x18, 0xad, 0x44, 0xab, 0xaf, 0xf5, 0x4f, 0x87, 0x1f, + 0x35, 0xda, 0xba, 0xb3, 0x95, 0x7b, 0x42, 0xbb, 0x2c, 0x4d, 0x71, 0x92, 0x99, 0x84, 0x0b, 0x9e, + 0x48, 0x30, 0x0f, 0xc8, 0x93, 0x8c, 0x49, 0xf0, 0x48, 0x40, 0xc2, 0x76, 0xdc, 0x29, 0xf8, 0x4a, + 0xf0, 0x1b, 0x8b, 0xb7, 0x4c, 0x82, 0x7b, 0x4e, 0x7b, 0xff, 0x64, 0x29, 0x66, 0x06, 0xa6, 0xc6, + 0xab, 0xd9, 0xb2, 0xfb, 0xb7, 0xbc, 0x5c, 0xb3, 0x3b, 0xa0, 0x7b, 0x2c, 0xad, 0x6a, 0x9d, 0xe2, + 0x13, 0xa8, 0x59, 0xa2, 0xe0, 0x99, 0x29, 0xee, 0xd5, 0x03, 0x12, 0xd6, 0x6d, 0x5b, 0xc4, 0x85, + 0xc7, 0x96, 0xdd, 0x90, 0x6e, 0xad, 0x06, 0x8e, 0x98, 0x86, 0x6a, 0x5c, 0xc3, 0x8e, 0xdb, 0xe4, + 0x82, 0x0f, 0x99, 0x86, 0x72, 0xca, 0x19, 0xf5, 0x24, 0x9b, 0x0a, 0x39, 0x91, 0x49, 0xf9, 0x1c, + 0x09, 0x7b, 0x14, 0x4c, 0x83, 0xf6, 0x9a, 0x01, 0x09, 0x9b, 0xf1, 0x6e, 0xe1, 0xd7, 0x05, 0x5f, + 0xac, 0xd5, 0x3d, 0xa2, 0x3b, 0x7a, 0x92, 0xe7, 0xa8, 0x0c, 0xf0, 0x5f, 0xeb, 0x69, 0xaf, 0x15, + 0xd4, 0xc3, 0x76, 0xbc, 0x5d, 0x61, 0xb5, 0x99, 0x1e, 0x34, 0x5e, 0xdf, 0x0e, 0x9c, 0xe1, 0xe9, + 0xfb, 0xc2, 0x27, 0xf3, 0x85, 0x4f, 0xbe, 0x16, 0x3e, 0x79, 0x59, 0xfa, 0xce, 0x7c, 0xe9, 0x3b, + 0x9f, 0x4b, 0xdf, 0xb9, 0xdf, 0xd7, 0x98, 0xa9, 0xbe, 0xc0, 0xc8, 0xde, 0x6e, 0xfa, 0x73, 0x3d, + 0x33, 0xcb, 0x41, 0x8f, 0x5a, 0xf6, 0x30, 0xc7, 0xdf, 0x01, 0x00, 0x00, 0xff, 0xff, 0xa3, 0x31, + 0xb6, 0x97, 0xdb, 0x01, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/identity/types/query.pb.go b/x/identity/types/query.pb.go index a9a865562..ae446ee0b 100644 --- a/x/identity/types/query.pb.go +++ b/x/identity/types/query.pb.go @@ -808,62 +808,61 @@ func init() { func init() { proto.RegisterFile("core/identity/query.proto", fileDescriptor_55ac06fdf68c11fd) } var fileDescriptor_55ac06fdf68c11fd = []byte{ - // 868 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x96, 0x4d, 0x6f, 0xdb, 0x36, - 0x18, 0xc7, 0xad, 0x64, 0xc9, 0x12, 0x06, 0x0b, 0x1c, 0xce, 0x71, 0x32, 0xc5, 0xd1, 0x1c, 0x62, - 0xcb, 0xb2, 0x6c, 0x13, 0x97, 0x64, 0xc7, 0x5d, 0xec, 0x19, 0x0b, 0xb6, 0x61, 0x58, 0x66, 0xf4, - 0x54, 0xa0, 0x28, 0x68, 0x89, 0x50, 0xd8, 0xca, 0xa2, 0x23, 0xc9, 0x49, 0x0c, 0x37, 0x97, 0x1e, - 0x0b, 0x14, 0x28, 0xd0, 0x43, 0x6f, 0xfd, 0x00, 0xfd, 0x18, 0x3d, 0xe5, 0x18, 0xa0, 0x97, 0x9e, - 0x8a, 0x22, 0xe9, 0x07, 0x29, 0x44, 0x51, 0x96, 0x65, 0x49, 0x8e, 0xd3, 0xe6, 0x64, 0x91, 0x7c, - 0x5e, 0x7e, 0x0f, 0x1f, 0xf2, 0x4f, 0x83, 0x6f, 0x0c, 0xee, 0x52, 0xcc, 0x4c, 0xea, 0xf8, 0xcc, - 0xef, 0xe1, 0xa3, 0x2e, 0x75, 0x7b, 0x7a, 0xc7, 0xe5, 0x3e, 0x87, 0x5f, 0x05, 0x4b, 0x7a, 0xb4, - 0xa4, 0xae, 0x25, 0x2d, 0x89, 0x61, 0xf0, 0xae, 0xe3, 0x87, 0xb6, 0xea, 0x4a, 0x72, 0xd1, 0x64, - 0xa6, 0x5c, 0x50, 0x93, 0x0b, 0x1d, 0xe2, 0x92, 0xb6, 0x27, 0xd7, 0xb6, 0x0d, 0xee, 0xb5, 0xb9, - 0x87, 0x5b, 0xc4, 0xa3, 0x61, 0x66, 0x7c, 0xbc, 0xd3, 0xa2, 0x3e, 0xd9, 0xc1, 0x1d, 0x62, 0x31, - 0x87, 0xf8, 0x8c, 0x3b, 0xd2, 0xb6, 0x64, 0x71, 0x8b, 0x8b, 0x4f, 0x1c, 0x7c, 0xc9, 0xd9, 0x8a, - 0xc5, 0xb9, 0x65, 0x53, 0x4c, 0x3a, 0x0c, 0x13, 0xc7, 0xe1, 0xbe, 0x70, 0x91, 0xf1, 0x51, 0x09, - 0xc0, 0xff, 0x83, 0xa8, 0x07, 0x22, 0x69, 0x93, 0x1e, 0x75, 0xa9, 0xe7, 0xa3, 0xbf, 0xc1, 0xd7, - 0x89, 0x59, 0xaf, 0xc3, 0x1d, 0x8f, 0xc2, 0x3d, 0x30, 0x1b, 0xc2, 0xad, 0x2a, 0x55, 0x65, 0x6b, - 0x61, 0x77, 0x59, 0x4f, 0x94, 0xaf, 0x87, 0xe6, 0xf5, 0x2f, 0xce, 0xdf, 0x7d, 0x5b, 0x68, 0x4a, - 0x53, 0xa4, 0x03, 0x55, 0xc4, 0xda, 0xa7, 0x7e, 0xe3, 0xaf, 0x46, 0x83, 0x1b, 0xdd, 0x36, 0x75, - 0x7c, 0x99, 0x09, 0x16, 0xc1, 0xb4, 0xc9, 0x4c, 0x11, 0x6f, 0xbe, 0x19, 0x7c, 0x22, 0x02, 0xd6, - 0x32, 0xed, 0x25, 0x43, 0x1d, 0x2c, 0x98, 0xf1, 0xb4, 0x04, 0x51, 0x47, 0x40, 0x86, 0x1c, 0x25, - 0xcd, 0xb0, 0x13, 0x32, 0x25, 0x52, 0xcd, 0xb6, 0x33, 0x90, 0xfe, 0x04, 0x20, 0xde, 0x5a, 0x99, - 0x60, 0x53, 0x0f, 0xfb, 0xa0, 0x07, 0x7d, 0xd0, 0xc3, 0x13, 0x20, 0xfb, 0xa0, 0x1f, 0x10, 0x8b, - 0x4a, 0xdf, 0xe6, 0x90, 0x27, 0x7a, 0xa5, 0xc8, 0x4a, 0x46, 0xd3, 0xe4, 0x55, 0x32, 0x7d, 0xe3, - 0x4a, 0xe0, 0x7e, 0x82, 0x75, 0x4a, 0xb0, 0xfe, 0x70, 0x2d, 0x6b, 0x08, 0x90, 0x80, 0xfd, 0x0d, - 0x54, 0x04, 0x6b, 0x83, 0x99, 0xf5, 0x5e, 0xcd, 0xf6, 0xf8, 0x3f, 0x0e, 0x3f, 0x71, 0x6a, 0xd1, - 0x89, 0x80, 0x25, 0x30, 0x43, 0x6c, 0x46, 0x3c, 0xd9, 0xa9, 0x70, 0x80, 0x0c, 0xb0, 0x9e, 0xe3, - 0x35, 0x54, 0x23, 0x33, 0x3f, 0xa1, 0x5b, 0xb1, 0x13, 0xda, 0x1d, 0x74, 0x8b, 0x11, 0xaf, 0x76, - 0x4c, 0x98, 0x4d, 0x5a, 0x36, 0x1d, 0x0f, 0xf6, 0x24, 0xde, 0xfb, 0xa4, 0x93, 0xe4, 0xaa, 0x80, - 0x79, 0x12, 0x4d, 0x0a, 0xcf, 0xb9, 0x66, 0x3c, 0x01, 0xff, 0x05, 0x4b, 0xf4, 0x94, 0x79, 0x3e, - 0x73, 0xac, 0xfb, 0x66, 0xc4, 0x3e, 0x35, 0x11, 0xbb, 0xd2, 0x2c, 0x46, 0xae, 0x83, 0x02, 0x74, - 0x50, 0x8e, 0x77, 0xe9, 0xbf, 0x13, 0x87, 0xba, 0x43, 0xf0, 0x3c, 0x18, 0x47, 0xf0, 0x62, 0x80, - 0xee, 0x81, 0x95, 0x94, 0xfd, 0x2d, 0xee, 0xe7, 0xef, 0xa0, 0x1a, 0x5d, 0xb0, 0x3f, 0xb8, 0xe3, - 0xbb, 0xdc, 0xb6, 0xa9, 0x5b, 0x0b, 0xa5, 0x2a, 0x02, 0x5b, 0x05, 0x5f, 0x12, 0xd3, 0x74, 0xa9, - 0x17, 0xed, 0x6b, 0x34, 0x44, 0x3d, 0xb0, 0x31, 0xc6, 0x5b, 0x62, 0xde, 0x01, 0x4b, 0xc6, 0xe8, - 0xa2, 0x84, 0xad, 0x8e, 0xc0, 0xa6, 0x82, 0x48, 0xe4, 0x74, 0x00, 0xf4, 0x40, 0x82, 0xd7, 0x6c, - 0x3b, 0x17, 0xfc, 0xb6, 0x2e, 0xef, 0x6b, 0x45, 0xd6, 0x99, 0x9d, 0x6c, 0x7c, 0x9d, 0xd3, 0x9f, - 0x55, 0xe7, 0xad, 0x5d, 0xea, 0xdd, 0xf3, 0x39, 0x30, 0x23, 0x8a, 0x80, 0x0e, 0x98, 0x0d, 0xc5, - 0x19, 0x6e, 0x8c, 0x70, 0xa5, 0xd5, 0x5f, 0x45, 0xe3, 0x4c, 0xc2, 0x34, 0x68, 0xfd, 0xf1, 0x9b, - 0x0f, 0xcf, 0xa7, 0x56, 0xe0, 0x32, 0x16, 0x8f, 0x57, 0xa8, 0xf5, 0x83, 0x37, 0x0c, 0x3e, 0x02, - 0x0b, 0x43, 0xa7, 0x10, 0xfe, 0x98, 0x15, 0x31, 0xf3, 0x41, 0x50, 0xb7, 0x27, 0x31, 0x95, 0x10, - 0x65, 0x01, 0x51, 0x84, 0x8b, 0x58, 0xbe, 0xa0, 0xb8, 0x6f, 0x32, 0xf3, 0x0c, 0xf6, 0xc0, 0xe2, - 0x90, 0x79, 0xcd, 0xb6, 0xb3, 0x01, 0x32, 0xe5, 0x3f, 0x1b, 0x20, 0x5b, 0xc2, 0x51, 0x51, 0x00, - 0x00, 0x38, 0x17, 0x01, 0xc0, 0x3e, 0x00, 0xf1, 0xb5, 0x85, 0xdf, 0x67, 0xc5, 0x4a, 0xc9, 0x80, - 0xba, 0x79, 0x9d, 0x99, 0x4c, 0xa7, 0x89, 0x74, 0xab, 0xb0, 0x3c, 0xa8, 0x57, 0x08, 0x06, 0xee, - 0x8b, 0x9f, 0x33, 0xf8, 0x54, 0x01, 0xc5, 0x51, 0x29, 0x86, 0x3f, 0xe5, 0x06, 0x4f, 0xcb, 0xbc, - 0xfa, 0xf3, 0x64, 0xc6, 0xb9, 0x3c, 0x42, 0x7d, 0x71, 0x5f, 0xfc, 0x08, 0x9e, 0xc5, 0xa4, 0x00, - 0xe7, 0x35, 0x22, 0x43, 0xd9, 0xf3, 0x1a, 0x91, 0xa5, 0xe7, 0xe8, 0x3b, 0x41, 0xa2, 0xc1, 0x4a, - 0x36, 0x09, 0x36, 0x0e, 0xa9, 0xf1, 0x10, 0xbe, 0x54, 0xc0, 0x52, 0xea, 0x1e, 0x42, 0x9c, 0x73, - 0xe2, 0xf2, 0x34, 0x46, 0xfd, 0x75, 0x72, 0x07, 0x89, 0xb7, 0x29, 0xf0, 0xaa, 0x50, 0x1b, 0xe0, - 0xc5, 0xb7, 0x3e, 0x80, 0x0c, 0xb5, 0xf5, 0x0c, 0xbe, 0x50, 0x40, 0x29, 0x15, 0x25, 0x38, 0xbf, - 0x38, 0xe7, 0x50, 0xde, 0x8c, 0x71, 0x9c, 0x96, 0xa1, 0x8a, 0x60, 0x2c, 0xc3, 0x52, 0x16, 0x63, - 0xbd, 0x7e, 0x7e, 0xa9, 0x29, 0x17, 0x97, 0x9a, 0xf2, 0xfe, 0x52, 0x53, 0x9e, 0x5d, 0x69, 0x85, - 0x8b, 0x2b, 0xad, 0xf0, 0xf6, 0x4a, 0x2b, 0xdc, 0xdd, 0xb2, 0x98, 0x7f, 0xd8, 0x6d, 0xe9, 0x06, - 0x6f, 0x63, 0x8f, 0x3b, 0xee, 0x2f, 0x8c, 0x87, 0x11, 0x4e, 0xe3, 0xbf, 0xb4, 0x7e, 0xaf, 0x43, - 0xbd, 0xd6, 0xac, 0xf8, 0xcb, 0xb9, 0xf7, 0x31, 0x00, 0x00, 0xff, 0xff, 0x0f, 0x7e, 0xf3, 0x81, - 0x50, 0x0b, 0x00, 0x00, + // 858 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x96, 0x4d, 0x6f, 0xd3, 0x48, + 0x18, 0xc7, 0xe3, 0x76, 0xdb, 0x6d, 0xa7, 0xda, 0x2a, 0x9d, 0x4d, 0xd3, 0xae, 0x9b, 0x7a, 0xd3, + 0xd1, 0x6e, 0x81, 0x82, 0x3c, 0xb4, 0x45, 0xe2, 0xc2, 0x25, 0x21, 0xa2, 0x02, 0x84, 0x28, 0x11, + 0x27, 0x24, 0x84, 0x26, 0xf6, 0x28, 0x0c, 0xb8, 0x9e, 0xd4, 0x76, 0xda, 0x46, 0xa1, 0x17, 0x8e, + 0x48, 0x48, 0x48, 0x1c, 0xb8, 0xf1, 0x01, 0xf8, 0x18, 0x9c, 0x7a, 0xac, 0xc4, 0x85, 0x13, 0x42, + 0x2d, 0x1f, 0x04, 0x79, 0x3c, 0x8e, 0xe3, 0xd8, 0x4e, 0x53, 0xe8, 0x29, 0x9e, 0x99, 0xe7, 0xe5, + 0xf7, 0xcc, 0x33, 0xf3, 0x9f, 0x80, 0x7f, 0x0c, 0xee, 0x50, 0xcc, 0x4c, 0x6a, 0x7b, 0xcc, 0xeb, + 0xe0, 0xdd, 0x36, 0x75, 0x3a, 0x7a, 0xcb, 0xe1, 0x1e, 0x87, 0x7f, 0xf9, 0x4b, 0x7a, 0xb8, 0xa4, + 0x2e, 0xc5, 0x2d, 0x89, 0x61, 0xf0, 0xb6, 0xed, 0x05, 0xb6, 0xea, 0x42, 0x7c, 0xd1, 0x64, 0xa6, + 0x5c, 0x50, 0xe3, 0x0b, 0x2d, 0xe2, 0x90, 0x1d, 0x57, 0xae, 0xad, 0x19, 0xdc, 0xdd, 0xe1, 0x2e, + 0x6e, 0x10, 0x97, 0x06, 0x99, 0xf1, 0xde, 0x7a, 0x83, 0x7a, 0x64, 0x1d, 0xb7, 0x48, 0x93, 0xd9, + 0xc4, 0x63, 0xdc, 0x96, 0xb6, 0x85, 0x26, 0x6f, 0x72, 0xf1, 0x89, 0xfd, 0x2f, 0x39, 0x5b, 0x6a, + 0x72, 0xde, 0xb4, 0x28, 0x26, 0x2d, 0x86, 0x89, 0x6d, 0x73, 0x4f, 0xb8, 0xc8, 0xf8, 0xa8, 0x00, + 0xe0, 0x23, 0x3f, 0xea, 0xb6, 0x48, 0x5a, 0xa7, 0xbb, 0x6d, 0xea, 0x7a, 0xe8, 0x1e, 0xf8, 0x3b, + 0x36, 0xeb, 0xb6, 0xb8, 0xed, 0x52, 0xb8, 0x09, 0x26, 0x03, 0xb8, 0x45, 0xa5, 0xac, 0x5c, 0x9e, + 0xd9, 0x98, 0xd7, 0x63, 0xe5, 0xeb, 0x81, 0x79, 0xf5, 0x8f, 0xa3, 0x6f, 0xff, 0xe6, 0xea, 0xd2, + 0x14, 0xe9, 0x40, 0x15, 0xb1, 0xb6, 0xa8, 0x57, 0xbb, 0x5b, 0xab, 0x71, 0xa3, 0xbd, 0x43, 0x6d, + 0x4f, 0x66, 0x82, 0x79, 0x30, 0x6e, 0x32, 0x53, 0xc4, 0x9b, 0xae, 0xfb, 0x9f, 0x88, 0x80, 0xa5, + 0x54, 0x7b, 0xc9, 0x50, 0x05, 0x33, 0x66, 0x34, 0x2d, 0x41, 0xd4, 0x01, 0x90, 0x3e, 0x47, 0x49, + 0xd3, 0xef, 0x84, 0x4c, 0x89, 0x54, 0xb1, 0xac, 0x14, 0xa4, 0x3b, 0x00, 0x44, 0x5b, 0x2b, 0x13, + 0xac, 0xea, 0x41, 0x1f, 0x74, 0xbf, 0x0f, 0x7a, 0x70, 0x02, 0x64, 0x1f, 0xf4, 0x6d, 0xd2, 0xa4, + 0xd2, 0xb7, 0xde, 0xe7, 0x89, 0x3e, 0x29, 0xb2, 0x92, 0xc1, 0x34, 0x59, 0x95, 0x8c, 0x9f, 0xbb, + 0x12, 0xb8, 0x15, 0x63, 0x1d, 0x13, 0xac, 0x97, 0xce, 0x64, 0x0d, 0x00, 0x62, 0xb0, 0x37, 0x40, + 0x49, 0xb0, 0xd6, 0x98, 0x59, 0xed, 0x54, 0x2c, 0x97, 0xdf, 0xb7, 0xf9, 0xbe, 0x5d, 0x09, 0x4f, + 0x04, 0x2c, 0x80, 0x09, 0x62, 0x31, 0xe2, 0xca, 0x4e, 0x05, 0x03, 0x64, 0x80, 0xe5, 0x0c, 0xaf, + 0xbe, 0x1a, 0x99, 0xf9, 0x0b, 0xdd, 0x8a, 0x9c, 0xd0, 0x46, 0xaf, 0x5b, 0x8c, 0xb8, 0x95, 0x3d, + 0xc2, 0x2c, 0xd2, 0xb0, 0xe8, 0x70, 0xb0, 0x37, 0xd1, 0xde, 0xc7, 0x9d, 0x24, 0x57, 0x09, 0x4c, + 0x93, 0x70, 0x52, 0x78, 0x4e, 0xd5, 0xa3, 0x09, 0xf8, 0x00, 0xcc, 0xd1, 0x03, 0xe6, 0x7a, 0xcc, + 0x6e, 0x3e, 0x33, 0x43, 0xf6, 0xb1, 0x91, 0xd8, 0x95, 0x7a, 0x3e, 0x74, 0xed, 0x15, 0xa0, 0x83, + 0x62, 0xb4, 0x4b, 0x0f, 0xf7, 0x6d, 0xea, 0xf4, 0xc1, 0x73, 0x7f, 0x1c, 0xc2, 0x8b, 0x01, 0x7a, + 0x0a, 0x16, 0x12, 0xf6, 0x17, 0xb8, 0x9f, 0xb7, 0x40, 0x39, 0xbc, 0x60, 0xb7, 0xb9, 0xed, 0x39, + 0xdc, 0xb2, 0xa8, 0x53, 0x09, 0xa4, 0x2a, 0x04, 0x5b, 0x04, 0x7f, 0x12, 0xd3, 0x74, 0xa8, 0x1b, + 0xee, 0x6b, 0x38, 0x44, 0x1d, 0xb0, 0x32, 0xc4, 0x5b, 0x62, 0x3e, 0x06, 0x73, 0xc6, 0xe0, 0xa2, + 0x84, 0x2d, 0x0f, 0xc0, 0x26, 0x82, 0x48, 0xe4, 0x64, 0x00, 0xf4, 0x42, 0x82, 0x57, 0x2c, 0x2b, + 0x13, 0xfc, 0xa2, 0x2e, 0xef, 0x67, 0x45, 0xd6, 0x99, 0x9e, 0x6c, 0x78, 0x9d, 0xe3, 0xbf, 0x55, + 0xe7, 0x85, 0x5d, 0xea, 0x8d, 0xa3, 0x29, 0x30, 0x21, 0x8a, 0x80, 0x36, 0x98, 0x0c, 0xc4, 0x19, + 0xae, 0x0c, 0x70, 0x25, 0xd5, 0x5f, 0x45, 0xc3, 0x4c, 0x82, 0x34, 0x68, 0xf9, 0xf5, 0x97, 0x1f, + 0xef, 0xc7, 0x16, 0xe0, 0x3c, 0x16, 0x8f, 0x57, 0xa0, 0xf5, 0xbd, 0x37, 0x0c, 0xbe, 0x02, 0x33, + 0x7d, 0xa7, 0x10, 0x5e, 0x49, 0x8b, 0x98, 0xfa, 0x20, 0xa8, 0x6b, 0xa3, 0x98, 0x4a, 0x88, 0xa2, + 0x80, 0xc8, 0xc3, 0x59, 0x2c, 0x5f, 0x50, 0xdc, 0x35, 0x99, 0x79, 0x08, 0x3b, 0x60, 0xb6, 0xcf, + 0xbc, 0x62, 0x59, 0xe9, 0x00, 0xa9, 0xf2, 0x9f, 0x0e, 0x90, 0x2e, 0xe1, 0x28, 0x2f, 0x00, 0x00, + 0x9c, 0x0a, 0x01, 0x60, 0x17, 0x80, 0xe8, 0xda, 0xc2, 0xff, 0xd3, 0x62, 0x25, 0x64, 0x40, 0x5d, + 0x3d, 0xcb, 0x4c, 0xa6, 0xd3, 0x44, 0xba, 0x45, 0x58, 0xec, 0xd5, 0x2b, 0x04, 0x03, 0x77, 0xc5, + 0xcf, 0x21, 0x7c, 0xab, 0x80, 0xfc, 0xa0, 0x14, 0xc3, 0xab, 0x99, 0xc1, 0x93, 0x32, 0xaf, 0x5e, + 0x1b, 0xcd, 0x38, 0x93, 0x47, 0xa8, 0x2f, 0xee, 0x8a, 0x1f, 0xc1, 0x33, 0x1b, 0x17, 0xe0, 0xac, + 0x46, 0xa4, 0x28, 0x7b, 0x56, 0x23, 0xd2, 0xf4, 0x1c, 0xfd, 0x27, 0x48, 0x34, 0x58, 0x4a, 0x27, + 0xc1, 0xc6, 0x73, 0x6a, 0xbc, 0x84, 0x1f, 0x15, 0x30, 0x97, 0xb8, 0x87, 0x10, 0x67, 0x9c, 0xb8, + 0x2c, 0x8d, 0x51, 0xaf, 0x8f, 0xee, 0x20, 0xf1, 0x56, 0x05, 0x5e, 0x19, 0x6a, 0x3d, 0xbc, 0xe8, + 0xd6, 0xfb, 0x90, 0x81, 0xb6, 0x1e, 0xc2, 0x0f, 0x0a, 0x28, 0x24, 0xa2, 0xf8, 0xe7, 0x17, 0x67, + 0x1c, 0xca, 0xf3, 0x31, 0x0e, 0xd3, 0x32, 0x54, 0x12, 0x8c, 0x45, 0x58, 0x48, 0x63, 0xac, 0xde, + 0x3c, 0x3a, 0xd1, 0x94, 0xe3, 0x13, 0x4d, 0xf9, 0x7e, 0xa2, 0x29, 0xef, 0x4e, 0xb5, 0xdc, 0xf1, + 0xa9, 0x96, 0xfb, 0x7a, 0xaa, 0xe5, 0x9e, 0x2c, 0xbb, 0xdc, 0x76, 0x74, 0xc6, 0x03, 0xb7, 0x83, + 0xe8, 0x7f, 0xac, 0xd7, 0x69, 0x51, 0xb7, 0x31, 0x29, 0xfe, 0x67, 0x6e, 0xfe, 0x0c, 0x00, 0x00, + 0xff, 0xff, 0x13, 0x03, 0x83, 0xc9, 0x45, 0x0b, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/identity/types/tx.pb.go b/x/identity/types/tx.pb.go index 7be7eb324..0da75e2b1 100644 --- a/x/identity/types/tx.pb.go +++ b/x/identity/types/tx.pb.go @@ -488,40 +488,39 @@ func init() { func init() { proto.RegisterFile("core/identity/tx.proto", fileDescriptor_893033e8c7493d64) } var fileDescriptor_893033e8c7493d64 = []byte{ - // 518 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x54, 0x4f, 0x8b, 0xd3, 0x40, - 0x14, 0xef, 0xb4, 0xd5, 0xdd, 0xcc, 0xea, 0x22, 0x11, 0x6c, 0x48, 0x25, 0x84, 0x20, 0x12, 0x05, - 0x53, 0x5c, 0x6f, 0x82, 0x07, 0x77, 0x7b, 0x29, 0x52, 0x90, 0x01, 0x2f, 0x5e, 0xd6, 0x74, 0x66, - 0xc8, 0x0e, 0x64, 0x33, 0x21, 0x33, 0xb1, 0xdb, 0x6f, 0x20, 0x78, 0xf1, 0xe4, 0x67, 0xf2, 0xb8, - 0x07, 0x0f, 0x1e, 0xa5, 0xfd, 0x22, 0x92, 0x49, 0xa7, 0xf6, 0x4f, 0x86, 0xee, 0xb2, 0xc7, 0xf7, - 0xf2, 0xcb, 0xfb, 0xfd, 0x99, 0x99, 0x07, 0x9f, 0x60, 0x5e, 0xd0, 0x01, 0x23, 0x34, 0x93, 0x4c, - 0xce, 0x06, 0xf2, 0x2a, 0xca, 0x0b, 0x2e, 0xb9, 0xfd, 0xb0, 0xea, 0x47, 0xba, 0xef, 0xf6, 0x37, - 0x61, 0x31, 0xc6, 0xbc, 0xcc, 0x64, 0x8d, 0x75, 0x7b, 0x9b, 0x1f, 0x09, 0x23, 0xf5, 0x87, 0xe0, - 0x3b, 0x80, 0x8f, 0xc7, 0x22, 0x41, 0x34, 0x61, 0x42, 0xd2, 0x62, 0xb4, 0x44, 0xd8, 0x0e, 0x3c, - 0xc0, 0x05, 0x8d, 0x25, 0x2f, 0x1c, 0xe0, 0x83, 0xd0, 0x42, 0xba, 0xb4, 0xdf, 0xc1, 0x07, 0x84, - 0x91, 0x73, 0xc2, 0x71, 0x79, 0x49, 0x33, 0xe9, 0xb4, 0x7d, 0x10, 0x1e, 0x9d, 0xb8, 0xd1, 0x86, - 0x9a, 0x68, 0x38, 0x1a, 0x0e, 0x97, 0x08, 0x74, 0x44, 0x18, 0xd1, 0x85, 0xdd, 0x87, 0xd6, 0x34, - 0x4e, 0x53, 0x2a, 0xcf, 0x19, 0x71, 0x3a, 0x3e, 0x08, 0xbb, 0xe8, 0xb0, 0x6e, 0x8c, 0x48, 0xf0, - 0x15, 0xf6, 0x1b, 0xc4, 0x20, 0x2a, 0x72, 0x9e, 0x09, 0x5a, 0x89, 0x12, 0x25, 0xc6, 0x54, 0x08, - 0x25, 0xea, 0x10, 0xe9, 0xf2, 0x8e, 0xa2, 0x82, 0x9f, 0x00, 0xba, 0x63, 0x91, 0x9c, 0x55, 0x16, - 0xe9, 0x19, 0xcf, 0x64, 0xc1, 0xd3, 0x94, 0x16, 0xef, 0xeb, 0x0c, 0x2b, 0xde, 0x98, 0x90, 0x42, - 0xf3, 0x5a, 0x48, 0x97, 0xf6, 0x53, 0x68, 0xe5, 0xe5, 0x24, 0x65, 0xf8, 0x03, 0x9d, 0x29, 0x37, - 0x16, 0xfa, 0xdf, 0xb0, 0x9f, 0xc3, 0xe3, 0xb8, 0x94, 0x17, 0x15, 0x3b, 0xae, 0xb2, 0x13, 0x4e, - 0xd7, 0xef, 0x84, 0x16, 0xda, 0xea, 0x56, 0xf3, 0xeb, 0x08, 0x84, 0x73, 0x4f, 0x01, 0x74, 0x19, - 0xe4, 0x30, 0x30, 0xeb, 0x5a, 0xe5, 0x72, 0x0c, 0xdb, 0x8c, 0x28, 0x69, 0x5d, 0xd4, 0x66, 0xc4, - 0x7e, 0x0b, 0x0f, 0x96, 0xc7, 0xbf, 0x0c, 0xc2, 0xdf, 0x0a, 0x62, 0x77, 0x94, 0xfe, 0x21, 0xf8, - 0x56, 0x47, 0xf1, 0x29, 0x27, 0xb7, 0x8c, 0xa2, 0x16, 0xd1, 0x5e, 0x89, 0xb8, 0xbb, 0xf9, 0x2f, - 0xca, 0xbc, 0x41, 0xc9, 0xca, 0xfc, 0x9a, 0x59, 0x70, 0x5b, 0xb3, 0x1f, 0x95, 0xd7, 0x21, 0x4d, - 0xa9, 0xc1, 0xab, 0xe1, 0x0d, 0xac, 0xa5, 0xd0, 0xde, 0x48, 0x21, 0x78, 0xa6, 0x34, 0x1b, 0x26, - 0x6a, 0xcd, 0x27, 0xbf, 0x3b, 0xb0, 0x33, 0x16, 0x89, 0x3d, 0x81, 0x8f, 0x76, 0x5e, 0x5e, 0xb0, - 0x25, 0xbf, 0xe1, 0x41, 0xb8, 0x2f, 0xf7, 0x63, 0x56, 0xf9, 0x4c, 0x61, 0xcf, 0x74, 0xaf, 0x5f, - 0xec, 0x8e, 0x31, 0x40, 0xdd, 0xd7, 0x37, 0x86, 0xae, 0x13, 0x9b, 0x6e, 0x51, 0x03, 0xb1, 0x01, - 0xda, 0x44, 0xbc, 0xef, 0x46, 0x4c, 0x61, 0xcf, 0x74, 0xa4, 0x0d, 0xc4, 0x06, 0x68, 0x13, 0xf1, - 0x9e, 0x63, 0x3d, 0x3d, 0xfd, 0x35, 0xf7, 0xc0, 0xf5, 0xdc, 0x03, 0x7f, 0xe7, 0x1e, 0xf8, 0xb1, - 0xf0, 0x5a, 0xd7, 0x0b, 0xaf, 0xf5, 0x67, 0xe1, 0xb5, 0x3e, 0x87, 0x09, 0x93, 0x17, 0xe5, 0x24, - 0xc2, 0xfc, 0x72, 0x20, 0x78, 0x56, 0xbc, 0x62, 0x7c, 0xa0, 0x56, 0xf2, 0xd5, 0xda, 0x62, 0x9f, - 0xe5, 0x54, 0x4c, 0xee, 0xab, 0xbd, 0xfc, 0xe6, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xa3, 0x3d, - 0x6a, 0x75, 0xf6, 0x05, 0x00, 0x00, + // 511 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x54, 0x4d, 0x8b, 0xd3, 0x4e, + 0x18, 0xef, 0xa4, 0xfd, 0xff, 0x77, 0x33, 0xab, 0x8b, 0x44, 0xb0, 0x21, 0xd5, 0x10, 0x82, 0x48, + 0xf5, 0x90, 0xe2, 0x7a, 0x10, 0x04, 0x0f, 0xba, 0xbd, 0x14, 0x29, 0xc8, 0x80, 0x17, 0x2f, 0x6b, + 0x3a, 0x33, 0xd4, 0x81, 0x98, 0x09, 0x33, 0x13, 0xbb, 0xfd, 0x06, 0x82, 0x17, 0x4f, 0x7e, 0x26, + 0x8f, 0x7b, 0xf0, 0xe0, 0x51, 0xda, 0x2f, 0x22, 0x99, 0x74, 0x6a, 0x5f, 0x32, 0xd4, 0x65, 0x8f, + 0xcf, 0x93, 0x5f, 0x9e, 0xdf, 0xcb, 0xcc, 0x3c, 0xf0, 0x1e, 0xe6, 0x82, 0x0e, 0x18, 0xa1, 0xb9, + 0x62, 0x6a, 0x3e, 0x50, 0x97, 0x49, 0x21, 0xb8, 0xe2, 0xde, 0xed, 0xaa, 0x9f, 0x98, 0x7e, 0xd0, + 0xdb, 0x86, 0xa5, 0x18, 0xf3, 0x32, 0x57, 0x35, 0x36, 0xe8, 0x6e, 0x7f, 0x24, 0x8c, 0xd4, 0x1f, + 0xe2, 0xaf, 0x00, 0xde, 0x1d, 0xcb, 0x29, 0xa2, 0x53, 0x26, 0x15, 0x15, 0xa3, 0x15, 0xc2, 0xf3, + 0xe1, 0x11, 0x16, 0x34, 0x55, 0x5c, 0xf8, 0x20, 0x02, 0x7d, 0x17, 0x99, 0xd2, 0x7b, 0x09, 0x6f, + 0x11, 0x46, 0x2e, 0x08, 0xc7, 0xe5, 0x27, 0x9a, 0x2b, 0xdf, 0x89, 0x40, 0xff, 0xe4, 0x2c, 0x48, + 0xb6, 0xd4, 0x24, 0xc3, 0xd1, 0x70, 0xb8, 0x42, 0xa0, 0x13, 0xc2, 0x88, 0x29, 0xbc, 0x1e, 0x74, + 0x67, 0x69, 0x96, 0x51, 0x75, 0xc1, 0x88, 0xdf, 0x8e, 0x40, 0xbf, 0x83, 0x8e, 0xeb, 0xc6, 0x88, + 0xc4, 0x9f, 0x61, 0xaf, 0x41, 0x0c, 0xa2, 0xb2, 0xe0, 0xb9, 0xa4, 0x95, 0x28, 0x59, 0x62, 0x4c, + 0xa5, 0xd4, 0xa2, 0x8e, 0x91, 0x29, 0x6f, 0x28, 0x2a, 0xfe, 0x0e, 0x60, 0x30, 0x96, 0xd3, 0xf3, + 0xca, 0x22, 0x3d, 0xe7, 0xb9, 0x12, 0x3c, 0xcb, 0xa8, 0x78, 0x55, 0x67, 0x58, 0xf1, 0xa6, 0x84, + 0x08, 0xc3, 0xeb, 0x22, 0x53, 0x7a, 0xf7, 0xa1, 0x5b, 0x94, 0x93, 0x8c, 0xe1, 0x37, 0x74, 0xae, + 0xdd, 0xb8, 0xe8, 0x6f, 0xc3, 0x7b, 0x04, 0x4f, 0xd3, 0x52, 0x7d, 0xac, 0xd8, 0x71, 0x95, 0x9d, + 0xf4, 0x3b, 0x51, 0xbb, 0xef, 0xa2, 0x9d, 0x6e, 0x35, 0xbf, 0x8e, 0x40, 0xfa, 0xff, 0x69, 0x80, + 0x29, 0xe3, 0x02, 0xc6, 0x76, 0x5d, 0xeb, 0x5c, 0x4e, 0xa1, 0xc3, 0x88, 0x96, 0xd6, 0x41, 0x0e, + 0x23, 0xde, 0x0b, 0x78, 0xb4, 0x3a, 0xfe, 0x55, 0x10, 0xd1, 0x4e, 0x10, 0xfb, 0xa3, 0xcc, 0x0f, + 0xf1, 0x97, 0x3a, 0x8a, 0x77, 0x05, 0xb9, 0x66, 0x14, 0xb5, 0x08, 0x67, 0x2d, 0xe2, 0xe6, 0xe6, + 0x3f, 0x68, 0xf3, 0x16, 0x25, 0x6b, 0xf3, 0x1b, 0x66, 0xc1, 0x75, 0xcd, 0xbe, 0xd5, 0x5e, 0x87, + 0x34, 0xa3, 0x16, 0xaf, 0x96, 0x37, 0xb0, 0x91, 0x82, 0xb3, 0x95, 0x42, 0xfc, 0x50, 0x6b, 0xb6, + 0x4c, 0x34, 0x9a, 0xcf, 0x7e, 0xb6, 0x61, 0x7b, 0x2c, 0xa7, 0xde, 0x04, 0xde, 0xd9, 0x7b, 0x79, + 0xf1, 0x8e, 0xfc, 0x86, 0x07, 0x11, 0x3c, 0x39, 0x8c, 0x59, 0xe7, 0x33, 0x83, 0x5d, 0xdb, 0xbd, + 0x7e, 0xbc, 0x3f, 0xc6, 0x02, 0x0d, 0x9e, 0xfe, 0x33, 0x74, 0x93, 0xd8, 0x76, 0x8b, 0x1a, 0x88, + 0x2d, 0xd0, 0x26, 0xe2, 0x43, 0x37, 0x62, 0x06, 0xbb, 0xb6, 0x23, 0x6d, 0x20, 0xb6, 0x40, 0x9b, + 0x88, 0x0f, 0x1c, 0xeb, 0xeb, 0xe7, 0x3f, 0x16, 0x21, 0xb8, 0x5a, 0x84, 0xe0, 0xf7, 0x22, 0x04, + 0xdf, 0x96, 0x61, 0xeb, 0x6a, 0x19, 0xb6, 0x7e, 0x2d, 0xc3, 0xd6, 0xfb, 0x07, 0x92, 0xe7, 0x22, + 0x61, 0x7c, 0xa0, 0xf7, 0xf0, 0xe5, 0xc6, 0x36, 0x9f, 0x17, 0x54, 0x4e, 0xfe, 0xd7, 0xcb, 0xf8, + 0xd9, 0x9f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x7f, 0xca, 0x29, 0x12, 0xeb, 0x05, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/service/client/cli/query.go b/x/service/client/cli/query.go index 3e5dcad9f..65a661c5a 100644 --- a/x/service/client/cli/query.go +++ b/x/service/client/cli/query.go @@ -10,7 +10,7 @@ import ( // "github.com/cosmos/cosmos-sdk/client/flags" // sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/sonr-io/core/x/service/types" + "sonr.io/core/x/service/types" ) // GetQueryCmd returns the cli query commands for this module diff --git a/x/service/client/cli/query_params.go b/x/service/client/cli/query_params.go index fb8f83ec3..4e2d40ac4 100644 --- a/x/service/client/cli/query_params.go +++ b/x/service/client/cli/query_params.go @@ -5,7 +5,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/sonr-io/core/x/service/types" + "sonr.io/core/x/service/types" ) func CmdQueryParams() *cobra.Command { diff --git a/x/service/client/cli/tx.go b/x/service/client/cli/tx.go index dd360d9bd..e5480223a 100644 --- a/x/service/client/cli/tx.go +++ b/x/service/client/cli/tx.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" // "github.com/cosmos/cosmos-sdk/client/flags" - "github.com/sonr-io/core/x/service/types" + "sonr.io/core/x/service/types" ) var ( diff --git a/x/service/client/cli/tx_service_record.go b/x/service/client/cli/tx_service_record.go index c9f96471c..2a376e04c 100644 --- a/x/service/client/cli/tx_service_record.go +++ b/x/service/client/cli/tx_service_record.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/client/tx" - "github.com/sonr-io/core/x/service/types" + "sonr.io/core/x/service/types" "github.com/spf13/cobra" ) diff --git a/x/service/genesis.go b/x/service/genesis.go index 3f596c3fe..6d84c3ea4 100644 --- a/x/service/genesis.go +++ b/x/service/genesis.go @@ -2,8 +2,8 @@ package service import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/sonr-io/core/x/service/keeper" - "github.com/sonr-io/core/x/service/types" + "sonr.io/core/x/service/keeper" + "sonr.io/core/x/service/types" ) // InitGenesis initializes the module's state from a provided genesis state. diff --git a/x/service/genesis_test.go b/x/service/genesis_test.go index 5b04440a0..67e7d9645 100644 --- a/x/service/genesis_test.go +++ b/x/service/genesis_test.go @@ -3,10 +3,10 @@ package service_test import ( "testing" - keepertest "github.com/sonr-io/core/testutil/keeper" - "github.com/sonr-io/core/testutil/nullify" - "github.com/sonr-io/core/x/service" - "github.com/sonr-io/core/x/service/types" + keepertest "sonr.io/core/testutil/keeper" + "sonr.io/core/testutil/nullify" + "sonr.io/core/x/service" + "sonr.io/core/x/service/types" "github.com/stretchr/testify/require" ) diff --git a/x/service/keeper/keeper.go b/x/service/keeper/keeper.go index 223c756d1..7ec53eebd 100644 --- a/x/service/keeper/keeper.go +++ b/x/service/keeper/keeper.go @@ -11,7 +11,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" - "github.com/sonr-io/core/x/service/types" + "sonr.io/core/x/service/types" ) type ( diff --git a/x/service/keeper/msg_server.go b/x/service/keeper/msg_server.go index f58dd45cc..b48609a2e 100644 --- a/x/service/keeper/msg_server.go +++ b/x/service/keeper/msg_server.go @@ -4,7 +4,7 @@ import ( "context" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/sonr-io/core/x/service/types" + "sonr.io/core/x/service/types" ) type msgServer struct { diff --git a/x/service/keeper/params.go b/x/service/keeper/params.go index a4330e76b..60e6ca55f 100644 --- a/x/service/keeper/params.go +++ b/x/service/keeper/params.go @@ -4,7 +4,7 @@ import ( "strings" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/sonr-io/core/x/service/types" + "sonr.io/core/x/service/types" ) // GetParams get all parameters as types.Params diff --git a/x/service/keeper/query.go b/x/service/keeper/query.go index de1f3f6e1..23208ea88 100644 --- a/x/service/keeper/query.go +++ b/x/service/keeper/query.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/cosmos/cosmos-sdk/types/query" - "github.com/sonr-io/core/x/service/types" + "sonr.io/core/x/service/types" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" ) diff --git a/x/service/module.go b/x/service/module.go index 89e93d1cf..73c5e4753 100644 --- a/x/service/module.go +++ b/x/service/module.go @@ -17,9 +17,9 @@ import ( cdctypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/sonr-io/core/x/service/client/cli" - "github.com/sonr-io/core/x/service/keeper" - "github.com/sonr-io/core/x/service/types" + "sonr.io/core/x/service/client/cli" + "sonr.io/core/x/service/keeper" + "sonr.io/core/x/service/types" ) var ( diff --git a/x/service/module_simulation.go b/x/service/module_simulation.go index 25005fac9..c843d2c5a 100644 --- a/x/service/module_simulation.go +++ b/x/service/module_simulation.go @@ -8,9 +8,9 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" - "github.com/sonr-io/core/testutil/sample" - servicesimulation "github.com/sonr-io/core/x/service/simulation" - "github.com/sonr-io/core/x/service/types" + "sonr.io/core/testutil/sample" + servicesimulation "sonr.io/core/x/service/simulation" + "sonr.io/core/x/service/types" ) // avoid unused import issue diff --git a/x/service/simulation/service_record.go b/x/service/simulation/service_record.go index bfb0b4766..1712abf5a 100644 --- a/x/service/simulation/service_record.go +++ b/x/service/simulation/service_record.go @@ -8,8 +8,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" - "github.com/sonr-io/core/x/service/keeper" - "github.com/sonr-io/core/x/service/types" + "sonr.io/core/x/service/keeper" + "sonr.io/core/x/service/types" ) func SimulateMsgCreateServiceRecord( diff --git a/x/service/types/expected_keepers.go b/x/service/types/expected_keepers.go index cb16dce83..78027d97c 100644 --- a/x/service/types/expected_keepers.go +++ b/x/service/types/expected_keepers.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/x/auth/types" "github.com/cosmos/cosmos-sdk/x/group" - identitytypes "github.com/sonr-io/core/x/identity/types" + identitytypes "sonr.io/core/x/identity/types" ) type GroupKeeper interface { diff --git a/x/service/types/genesis.pb.go b/x/service/types/genesis.pb.go index 4bf83b3cb..4eddc415b 100644 --- a/x/service/types/genesis.pb.go +++ b/x/service/types/genesis.pb.go @@ -91,7 +91,7 @@ func init() { func init() { proto.RegisterFile("core/service/genesis.proto", fileDescriptor_7bd0c748f4da7215) } var fileDescriptor_7bd0c748f4da7215 = []byte{ - // 250 bytes of a gzipped FileDescriptorProto + // 239 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4a, 0xce, 0x2f, 0x4a, 0xd5, 0x2f, 0x4e, 0x2d, 0x2a, 0xcb, 0x4c, 0x4e, 0xd5, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x01, 0xc9, 0xe9, 0x41, 0xe5, 0xa4, 0x24, 0x51, @@ -102,12 +102,11 @@ var fileDescriptor_7bd0c748f4da7215 = []byte{ 0x4e, 0x2c, 0x27, 0xee, 0xc9, 0x33, 0x04, 0x41, 0x55, 0x0a, 0xf9, 0x73, 0x09, 0x42, 0xe5, 0x83, 0xc0, 0x36, 0xfa, 0x64, 0x16, 0x97, 0x48, 0x30, 0x29, 0x30, 0x6b, 0x70, 0x1b, 0x49, 0xa3, 0x6a, 0x0f, 0x46, 0x56, 0x06, 0x35, 0x05, 0x53, 0xaf, 0x90, 0x1e, 0x97, 0x10, 0x8a, 0xa0, 0x73, 0x7e, - 0x69, 0x5e, 0x89, 0x04, 0xb3, 0x02, 0xa3, 0x06, 0x4b, 0x10, 0x16, 0x19, 0x27, 0xc7, 0x13, 0x8f, + 0x69, 0x5e, 0x89, 0x04, 0xb3, 0x02, 0xa3, 0x06, 0x4b, 0x10, 0x16, 0x19, 0x27, 0xb3, 0x13, 0x8f, 0xe4, 0x18, 0x2f, 0x3c, 0x92, 0x63, 0x7c, 0xf0, 0x48, 0x8e, 0x71, 0xc2, 0x63, 0x39, 0x86, 0x0b, - 0x8f, 0xe5, 0x18, 0x6e, 0x3c, 0x96, 0x63, 0x88, 0x52, 0x4f, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, - 0x4b, 0xce, 0xcf, 0xd5, 0x2f, 0xce, 0xcf, 0x2b, 0xd2, 0xcd, 0xcc, 0xd7, 0x07, 0x87, 0x51, 0x05, - 0x3c, 0x94, 0x4a, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0xe1, 0x61, 0x0c, 0x08, 0x00, 0x00, - 0xff, 0xff, 0xa5, 0x12, 0x4c, 0x51, 0x87, 0x01, 0x00, 0x00, + 0x8f, 0xe5, 0x18, 0x6e, 0x3c, 0x96, 0x63, 0x88, 0x92, 0x29, 0xce, 0xcf, 0x2b, 0xd2, 0xcb, 0xcc, + 0xd7, 0x07, 0x07, 0x4c, 0x05, 0x3c, 0x68, 0x4a, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0x81, + 0x60, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0xcb, 0x55, 0x87, 0xe1, 0x7c, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/service/types/genesis_test.go b/x/service/types/genesis_test.go index e3d86fea7..47af08191 100644 --- a/x/service/types/genesis_test.go +++ b/x/service/types/genesis_test.go @@ -3,7 +3,7 @@ package types_test import ( "testing" - "github.com/sonr-io/core/x/service/types" + "sonr.io/core/x/service/types" "github.com/stretchr/testify/require" ) diff --git a/x/service/types/messages_service_record_test.go b/x/service/types/messages_service_record_test.go index 61c67015f..2c67f169b 100644 --- a/x/service/types/messages_service_record_test.go +++ b/x/service/types/messages_service_record_test.go @@ -4,7 +4,7 @@ import ( "testing" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - "github.com/sonr-io/core/testutil/sample" + "sonr.io/core/testutil/sample" "github.com/stretchr/testify/require" ) diff --git a/x/service/types/params.go b/x/service/types/params.go index f42799435..7e08c2a9a 100644 --- a/x/service/types/params.go +++ b/x/service/types/params.go @@ -4,7 +4,7 @@ import ( paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" "github.com/go-webauthn/webauthn/protocol" "github.com/go-webauthn/webauthn/protocol/webauthncose" - "github.com/sonr-io/core/internal/crypto" + "sonr.io/core/internal/crypto" "gopkg.in/yaml.v2" ) diff --git a/x/service/types/params.pb.go b/x/service/types/params.pb.go index 8700ed67a..5154addd8 100644 --- a/x/service/types/params.pb.go +++ b/x/service/types/params.pb.go @@ -66,17 +66,16 @@ func init() { func init() { proto.RegisterFile("core/service/params.proto", fileDescriptor_7c849a488e547d45) } var fileDescriptor_7c849a488e547d45 = []byte{ - // 148 bytes of a gzipped FileDescriptorProto + // 137 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4c, 0xce, 0x2f, 0x4a, 0xd5, 0x2f, 0x4e, 0x2d, 0x2a, 0xcb, 0x4c, 0x4e, 0xd5, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x01, 0x49, 0xe9, 0x41, 0xa5, 0xa4, 0x44, 0xd2, 0xf3, 0xd3, 0xf3, 0xc1, 0x12, 0xfa, 0x20, 0x16, 0x44, 0x8d, 0x12, 0x1f, 0x17, 0x5b, 0x00, 0x58, 0x8f, - 0x15, 0xcb, 0x8c, 0x05, 0xf2, 0x0c, 0x4e, 0x8e, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, + 0x15, 0xcb, 0x8c, 0x05, 0xf2, 0x0c, 0x4e, 0x66, 0x27, 0x1e, 0xc9, 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x84, 0xc7, 0x72, 0x0c, 0x17, 0x1e, 0xcb, 0x31, 0xdc, 0x78, 0x2c, - 0xc7, 0x10, 0xa5, 0x9e, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, 0xab, 0x5f, 0x9c, - 0x9f, 0x57, 0xa4, 0x9b, 0x99, 0xaf, 0x0f, 0xb6, 0xbb, 0x02, 0x6e, 0x7b, 0x49, 0x65, 0x41, 0x6a, - 0x71, 0x12, 0x1b, 0xd8, 0x64, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0x59, 0xe2, 0x8a, 0x9a, - 0x9a, 0x00, 0x00, 0x00, + 0xc7, 0x10, 0x25, 0x53, 0x9c, 0x9f, 0x57, 0xa4, 0x97, 0x99, 0xaf, 0x0f, 0xb6, 0xb0, 0x02, 0x6e, + 0x65, 0x49, 0x65, 0x41, 0x6a, 0x71, 0x12, 0x1b, 0xd8, 0x38, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, + 0xff, 0x61, 0xbf, 0xcb, 0x37, 0x8f, 0x00, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/service/types/query.pb.go b/x/service/types/query.pb.go index c18b9641e..0751ea613 100644 --- a/x/service/types/query.pb.go +++ b/x/service/types/query.pb.go @@ -10,7 +10,6 @@ import ( _ "github.com/cosmos/gogoproto/gogoproto" grpc1 "github.com/cosmos/gogoproto/grpc" proto "github.com/cosmos/gogoproto/proto" - _ "github.com/sonr-io/core/x/identity/types" _ "google.golang.org/genproto/googleapis/api/annotations" grpc "google.golang.org/grpc" codes "google.golang.org/grpc/codes" @@ -18,6 +17,7 @@ import ( io "io" math "math" math_bits "math/bits" + _ "sonr.io/core/x/identity/types" ) // Reference imports to suppress errors if they are not otherwise used. @@ -318,39 +318,38 @@ func init() { func init() { proto.RegisterFile("core/service/query.proto", fileDescriptor_5cf4b2348245f9e3) } var fileDescriptor_5cf4b2348245f9e3 = []byte{ - // 502 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x93, 0x41, 0x6f, 0xd3, 0x30, - 0x14, 0xc7, 0x9b, 0x0d, 0x2a, 0x61, 0x98, 0x40, 0xa6, 0x94, 0x52, 0x4a, 0x18, 0x39, 0x30, 0x34, - 0x44, 0xac, 0x15, 0x89, 0x7b, 0x77, 0xa0, 0xe2, 0x36, 0xc2, 0x8d, 0x9b, 0x9b, 0x9a, 0xcc, 0x22, - 0xcd, 0xcb, 0x6c, 0x77, 0xa2, 0x42, 0x5c, 0x26, 0x0e, 0x1c, 0x91, 0xf8, 0x24, 0x7c, 0x8b, 0x1d, - 0x27, 0x71, 0xe1, 0x84, 0x50, 0xcb, 0x07, 0x41, 0xb5, 0xdf, 0xa0, 0x66, 0x09, 0xa0, 0xdd, 0x92, - 0xf8, 0xff, 0x7f, 0xef, 0xf7, 0xf2, 0xfe, 0x26, 0x9d, 0x14, 0x94, 0x60, 0x5a, 0xa8, 0x43, 0x99, - 0x0a, 0x76, 0x30, 0x15, 0x6a, 0x16, 0x97, 0x0a, 0x0c, 0xd0, 0x2b, 0xcb, 0x93, 0x18, 0x4f, 0xba, - 0x37, 0xad, 0x4e, 0x8e, 0x45, 0x61, 0xa4, 0x99, 0xb1, 0xb1, 0x1c, 0x3b, 0x59, 0xf7, 0x96, 0x57, - 0xa0, 0xe4, 0x8a, 0x4f, 0x74, 0xe5, 0x91, 0x12, 0x29, 0xa8, 0x53, 0xd7, 0x76, 0x0a, 0x7a, 0x02, - 0x9a, 0x8d, 0xb8, 0xc6, 0xae, 0xec, 0x70, 0x67, 0x24, 0x0c, 0xdf, 0x61, 0x25, 0xcf, 0x64, 0xc1, - 0x8d, 0x84, 0x02, 0xb5, 0xad, 0x0c, 0x32, 0xb0, 0x8f, 0x6c, 0xf9, 0x84, 0x5f, 0x7b, 0x19, 0x40, - 0x96, 0x0b, 0xc6, 0x4b, 0xc9, 0x78, 0x51, 0x80, 0xb1, 0x16, 0x6c, 0x1d, 0xb5, 0x08, 0x7d, 0xbe, - 0xac, 0xba, 0x67, 0x79, 0x12, 0x71, 0x30, 0x15, 0xda, 0x44, 0xcf, 0xc8, 0x75, 0xef, 0xab, 0x2e, - 0xa1, 0xd0, 0x82, 0xf6, 0x49, 0xd3, 0x71, 0x77, 0x82, 0xcd, 0xe0, 0xc1, 0xe5, 0x7e, 0x2b, 0x5e, - 0x1d, 0x3d, 0x76, 0xea, 0xdd, 0x0b, 0xc7, 0xdf, 0xee, 0x36, 0x12, 0x54, 0x46, 0x4f, 0x48, 0xcf, - 0x96, 0x1a, 0x0a, 0xf3, 0xc2, 0xe9, 0x12, 0x3b, 0x1f, 0xb6, 0xa2, 0x6d, 0xd2, 0x04, 0x25, 0x33, - 0x59, 0xd8, 0x9a, 0x97, 0x12, 0x7c, 0x8b, 0xf6, 0xc9, 0x9d, 0x1a, 0x1f, 0xc2, 0x0c, 0xc9, 0x86, - 0x77, 0x80, 0x4c, 0xb7, 0x7d, 0x26, 0x4f, 0x82, 0x68, 0xbe, 0x2f, 0x7a, 0x85, 0x84, 0x83, 0x3c, - 0xaf, 0x24, 0x7c, 0x4a, 0xc8, 0xef, 0x5f, 0x8d, 0x5d, 0xee, 0xc7, 0x6e, 0x2f, 0xf1, 0x72, 0x2f, - 0xb1, 0x4b, 0x03, 0xee, 0x25, 0xde, 0xe3, 0x99, 0x40, 0x6f, 0xb2, 0xe2, 0x8c, 0x3e, 0x07, 0x38, - 0xd2, 0xd9, 0x46, 0xf5, 0x23, 0xad, 0x9f, 0x67, 0x24, 0x3a, 0xf4, 0x90, 0xd7, 0x2c, 0xf2, 0xd6, - 0x3f, 0x91, 0x1d, 0xc5, 0x2a, 0x73, 0xff, 0xfd, 0x3a, 0xb9, 0x68, 0x99, 0xe9, 0x6b, 0xd2, 0x74, - 0xfb, 0xa5, 0x9b, 0x3e, 0xce, 0xd9, 0xf8, 0x74, 0xef, 0xfd, 0x45, 0xe1, 0x9a, 0x44, 0xbd, 0xa3, - 0x2f, 0x3f, 0x3e, 0xad, 0xb5, 0x69, 0x8b, 0xd9, 0xec, 0xbb, 0xb0, 0x9c, 0x5e, 0x01, 0xfa, 0x21, - 0xf8, 0xe3, 0x4f, 0xd0, 0xed, 0x8a, 0x92, 0x35, 0x91, 0xea, 0x3e, 0xfc, 0x2f, 0x2d, 0x82, 0x84, - 0x16, 0xa4, 0x43, 0xdb, 0xcc, 0xbb, 0x84, 0x6f, 0x5d, 0x0c, 0xdf, 0xd1, 0xa3, 0x80, 0x5c, 0xf3, - 0x9c, 0x83, 0x3c, 0xaf, 0xa4, 0xa9, 0x89, 0x4f, 0x25, 0x4d, 0x5d, 0x02, 0xa2, 0x1b, 0x96, 0xe6, - 0x2a, 0xdd, 0xf0, 0x68, 0x76, 0x07, 0xc7, 0xf3, 0x30, 0x38, 0x99, 0x87, 0xc1, 0xf7, 0x79, 0x18, - 0x7c, 0x5c, 0x84, 0x8d, 0x93, 0x45, 0xd8, 0xf8, 0xba, 0x08, 0x1b, 0x2f, 0xb7, 0x32, 0x69, 0xf6, - 0xa7, 0xa3, 0x38, 0x85, 0x09, 0xd3, 0x50, 0xa8, 0x47, 0x12, 0x9c, 0xf5, 0xcd, 0xaf, 0x51, 0xcc, - 0xac, 0x14, 0x7a, 0xd4, 0xb4, 0xf7, 0xfd, 0xf1, 0xcf, 0x00, 0x00, 0x00, 0xff, 0xff, 0xe2, 0xc1, - 0x7c, 0xba, 0xc8, 0x04, 0x00, 0x00, + // 492 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x93, 0xc1, 0x6e, 0x13, 0x31, + 0x10, 0x86, 0xb3, 0x2d, 0x44, 0xc2, 0x50, 0x81, 0x4c, 0x08, 0x21, 0x84, 0xa5, 0xec, 0x01, 0x50, + 0x91, 0x6c, 0x35, 0x48, 0xbd, 0xb7, 0x07, 0x22, 0x6e, 0x65, 0xb9, 0x71, 0x73, 0x12, 0xb3, 0x58, + 0x6c, 0x77, 0xb6, 0xb6, 0x5b, 0x11, 0x21, 0x2e, 0x15, 0x07, 0x8e, 0x48, 0x3c, 0x09, 0x6f, 0xd1, + 0x63, 0x25, 0x2e, 0x9c, 0x10, 0x4a, 0x78, 0x10, 0xb4, 0xf6, 0x14, 0x62, 0xba, 0x0b, 0xa8, 0xb7, + 0x5d, 0xcf, 0x3f, 0x33, 0xdf, 0x78, 0x7e, 0x93, 0xde, 0x04, 0xb4, 0xe4, 0x46, 0xea, 0x43, 0x35, + 0x91, 0x7c, 0xff, 0x40, 0xea, 0x19, 0x2b, 0x35, 0x58, 0xa0, 0x57, 0xaa, 0x08, 0xc3, 0x48, 0xff, + 0xa6, 0xd3, 0xa9, 0xa9, 0x2c, 0xac, 0xb2, 0x33, 0x3e, 0x55, 0x53, 0x2f, 0xeb, 0xdf, 0x0a, 0x0a, + 0x94, 0x42, 0x8b, 0x3d, 0x53, 0x1b, 0xd2, 0x72, 0x02, 0xfa, 0x34, 0x6b, 0x63, 0x02, 0x66, 0x0f, + 0x0c, 0x1f, 0x0b, 0x83, 0x5d, 0xf9, 0xe1, 0xe6, 0x58, 0x5a, 0xb1, 0xc9, 0x4b, 0x91, 0xa9, 0x42, + 0x58, 0x05, 0x05, 0x6a, 0x3b, 0x19, 0x64, 0xe0, 0x3e, 0x79, 0xf5, 0x85, 0xa7, 0x83, 0x0c, 0x20, + 0xcb, 0x25, 0x17, 0xa5, 0xe2, 0xa2, 0x28, 0xc0, 0xba, 0x14, 0x6c, 0x9d, 0x74, 0x08, 0x7d, 0x56, + 0x55, 0xdd, 0x75, 0x3c, 0xa9, 0xdc, 0x3f, 0x90, 0xc6, 0x26, 0x4f, 0xc9, 0xf5, 0xe0, 0xd4, 0x94, + 0x50, 0x18, 0x49, 0x87, 0xa4, 0xed, 0xb9, 0x7b, 0xd1, 0x7a, 0xf4, 0xf0, 0xf2, 0xb0, 0xc3, 0x96, + 0x47, 0x67, 0x5e, 0xbd, 0x73, 0xe1, 0xf8, 0xdb, 0xdd, 0x56, 0x8a, 0xca, 0x64, 0x8b, 0x0c, 0x5c, + 0xa9, 0x91, 0xb4, 0xcf, 0xbd, 0x2e, 0x75, 0xf3, 0x61, 0x2b, 0xda, 0x25, 0x6d, 0xd0, 0x2a, 0x53, + 0x85, 0xab, 0x79, 0x29, 0xc5, 0xbf, 0xe4, 0x15, 0xb9, 0xd3, 0x90, 0x87, 0x30, 0x23, 0xb2, 0x16, + 0x04, 0x90, 0xe9, 0x76, 0xc8, 0x14, 0x48, 0x10, 0x2d, 0xcc, 0x4b, 0x5e, 0x22, 0xe1, 0x76, 0x9e, + 0xd7, 0x12, 0x3e, 0x21, 0xe4, 0xf7, 0x55, 0x63, 0x97, 0xfb, 0xcc, 0xef, 0x85, 0x55, 0x7b, 0x61, + 0xde, 0x0d, 0xb8, 0x17, 0xb6, 0x2b, 0x32, 0x89, 0xb9, 0xe9, 0x52, 0x66, 0xf2, 0x39, 0xc2, 0x91, + 0xce, 0x36, 0x6a, 0x1e, 0x69, 0xf5, 0x3c, 0x23, 0xd1, 0x51, 0x80, 0xbc, 0xe2, 0x90, 0x1f, 0xfc, + 0x13, 0xd9, 0x53, 0x2c, 0x33, 0x0f, 0xdf, 0xaf, 0x92, 0x8b, 0x8e, 0x99, 0xbe, 0x26, 0x6d, 0xbf, + 0x5f, 0xba, 0x1e, 0xe2, 0x9c, 0xb5, 0x4f, 0xff, 0xde, 0x5f, 0x14, 0xbe, 0x49, 0x32, 0x38, 0xfa, + 0xf2, 0xe3, 0xd3, 0x4a, 0x97, 0x76, 0xb8, 0xf3, 0xbe, 0x37, 0xcb, 0xe9, 0x13, 0xa0, 0x1f, 0xa2, + 0x3f, 0x6e, 0x82, 0x6e, 0xd4, 0x94, 0x6c, 0xb0, 0x54, 0xff, 0xd1, 0x7f, 0x69, 0x11, 0x24, 0x76, + 0x20, 0x3d, 0xda, 0xe5, 0xc1, 0x23, 0x7c, 0xeb, 0x6d, 0xf8, 0x8e, 0x1e, 0x45, 0xe4, 0x5a, 0x90, + 0xb9, 0x9d, 0xe7, 0xb5, 0x34, 0x0d, 0xf6, 0xa9, 0xa5, 0x69, 0x72, 0x40, 0x72, 0xc3, 0xd1, 0x5c, + 0xa5, 0x6b, 0x01, 0xcd, 0xce, 0xd6, 0xf1, 0x3c, 0x8e, 0x4e, 0xe6, 0x71, 0xf4, 0x7d, 0x1e, 0x47, + 0x1f, 0x17, 0x71, 0xeb, 0x64, 0x11, 0xb7, 0xbe, 0x2e, 0xe2, 0xd6, 0x8b, 0x81, 0x81, 0x42, 0x33, + 0x05, 0x5e, 0xff, 0xe6, 0x17, 0xbf, 0x9d, 0x95, 0xd2, 0x8c, 0xdb, 0xee, 0x91, 0x3f, 0xfe, 0x19, + 0x00, 0x00, 0xff, 0xff, 0x4d, 0x4c, 0xe0, 0x3b, 0xbd, 0x04, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/service/types/record.go b/x/service/types/record.go index f2f715c5e..9e17ae5f0 100644 --- a/x/service/types/record.go +++ b/x/service/types/record.go @@ -9,7 +9,7 @@ import ( "strings" "github.com/go-webauthn/webauthn/protocol" - "github.com/sonr-io/core/types/webauthn" + "sonr.io/core/types/webauthn" ) const ( diff --git a/x/service/types/record.pb.go b/x/service/types/record.pb.go index 3895139d3..7ccaa953e 100644 --- a/x/service/types/record.pb.go +++ b/x/service/types/record.pb.go @@ -226,30 +226,29 @@ func init() { func init() { proto.RegisterFile("core/service/record.proto", fileDescriptor_17bfe358aaf56022) } var fileDescriptor_17bfe358aaf56022 = []byte{ - // 356 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x4c, 0x91, 0x4f, 0x6e, 0xe2, 0x30, - 0x18, 0xc5, 0xe3, 0x84, 0x7f, 0xf9, 0x80, 0x51, 0xe4, 0x99, 0x85, 0x67, 0x34, 0x8a, 0x22, 0x36, - 0x83, 0x46, 0x2a, 0x59, 0xf4, 0x04, 0x50, 0xa5, 0x15, 0x1b, 0x5a, 0x39, 0x48, 0x55, 0xdb, 0x05, - 0x02, 0xc7, 0x05, 0x4b, 0x10, 0x47, 0x76, 0xa8, 0xca, 0x2d, 0x7a, 0x8f, 0x5e, 0xa4, 0x4b, 0x96, - 0x5d, 0x56, 0x70, 0x91, 0x2a, 0x26, 0xa5, 0xec, 0xde, 0xef, 0xbd, 0xcf, 0xd6, 0x93, 0x1e, 0xfc, - 0x66, 0x52, 0xf1, 0x50, 0x73, 0xf5, 0x24, 0x18, 0x0f, 0x15, 0x67, 0x52, 0x25, 0xbd, 0x4c, 0xc9, - 0x5c, 0xe2, 0x56, 0x11, 0xf5, 0xca, 0xa8, 0xf3, 0x8a, 0xa0, 0x1d, 0x1f, 0x34, 0x35, 0x57, 0xf8, - 0x07, 0xd8, 0x22, 0x21, 0x28, 0x40, 0x5d, 0x97, 0xda, 0x22, 0xc1, 0x3e, 0x00, 0x93, 0x69, 0xae, - 0xe4, 0x72, 0xc9, 0x15, 0xb1, 0x8d, 0x7f, 0xe2, 0x60, 0x02, 0x75, 0xa9, 0xc4, 0x5c, 0xa4, 0x9a, - 0x38, 0x81, 0xd3, 0x75, 0xe9, 0x17, 0x62, 0x0c, 0x95, 0x74, 0xba, 0xe2, 0xa4, 0x62, 0xde, 0x18, - 0x8d, 0x03, 0x68, 0x26, 0x5c, 0x33, 0x25, 0xb2, 0x5c, 0xc8, 0x94, 0x54, 0x4d, 0x74, 0x6a, 0xe1, - 0x3f, 0xd0, 0x60, 0xd3, 0x9c, 0xcf, 0xa5, 0xda, 0x90, 0x9a, 0x89, 0x8f, 0xdc, 0x79, 0x80, 0x9f, - 0xc7, 0xb2, 0xcb, 0x69, 0x71, 0xae, 0x17, 0x22, 0xc3, 0x7f, 0xc1, 0x55, 0xfc, 0x91, 0x2b, 0x9e, - 0x32, 0x5e, 0x36, 0xff, 0x36, 0xb0, 0x07, 0x4e, 0x22, 0x92, 0xb2, 0x79, 0x21, 0xf1, 0x2f, 0xa8, - 0x32, 0xb9, 0x4e, 0x73, 0xe2, 0x04, 0xa8, 0xdb, 0xa6, 0x07, 0xf8, 0x1f, 0x43, 0xf3, 0x86, 0xab, - 0x95, 0xd0, 0xba, 0xf8, 0x17, 0x37, 0xa1, 0x1e, 0xd3, 0xc9, 0xa0, 0x1f, 0x47, 0x9e, 0x55, 0x42, - 0x3c, 0xbc, 0x1a, 0x79, 0x08, 0xb7, 0xa0, 0x11, 0xd3, 0xc9, 0x2d, 0x1d, 0x8e, 0x23, 0xcf, 0xc6, - 0x6d, 0x70, 0x63, 0x3a, 0xb9, 0xa0, 0x51, 0x7f, 0x1c, 0x79, 0x4e, 0x89, 0xa3, 0xeb, 0xf1, 0xf0, - 0xf2, 0xce, 0xab, 0x0c, 0xfa, 0x6f, 0x3b, 0x1f, 0x6d, 0x77, 0x3e, 0xfa, 0xd8, 0xf9, 0xe8, 0x65, - 0xef, 0x5b, 0xdb, 0xbd, 0x6f, 0xbd, 0xef, 0x7d, 0xeb, 0xfe, 0xdf, 0x5c, 0xe4, 0x8b, 0xf5, 0xac, - 0xc7, 0xe4, 0x2a, 0xd4, 0x32, 0x55, 0x67, 0x42, 0x86, 0x66, 0xb5, 0xe7, 0xe3, 0x6e, 0xf9, 0x26, - 0xe3, 0x7a, 0x56, 0x33, 0xbb, 0x9d, 0x7f, 0x06, 0x00, 0x00, 0xff, 0xff, 0x37, 0x0d, 0xe9, 0xb2, - 0xd4, 0x01, 0x00, 0x00, + // 347 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x4c, 0x91, 0xcf, 0x4e, 0xea, 0x40, + 0x18, 0xc5, 0x3b, 0x2d, 0xff, 0xfa, 0x01, 0x37, 0xcd, 0xdc, 0xbb, 0x98, 0x7b, 0x43, 0x9a, 0x86, + 0x15, 0xb9, 0x0b, 0x58, 0x98, 0xb8, 0x07, 0x53, 0x0d, 0x1b, 0x34, 0x53, 0x12, 0xa3, 0x2e, 0x08, + 0x4e, 0x47, 0x9c, 0x04, 0x66, 0x9a, 0x99, 0x6a, 0xe4, 0x2d, 0x7c, 0x0f, 0x5f, 0xc4, 0x25, 0x4b, + 0x97, 0x06, 0x5e, 0xc4, 0x74, 0xa8, 0xc8, 0xee, 0xfc, 0xce, 0xf9, 0x66, 0x72, 0x92, 0x03, 0x7f, + 0x99, 0xd2, 0x7c, 0x60, 0xb8, 0x7e, 0x16, 0x8c, 0x0f, 0x34, 0x67, 0x4a, 0xa7, 0xfd, 0x4c, 0xab, + 0x5c, 0xe1, 0x56, 0x11, 0xf5, 0xcb, 0xa8, 0xfb, 0x86, 0xa0, 0x9d, 0xec, 0x35, 0xb5, 0x57, 0xf8, + 0x17, 0xb8, 0x22, 0x25, 0x28, 0x42, 0x3d, 0x9f, 0xba, 0x22, 0xc5, 0x21, 0x00, 0x53, 0x32, 0xd7, + 0x6a, 0xb9, 0xe4, 0x9a, 0xb8, 0xd6, 0x3f, 0x72, 0x30, 0x81, 0xba, 0xd2, 0x62, 0x21, 0xa4, 0x21, + 0x5e, 0xe4, 0xf5, 0x7c, 0xfa, 0x8d, 0x18, 0x43, 0x45, 0xce, 0x57, 0x9c, 0x54, 0xec, 0x1b, 0xab, + 0x71, 0x04, 0xcd, 0x94, 0x1b, 0xa6, 0x45, 0x96, 0x0b, 0x25, 0x49, 0xd5, 0x46, 0xc7, 0x16, 0xfe, + 0x07, 0x0d, 0x36, 0xcf, 0xf9, 0x42, 0xe9, 0x35, 0xa9, 0xd9, 0xf8, 0xc0, 0xdd, 0x3b, 0xf8, 0x7d, + 0x28, 0xbb, 0x9c, 0x17, 0xe7, 0xe6, 0x51, 0x64, 0xb8, 0x03, 0xbe, 0xe6, 0x0f, 0x5c, 0x73, 0xc9, + 0x78, 0xd9, 0xfc, 0xc7, 0xc0, 0x01, 0x78, 0xa9, 0x48, 0xcb, 0xe6, 0x85, 0xc4, 0x7f, 0xa0, 0xca, + 0xd4, 0x93, 0xcc, 0x89, 0x17, 0xa1, 0x5e, 0x9b, 0xee, 0xe1, 0x7f, 0x02, 0xcd, 0x2b, 0xae, 0x57, + 0xc2, 0x98, 0xe2, 0x5f, 0xdc, 0x84, 0x7a, 0x42, 0x67, 0xa3, 0x61, 0x12, 0x07, 0x4e, 0x09, 0xc9, + 0xf8, 0x62, 0x12, 0x20, 0xdc, 0x82, 0x46, 0x42, 0x67, 0xd7, 0x74, 0x3c, 0x8d, 0x03, 0x17, 0xb7, + 0xc1, 0x4f, 0xe8, 0xec, 0x8c, 0xc6, 0xc3, 0x69, 0x1c, 0x78, 0x25, 0x4e, 0x2e, 0xa7, 0xe3, 0xf3, + 0x9b, 0xa0, 0x32, 0x3a, 0x7d, 0xdf, 0x86, 0x68, 0xb3, 0x0d, 0xd1, 0xe7, 0x36, 0x44, 0xaf, 0xbb, + 0xd0, 0xd9, 0xec, 0x42, 0xe7, 0x63, 0x17, 0x3a, 0xb7, 0x1d, 0xa3, 0xa4, 0xee, 0x0b, 0x35, 0xb0, + 0x53, 0xbd, 0x1c, 0xc6, 0xca, 0xd7, 0x19, 0x37, 0xf7, 0x35, 0x3b, 0xd6, 0xc9, 0x57, 0x00, 0x00, + 0x00, 0xff, 0xff, 0xae, 0x6a, 0xa0, 0x13, 0xc9, 0x01, 0x00, 0x00, } func (m *ServiceRecord) Marshal() (dAtA []byte, err error) { diff --git a/x/service/types/tx.pb.go b/x/service/types/tx.pb.go index bad39a40a..4c8cb1e3c 100644 --- a/x/service/types/tx.pb.go +++ b/x/service/types/tx.pb.go @@ -315,7 +315,7 @@ func init() { func init() { proto.RegisterFile("core/service/tx.proto", fileDescriptor_376dd44ebb86aa2f) } var fileDescriptor_376dd44ebb86aa2f = []byte{ - // 288 bytes of a gzipped FileDescriptorProto + // 277 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x4d, 0xce, 0x2f, 0x4a, 0xd5, 0x2f, 0x4e, 0x2d, 0x2a, 0xcb, 0x4c, 0x4e, 0xd5, 0x2f, 0xa9, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0xe2, 0x01, 0x09, 0xeb, 0x41, 0x85, 0xa5, 0x24, 0x51, 0x14, 0x15, 0xa5, 0x26, 0xe7, @@ -329,11 +329,11 @@ var fileDescriptor_376dd44ebb86aa2f = []byte{ 0x50, 0x26, 0x97, 0x30, 0xb6, 0x60, 0x53, 0xd1, 0x43, 0x0e, 0x7a, 0x3d, 0xec, 0x01, 0x25, 0xa5, 0x43, 0x8c, 0x2a, 0x78, 0x70, 0x66, 0x72, 0x09, 0x63, 0x0b, 0x3b, 0x4c, 0xab, 0xb0, 0xa8, 0xc2, 0x62, 0x15, 0x9e, 0x30, 0x04, 0x59, 0x85, 0x2d, 0x00, 0x31, 0xad, 0xc2, 0xa2, 0x0a, 0x8b, 0x55, - 0x78, 0x02, 0xd2, 0xc9, 0xf1, 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, - 0x63, 0x9c, 0xf0, 0x58, 0x8e, 0xe1, 0xc2, 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0xd4, - 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0x8b, 0xf3, 0xf3, 0x8a, 0x74, - 0x33, 0xf3, 0xf5, 0xc1, 0x49, 0xb8, 0x02, 0x91, 0xd2, 0x2b, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, - 0x89, 0xd8, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0xac, 0x8a, 0x63, 0xa7, 0x06, 0x03, 0x00, 0x00, + 0x78, 0x02, 0xd2, 0xc9, 0xec, 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, + 0x63, 0x9c, 0xf0, 0x58, 0x8e, 0xe1, 0xc2, 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0x64, + 0x8a, 0xf3, 0xf3, 0x8a, 0xf4, 0x32, 0xf3, 0xf5, 0xc1, 0xe9, 0xb6, 0x02, 0x91, 0xbc, 0x2b, 0x0b, + 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0x29, 0xd7, 0x18, 0x10, 0x00, 0x00, 0xff, 0xff, 0x37, 0xad, 0xfb, + 0x90, 0xfb, 0x02, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/service/types/utils.go b/x/service/types/utils.go index eacc77a99..b6c19c635 100644 --- a/x/service/types/utils.go +++ b/x/service/types/utils.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/go-webauthn/webauthn/protocol" - "github.com/sonr-io/core/types/webauthn" + "sonr.io/core/types/webauthn" "lukechampine.com/blake3" )