From 954827e96c73a1dd46f404d32f1184b3536c25ba Mon Sep 17 00:00:00 2001 From: p0p3yee Date: Fri, 9 Feb 2024 10:48:19 -0500 Subject: [PATCH] Update go.mod module to github.com/Fairblock/fairyring --- app/ante.go | 6 ++--- app/app.go | 24 +++++++++---------- app/encoding.go | 2 +- app/simulation_test.go | 2 +- blockbuster/abci/abci.go | 6 ++--- blockbuster/abci/check_tx.go | 2 +- blockbuster/lanes/base/abci.go | 4 ++-- blockbuster/lanes/base/lane.go | 2 +- blockbuster/lanes/base/mempool.go | 4 ++-- blockbuster/lanes/keyshare/abci.go | 4 ++-- blockbuster/lanes/keyshare/factory.go | 2 +- blockbuster/lanes/keyshare/lane.go | 4 ++-- blockbuster/lanes/keyshare/mempool.go | 4 ++-- blockbuster/lanes/terminator/lane.go | 2 +- blockbuster/proposals.go | 2 +- blockbuster/utils/utils_test.go | 2 +- cmd/fairyringd/cmd/config.go | 2 +- cmd/fairyringd/cmd/root.go | 4 ++-- cmd/fairyringd/main.go | 4 ++-- docs/fairy_core/integration/04_pep_module.md | 6 ++--- go.mod | 4 ++-- .../keyshare/aggregated_key_share.proto | 2 +- .../keyshare/authorized_address.proto | 2 +- proto/fairyring/keyshare/commitments.proto | 2 +- .../keyshare/general_key_share.proto | 2 +- proto/fairyring/keyshare/genesis.proto | 16 ++++++------- proto/fairyring/keyshare/key_share.proto | 2 +- proto/fairyring/keyshare/packet.proto | 2 +- proto/fairyring/keyshare/params.proto | 2 +- proto/fairyring/keyshare/pub_key.proto | 2 +- proto/fairyring/keyshare/query.proto | 18 +++++++------- .../keyshare/requested_keyshare.proto | 2 +- proto/fairyring/keyshare/tx.proto | 4 ++-- proto/fairyring/keyshare/validator_set.proto | 2 +- .../fairyring/pep/aggregated_key_share.proto | 2 +- proto/fairyring/pep/encrypted_tx.proto | 2 +- proto/fairyring/pep/genesis.proto | 12 +++++----- proto/fairyring/pep/packet.proto | 4 ++-- proto/fairyring/pep/params.proto | 2 +- proto/fairyring/pep/pep_nonce.proto | 2 +- proto/fairyring/pep/pub_key.proto | 2 +- proto/fairyring/pep/query.proto | 12 +++++----- proto/fairyring/pep/tx.proto | 4 ++-- proto/scripts/protocgen.sh | 2 +- testutil/keeper/keyshare.go | 4 ++-- testutil/keeper/pep.go | 4 ++-- testutil/network/network.go | 2 +- testutil/utils.go | 2 +- x/keyshare/client/cli/query.go | 2 +- .../client/cli/query_aggregated_key_share.go | 2 +- .../cli/query_aggregated_key_share_test.go | 8 +++---- .../client/cli/query_authorized_address.go | 2 +- .../cli/query_authorized_address_test.go | 8 +++---- x/keyshare/client/cli/query_commitments.go | 2 +- .../client/cli/query_general_key_share.go | 2 +- .../cli/query_general_key_share_test.go | 8 +++---- x/keyshare/client/cli/query_key_share.go | 2 +- x/keyshare/client/cli/query_key_share_test.go | 8 +++---- x/keyshare/client/cli/query_params.go | 2 +- x/keyshare/client/cli/query_pubkey.go | 2 +- x/keyshare/client/cli/query_validator_set.go | 2 +- .../client/cli/query_validator_set_test.go | 8 +++---- x/keyshare/client/cli/tx.go | 2 +- .../client/cli/tx_authorized_address.go | 2 +- x/keyshare/client/cli/tx_general_key_share.go | 2 +- .../client/cli/tx_general_key_share_test.go | 4 ++-- x/keyshare/client/cli/tx_latest_pub_key.go | 2 +- .../client/cli/tx_latest_pub_key_test.go | 4 ++-- .../client/cli/tx_register_validator.go | 2 +- x/keyshare/client/cli/tx_send_keyshare.go | 2 +- x/keyshare/genesis.go | 4 ++-- x/keyshare/genesis_test.go | 8 +++---- x/keyshare/keeper/aggr_keyshare_data.go | 2 +- x/keyshare/keeper/aggregated_key_share.go | 2 +- .../keeper/aggregated_key_share_test.go | 8 +++---- .../keeper/aggregated_keyshare_requests.go | 2 +- x/keyshare/keeper/authorized_address.go | 2 +- x/keyshare/keeper/authorized_address_test.go | 8 +++---- x/keyshare/keeper/commitments.go | 2 +- x/keyshare/keeper/general_key_share.go | 2 +- x/keyshare/keeper/general_key_share_test.go | 8 +++---- x/keyshare/keeper/get_aggr_keyshare.go | 2 +- x/keyshare/keeper/grpc_query.go | 2 +- x/keyshare/keeper/grpc_query_commitments.go | 2 +- x/keyshare/keeper/grpc_query_key_share.go | 2 +- .../keeper/grpc_query_key_share_test.go | 6 ++--- x/keyshare/keeper/grpc_query_params.go | 2 +- x/keyshare/keeper/grpc_query_params_test.go | 4 ++-- x/keyshare/keeper/grpc_query_pubkey.go | 2 +- x/keyshare/keeper/grpc_query_validator_set.go | 2 +- .../keeper/grpc_query_validator_set_test.go | 6 ++--- x/keyshare/keeper/keeper.go | 2 +- x/keyshare/keeper/key_share.go | 2 +- x/keyshare/keeper/key_share_test.go | 8 +++---- x/keyshare/keeper/last_submitted_height.go | 2 +- x/keyshare/keeper/msg_server.go | 2 +- .../keeper/msg_server_authorized_address.go | 2 +- .../msg_server_authorized_address_test.go | 6 ++--- .../keeper/msg_server_general_key_share.go | 2 +- .../msg_server_general_key_share_test.go | 6 ++--- x/keyshare/keeper/msg_server_pub_key.go | 4 ++-- x/keyshare/keeper/msg_server_pub_key_test.go | 6 ++--- .../keeper/msg_server_register_validator.go | 2 +- .../msg_server_register_validator_test.go | 8 +++---- x/keyshare/keeper/msg_server_send_keyshare.go | 2 +- .../keeper/msg_server_send_keyshare_test.go | 8 +++---- x/keyshare/keeper/params.go | 2 +- x/keyshare/keeper/params_test.go | 4 ++-- x/keyshare/keeper/pub_key.go | 2 +- .../keeper/query_aggregated_key_share.go | 2 +- .../keeper/query_aggregated_key_share_test.go | 6 ++--- x/keyshare/keeper/query_authorized_address.go | 2 +- .../keeper/query_authorized_address_test.go | 6 ++--- x/keyshare/keeper/query_general_key_share.go | 2 +- .../keeper/query_general_key_share_test.go | 6 ++--- x/keyshare/keeper/request_aggr_keyshare.go | 2 +- x/keyshare/keeper/validator_set.go | 2 +- x/keyshare/keeper/validator_set_test.go | 8 +++---- x/keyshare/module.go | 8 +++---- x/keyshare/module_ibc.go | 4 ++-- x/keyshare/module_ibc_test.go | 4 ++-- x/keyshare/module_simulation.go | 6 ++--- x/keyshare/simulation/authorized_address.go | 4 ++-- x/keyshare/simulation/general_key_share.go | 4 ++-- x/keyshare/simulation/latest_pub_key.go | 4 ++-- x/keyshare/simulation/register_validator.go | 4 ++-- x/keyshare/simulation/send_keyshare.go | 4 ++-- x/keyshare/types/aggregated_key_share.pb.go | 2 +- x/keyshare/types/authorized_address.pb.go | 2 +- x/keyshare/types/codec.go | 6 ++--- x/keyshare/types/commitments.pb.go | 2 +- x/keyshare/types/expected_keepers.go | 2 +- x/keyshare/types/general_key_share.pb.go | 2 +- x/keyshare/types/genesis.pb.go | 2 +- x/keyshare/types/genesis_test.go | 2 +- x/keyshare/types/key_share.pb.go | 2 +- .../types/message_register_validator_test.go | 2 +- .../types/message_send_keyshare_test.go | 2 +- .../types/messages_authorized_address_test.go | 2 +- .../types/messages_general_key_share_test.go | 2 +- .../types/messages_latest_pub_key_test.go | 2 +- x/keyshare/types/packet.pb.go | 2 +- x/keyshare/types/params.pb.go | 2 +- x/keyshare/types/pub_key.pb.go | 2 +- x/keyshare/types/query.pb.go | 4 ++-- x/keyshare/types/requested_keyshare.pb.go | 2 +- x/keyshare/types/tx.pb.go | 4 ++-- x/keyshare/types/validator_set.pb.go | 2 +- x/pep/ante/ante.go | 4 ++-- x/pep/client/cli/query.go | 2 +- x/pep/client/cli/query_encrypted_tx.go | 2 +- x/pep/client/cli/query_encrypted_tx_test.go | 8 +++---- x/pep/client/cli/query_latest_height.go | 2 +- x/pep/client/cli/query_params.go | 2 +- x/pep/client/cli/query_pep_nonce.go | 2 +- x/pep/client/cli/query_pep_nonce_test.go | 8 +++---- x/pep/client/cli/query_pubkey.go | 2 +- x/pep/client/cli/tx.go | 2 +- x/pep/client/cli/tx_aggregated_key_share.go | 2 +- .../cli/tx_aggregated_key_share_test.go | 4 ++-- x/pep/client/cli/tx_submit_encrypted_tx.go | 2 +- x/pep/genesis.go | 4 ++-- x/pep/genesis_test.go | 8 +++---- x/pep/keeper/aggregated_key_share.go | 2 +- x/pep/keeper/aggregated_key_share_test.go | 8 +++---- x/pep/keeper/current_keys.go | 2 +- x/pep/keeper/encrypted_tx.go | 2 +- x/pep/keeper/encrypted_tx_test.go | 8 +++---- x/pep/keeper/grpc_query.go | 2 +- x/pep/keeper/grpc_query_encrypted_tx.go | 2 +- x/pep/keeper/grpc_query_encrypted_tx_test.go | 6 ++--- x/pep/keeper/grpc_query_latest_height.go | 2 +- x/pep/keeper/grpc_query_params.go | 2 +- x/pep/keeper/grpc_query_params_test.go | 4 ++-- x/pep/keeper/grpc_query_pep_nonce.go | 2 +- x/pep/keeper/grpc_query_pep_nonce_test.go | 6 ++--- x/pep/keeper/grpc_query_pubkey.go | 2 +- x/pep/keeper/keeper.go | 2 +- x/pep/keeper/latest_height.go | 2 +- x/pep/keeper/msg_server.go | 2 +- .../keeper/msg_server_aggregated_key_share.go | 2 +- .../msg_server_aggregated_key_share_test.go | 6 ++--- .../keeper/msg_server_submit_encrypted_tx.go | 2 +- x/pep/keeper/params.go | 2 +- x/pep/keeper/params_test.go | 4 ++-- x/pep/keeper/pep_nonce.go | 2 +- x/pep/keeper/pep_nonce_test.go | 8 +++---- x/pep/keeper/pub_key.go | 2 +- x/pep/module.go | 6 ++--- x/pep/module_ibc.go | 4 ++-- x/pep/module_simulation.go | 6 ++--- x/pep/simulation/aggregated_key_share.go | 4 ++-- x/pep/simulation/submit_encrypted_tx.go | 4 ++-- x/pep/types/aggregated_key_share.pb.go | 2 +- x/pep/types/encrypted_tx.pb.go | 2 +- x/pep/types/genesis.pb.go | 2 +- x/pep/types/genesis_test.go | 2 +- .../types/message_submit_encrypted_tx_test.go | 2 +- .../messages_aggregated_key_share_test.go | 2 +- x/pep/types/packet.pb.go | 2 +- x/pep/types/params.pb.go | 2 +- x/pep/types/pep_nonce.pb.go | 2 +- x/pep/types/pub_key.pb.go | 2 +- x/pep/types/query.pb.go | 4 ++-- x/pep/types/tx.pb.go | 4 ++-- 205 files changed, 375 insertions(+), 375 deletions(-) diff --git a/app/ante.go b/app/ante.go index 6a0963bf..3b00ef52 100644 --- a/app/ante.go +++ b/app/ante.go @@ -1,9 +1,9 @@ package app import ( - "fairyring/blockbuster" - pepante "fairyring/x/pep/ante" - pepkeeper "fairyring/x/pep/keeper" + "github.com/Fairblock/fairyring/blockbuster" + pepante "github.com/Fairblock/fairyring/x/pep/ante" + pepkeeper "github.com/Fairblock/fairyring/x/pep/keeper" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/x/auth/ante" diff --git a/app/app.go b/app/app.go index 7550c5cf..b7cd390a 100644 --- a/app/app.go +++ b/app/app.go @@ -109,21 +109,21 @@ import ( ibctestingtypes "github.com/cosmos/ibc-go/v7/testing/types" "github.com/spf13/cast" - "fairyring/blockbuster" - "fairyring/blockbuster/abci" - "fairyring/blockbuster/lanes/base" - "fairyring/blockbuster/lanes/keyshare" - keysharemodule "fairyring/x/keyshare" - keysharemodulekeeper "fairyring/x/keyshare/keeper" - keysharemoduletypes "fairyring/x/keyshare/types" - pepmodule "fairyring/x/pep" - pepmodulekeeper "fairyring/x/pep/keeper" - pepmoduletypes "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/blockbuster" + "github.com/Fairblock/fairyring/blockbuster/abci" + "github.com/Fairblock/fairyring/blockbuster/lanes/base" + "github.com/Fairblock/fairyring/blockbuster/lanes/keyshare" + keysharemodule "github.com/Fairblock/fairyring/x/keyshare" + keysharemodulekeeper "github.com/Fairblock/fairyring/x/keyshare/keeper" + keysharemoduletypes "github.com/Fairblock/fairyring/x/keyshare/types" + pepmodule "github.com/Fairblock/fairyring/x/pep" + pepmodulekeeper "github.com/Fairblock/fairyring/x/pep/keeper" + pepmoduletypes "github.com/Fairblock/fairyring/x/pep/types" // this line is used by starport scaffolding # stargate/app/moduleImport - appparams "fairyring/app/params" - "fairyring/docs" + appparams "github.com/Fairblock/fairyring/app/params" + "github.com/Fairblock/fairyring/docs" ) const ( diff --git a/app/encoding.go b/app/encoding.go index 42b5de5d..d885111d 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" - "fairyring/app/params" + "github.com/Fairblock/fairyring/app/params" ) // makeEncodingConfig creates an EncodingConfig for an amino based test configuration. diff --git a/app/simulation_test.go b/app/simulation_test.go index 15c5f5fe..6a960844 100644 --- a/app/simulation_test.go +++ b/app/simulation_test.go @@ -37,7 +37,7 @@ import ( ibctesting "github.com/cosmos/ibc-go/v7/testing" "github.com/stretchr/testify/require" - "fairyring/app" + "github.com/Fairblock/fairyring/app" ) type storeKeysPrefixes struct { diff --git a/blockbuster/abci/abci.go b/blockbuster/abci/abci.go index 3e5ddb57..89ac8c2f 100644 --- a/blockbuster/abci/abci.go +++ b/blockbuster/abci/abci.go @@ -1,9 +1,9 @@ package abci import ( - "fairyring/blockbuster" - "fairyring/blockbuster/lanes/terminator" - "fairyring/blockbuster/utils" + "github.com/Fairblock/fairyring/blockbuster" + "github.com/Fairblock/fairyring/blockbuster/lanes/terminator" + "github.com/Fairblock/fairyring/blockbuster/utils" abci "github.com/cometbft/cometbft/abci/types" "github.com/cometbft/cometbft/libs/log" diff --git a/blockbuster/abci/check_tx.go b/blockbuster/abci/check_tx.go index 170f735f..e5de6650 100644 --- a/blockbuster/abci/check_tx.go +++ b/blockbuster/abci/check_tx.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/x/pep/types" cometabci "github.com/cometbft/cometbft/abci/types" log "github.com/cometbft/cometbft/libs/log" diff --git a/blockbuster/lanes/base/abci.go b/blockbuster/lanes/base/abci.go index a753d4bc..467c3ca9 100644 --- a/blockbuster/lanes/base/abci.go +++ b/blockbuster/lanes/base/abci.go @@ -3,8 +3,8 @@ package base import ( "fmt" - "fairyring/blockbuster" - "fairyring/blockbuster/utils" + "github.com/Fairblock/fairyring/blockbuster" + "github.com/Fairblock/fairyring/blockbuster/utils" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/blockbuster/lanes/base/lane.go b/blockbuster/lanes/base/lane.go index 5d6aff2a..b29ee2d5 100644 --- a/blockbuster/lanes/base/lane.go +++ b/blockbuster/lanes/base/lane.go @@ -1,7 +1,7 @@ package base import ( - "fairyring/blockbuster" + "github.com/Fairblock/fairyring/blockbuster" "github.com/cometbft/cometbft/libs/log" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/blockbuster/lanes/base/mempool.go b/blockbuster/lanes/base/mempool.go index 3ea90b34..58be15ee 100644 --- a/blockbuster/lanes/base/mempool.go +++ b/blockbuster/lanes/base/mempool.go @@ -5,8 +5,8 @@ import ( "errors" "fmt" - "fairyring/blockbuster" - "fairyring/blockbuster/utils" + "github.com/Fairblock/fairyring/blockbuster" + "github.com/Fairblock/fairyring/blockbuster/utils" sdk "github.com/cosmos/cosmos-sdk/types" sdkmempool "github.com/cosmos/cosmos-sdk/types/mempool" diff --git a/blockbuster/lanes/keyshare/abci.go b/blockbuster/lanes/keyshare/abci.go index 109f7434..c18500e5 100644 --- a/blockbuster/lanes/keyshare/abci.go +++ b/blockbuster/lanes/keyshare/abci.go @@ -3,8 +3,8 @@ package keyshare import ( "fmt" - "fairyring/blockbuster" - "fairyring/blockbuster/utils" + "github.com/Fairblock/fairyring/blockbuster" + "github.com/Fairblock/fairyring/blockbuster/utils" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/blockbuster/lanes/keyshare/factory.go b/blockbuster/lanes/keyshare/factory.go index 184e65e6..cdc491ee 100644 --- a/blockbuster/lanes/keyshare/factory.go +++ b/blockbuster/lanes/keyshare/factory.go @@ -2,7 +2,7 @@ package keyshare import ( "errors" - "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/x/pep/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/blockbuster/lanes/keyshare/lane.go b/blockbuster/lanes/keyshare/lane.go index a475ead9..c6d52cc4 100644 --- a/blockbuster/lanes/keyshare/lane.go +++ b/blockbuster/lanes/keyshare/lane.go @@ -1,8 +1,8 @@ package keyshare import ( - "fairyring/blockbuster" - "fairyring/blockbuster/lanes/base" + "github.com/Fairblock/fairyring/blockbuster" + "github.com/Fairblock/fairyring/blockbuster/lanes/base" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/blockbuster/lanes/keyshare/mempool.go b/blockbuster/lanes/keyshare/mempool.go index be91994f..319df096 100644 --- a/blockbuster/lanes/keyshare/mempool.go +++ b/blockbuster/lanes/keyshare/mempool.go @@ -6,8 +6,8 @@ import ( "fmt" "strconv" - "fairyring/blockbuster" - "fairyring/blockbuster/utils" + "github.com/Fairblock/fairyring/blockbuster" + "github.com/Fairblock/fairyring/blockbuster/utils" sdk "github.com/cosmos/cosmos-sdk/types" sdkmempool "github.com/cosmos/cosmos-sdk/types/mempool" diff --git a/blockbuster/lanes/terminator/lane.go b/blockbuster/lanes/terminator/lane.go index 7570d78d..943065a9 100644 --- a/blockbuster/lanes/terminator/lane.go +++ b/blockbuster/lanes/terminator/lane.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "fairyring/blockbuster" + "github.com/Fairblock/fairyring/blockbuster" "github.com/cometbft/cometbft/libs/log" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/blockbuster/proposals.go b/blockbuster/proposals.go index 1899bfb1..59dcdc13 100644 --- a/blockbuster/proposals.go +++ b/blockbuster/proposals.go @@ -5,7 +5,7 @@ import ( "encoding/hex" "fmt" - "fairyring/blockbuster/utils" + "github.com/Fairblock/fairyring/blockbuster/utils" "github.com/cometbft/cometbft/libs/log" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/blockbuster/utils/utils_test.go b/blockbuster/utils/utils_test.go index 1648699d..ce8de68b 100644 --- a/blockbuster/utils/utils_test.go +++ b/blockbuster/utils/utils_test.go @@ -3,7 +3,7 @@ package utils_test import ( "testing" - "fairyring/blockbuster/utils" + "github.com/Fairblock/fairyring/blockbuster/utils" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/cmd/fairyringd/cmd/config.go b/cmd/fairyringd/cmd/config.go index 0ace592d..beb364a8 100644 --- a/cmd/fairyringd/cmd/config.go +++ b/cmd/fairyringd/cmd/config.go @@ -3,7 +3,7 @@ package cmd import ( sdk "github.com/cosmos/cosmos-sdk/types" - "fairyring/app" + "github.com/Fairblock/fairyring/app" ) func initSDKConfig() { diff --git a/cmd/fairyringd/cmd/root.go b/cmd/fairyringd/cmd/root.go index 8d864def..fd363c6f 100644 --- a/cmd/fairyringd/cmd/root.go +++ b/cmd/fairyringd/cmd/root.go @@ -39,8 +39,8 @@ import ( // this line is used by starport scaffolding # root/moduleImport - "fairyring/app" - appparams "fairyring/app/params" + "github.com/Fairblock/fairyring/app" + appparams "github.com/Fairblock/fairyring/app/params" ) // NewRootCmd creates a new root command for a Cosmos SDK application diff --git a/cmd/fairyringd/main.go b/cmd/fairyringd/main.go index 99686e5d..9dfc5b27 100644 --- a/cmd/fairyringd/main.go +++ b/cmd/fairyringd/main.go @@ -6,8 +6,8 @@ import ( "github.com/cosmos/cosmos-sdk/server" svrcmd "github.com/cosmos/cosmos-sdk/server/cmd" - "fairyring/app" - "fairyring/cmd/fairyringd/cmd" + "github.com/Fairblock/fairyring/app" + "github.com/Fairblock/fairyring/cmd/fairyringd/cmd" ) func main() { diff --git a/docs/fairy_core/integration/04_pep_module.md b/docs/fairy_core/integration/04_pep_module.md index 6803922a..aa584af4 100644 --- a/docs/fairy_core/integration/04_pep_module.md +++ b/docs/fairy_core/integration/04_pep_module.md @@ -20,9 +20,9 @@ To integrate the PEP module to any destination chain, the following steps are ne ```go import ( - pepmodule "fairyring/x/pep" - pepmodulekeeper "fairyring/x/pep/keeper" - pepmoduletypes "fairyring/x/pep/types" + pepmodule "github.com/Fairblock/fairyring/x/pep" + pepmodulekeeper "github.com/Fairblock/fairyring/x/pep/keeper" + pepmoduletypes "github.com/Fairblock/fairyring/x/pep/types" ) ``` diff --git a/go.mod b/go.mod index 7f01be34..5876b447 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module fairyring +module github.com/Fairblock/fairyring go 1.21 @@ -7,6 +7,7 @@ require ( cosmossdk.io/errors v1.0.0-beta.7 cosmossdk.io/math v1.0.1 github.com/FairBlock/DistributedIBE v0.0.0-20230528025616-f58fb2b93eaf + github.com/armon/go-metrics v0.4.1 github.com/cometbft/cometbft v0.37.2 github.com/cometbft/cometbft-db v0.8.0 github.com/cosmos/cosmos-sdk v0.47.3 @@ -47,7 +48,6 @@ require ( github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d // indirect github.com/Microsoft/go-winio v0.6.1 // indirect github.com/OneOfOne/xxhash v1.2.8 // indirect - github.com/armon/go-metrics v0.4.1 // indirect github.com/aws/aws-sdk-go v1.44.203 // indirect github.com/beorn7/perks v1.0.1 // indirect github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect diff --git a/proto/fairyring/keyshare/aggregated_key_share.proto b/proto/fairyring/keyshare/aggregated_key_share.proto index 5a49b903..48dfe5b6 100644 --- a/proto/fairyring/keyshare/aggregated_key_share.proto +++ b/proto/fairyring/keyshare/aggregated_key_share.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package fairyring.keyshare; -option go_package = "fairyring/x/keyshare/types"; +option go_package = "github.com/Fairblock/fairyring/x/keyshare/types"; message AggregatedKeyShare { uint64 height = 1; diff --git a/proto/fairyring/keyshare/authorized_address.proto b/proto/fairyring/keyshare/authorized_address.proto index 9a197353..73c73954 100644 --- a/proto/fairyring/keyshare/authorized_address.proto +++ b/proto/fairyring/keyshare/authorized_address.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package fairyring.keyshare; -option go_package = "fairyring/x/keyshare/types"; +option go_package = "github.com/Fairblock/fairyring/x/keyshare/types"; message AuthorizedAddress { string target = 1; diff --git a/proto/fairyring/keyshare/commitments.proto b/proto/fairyring/keyshare/commitments.proto index d6ed1b54..a37bb9f7 100644 --- a/proto/fairyring/keyshare/commitments.proto +++ b/proto/fairyring/keyshare/commitments.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package fairyring.keyshare; -option go_package = "fairyring/x/keyshare/types"; +option go_package = "github.com/Fairblock/fairyring/x/keyshare/types"; message Commitments { repeated string commitments = 1; diff --git a/proto/fairyring/keyshare/general_key_share.proto b/proto/fairyring/keyshare/general_key_share.proto index ee571d5f..7634a59c 100644 --- a/proto/fairyring/keyshare/general_key_share.proto +++ b/proto/fairyring/keyshare/general_key_share.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package fairyring.keyshare; -option go_package = "fairyring/x/keyshare/types"; +option go_package = "github.com/Fairblock/fairyring/x/keyshare/types"; message GeneralKeyShare { string validator = 1; diff --git a/proto/fairyring/keyshare/genesis.proto b/proto/fairyring/keyshare/genesis.proto index 64cf9e39..a0cd00b4 100644 --- a/proto/fairyring/keyshare/genesis.proto +++ b/proto/fairyring/keyshare/genesis.proto @@ -3,17 +3,17 @@ syntax = "proto3"; package fairyring.keyshare; import "gogoproto/gogo.proto"; -import "fairyring/keyshare/params.proto"; -import "fairyring/keyshare/validator_set.proto"; -import "fairyring/keyshare/key_share.proto"; -import "fairyring/keyshare/aggregated_key_share.proto"; -import "fairyring/keyshare/pub_key.proto"; -import "fairyring/keyshare/authorized_address.proto"; -import "fairyring/keyshare/general_key_share.proto"; +import "github.com/Fairblock/fairyring/keyshare/params.proto"; +import "github.com/Fairblock/fairyring/keyshare/validator_set.proto"; +import "github.com/Fairblock/fairyring/keyshare/key_share.proto"; +import "github.com/Fairblock/fairyring/keyshare/aggregated_key_share.proto"; +import "github.com/Fairblock/fairyring/keyshare/pub_key.proto"; +import "github.com/Fairblock/fairyring/keyshare/authorized_address.proto"; +import "github.com/Fairblock/fairyring/keyshare/general_key_share.proto"; // this line is used by starport scaffolding # genesis/proto/import -option go_package = "fairyring/x/keyshare/types"; +option go_package = "github.com/Fairblock/fairyring/x/keyshare/types"; // GenesisState defines the keyshare module's genesis state. message GenesisState { diff --git a/proto/fairyring/keyshare/key_share.proto b/proto/fairyring/keyshare/key_share.proto index 24f7bbcb..df2f17d7 100644 --- a/proto/fairyring/keyshare/key_share.proto +++ b/proto/fairyring/keyshare/key_share.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package fairyring.keyshare; -option go_package = "fairyring/x/keyshare/types"; +option go_package = "github.com/Fairblock/fairyring/x/keyshare/types"; message KeyShare { string validator = 1; diff --git a/proto/fairyring/keyshare/packet.proto b/proto/fairyring/keyshare/packet.proto index 0212cdda..e0957f8f 100644 --- a/proto/fairyring/keyshare/packet.proto +++ b/proto/fairyring/keyshare/packet.proto @@ -2,7 +2,7 @@ syntax = "proto3"; package fairyring.keyshare; -option go_package = "fairyring/x/keyshare/types"; +option go_package = "github.com/Fairblock/fairyring/x/keyshare/types"; message KeysharePacketData { oneof packet { diff --git a/proto/fairyring/keyshare/params.proto b/proto/fairyring/keyshare/params.proto index 30574351..d1ecb89d 100644 --- a/proto/fairyring/keyshare/params.proto +++ b/proto/fairyring/keyshare/params.proto @@ -3,7 +3,7 @@ package fairyring.keyshare; import "gogoproto/gogo.proto"; -option go_package = "fairyring/x/keyshare/types"; +option go_package = "github.com/Fairblock/fairyring/x/keyshare/types"; // Params defines the parameters for the module. message Params { diff --git a/proto/fairyring/keyshare/pub_key.proto b/proto/fairyring/keyshare/pub_key.proto index e435dc9d..1afa224d 100644 --- a/proto/fairyring/keyshare/pub_key.proto +++ b/proto/fairyring/keyshare/pub_key.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package fairyring.keyshare; -option go_package = "fairyring/x/keyshare/types"; +option go_package = "github.com/Fairblock/fairyring/x/keyshare/types"; message ActivePubKey { string publicKey = 1; diff --git a/proto/fairyring/keyshare/query.proto b/proto/fairyring/keyshare/query.proto index f727fbf9..671d79fb 100644 --- a/proto/fairyring/keyshare/query.proto +++ b/proto/fairyring/keyshare/query.proto @@ -5,18 +5,18 @@ package fairyring.keyshare; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; -import "fairyring/keyshare/params.proto"; -import "fairyring/keyshare/validator_set.proto"; -import "fairyring/keyshare/key_share.proto"; -import "fairyring/keyshare/aggregated_key_share.proto"; -import "fairyring/keyshare/pub_key.proto"; -import "fairyring/keyshare/authorized_address.proto"; -import "fairyring/keyshare/general_key_share.proto"; -import "fairyring/keyshare/commitments.proto"; +import "github.com/Fairblock/fairyring/keyshare/params.proto"; +import "github.com/Fairblock/fairyring/keyshare/validator_set.proto"; +import "github.com/Fairblock/fairyring/keyshare/key_share.proto"; +import "github.com/Fairblock/fairyring/keyshare/aggregated_key_share.proto"; +import "github.com/Fairblock/fairyring/keyshare/pub_key.proto"; +import "github.com/Fairblock/fairyring/keyshare/authorized_address.proto"; +import "github.com/Fairblock/fairyring/keyshare/general_key_share.proto"; +import "github.com/Fairblock/fairyring/keyshare/commitments.proto"; // this line is used by starport scaffolding # 1 -option go_package = "fairyring/x/keyshare/types"; +option go_package = "github.com/Fairblock/fairyring/x/keyshare/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/fairyring/keyshare/requested_keyshare.proto b/proto/fairyring/keyshare/requested_keyshare.proto index ca38e06f..a3f1283e 100644 --- a/proto/fairyring/keyshare/requested_keyshare.proto +++ b/proto/fairyring/keyshare/requested_keyshare.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package fairyring.keyshare; -option go_package = "fairyring/x/keyshare/types"; +option go_package = "github.com/Fairblock/fairyring/x/keyshare/types"; message KeyShareRequest { string identity = 1; diff --git a/proto/fairyring/keyshare/tx.proto b/proto/fairyring/keyshare/tx.proto index 78dba83e..2ffe6d8b 100644 --- a/proto/fairyring/keyshare/tx.proto +++ b/proto/fairyring/keyshare/tx.proto @@ -2,11 +2,11 @@ syntax = "proto3"; package fairyring.keyshare; -import "fairyring/keyshare/general_key_share.proto"; +import "github.com/Fairblock/fairyring/keyshare/general_key_share.proto"; // this line is used by starport scaffolding # proto/tx/import -option go_package = "fairyring/x/keyshare/types"; +option go_package = "github.com/Fairblock/fairyring/x/keyshare/types"; // Msg defines the Msg service. service Msg { diff --git a/proto/fairyring/keyshare/validator_set.proto b/proto/fairyring/keyshare/validator_set.proto index 06879ad0..c9634744 100644 --- a/proto/fairyring/keyshare/validator_set.proto +++ b/proto/fairyring/keyshare/validator_set.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package fairyring.keyshare; -option go_package = "fairyring/x/keyshare/types"; +option go_package = "github.com/Fairblock/fairyring/x/keyshare/types"; message ValidatorSet { string index = 1; diff --git a/proto/fairyring/pep/aggregated_key_share.proto b/proto/fairyring/pep/aggregated_key_share.proto index bcb47ea6..f0f08532 100644 --- a/proto/fairyring/pep/aggregated_key_share.proto +++ b/proto/fairyring/pep/aggregated_key_share.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package fairyring.pep; -option go_package = "fairyring/x/pep/types"; +option go_package = "github.com/Fairblock/fairyring/x/pep/types"; message AggregatedKeyShare { uint64 height = 1; diff --git a/proto/fairyring/pep/encrypted_tx.proto b/proto/fairyring/pep/encrypted_tx.proto index eb496405..8d12fcde 100644 --- a/proto/fairyring/pep/encrypted_tx.proto +++ b/proto/fairyring/pep/encrypted_tx.proto @@ -4,7 +4,7 @@ package fairyring.pep; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; -option go_package = "fairyring/x/pep/types"; +option go_package = "github.com/Fairblock/fairyring/x/pep/types"; message EncryptedTx { uint64 targetHeight = 1; diff --git a/proto/fairyring/pep/genesis.proto b/proto/fairyring/pep/genesis.proto index 695acbb9..939c6ff4 100644 --- a/proto/fairyring/pep/genesis.proto +++ b/proto/fairyring/pep/genesis.proto @@ -3,15 +3,15 @@ syntax = "proto3"; package fairyring.pep; import "gogoproto/gogo.proto"; -import "fairyring/pep/params.proto"; -import "fairyring/pep/encrypted_tx.proto"; -import "fairyring/pep/pep_nonce.proto"; -import "fairyring/pep/aggregated_key_share.proto"; -import "fairyring/pep/pub_key.proto"; +import "github.com/Fairblock/fairyring/pep/params.proto"; +import "github.com/Fairblock/fairyring/pep/encrypted_tx.proto"; +import "github.com/Fairblock/fairyring/pep/pep_nonce.proto"; +import "github.com/Fairblock/fairyring/pep/aggregated_key_share.proto"; +import "github.com/Fairblock/fairyring/pep/pub_key.proto"; // this line is used by starport scaffolding # genesis/proto/import -option go_package = "fairyring/x/pep/types"; +option go_package = "github.com/Fairblock/fairyring/x/pep/types"; // GenesisState defines the pep module's genesis state. message GenesisState { diff --git a/proto/fairyring/pep/packet.proto b/proto/fairyring/pep/packet.proto index aa2005b5..dde32b04 100644 --- a/proto/fairyring/pep/packet.proto +++ b/proto/fairyring/pep/packet.proto @@ -1,9 +1,9 @@ syntax = "proto3"; package fairyring.pep; -import "fairyring/pep/pub_key.proto"; +import "github.com/Fairblock/fairyring/pep/pub_key.proto"; -option go_package = "fairyring/x/pep/types"; +option go_package = "github.com/Fairblock/fairyring/x/pep/types"; message PepPacketData { oneof packet { diff --git a/proto/fairyring/pep/params.proto b/proto/fairyring/pep/params.proto index 5941872e..3d87b6c6 100644 --- a/proto/fairyring/pep/params.proto +++ b/proto/fairyring/pep/params.proto @@ -4,7 +4,7 @@ package fairyring.pep; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; -option go_package = "fairyring/x/pep/types"; +option go_package = "github.com/Fairblock/fairyring/x/pep/types"; // Params defines the parameters for the module. message Params { diff --git a/proto/fairyring/pep/pep_nonce.proto b/proto/fairyring/pep/pep_nonce.proto index 4a999cae..946d3bf0 100644 --- a/proto/fairyring/pep/pep_nonce.proto +++ b/proto/fairyring/pep/pep_nonce.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package fairyring.pep; -option go_package = "fairyring/x/pep/types"; +option go_package = "github.com/Fairblock/fairyring/x/pep/types"; message PepNonce { string address = 1; diff --git a/proto/fairyring/pep/pub_key.proto b/proto/fairyring/pep/pub_key.proto index 9a816fa9..623fe9fb 100644 --- a/proto/fairyring/pep/pub_key.proto +++ b/proto/fairyring/pep/pub_key.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package fairyring.pep; -option go_package = "fairyring/x/pep/types"; +option go_package = "github.com/Fairblock/fairyring/x/pep/types"; message ActivePubKey { string publicKey = 1; diff --git a/proto/fairyring/pep/query.proto b/proto/fairyring/pep/query.proto index fb2e7891..5269d268 100644 --- a/proto/fairyring/pep/query.proto +++ b/proto/fairyring/pep/query.proto @@ -5,15 +5,15 @@ package fairyring.pep; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; import "cosmos/base/query/v1beta1/pagination.proto"; -import "fairyring/pep/params.proto"; -import "fairyring/pep/encrypted_tx.proto"; -import "fairyring/pep/pep_nonce.proto"; -import "fairyring/pep/aggregated_key_share.proto"; -import "fairyring/pep/pub_key.proto"; +import "github.com/Fairblock/fairyring/pep/params.proto"; +import "github.com/Fairblock/fairyring/pep/encrypted_tx.proto"; +import "github.com/Fairblock/fairyring/pep/pep_nonce.proto"; +import "github.com/Fairblock/fairyring/pep/aggregated_key_share.proto"; +import "github.com/Fairblock/fairyring/pep/pub_key.proto"; // this line is used by starport scaffolding # 1 -option go_package = "fairyring/x/pep/types"; +option go_package = "github.com/Fairblock/fairyring/x/pep/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/fairyring/pep/tx.proto b/proto/fairyring/pep/tx.proto index af104af8..7b9ef132 100644 --- a/proto/fairyring/pep/tx.proto +++ b/proto/fairyring/pep/tx.proto @@ -2,11 +2,11 @@ syntax = "proto3"; package fairyring.pep; -import "fairyring/pep/aggregated_key_share.proto"; +import "github.com/Fairblock/fairyring/pep/aggregated_key_share.proto"; // this line is used by starport scaffolding # proto/tx/import -option go_package = "fairyring/x/pep/types"; +option go_package = "github.com/Fairblock/fairyring/x/pep/types"; // Msg defines the Msg service. service Msg { diff --git a/proto/scripts/protocgen.sh b/proto/scripts/protocgen.sh index 55544e58..6b5fd1b9 100644 --- a/proto/scripts/protocgen.sh +++ b/proto/scripts/protocgen.sh @@ -26,6 +26,6 @@ done cd .. # move proto files to the right places -cp -r fairyring/x/* x/ +cp -r github.com/Fairblock/fairyring/x/* x/ rm -rf fairyring diff --git a/testutil/keeper/keyshare.go b/testutil/keeper/keyshare.go index 5bd161cd..9254672d 100644 --- a/testutil/keeper/keyshare.go +++ b/testutil/keeper/keyshare.go @@ -15,8 +15,8 @@ import ( govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" - "fairyring/x/keyshare/keeper" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/keeper" + "github.com/Fairblock/fairyring/x/keyshare/types" dbm "github.com/cometbft/cometbft-db" "github.com/cometbft/cometbft/libs/log" diff --git a/testutil/keeper/pep.go b/testutil/keeper/pep.go index db68b71c..8f94ca12 100644 --- a/testutil/keeper/pep.go +++ b/testutil/keeper/pep.go @@ -9,8 +9,8 @@ import ( "testing" - "fairyring/x/pep/keeper" - "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/x/pep/keeper" + "github.com/Fairblock/fairyring/x/pep/types" dbm "github.com/cometbft/cometbft-db" "github.com/cometbft/cometbft/libs/log" diff --git a/testutil/network/network.go b/testutil/network/network.go index 94238896..7b6a3993 100644 --- a/testutil/network/network.go +++ b/testutil/network/network.go @@ -5,7 +5,7 @@ import ( "testing" "time" - "fairyring/app" + "github.com/Fairblock/fairyring/app" tmdb "github.com/cometbft/cometbft-db" tmrand "github.com/cometbft/cometbft/libs/rand" diff --git a/testutil/utils.go b/testutil/utils.go index ca49061b..87e66fd7 100644 --- a/testutil/utils.go +++ b/testutil/utils.go @@ -3,7 +3,7 @@ package testutil // import ( // "math/rand" -// peptypes "fairyring/x/pep/types" +// peptypes "github.com/Fairblock/fairyring/x/pep/types" // "github.com/cosmos/cosmos-sdk/client" // "github.com/cosmos/cosmos-sdk/codec" diff --git a/x/keyshare/client/cli/query.go b/x/keyshare/client/cli/query.go index 5603e1b3..1f7ca140 100644 --- a/x/keyshare/client/cli/query.go +++ b/x/keyshare/client/cli/query.go @@ -10,7 +10,7 @@ import ( // "github.com/cosmos/cosmos-sdk/client/flags" // sdk "github.com/cosmos/cosmos-sdk/types" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" ) // GetQueryCmd returns the cli query commands for this module diff --git a/x/keyshare/client/cli/query_aggregated_key_share.go b/x/keyshare/client/cli/query_aggregated_key_share.go index 97cf573b..30e48f67 100644 --- a/x/keyshare/client/cli/query_aggregated_key_share.go +++ b/x/keyshare/client/cli/query_aggregated_key_share.go @@ -3,7 +3,7 @@ package cli import ( "context" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" diff --git a/x/keyshare/client/cli/query_aggregated_key_share_test.go b/x/keyshare/client/cli/query_aggregated_key_share_test.go index 60c09254..8dc0ac10 100644 --- a/x/keyshare/client/cli/query_aggregated_key_share_test.go +++ b/x/keyshare/client/cli/query_aggregated_key_share_test.go @@ -12,10 +12,10 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "fairyring/testutil/network" - "fairyring/testutil/nullify" - "fairyring/x/keyshare/client/cli" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/testutil/network" + "github.com/Fairblock/fairyring/testutil/nullify" + "github.com/Fairblock/fairyring/x/keyshare/client/cli" + "github.com/Fairblock/fairyring/x/keyshare/types" ) // Prevent strconv unused error diff --git a/x/keyshare/client/cli/query_authorized_address.go b/x/keyshare/client/cli/query_authorized_address.go index 4973d671..aed92595 100644 --- a/x/keyshare/client/cli/query_authorized_address.go +++ b/x/keyshare/client/cli/query_authorized_address.go @@ -3,7 +3,7 @@ package cli import ( "context" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" diff --git a/x/keyshare/client/cli/query_authorized_address_test.go b/x/keyshare/client/cli/query_authorized_address_test.go index b350acf5..655fc2a7 100644 --- a/x/keyshare/client/cli/query_authorized_address_test.go +++ b/x/keyshare/client/cli/query_authorized_address_test.go @@ -12,10 +12,10 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "fairyring/testutil/network" - "fairyring/testutil/nullify" - "fairyring/x/keyshare/client/cli" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/testutil/network" + "github.com/Fairblock/fairyring/testutil/nullify" + "github.com/Fairblock/fairyring/x/keyshare/client/cli" + "github.com/Fairblock/fairyring/x/keyshare/types" ) // Prevent strconv unused error diff --git a/x/keyshare/client/cli/query_commitments.go b/x/keyshare/client/cli/query_commitments.go index ca83052f..c5d72eaf 100644 --- a/x/keyshare/client/cli/query_commitments.go +++ b/x/keyshare/client/cli/query_commitments.go @@ -3,7 +3,7 @@ package cli import ( "context" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" diff --git a/x/keyshare/client/cli/query_general_key_share.go b/x/keyshare/client/cli/query_general_key_share.go index a91b2970..a6844421 100644 --- a/x/keyshare/client/cli/query_general_key_share.go +++ b/x/keyshare/client/cli/query_general_key_share.go @@ -3,7 +3,7 @@ package cli import ( "context" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" diff --git a/x/keyshare/client/cli/query_general_key_share_test.go b/x/keyshare/client/cli/query_general_key_share_test.go index 69b07698..87744326 100644 --- a/x/keyshare/client/cli/query_general_key_share_test.go +++ b/x/keyshare/client/cli/query_general_key_share_test.go @@ -12,10 +12,10 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "fairyring/testutil/network" - "fairyring/testutil/nullify" - "fairyring/x/keyshare/client/cli" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/testutil/network" + "github.com/Fairblock/fairyring/testutil/nullify" + "github.com/Fairblock/fairyring/x/keyshare/client/cli" + "github.com/Fairblock/fairyring/x/keyshare/types" ) // Prevent strconv unused error diff --git a/x/keyshare/client/cli/query_key_share.go b/x/keyshare/client/cli/query_key_share.go index b8a3b192..07d8df83 100644 --- a/x/keyshare/client/cli/query_key_share.go +++ b/x/keyshare/client/cli/query_key_share.go @@ -3,7 +3,7 @@ package cli import ( "context" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" diff --git a/x/keyshare/client/cli/query_key_share_test.go b/x/keyshare/client/cli/query_key_share_test.go index bc4fd69c..0b4a0e69 100644 --- a/x/keyshare/client/cli/query_key_share_test.go +++ b/x/keyshare/client/cli/query_key_share_test.go @@ -12,10 +12,10 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "fairyring/testutil/network" - "fairyring/testutil/nullify" - "fairyring/x/keyshare/client/cli" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/testutil/network" + "github.com/Fairblock/fairyring/testutil/nullify" + "github.com/Fairblock/fairyring/x/keyshare/client/cli" + "github.com/Fairblock/fairyring/x/keyshare/types" ) // Prevent strconv unused error diff --git a/x/keyshare/client/cli/query_params.go b/x/keyshare/client/cli/query_params.go index a37073b6..b844a987 100644 --- a/x/keyshare/client/cli/query_params.go +++ b/x/keyshare/client/cli/query_params.go @@ -3,7 +3,7 @@ package cli import ( "context" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" diff --git a/x/keyshare/client/cli/query_pubkey.go b/x/keyshare/client/cli/query_pubkey.go index 518f96ac..cee63d09 100644 --- a/x/keyshare/client/cli/query_pubkey.go +++ b/x/keyshare/client/cli/query_pubkey.go @@ -3,7 +3,7 @@ package cli import ( "context" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" diff --git a/x/keyshare/client/cli/query_validator_set.go b/x/keyshare/client/cli/query_validator_set.go index 3ac8c657..6a15176e 100644 --- a/x/keyshare/client/cli/query_validator_set.go +++ b/x/keyshare/client/cli/query_validator_set.go @@ -3,7 +3,7 @@ package cli import ( "context" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" diff --git a/x/keyshare/client/cli/query_validator_set_test.go b/x/keyshare/client/cli/query_validator_set_test.go index 2353fed2..e20d2377 100644 --- a/x/keyshare/client/cli/query_validator_set_test.go +++ b/x/keyshare/client/cli/query_validator_set_test.go @@ -12,10 +12,10 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "fairyring/testutil/network" - "fairyring/testutil/nullify" - "fairyring/x/keyshare/client/cli" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/testutil/network" + "github.com/Fairblock/fairyring/testutil/nullify" + "github.com/Fairblock/fairyring/x/keyshare/client/cli" + "github.com/Fairblock/fairyring/x/keyshare/types" ) // Prevent strconv unused error diff --git a/x/keyshare/client/cli/tx.go b/x/keyshare/client/cli/tx.go index fcd3e8da..0817e9a1 100644 --- a/x/keyshare/client/cli/tx.go +++ b/x/keyshare/client/cli/tx.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" // "github.com/cosmos/cosmos-sdk/client/flags" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" ) var ( diff --git a/x/keyshare/client/cli/tx_authorized_address.go b/x/keyshare/client/cli/tx_authorized_address.go index ebdbe80f..ee06f24c 100644 --- a/x/keyshare/client/cli/tx_authorized_address.go +++ b/x/keyshare/client/cli/tx_authorized_address.go @@ -1,7 +1,7 @@ package cli import ( - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/client/tx" diff --git a/x/keyshare/client/cli/tx_general_key_share.go b/x/keyshare/client/cli/tx_general_key_share.go index 417584f4..9cd3e647 100644 --- a/x/keyshare/client/cli/tx_general_key_share.go +++ b/x/keyshare/client/cli/tx_general_key_share.go @@ -1,7 +1,7 @@ package cli import ( - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/client/tx" diff --git a/x/keyshare/client/cli/tx_general_key_share_test.go b/x/keyshare/client/cli/tx_general_key_share_test.go index 5da8dcef..a00cd219 100644 --- a/x/keyshare/client/cli/tx_general_key_share_test.go +++ b/x/keyshare/client/cli/tx_general_key_share_test.go @@ -11,8 +11,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - "fairyring/testutil/network" - "fairyring/x/keyshare/client/cli" + "github.com/Fairblock/fairyring/testutil/network" + "github.com/Fairblock/fairyring/x/keyshare/client/cli" ) // Prevent strconv unused error diff --git a/x/keyshare/client/cli/tx_latest_pub_key.go b/x/keyshare/client/cli/tx_latest_pub_key.go index 04386d0a..1f989661 100644 --- a/x/keyshare/client/cli/tx_latest_pub_key.go +++ b/x/keyshare/client/cli/tx_latest_pub_key.go @@ -1,7 +1,7 @@ package cli import ( - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" "strings" "github.com/cosmos/cosmos-sdk/client" diff --git a/x/keyshare/client/cli/tx_latest_pub_key_test.go b/x/keyshare/client/cli/tx_latest_pub_key_test.go index deb638be..c88388f9 100644 --- a/x/keyshare/client/cli/tx_latest_pub_key_test.go +++ b/x/keyshare/client/cli/tx_latest_pub_key_test.go @@ -11,8 +11,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - "fairyring/testutil/network" - "fairyring/x/keyshare/client/cli" + "github.com/Fairblock/fairyring/testutil/network" + "github.com/Fairblock/fairyring/x/keyshare/client/cli" ) // Prevent strconv unused error diff --git a/x/keyshare/client/cli/tx_register_validator.go b/x/keyshare/client/cli/tx_register_validator.go index d0b83949..c9d8f6f5 100644 --- a/x/keyshare/client/cli/tx_register_validator.go +++ b/x/keyshare/client/cli/tx_register_validator.go @@ -3,7 +3,7 @@ package cli import ( "strconv" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" diff --git a/x/keyshare/client/cli/tx_send_keyshare.go b/x/keyshare/client/cli/tx_send_keyshare.go index 045503a1..f36019e3 100644 --- a/x/keyshare/client/cli/tx_send_keyshare.go +++ b/x/keyshare/client/cli/tx_send_keyshare.go @@ -3,7 +3,7 @@ package cli import ( "strconv" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" diff --git a/x/keyshare/genesis.go b/x/keyshare/genesis.go index 4077af22..96647fed 100644 --- a/x/keyshare/genesis.go +++ b/x/keyshare/genesis.go @@ -1,8 +1,8 @@ package keyshare import ( - "fairyring/x/keyshare/keeper" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/keeper" + "github.com/Fairblock/fairyring/x/keyshare/types" "strconv" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/keyshare/genesis_test.go b/x/keyshare/genesis_test.go index 66bc6c2e..d09c68c2 100644 --- a/x/keyshare/genesis_test.go +++ b/x/keyshare/genesis_test.go @@ -3,10 +3,10 @@ package keyshare_test import ( "testing" - keepertest "fairyring/testutil/keeper" - "fairyring/testutil/nullify" - "fairyring/x/keyshare" - "fairyring/x/keyshare/types" + keepertest "github.com/Fairblock/fairyring/testutil/keeper" + "github.com/Fairblock/fairyring/testutil/nullify" + "github.com/Fairblock/fairyring/x/keyshare" + "github.com/Fairblock/fairyring/x/keyshare/types" "github.com/stretchr/testify/require" ) diff --git a/x/keyshare/keeper/aggr_keyshare_data.go b/x/keyshare/keeper/aggr_keyshare_data.go index 86bdbd8f..a688927f 100644 --- a/x/keyshare/keeper/aggr_keyshare_data.go +++ b/x/keyshare/keeper/aggr_keyshare_data.go @@ -4,7 +4,7 @@ import ( "errors" "time" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" diff --git a/x/keyshare/keeper/aggregated_key_share.go b/x/keyshare/keeper/aggregated_key_share.go index 9c5509a5..ae379a7d 100644 --- a/x/keyshare/keeper/aggregated_key_share.go +++ b/x/keyshare/keeper/aggregated_key_share.go @@ -2,7 +2,7 @@ package keeper import ( "encoding/binary" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/keyshare/keeper/aggregated_key_share_test.go b/x/keyshare/keeper/aggregated_key_share_test.go index 0a6d333f..12f2834a 100644 --- a/x/keyshare/keeper/aggregated_key_share_test.go +++ b/x/keyshare/keeper/aggregated_key_share_test.go @@ -4,10 +4,10 @@ import ( "strconv" "testing" - keepertest "fairyring/testutil/keeper" - "fairyring/testutil/nullify" - "fairyring/x/keyshare/keeper" - "fairyring/x/keyshare/types" + keepertest "github.com/Fairblock/fairyring/testutil/keeper" + "github.com/Fairblock/fairyring/testutil/nullify" + "github.com/Fairblock/fairyring/x/keyshare/keeper" + "github.com/Fairblock/fairyring/x/keyshare/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" diff --git a/x/keyshare/keeper/aggregated_keyshare_requests.go b/x/keyshare/keeper/aggregated_keyshare_requests.go index b75034b3..293ffe87 100644 --- a/x/keyshare/keeper/aggregated_keyshare_requests.go +++ b/x/keyshare/keeper/aggregated_keyshare_requests.go @@ -1,7 +1,7 @@ package keeper import ( - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/keyshare/keeper/authorized_address.go b/x/keyshare/keeper/authorized_address.go index c9ba0caa..6fea7002 100644 --- a/x/keyshare/keeper/authorized_address.go +++ b/x/keyshare/keeper/authorized_address.go @@ -2,7 +2,7 @@ package keeper import ( "encoding/binary" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/keyshare/keeper/authorized_address_test.go b/x/keyshare/keeper/authorized_address_test.go index a4fc8e49..d19455ce 100644 --- a/x/keyshare/keeper/authorized_address_test.go +++ b/x/keyshare/keeper/authorized_address_test.go @@ -4,10 +4,10 @@ import ( "strconv" "testing" - keepertest "fairyring/testutil/keeper" - "fairyring/testutil/nullify" - "fairyring/x/keyshare/keeper" - "fairyring/x/keyshare/types" + keepertest "github.com/Fairblock/fairyring/testutil/keeper" + "github.com/Fairblock/fairyring/testutil/nullify" + "github.com/Fairblock/fairyring/x/keyshare/keeper" + "github.com/Fairblock/fairyring/x/keyshare/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" ) diff --git a/x/keyshare/keeper/commitments.go b/x/keyshare/keeper/commitments.go index 3df01bb1..c1fc39c7 100644 --- a/x/keyshare/keeper/commitments.go +++ b/x/keyshare/keeper/commitments.go @@ -1,7 +1,7 @@ package keeper import ( - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/keyshare/keeper/general_key_share.go b/x/keyshare/keeper/general_key_share.go index cf70065a..6c7423ca 100644 --- a/x/keyshare/keeper/general_key_share.go +++ b/x/keyshare/keeper/general_key_share.go @@ -1,7 +1,7 @@ package keeper import ( - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/keyshare/keeper/general_key_share_test.go b/x/keyshare/keeper/general_key_share_test.go index 09c696d7..f3ec8a94 100644 --- a/x/keyshare/keeper/general_key_share_test.go +++ b/x/keyshare/keeper/general_key_share_test.go @@ -4,10 +4,10 @@ import ( "strconv" "testing" - keepertest "fairyring/testutil/keeper" - "fairyring/testutil/nullify" - "fairyring/x/keyshare/keeper" - "fairyring/x/keyshare/types" + keepertest "github.com/Fairblock/fairyring/testutil/keeper" + "github.com/Fairblock/fairyring/testutil/nullify" + "github.com/Fairblock/fairyring/x/keyshare/keeper" + "github.com/Fairblock/fairyring/x/keyshare/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" ) diff --git a/x/keyshare/keeper/get_aggr_keyshare.go b/x/keyshare/keeper/get_aggr_keyshare.go index eba1226e..5c0f64a1 100644 --- a/x/keyshare/keeper/get_aggr_keyshare.go +++ b/x/keyshare/keeper/get_aggr_keyshare.go @@ -1,7 +1,7 @@ package keeper import ( - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" sdk "github.com/cosmos/cosmos-sdk/types" channeltypes "github.com/cosmos/ibc-go/v7/modules/core/04-channel/types" diff --git a/x/keyshare/keeper/grpc_query.go b/x/keyshare/keeper/grpc_query.go index 055ee086..ae28a084 100644 --- a/x/keyshare/keeper/grpc_query.go +++ b/x/keyshare/keeper/grpc_query.go @@ -1,7 +1,7 @@ package keeper import ( - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/keyshare/keeper/grpc_query_commitments.go b/x/keyshare/keeper/grpc_query_commitments.go index 5f301748..78b112d8 100644 --- a/x/keyshare/keeper/grpc_query_commitments.go +++ b/x/keyshare/keeper/grpc_query_commitments.go @@ -2,7 +2,7 @@ package keeper import ( "context" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" sdk "github.com/cosmos/cosmos-sdk/types" "google.golang.org/grpc/codes" diff --git a/x/keyshare/keeper/grpc_query_key_share.go b/x/keyshare/keeper/grpc_query_key_share.go index 79891476..db6c42d9 100644 --- a/x/keyshare/keeper/grpc_query_key_share.go +++ b/x/keyshare/keeper/grpc_query_key_share.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/keyshare/keeper/grpc_query_key_share_test.go b/x/keyshare/keeper/grpc_query_key_share_test.go index ecf81ecf..f4ce3fa1 100644 --- a/x/keyshare/keeper/grpc_query_key_share_test.go +++ b/x/keyshare/keeper/grpc_query_key_share_test.go @@ -10,9 +10,9 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - keepertest "fairyring/testutil/keeper" - "fairyring/testutil/nullify" - "fairyring/x/keyshare/types" + keepertest "github.com/Fairblock/fairyring/testutil/keeper" + "github.com/Fairblock/fairyring/testutil/nullify" + "github.com/Fairblock/fairyring/x/keyshare/types" ) // Prevent strconv unused error diff --git a/x/keyshare/keeper/grpc_query_params.go b/x/keyshare/keeper/grpc_query_params.go index d647f2e3..d70160d2 100644 --- a/x/keyshare/keeper/grpc_query_params.go +++ b/x/keyshare/keeper/grpc_query_params.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" sdk "github.com/cosmos/cosmos-sdk/types" "google.golang.org/grpc/codes" diff --git a/x/keyshare/keeper/grpc_query_params_test.go b/x/keyshare/keeper/grpc_query_params_test.go index 50b9468c..74e346ac 100644 --- a/x/keyshare/keeper/grpc_query_params_test.go +++ b/x/keyshare/keeper/grpc_query_params_test.go @@ -3,8 +3,8 @@ package keeper_test import ( "testing" - testkeeper "fairyring/testutil/keeper" - "fairyring/x/keyshare/types" + testkeeper "github.com/Fairblock/fairyring/testutil/keeper" + "github.com/Fairblock/fairyring/x/keyshare/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" diff --git a/x/keyshare/keeper/grpc_query_pubkey.go b/x/keyshare/keeper/grpc_query_pubkey.go index 69de56fb..29f6d602 100644 --- a/x/keyshare/keeper/grpc_query_pubkey.go +++ b/x/keyshare/keeper/grpc_query_pubkey.go @@ -2,7 +2,7 @@ package keeper import ( "context" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" sdk "github.com/cosmos/cosmos-sdk/types" "google.golang.org/grpc/codes" diff --git a/x/keyshare/keeper/grpc_query_validator_set.go b/x/keyshare/keeper/grpc_query_validator_set.go index 5aef5caa..1138420e 100644 --- a/x/keyshare/keeper/grpc_query_validator_set.go +++ b/x/keyshare/keeper/grpc_query_validator_set.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/keyshare/keeper/grpc_query_validator_set_test.go b/x/keyshare/keeper/grpc_query_validator_set_test.go index 4a88ae7e..d2b0cfe1 100644 --- a/x/keyshare/keeper/grpc_query_validator_set_test.go +++ b/x/keyshare/keeper/grpc_query_validator_set_test.go @@ -10,9 +10,9 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - keepertest "fairyring/testutil/keeper" - "fairyring/testutil/nullify" - "fairyring/x/keyshare/types" + keepertest "github.com/Fairblock/fairyring/testutil/keeper" + "github.com/Fairblock/fairyring/testutil/nullify" + "github.com/Fairblock/fairyring/x/keyshare/types" ) // Prevent strconv unused error diff --git a/x/keyshare/keeper/keeper.go b/x/keyshare/keeper/keeper.go index 988150e7..4d7ded07 100644 --- a/x/keyshare/keeper/keeper.go +++ b/x/keyshare/keeper/keeper.go @@ -4,7 +4,7 @@ import ( "fmt" "strconv" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" "github.com/cometbft/cometbft/libs/log" "github.com/cosmos/cosmos-sdk/codec" diff --git a/x/keyshare/keeper/key_share.go b/x/keyshare/keeper/key_share.go index c888b08c..f1b0a66d 100644 --- a/x/keyshare/keeper/key_share.go +++ b/x/keyshare/keeper/key_share.go @@ -1,7 +1,7 @@ package keeper import ( - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/keyshare/keeper/key_share_test.go b/x/keyshare/keeper/key_share_test.go index 7ba0c914..5e8ba297 100644 --- a/x/keyshare/keeper/key_share_test.go +++ b/x/keyshare/keeper/key_share_test.go @@ -4,10 +4,10 @@ import ( "strconv" "testing" - keepertest "fairyring/testutil/keeper" - "fairyring/testutil/nullify" - "fairyring/x/keyshare/keeper" - "fairyring/x/keyshare/types" + keepertest "github.com/Fairblock/fairyring/testutil/keeper" + "github.com/Fairblock/fairyring/testutil/nullify" + "github.com/Fairblock/fairyring/x/keyshare/keeper" + "github.com/Fairblock/fairyring/x/keyshare/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" diff --git a/x/keyshare/keeper/last_submitted_height.go b/x/keyshare/keeper/last_submitted_height.go index 429696d5..09819d47 100644 --- a/x/keyshare/keeper/last_submitted_height.go +++ b/x/keyshare/keeper/last_submitted_height.go @@ -1,7 +1,7 @@ package keeper import ( - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" "strconv" diff --git a/x/keyshare/keeper/msg_server.go b/x/keyshare/keeper/msg_server.go index fa577e3f..a546a4ed 100644 --- a/x/keyshare/keeper/msg_server.go +++ b/x/keyshare/keeper/msg_server.go @@ -1,7 +1,7 @@ package keeper import ( - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" ) type msgServer struct { diff --git a/x/keyshare/keeper/msg_server_authorized_address.go b/x/keyshare/keeper/msg_server_authorized_address.go index 5a231d60..eb001806 100644 --- a/x/keyshare/keeper/msg_server_authorized_address.go +++ b/x/keyshare/keeper/msg_server_authorized_address.go @@ -2,7 +2,7 @@ package keeper import ( "context" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/keyshare/keeper/msg_server_authorized_address_test.go b/x/keyshare/keeper/msg_server_authorized_address_test.go index 08d53422..fa9a8cd7 100644 --- a/x/keyshare/keeper/msg_server_authorized_address_test.go +++ b/x/keyshare/keeper/msg_server_authorized_address_test.go @@ -8,9 +8,9 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/stretchr/testify/require" - keepertest "fairyring/testutil/keeper" - "fairyring/x/keyshare/keeper" - "fairyring/x/keyshare/types" + keepertest "github.com/Fairblock/fairyring/testutil/keeper" + "github.com/Fairblock/fairyring/x/keyshare/keeper" + "github.com/Fairblock/fairyring/x/keyshare/types" ) // Prevent strconv unused error diff --git a/x/keyshare/keeper/msg_server_general_key_share.go b/x/keyshare/keeper/msg_server_general_key_share.go index e712c153..2161826b 100644 --- a/x/keyshare/keeper/msg_server_general_key_share.go +++ b/x/keyshare/keeper/msg_server_general_key_share.go @@ -11,7 +11,7 @@ import ( clienttypes "github.com/cosmos/ibc-go/v7/modules/core/02-client/types" bls "github.com/drand/kyber-bls12381" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/keyshare/keeper/msg_server_general_key_share_test.go b/x/keyshare/keeper/msg_server_general_key_share_test.go index 0d3ee377..e70b33e6 100644 --- a/x/keyshare/keeper/msg_server_general_key_share_test.go +++ b/x/keyshare/keeper/msg_server_general_key_share_test.go @@ -7,9 +7,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - keepertest "fairyring/testutil/keeper" - "fairyring/x/keyshare/keeper" - "fairyring/x/keyshare/types" + keepertest "github.com/Fairblock/fairyring/testutil/keeper" + "github.com/Fairblock/fairyring/x/keyshare/keeper" + "github.com/Fairblock/fairyring/x/keyshare/types" ) // Prevent strconv unused error diff --git a/x/keyshare/keeper/msg_server_pub_key.go b/x/keyshare/keeper/msg_server_pub_key.go index a9b7d0dc..e4ae41f2 100644 --- a/x/keyshare/keeper/msg_server_pub_key.go +++ b/x/keyshare/keeper/msg_server_pub_key.go @@ -2,10 +2,10 @@ package keeper import ( "context" - peptypes "fairyring/x/pep/types" + peptypes "github.com/Fairblock/fairyring/x/pep/types" "strconv" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/keyshare/keeper/msg_server_pub_key_test.go b/x/keyshare/keeper/msg_server_pub_key_test.go index 8ef378ce..03502c9a 100644 --- a/x/keyshare/keeper/msg_server_pub_key_test.go +++ b/x/keyshare/keeper/msg_server_pub_key_test.go @@ -7,9 +7,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - keepertest "fairyring/testutil/keeper" - "fairyring/x/keyshare/keeper" - "fairyring/x/keyshare/types" + keepertest "github.com/Fairblock/fairyring/testutil/keeper" + "github.com/Fairblock/fairyring/x/keyshare/keeper" + "github.com/Fairblock/fairyring/x/keyshare/types" ) // Prevent strconv unused error diff --git a/x/keyshare/keeper/msg_server_register_validator.go b/x/keyshare/keeper/msg_server_register_validator.go index dbf7903d..74b07479 100644 --- a/x/keyshare/keeper/msg_server_register_validator.go +++ b/x/keyshare/keeper/msg_server_register_validator.go @@ -3,8 +3,8 @@ package keeper import ( "context" "encoding/hex" - "fairyring/x/keyshare/types" "fmt" + "github.com/Fairblock/fairyring/x/keyshare/types" sdk "github.com/cosmos/cosmos-sdk/types" "strconv" ) diff --git a/x/keyshare/keeper/msg_server_register_validator_test.go b/x/keyshare/keeper/msg_server_register_validator_test.go index 295d3ef7..9c4e97df 100644 --- a/x/keyshare/keeper/msg_server_register_validator_test.go +++ b/x/keyshare/keeper/msg_server_register_validator_test.go @@ -2,12 +2,12 @@ package keeper_test import ( "context" - "fairyring/x/keyshare" - "fairyring/x/keyshare/keeper" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare" + "github.com/Fairblock/fairyring/x/keyshare/keeper" + "github.com/Fairblock/fairyring/x/keyshare/types" "testing" - keepertest "fairyring/testutil/keeper" + keepertest "github.com/Fairblock/fairyring/testutil/keeper" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" diff --git a/x/keyshare/keeper/msg_server_send_keyshare.go b/x/keyshare/keeper/msg_server_send_keyshare.go index f630885c..b683515f 100644 --- a/x/keyshare/keeper/msg_server_send_keyshare.go +++ b/x/keyshare/keeper/msg_server_send_keyshare.go @@ -3,8 +3,8 @@ package keeper import ( "context" "encoding/hex" - "fairyring/x/keyshare/types" "fmt" + "github.com/Fairblock/fairyring/x/keyshare/types" "github.com/armon/go-metrics" "github.com/cosmos/cosmos-sdk/telemetry" "strconv" diff --git a/x/keyshare/keeper/msg_server_send_keyshare_test.go b/x/keyshare/keeper/msg_server_send_keyshare_test.go index c27ec2df..29646c4c 100644 --- a/x/keyshare/keeper/msg_server_send_keyshare_test.go +++ b/x/keyshare/keeper/msg_server_send_keyshare_test.go @@ -2,13 +2,13 @@ package keeper_test import ( "context" - "fairyring/x/keyshare" - "fairyring/x/keyshare/keeper" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare" + "github.com/Fairblock/fairyring/x/keyshare/keeper" + "github.com/Fairblock/fairyring/x/keyshare/types" "strconv" "testing" - keepertest "fairyring/testutil/keeper" + keepertest "github.com/Fairblock/fairyring/testutil/keeper" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" diff --git a/x/keyshare/keeper/params.go b/x/keyshare/keeper/params.go index 07c25781..00be9abb 100644 --- a/x/keyshare/keeper/params.go +++ b/x/keyshare/keeper/params.go @@ -1,7 +1,7 @@ package keeper import ( - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/keyshare/keeper/params_test.go b/x/keyshare/keeper/params_test.go index 8db638ad..3737bd66 100644 --- a/x/keyshare/keeper/params_test.go +++ b/x/keyshare/keeper/params_test.go @@ -3,8 +3,8 @@ package keeper_test import ( "testing" - testkeeper "fairyring/testutil/keeper" - "fairyring/x/keyshare/types" + testkeeper "github.com/Fairblock/fairyring/testutil/keeper" + "github.com/Fairblock/fairyring/x/keyshare/types" "github.com/stretchr/testify/require" ) diff --git a/x/keyshare/keeper/pub_key.go b/x/keyshare/keeper/pub_key.go index 52d04d05..a343745d 100644 --- a/x/keyshare/keeper/pub_key.go +++ b/x/keyshare/keeper/pub_key.go @@ -1,7 +1,7 @@ package keeper import ( - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/keyshare/keeper/query_aggregated_key_share.go b/x/keyshare/keeper/query_aggregated_key_share.go index c7d6ff6d..9db74e1f 100644 --- a/x/keyshare/keeper/query_aggregated_key_share.go +++ b/x/keyshare/keeper/query_aggregated_key_share.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/keyshare/keeper/query_aggregated_key_share_test.go b/x/keyshare/keeper/query_aggregated_key_share_test.go index 2ad977c7..ae74d4ad 100644 --- a/x/keyshare/keeper/query_aggregated_key_share_test.go +++ b/x/keyshare/keeper/query_aggregated_key_share_test.go @@ -10,9 +10,9 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - keepertest "fairyring/testutil/keeper" - "fairyring/testutil/nullify" - "fairyring/x/keyshare/types" + keepertest "github.com/Fairblock/fairyring/testutil/keeper" + "github.com/Fairblock/fairyring/testutil/nullify" + "github.com/Fairblock/fairyring/x/keyshare/types" ) // Prevent strconv unused error diff --git a/x/keyshare/keeper/query_authorized_address.go b/x/keyshare/keeper/query_authorized_address.go index ed173932..a9451de9 100644 --- a/x/keyshare/keeper/query_authorized_address.go +++ b/x/keyshare/keeper/query_authorized_address.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" diff --git a/x/keyshare/keeper/query_authorized_address_test.go b/x/keyshare/keeper/query_authorized_address_test.go index a20ed27d..1c048eed 100644 --- a/x/keyshare/keeper/query_authorized_address_test.go +++ b/x/keyshare/keeper/query_authorized_address_test.go @@ -10,9 +10,9 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - keepertest "fairyring/testutil/keeper" - "fairyring/testutil/nullify" - "fairyring/x/keyshare/types" + keepertest "github.com/Fairblock/fairyring/testutil/keeper" + "github.com/Fairblock/fairyring/testutil/nullify" + "github.com/Fairblock/fairyring/x/keyshare/types" ) // Prevent strconv unused error diff --git a/x/keyshare/keeper/query_general_key_share.go b/x/keyshare/keeper/query_general_key_share.go index 6a3742eb..39bce426 100644 --- a/x/keyshare/keeper/query_general_key_share.go +++ b/x/keyshare/keeper/query_general_key_share.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" diff --git a/x/keyshare/keeper/query_general_key_share_test.go b/x/keyshare/keeper/query_general_key_share_test.go index 988bed6d..3411cb18 100644 --- a/x/keyshare/keeper/query_general_key_share_test.go +++ b/x/keyshare/keeper/query_general_key_share_test.go @@ -10,9 +10,9 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - keepertest "fairyring/testutil/keeper" - "fairyring/testutil/nullify" - "fairyring/x/keyshare/types" + keepertest "github.com/Fairblock/fairyring/testutil/keeper" + "github.com/Fairblock/fairyring/testutil/nullify" + "github.com/Fairblock/fairyring/x/keyshare/types" ) // Prevent strconv unused error diff --git a/x/keyshare/keeper/request_aggr_keyshare.go b/x/keyshare/keeper/request_aggr_keyshare.go index 82d0120c..0d3ef4cd 100644 --- a/x/keyshare/keeper/request_aggr_keyshare.go +++ b/x/keyshare/keeper/request_aggr_keyshare.go @@ -3,7 +3,7 @@ package keeper import ( "strconv" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" diff --git a/x/keyshare/keeper/validator_set.go b/x/keyshare/keeper/validator_set.go index b0a4524f..66cb8ae4 100644 --- a/x/keyshare/keeper/validator_set.go +++ b/x/keyshare/keeper/validator_set.go @@ -1,7 +1,7 @@ package keeper import ( - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/keyshare/keeper/validator_set_test.go b/x/keyshare/keeper/validator_set_test.go index 18b6242d..91e26332 100644 --- a/x/keyshare/keeper/validator_set_test.go +++ b/x/keyshare/keeper/validator_set_test.go @@ -4,10 +4,10 @@ import ( "strconv" "testing" - keepertest "fairyring/testutil/keeper" - "fairyring/testutil/nullify" - "fairyring/x/keyshare/keeper" - "fairyring/x/keyshare/types" + keepertest "github.com/Fairblock/fairyring/testutil/keeper" + "github.com/Fairblock/fairyring/testutil/nullify" + "github.com/Fairblock/fairyring/x/keyshare/keeper" + "github.com/Fairblock/fairyring/x/keyshare/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" diff --git a/x/keyshare/module.go b/x/keyshare/module.go index 236d1947..6494749e 100644 --- a/x/keyshare/module.go +++ b/x/keyshare/module.go @@ -4,8 +4,8 @@ import ( "context" "encoding/hex" "encoding/json" - peptypes "fairyring/x/pep/types" "fmt" + peptypes "github.com/Fairblock/fairyring/x/pep/types" "github.com/cosmos/cosmos-sdk/telemetry" "strconv" @@ -14,9 +14,9 @@ import ( "github.com/grpc-ecosystem/grpc-gateway/runtime" "github.com/spf13/cobra" - "fairyring/x/keyshare/client/cli" - "fairyring/x/keyshare/keeper" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/client/cli" + "github.com/Fairblock/fairyring/x/keyshare/keeper" + "github.com/Fairblock/fairyring/x/keyshare/types" abci "github.com/cometbft/cometbft/abci/types" diff --git a/x/keyshare/module_ibc.go b/x/keyshare/module_ibc.go index 6522f1b7..c206083f 100644 --- a/x/keyshare/module_ibc.go +++ b/x/keyshare/module_ibc.go @@ -1,9 +1,9 @@ package keyshare import ( - "fairyring/x/keyshare/keeper" - "fairyring/x/keyshare/types" "fmt" + "github.com/Fairblock/fairyring/x/keyshare/keeper" + "github.com/Fairblock/fairyring/x/keyshare/types" sdkerrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/keyshare/module_ibc_test.go b/x/keyshare/module_ibc_test.go index 53b25607..8f4d82c4 100644 --- a/x/keyshare/module_ibc_test.go +++ b/x/keyshare/module_ibc_test.go @@ -2,9 +2,9 @@ package keyshare_test import ( "encoding/json" - "fairyring/app" - "fairyring/x/keyshare/types" "fmt" + "github.com/Fairblock/fairyring/app" + "github.com/Fairblock/fairyring/x/keyshare/types" "testing" dbm "github.com/cometbft/cometbft-db" diff --git a/x/keyshare/module_simulation.go b/x/keyshare/module_simulation.go index a2ebda9d..0abbf38b 100644 --- a/x/keyshare/module_simulation.go +++ b/x/keyshare/module_simulation.go @@ -3,9 +3,9 @@ package keyshare import ( "math/rand" - "fairyring/testutil/sample" - keysharesimulation "fairyring/x/keyshare/simulation" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/testutil/sample" + keysharesimulation "github.com/Fairblock/fairyring/x/keyshare/simulation" + "github.com/Fairblock/fairyring/x/keyshare/types" "github.com/cosmos/cosmos-sdk/baseapp" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/keyshare/simulation/authorized_address.go b/x/keyshare/simulation/authorized_address.go index 70c1e1e3..778fc908 100644 --- a/x/keyshare/simulation/authorized_address.go +++ b/x/keyshare/simulation/authorized_address.go @@ -5,8 +5,8 @@ import ( "math/rand" "strconv" - "fairyring/x/keyshare/keeper" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/keeper" + "github.com/Fairblock/fairyring/x/keyshare/types" "github.com/cosmos/cosmos-sdk/baseapp" sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" diff --git a/x/keyshare/simulation/general_key_share.go b/x/keyshare/simulation/general_key_share.go index 77ad8d1c..f1335d52 100644 --- a/x/keyshare/simulation/general_key_share.go +++ b/x/keyshare/simulation/general_key_share.go @@ -5,8 +5,8 @@ import ( "math/rand" "strconv" - "fairyring/x/keyshare/keeper" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/keeper" + "github.com/Fairblock/fairyring/x/keyshare/types" "github.com/cosmos/cosmos-sdk/baseapp" sdk "github.com/cosmos/cosmos-sdk/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" diff --git a/x/keyshare/simulation/latest_pub_key.go b/x/keyshare/simulation/latest_pub_key.go index 55328aa4..bef16f03 100644 --- a/x/keyshare/simulation/latest_pub_key.go +++ b/x/keyshare/simulation/latest_pub_key.go @@ -4,8 +4,8 @@ import ( "math/rand" "strconv" - "fairyring/x/keyshare/keeper" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/keeper" + "github.com/Fairblock/fairyring/x/keyshare/types" "github.com/cosmos/cosmos-sdk/baseapp" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/keyshare/simulation/register_validator.go b/x/keyshare/simulation/register_validator.go index 9d0873bb..20920c16 100644 --- a/x/keyshare/simulation/register_validator.go +++ b/x/keyshare/simulation/register_validator.go @@ -5,8 +5,8 @@ import ( "github.com/cosmos/cosmos-sdk/x/simulation" - "fairyring/x/keyshare/keeper" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/keeper" + "github.com/Fairblock/fairyring/x/keyshare/types" "github.com/cosmos/cosmos-sdk/baseapp" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/keyshare/simulation/send_keyshare.go b/x/keyshare/simulation/send_keyshare.go index b386ce03..6cbd27ae 100644 --- a/x/keyshare/simulation/send_keyshare.go +++ b/x/keyshare/simulation/send_keyshare.go @@ -5,8 +5,8 @@ import ( "github.com/cosmos/cosmos-sdk/x/simulation" - "fairyring/x/keyshare/keeper" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/keeper" + "github.com/Fairblock/fairyring/x/keyshare/types" "github.com/cosmos/cosmos-sdk/baseapp" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/keyshare/types/aggregated_key_share.pb.go b/x/keyshare/types/aggregated_key_share.pb.go index 0a578ee6..26d9e080 100644 --- a/x/keyshare/types/aggregated_key_share.pb.go +++ b/x/keyshare/types/aggregated_key_share.pb.go @@ -79,7 +79,7 @@ func init() { } func init() { - proto.RegisterFile("fairyring/keyshare/aggregated_key_share.proto", fileDescriptor_9b3cffdc2704870f) + proto.RegisterFile("github.com/Fairblock/fairyring/keyshare/aggregated_key_share.proto", fileDescriptor_9b3cffdc2704870f) } var fileDescriptor_9b3cffdc2704870f = []byte{ diff --git a/x/keyshare/types/authorized_address.pb.go b/x/keyshare/types/authorized_address.pb.go index 36d0ee55..fee41d8d 100644 --- a/x/keyshare/types/authorized_address.pb.go +++ b/x/keyshare/types/authorized_address.pb.go @@ -87,7 +87,7 @@ func init() { } func init() { - proto.RegisterFile("fairyring/keyshare/authorized_address.proto", fileDescriptor_7b09dee94c56d60e) + proto.RegisterFile("github.com/Fairblock/fairyring/keyshare/authorized_address.proto", fileDescriptor_7b09dee94c56d60e) } var fileDescriptor_7b09dee94c56d60e = []byte{ diff --git a/x/keyshare/types/codec.go b/x/keyshare/types/codec.go index 3d66f300..0de9c1c0 100644 --- a/x/keyshare/types/codec.go +++ b/x/keyshare/types/codec.go @@ -14,9 +14,9 @@ import ( ) func RegisterCodec(cdc *codec.LegacyAmino) { - cdc.RegisterConcrete(&MsgRegisterValidator{}, "fairyring/RegisterValidator", nil) - cdc.RegisterConcrete(&MsgSendKeyshare{}, "fairyring/SendKeyshare", nil) - cdc.RegisterConcrete(&MsgCreateLatestPubKey{}, "fairyring/CreateLatestPubKey", nil) + cdc.RegisterConcrete(&MsgRegisterValidator{}, "github.com/Fairblock/fairyring/RegisterValidator", nil) + cdc.RegisterConcrete(&MsgSendKeyshare{}, "github.com/Fairblock/fairyring/SendKeyshare", nil) + cdc.RegisterConcrete(&MsgCreateLatestPubKey{}, "github.com/Fairblock/fairyring/CreateLatestPubKey", nil) cdc.RegisterConcrete(&MsgCreateAuthorizedAddress{}, "keyshare/CreateAuthorizedAddress", nil) cdc.RegisterConcrete(&MsgUpdateAuthorizedAddress{}, "keyshare/UpdateAuthorizedAddress", nil) cdc.RegisterConcrete(&MsgDeleteAuthorizedAddress{}, "keyshare/DeleteAuthorizedAddress", nil) diff --git a/x/keyshare/types/commitments.pb.go b/x/keyshare/types/commitments.pb.go index 8dca08f0..e743023a 100644 --- a/x/keyshare/types/commitments.pb.go +++ b/x/keyshare/types/commitments.pb.go @@ -71,7 +71,7 @@ func init() { } func init() { - proto.RegisterFile("fairyring/keyshare/commitments.proto", fileDescriptor_31bcc80e7d85b088) + proto.RegisterFile("github.com/Fairblock/fairyring/keyshare/commitments.proto", fileDescriptor_31bcc80e7d85b088) } var fileDescriptor_31bcc80e7d85b088 = []byte{ diff --git a/x/keyshare/types/expected_keepers.go b/x/keyshare/types/expected_keepers.go index bb2f4604..39253a76 100644 --- a/x/keyshare/types/expected_keepers.go +++ b/x/keyshare/types/expected_keepers.go @@ -1,7 +1,7 @@ package types import ( - peptypes "fairyring/x/pep/types" + peptypes "github.com/Fairblock/fairyring/x/pep/types" sdkerrors "cosmossdk.io/errors" "cosmossdk.io/math" diff --git a/x/keyshare/types/general_key_share.pb.go b/x/keyshare/types/general_key_share.pb.go index 4e2172ee..40d439d3 100644 --- a/x/keyshare/types/general_key_share.pb.go +++ b/x/keyshare/types/general_key_share.pb.go @@ -119,7 +119,7 @@ func init() { } func init() { - proto.RegisterFile("fairyring/keyshare/general_key_share.proto", fileDescriptor_05ce460a69fa2745) + proto.RegisterFile("github.com/Fairblock/fairyring/keyshare/general_key_share.proto", fileDescriptor_05ce460a69fa2745) } var fileDescriptor_05ce460a69fa2745 = []byte{ diff --git a/x/keyshare/types/genesis.pb.go b/x/keyshare/types/genesis.pb.go index fd155798..f726a044 100644 --- a/x/keyshare/types/genesis.pb.go +++ b/x/keyshare/types/genesis.pb.go @@ -145,7 +145,7 @@ func init() { proto.RegisterType((*GenesisState)(nil), "fairyring.keyshare.GenesisState") } -func init() { proto.RegisterFile("fairyring/keyshare/genesis.proto", fileDescriptor_6629804056e1ba8d) } +func init() { proto.RegisterFile("github.com/Fairblock/fairyring/keyshare/genesis.proto", fileDescriptor_6629804056e1ba8d) } var fileDescriptor_6629804056e1ba8d = []byte{ // 477 bytes of a gzipped FileDescriptorProto diff --git a/x/keyshare/types/genesis_test.go b/x/keyshare/types/genesis_test.go index 1a71058d..7ff6e5af 100644 --- a/x/keyshare/types/genesis_test.go +++ b/x/keyshare/types/genesis_test.go @@ -3,7 +3,7 @@ package types_test import ( "testing" - "fairyring/x/keyshare/types" + "github.com/Fairblock/fairyring/x/keyshare/types" "github.com/stretchr/testify/require" ) diff --git a/x/keyshare/types/key_share.pb.go b/x/keyshare/types/key_share.pb.go index 84301d53..ce97d807 100644 --- a/x/keyshare/types/key_share.pb.go +++ b/x/keyshare/types/key_share.pb.go @@ -111,7 +111,7 @@ func init() { } func init() { - proto.RegisterFile("fairyring/keyshare/key_share.proto", fileDescriptor_cb45212b5123dd29) + proto.RegisterFile("github.com/Fairblock/fairyring/keyshare/key_share.proto", fileDescriptor_cb45212b5123dd29) } var fileDescriptor_cb45212b5123dd29 = []byte{ diff --git a/x/keyshare/types/message_register_validator_test.go b/x/keyshare/types/message_register_validator_test.go index edf639ba..ce61f4d8 100644 --- a/x/keyshare/types/message_register_validator_test.go +++ b/x/keyshare/types/message_register_validator_test.go @@ -3,7 +3,7 @@ package types import ( "testing" - "fairyring/testutil/sample" + "github.com/Fairblock/fairyring/testutil/sample" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/stretchr/testify/require" ) diff --git a/x/keyshare/types/message_send_keyshare_test.go b/x/keyshare/types/message_send_keyshare_test.go index 08bc7224..2f44834d 100644 --- a/x/keyshare/types/message_send_keyshare_test.go +++ b/x/keyshare/types/message_send_keyshare_test.go @@ -3,7 +3,7 @@ package types import ( "testing" - "fairyring/testutil/sample" + "github.com/Fairblock/fairyring/testutil/sample" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/stretchr/testify/require" ) diff --git a/x/keyshare/types/messages_authorized_address_test.go b/x/keyshare/types/messages_authorized_address_test.go index 4824aab8..134e35ac 100644 --- a/x/keyshare/types/messages_authorized_address_test.go +++ b/x/keyshare/types/messages_authorized_address_test.go @@ -3,7 +3,7 @@ package types import ( "testing" - "fairyring/testutil/sample" + "github.com/Fairblock/fairyring/testutil/sample" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/stretchr/testify/require" ) diff --git a/x/keyshare/types/messages_general_key_share_test.go b/x/keyshare/types/messages_general_key_share_test.go index 30f723b4..ba19885e 100644 --- a/x/keyshare/types/messages_general_key_share_test.go +++ b/x/keyshare/types/messages_general_key_share_test.go @@ -3,7 +3,7 @@ package types import ( "testing" - "fairyring/testutil/sample" + "github.com/Fairblock/fairyring/testutil/sample" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/stretchr/testify/require" ) diff --git a/x/keyshare/types/messages_latest_pub_key_test.go b/x/keyshare/types/messages_latest_pub_key_test.go index bb495a0e..86e49fb7 100644 --- a/x/keyshare/types/messages_latest_pub_key_test.go +++ b/x/keyshare/types/messages_latest_pub_key_test.go @@ -3,7 +3,7 @@ package types import ( "testing" - "fairyring/testutil/sample" + "github.com/Fairblock/fairyring/testutil/sample" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/stretchr/testify/require" ) diff --git a/x/keyshare/types/packet.pb.go b/x/keyshare/types/packet.pb.go index 7ac95b96..2ddd1a1a 100644 --- a/x/keyshare/types/packet.pb.go +++ b/x/keyshare/types/packet.pb.go @@ -482,7 +482,7 @@ func init() { proto.RegisterType((*AggrKeyshareDataPacketAck)(nil), "fairyring.keyshare.AggrKeyshareDataPacketAck") } -func init() { proto.RegisterFile("fairyring/keyshare/packet.proto", fileDescriptor_220841e1bebf3b1b) } +func init() { proto.RegisterFile("github.com/Fairblock/fairyring/keyshare/packet.proto", fileDescriptor_220841e1bebf3b1b) } var fileDescriptor_220841e1bebf3b1b = []byte{ // 409 bytes of a gzipped FileDescriptorProto diff --git a/x/keyshare/types/params.pb.go b/x/keyshare/types/params.pb.go index 38942ccf..94a0f548 100644 --- a/x/keyshare/types/params.pb.go +++ b/x/keyshare/types/params.pb.go @@ -98,7 +98,7 @@ func init() { proto.RegisterType((*Params)(nil), "fairyring.keyshare.Params") } -func init() { proto.RegisterFile("fairyring/keyshare/params.proto", fileDescriptor_09ef7bd565425b36) } +func init() { proto.RegisterFile("github.com/Fairblock/fairyring/keyshare/params.proto", fileDescriptor_09ef7bd565425b36) } var fileDescriptor_09ef7bd565425b36 = []byte{ // 359 bytes of a gzipped FileDescriptorProto diff --git a/x/keyshare/types/pub_key.pb.go b/x/keyshare/types/pub_key.pb.go index 2a19ed1b..5d2db37e 100644 --- a/x/keyshare/types/pub_key.pb.go +++ b/x/keyshare/types/pub_key.pb.go @@ -147,7 +147,7 @@ func init() { proto.RegisterType((*QueuedPubKey)(nil), "fairyring.keyshare.QueuedPubKey") } -func init() { proto.RegisterFile("fairyring/keyshare/pub_key.proto", fileDescriptor_2c1c9675c7c2f3c4) } +func init() { proto.RegisterFile("github.com/Fairblock/fairyring/keyshare/pub_key.proto", fileDescriptor_2c1c9675c7c2f3c4) } var fileDescriptor_2c1c9675c7c2f3c4 = []byte{ // 195 bytes of a gzipped FileDescriptorProto diff --git a/x/keyshare/types/query.pb.go b/x/keyshare/types/query.pb.go index 87fff6c9..da42415d 100644 --- a/x/keyshare/types/query.pb.go +++ b/x/keyshare/types/query.pb.go @@ -1263,7 +1263,7 @@ func init() { proto.RegisterType((*QueryAllGeneralKeyShareResponse)(nil), "fairyring.keyshare.QueryAllGeneralKeyShareResponse") } -func init() { proto.RegisterFile("fairyring/keyshare/query.proto", fileDescriptor_572603c2d521bf14) } +func init() { proto.RegisterFile("github.com/Fairblock/fairyring/keyshare/query.proto", fileDescriptor_572603c2d521bf14) } var fileDescriptor_572603c2d521bf14 = []byte{ // 1306 bytes of a gzipped FileDescriptorProto @@ -1878,7 +1878,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "fairyring/keyshare/query.proto", + Metadata: "github.com/Fairblock/fairyring/keyshare/query.proto", } func (m *QueryCommitmentsRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/keyshare/types/requested_keyshare.pb.go b/x/keyshare/types/requested_keyshare.pb.go index 4f57ac46..3d3a618f 100644 --- a/x/keyshare/types/requested_keyshare.pb.go +++ b/x/keyshare/types/requested_keyshare.pb.go @@ -257,7 +257,7 @@ func init() { } func init() { - proto.RegisterFile("fairyring/keyshare/requested_keyshare.proto", fileDescriptor_e8ed024b19ae59bd) + proto.RegisterFile("github.com/Fairblock/fairyring/keyshare/requested_keyshare.proto", fileDescriptor_e8ed024b19ae59bd) } var fileDescriptor_e8ed024b19ae59bd = []byte{ diff --git a/x/keyshare/types/tx.pb.go b/x/keyshare/types/tx.pb.go index 65309da5..3163a674 100644 --- a/x/keyshare/types/tx.pb.go +++ b/x/keyshare/types/tx.pb.go @@ -853,7 +853,7 @@ func init() { proto.RegisterType((*MsgCreateGeneralKeyShareResponse)(nil), "fairyring.keyshare.MsgCreateGeneralKeyShareResponse") } -func init() { proto.RegisterFile("fairyring/keyshare/tx.proto", fileDescriptor_1f96ac6a55f1845c) } +func init() { proto.RegisterFile("github.com/Fairblock/fairyring/keyshare/tx.proto", fileDescriptor_1f96ac6a55f1845c) } var fileDescriptor_1f96ac6a55f1845c = []byte{ // 718 bytes of a gzipped FileDescriptorProto @@ -1199,7 +1199,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "fairyring/keyshare/tx.proto", + Metadata: "github.com/Fairblock/fairyring/keyshare/tx.proto", } func (m *MsgRegisterValidator) Marshal() (dAtA []byte, err error) { diff --git a/x/keyshare/types/validator_set.pb.go b/x/keyshare/types/validator_set.pb.go index c466fdba..557b325b 100644 --- a/x/keyshare/types/validator_set.pb.go +++ b/x/keyshare/types/validator_set.pb.go @@ -95,7 +95,7 @@ func init() { } func init() { - proto.RegisterFile("fairyring/keyshare/validator_set.proto", fileDescriptor_092022802a527ced) + proto.RegisterFile("github.com/Fairblock/fairyring/keyshare/validator_set.proto", fileDescriptor_092022802a527ced) } var fileDescriptor_092022802a527ced = []byte{ diff --git a/x/pep/ante/ante.go b/x/pep/ante/ante.go index 3c6e4c12..6ba99514 100644 --- a/x/pep/ante/ante.go +++ b/x/pep/ante/ante.go @@ -3,8 +3,8 @@ package ante import ( "fmt" - "fairyring/x/pep/keeper" - "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/x/pep/keeper" + "github.com/Fairblock/fairyring/x/pep/types" "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/pep/client/cli/query.go b/x/pep/client/cli/query.go index 5000774a..2a5ae88b 100644 --- a/x/pep/client/cli/query.go +++ b/x/pep/client/cli/query.go @@ -10,7 +10,7 @@ import ( // "github.com/cosmos/cosmos-sdk/client/flags" // sdk "github.com/cosmos/cosmos-sdk/types" - "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/x/pep/types" ) // GetQueryCmd returns the cli query commands for this module diff --git a/x/pep/client/cli/query_encrypted_tx.go b/x/pep/client/cli/query_encrypted_tx.go index 0bb74093..47526992 100644 --- a/x/pep/client/cli/query_encrypted_tx.go +++ b/x/pep/client/cli/query_encrypted_tx.go @@ -3,7 +3,7 @@ package cli import ( "context" - "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/x/pep/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" diff --git a/x/pep/client/cli/query_encrypted_tx_test.go b/x/pep/client/cli/query_encrypted_tx_test.go index cf933d6c..a53ac7e6 100644 --- a/x/pep/client/cli/query_encrypted_tx_test.go +++ b/x/pep/client/cli/query_encrypted_tx_test.go @@ -12,10 +12,10 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "fairyring/testutil/network" - "fairyring/testutil/nullify" - "fairyring/x/pep/client/cli" - "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/testutil/network" + "github.com/Fairblock/fairyring/testutil/nullify" + "github.com/Fairblock/fairyring/x/pep/client/cli" + "github.com/Fairblock/fairyring/x/pep/types" ) // Prevent strconv unused error diff --git a/x/pep/client/cli/query_latest_height.go b/x/pep/client/cli/query_latest_height.go index 5de34235..fdb65b39 100644 --- a/x/pep/client/cli/query_latest_height.go +++ b/x/pep/client/cli/query_latest_height.go @@ -3,7 +3,7 @@ package cli import ( "strconv" - "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/x/pep/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" diff --git a/x/pep/client/cli/query_params.go b/x/pep/client/cli/query_params.go index 0fdb4afc..465dd472 100644 --- a/x/pep/client/cli/query_params.go +++ b/x/pep/client/cli/query_params.go @@ -3,7 +3,7 @@ package cli import ( "context" - "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/x/pep/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" diff --git a/x/pep/client/cli/query_pep_nonce.go b/x/pep/client/cli/query_pep_nonce.go index a0a3b0d7..55e87b78 100644 --- a/x/pep/client/cli/query_pep_nonce.go +++ b/x/pep/client/cli/query_pep_nonce.go @@ -3,7 +3,7 @@ package cli import ( "context" - "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/x/pep/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" diff --git a/x/pep/client/cli/query_pep_nonce_test.go b/x/pep/client/cli/query_pep_nonce_test.go index bd6d7de5..2274158e 100644 --- a/x/pep/client/cli/query_pep_nonce_test.go +++ b/x/pep/client/cli/query_pep_nonce_test.go @@ -12,10 +12,10 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "fairyring/testutil/network" - "fairyring/testutil/nullify" - "fairyring/x/pep/client/cli" - "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/testutil/network" + "github.com/Fairblock/fairyring/testutil/nullify" + "github.com/Fairblock/fairyring/x/pep/client/cli" + "github.com/Fairblock/fairyring/x/pep/types" ) // Prevent strconv unused error diff --git a/x/pep/client/cli/query_pubkey.go b/x/pep/client/cli/query_pubkey.go index 4429b242..bd7ecc75 100644 --- a/x/pep/client/cli/query_pubkey.go +++ b/x/pep/client/cli/query_pubkey.go @@ -3,7 +3,7 @@ package cli import ( "context" - "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/x/pep/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" diff --git a/x/pep/client/cli/tx.go b/x/pep/client/cli/tx.go index 4a3e34d2..a670896d 100644 --- a/x/pep/client/cli/tx.go +++ b/x/pep/client/cli/tx.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" // "github.com/cosmos/cosmos-sdk/client/flags" - "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/x/pep/types" ) var ( diff --git a/x/pep/client/cli/tx_aggregated_key_share.go b/x/pep/client/cli/tx_aggregated_key_share.go index 9fc2fe71..c8eb0daf 100644 --- a/x/pep/client/cli/tx_aggregated_key_share.go +++ b/x/pep/client/cli/tx_aggregated_key_share.go @@ -1,7 +1,7 @@ package cli import ( - "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/x/pep/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" diff --git a/x/pep/client/cli/tx_aggregated_key_share_test.go b/x/pep/client/cli/tx_aggregated_key_share_test.go index 83bc725d..37c3390d 100644 --- a/x/pep/client/cli/tx_aggregated_key_share_test.go +++ b/x/pep/client/cli/tx_aggregated_key_share_test.go @@ -11,8 +11,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - "fairyring/testutil/network" - "fairyring/x/pep/client/cli" + "github.com/Fairblock/fairyring/testutil/network" + "github.com/Fairblock/fairyring/x/pep/client/cli" ) // Prevent strconv unused error diff --git a/x/pep/client/cli/tx_submit_encrypted_tx.go b/x/pep/client/cli/tx_submit_encrypted_tx.go index 0e25c632..f19ed981 100644 --- a/x/pep/client/cli/tx_submit_encrypted_tx.go +++ b/x/pep/client/cli/tx_submit_encrypted_tx.go @@ -3,7 +3,7 @@ package cli import ( "strconv" - "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/x/pep/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" diff --git a/x/pep/genesis.go b/x/pep/genesis.go index c39e7eff..1dae2e3f 100644 --- a/x/pep/genesis.go +++ b/x/pep/genesis.go @@ -1,8 +1,8 @@ package pep import ( - "fairyring/x/pep/keeper" - "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/x/pep/keeper" + "github.com/Fairblock/fairyring/x/pep/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/pep/genesis_test.go b/x/pep/genesis_test.go index cd150a68..e2947463 100644 --- a/x/pep/genesis_test.go +++ b/x/pep/genesis_test.go @@ -3,10 +3,10 @@ package pep_test import ( "testing" - keepertest "fairyring/testutil/keeper" - "fairyring/testutil/nullify" - "fairyring/x/pep" - "fairyring/x/pep/types" + keepertest "github.com/Fairblock/fairyring/testutil/keeper" + "github.com/Fairblock/fairyring/testutil/nullify" + "github.com/Fairblock/fairyring/x/pep" + "github.com/Fairblock/fairyring/x/pep/types" "github.com/stretchr/testify/require" ) diff --git a/x/pep/keeper/aggregated_key_share.go b/x/pep/keeper/aggregated_key_share.go index 401d606f..eaf240ef 100644 --- a/x/pep/keeper/aggregated_key_share.go +++ b/x/pep/keeper/aggregated_key_share.go @@ -1,7 +1,7 @@ package keeper import ( - "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/x/pep/types" "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/pep/keeper/aggregated_key_share_test.go b/x/pep/keeper/aggregated_key_share_test.go index c8c28279..eded3bb2 100644 --- a/x/pep/keeper/aggregated_key_share_test.go +++ b/x/pep/keeper/aggregated_key_share_test.go @@ -4,10 +4,10 @@ import ( "strconv" "testing" - keepertest "fairyring/testutil/keeper" - "fairyring/testutil/nullify" - "fairyring/x/pep/keeper" - "fairyring/x/pep/types" + keepertest "github.com/Fairblock/fairyring/testutil/keeper" + "github.com/Fairblock/fairyring/testutil/nullify" + "github.com/Fairblock/fairyring/x/pep/keeper" + "github.com/Fairblock/fairyring/x/pep/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" diff --git a/x/pep/keeper/current_keys.go b/x/pep/keeper/current_keys.go index 6b30e947..67ca71ff 100644 --- a/x/pep/keeper/current_keys.go +++ b/x/pep/keeper/current_keys.go @@ -5,7 +5,7 @@ import ( cosmoserror "github.com/cosmos/cosmos-sdk/types/errors" "time" - "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/x/pep/types" sdkerrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/pep/keeper/encrypted_tx.go b/x/pep/keeper/encrypted_tx.go index 91672e38..1c9df116 100644 --- a/x/pep/keeper/encrypted_tx.go +++ b/x/pep/keeper/encrypted_tx.go @@ -1,7 +1,7 @@ package keeper import ( - "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/x/pep/types" "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/pep/keeper/encrypted_tx_test.go b/x/pep/keeper/encrypted_tx_test.go index 2a1cdec1..fd16cd26 100644 --- a/x/pep/keeper/encrypted_tx_test.go +++ b/x/pep/keeper/encrypted_tx_test.go @@ -5,10 +5,10 @@ import ( "strconv" "testing" - keepertest "fairyring/testutil/keeper" - "fairyring/testutil/nullify" - "fairyring/x/pep/keeper" - "fairyring/x/pep/types" + keepertest "github.com/Fairblock/fairyring/testutil/keeper" + "github.com/Fairblock/fairyring/testutil/nullify" + "github.com/Fairblock/fairyring/x/pep/keeper" + "github.com/Fairblock/fairyring/x/pep/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" diff --git a/x/pep/keeper/grpc_query.go b/x/pep/keeper/grpc_query.go index 8d20fe90..1e75301b 100644 --- a/x/pep/keeper/grpc_query.go +++ b/x/pep/keeper/grpc_query.go @@ -1,7 +1,7 @@ package keeper import ( - "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/x/pep/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/pep/keeper/grpc_query_encrypted_tx.go b/x/pep/keeper/grpc_query_encrypted_tx.go index 0af0e0f9..38edbdb8 100644 --- a/x/pep/keeper/grpc_query_encrypted_tx.go +++ b/x/pep/keeper/grpc_query_encrypted_tx.go @@ -2,7 +2,7 @@ package keeper import ( "context" - "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/x/pep/types" "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/pep/keeper/grpc_query_encrypted_tx_test.go b/x/pep/keeper/grpc_query_encrypted_tx_test.go index 6e9b66c8..24e5d6fc 100644 --- a/x/pep/keeper/grpc_query_encrypted_tx_test.go +++ b/x/pep/keeper/grpc_query_encrypted_tx_test.go @@ -10,9 +10,9 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - keepertest "fairyring/testutil/keeper" - "fairyring/testutil/nullify" - "fairyring/x/pep/types" + keepertest "github.com/Fairblock/fairyring/testutil/keeper" + "github.com/Fairblock/fairyring/testutil/nullify" + "github.com/Fairblock/fairyring/x/pep/types" ) // Prevent strconv unused error diff --git a/x/pep/keeper/grpc_query_latest_height.go b/x/pep/keeper/grpc_query_latest_height.go index 3eef817f..679a57d2 100644 --- a/x/pep/keeper/grpc_query_latest_height.go +++ b/x/pep/keeper/grpc_query_latest_height.go @@ -4,7 +4,7 @@ import ( "context" "strconv" - "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/x/pep/types" sdk "github.com/cosmos/cosmos-sdk/types" "google.golang.org/grpc/codes" diff --git a/x/pep/keeper/grpc_query_params.go b/x/pep/keeper/grpc_query_params.go index 54de7544..36497a68 100644 --- a/x/pep/keeper/grpc_query_params.go +++ b/x/pep/keeper/grpc_query_params.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/x/pep/types" sdk "github.com/cosmos/cosmos-sdk/types" "google.golang.org/grpc/codes" diff --git a/x/pep/keeper/grpc_query_params_test.go b/x/pep/keeper/grpc_query_params_test.go index 8d3b304e..af728ceb 100644 --- a/x/pep/keeper/grpc_query_params_test.go +++ b/x/pep/keeper/grpc_query_params_test.go @@ -3,8 +3,8 @@ package keeper_test import ( "testing" - testkeeper "fairyring/testutil/keeper" - "fairyring/x/pep/types" + testkeeper "github.com/Fairblock/fairyring/testutil/keeper" + "github.com/Fairblock/fairyring/x/pep/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" diff --git a/x/pep/keeper/grpc_query_pep_nonce.go b/x/pep/keeper/grpc_query_pep_nonce.go index 781620fb..e1bfef15 100644 --- a/x/pep/keeper/grpc_query_pep_nonce.go +++ b/x/pep/keeper/grpc_query_pep_nonce.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/x/pep/types" "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/pep/keeper/grpc_query_pep_nonce_test.go b/x/pep/keeper/grpc_query_pep_nonce_test.go index a847fdba..7ed503b7 100644 --- a/x/pep/keeper/grpc_query_pep_nonce_test.go +++ b/x/pep/keeper/grpc_query_pep_nonce_test.go @@ -10,9 +10,9 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - keepertest "fairyring/testutil/keeper" - "fairyring/testutil/nullify" - "fairyring/x/pep/types" + keepertest "github.com/Fairblock/fairyring/testutil/keeper" + "github.com/Fairblock/fairyring/testutil/nullify" + "github.com/Fairblock/fairyring/x/pep/types" ) // Prevent strconv unused error diff --git a/x/pep/keeper/grpc_query_pubkey.go b/x/pep/keeper/grpc_query_pubkey.go index e13e1ea3..bb877c7c 100644 --- a/x/pep/keeper/grpc_query_pubkey.go +++ b/x/pep/keeper/grpc_query_pubkey.go @@ -2,7 +2,7 @@ package keeper import ( "context" - "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/x/pep/types" sdk "github.com/cosmos/cosmos-sdk/types" "google.golang.org/grpc/codes" diff --git a/x/pep/keeper/keeper.go b/x/pep/keeper/keeper.go index 8381624f..5e15e798 100644 --- a/x/pep/keeper/keeper.go +++ b/x/pep/keeper/keeper.go @@ -3,7 +3,7 @@ package keeper import ( "fmt" - "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/x/pep/types" "github.com/cometbft/cometbft/libs/log" "github.com/cosmos/cosmos-sdk/codec" diff --git a/x/pep/keeper/latest_height.go b/x/pep/keeper/latest_height.go index d8aac2ab..e3ba5711 100644 --- a/x/pep/keeper/latest_height.go +++ b/x/pep/keeper/latest_height.go @@ -1,7 +1,7 @@ package keeper import ( - "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/x/pep/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/pep/keeper/msg_server.go b/x/pep/keeper/msg_server.go index ce53d1ee..0e238170 100644 --- a/x/pep/keeper/msg_server.go +++ b/x/pep/keeper/msg_server.go @@ -1,7 +1,7 @@ package keeper import ( - "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/x/pep/types" ) type msgServer struct { diff --git a/x/pep/keeper/msg_server_aggregated_key_share.go b/x/pep/keeper/msg_server_aggregated_key_share.go index b005ff9c..276d281b 100644 --- a/x/pep/keeper/msg_server_aggregated_key_share.go +++ b/x/pep/keeper/msg_server_aggregated_key_share.go @@ -5,8 +5,8 @@ import ( "context" "encoding/hex" "errors" - "fairyring/x/pep/types" "fmt" + "github.com/Fairblock/fairyring/x/pep/types" "strconv" enc "github.com/FairBlock/DistributedIBE/encryption" diff --git a/x/pep/keeper/msg_server_aggregated_key_share_test.go b/x/pep/keeper/msg_server_aggregated_key_share_test.go index 216b42e1..0dec8767 100644 --- a/x/pep/keeper/msg_server_aggregated_key_share_test.go +++ b/x/pep/keeper/msg_server_aggregated_key_share_test.go @@ -7,9 +7,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - keepertest "fairyring/testutil/keeper" - "fairyring/x/pep/keeper" - "fairyring/x/pep/types" + keepertest "github.com/Fairblock/fairyring/testutil/keeper" + "github.com/Fairblock/fairyring/x/pep/keeper" + "github.com/Fairblock/fairyring/x/pep/types" ) // Prevent strconv unused error diff --git a/x/pep/keeper/msg_server_submit_encrypted_tx.go b/x/pep/keeper/msg_server_submit_encrypted_tx.go index 343e5390..e87fc7a8 100644 --- a/x/pep/keeper/msg_server_submit_encrypted_tx.go +++ b/x/pep/keeper/msg_server_submit_encrypted_tx.go @@ -2,8 +2,8 @@ package keeper import ( "context" - "fairyring/x/pep/types" "fmt" + "github.com/Fairblock/fairyring/x/pep/types" "github.com/cosmos/cosmos-sdk/telemetry" "strconv" diff --git a/x/pep/keeper/params.go b/x/pep/keeper/params.go index c3f797b0..5d5ac854 100644 --- a/x/pep/keeper/params.go +++ b/x/pep/keeper/params.go @@ -1,7 +1,7 @@ package keeper import ( - "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/x/pep/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/pep/keeper/params_test.go b/x/pep/keeper/params_test.go index 7e2b036b..5194241f 100644 --- a/x/pep/keeper/params_test.go +++ b/x/pep/keeper/params_test.go @@ -3,8 +3,8 @@ package keeper_test import ( "testing" - testkeeper "fairyring/testutil/keeper" - "fairyring/x/pep/types" + testkeeper "github.com/Fairblock/fairyring/testutil/keeper" + "github.com/Fairblock/fairyring/x/pep/types" "github.com/stretchr/testify/require" ) diff --git a/x/pep/keeper/pep_nonce.go b/x/pep/keeper/pep_nonce.go index 27660e0f..a06dfe80 100644 --- a/x/pep/keeper/pep_nonce.go +++ b/x/pep/keeper/pep_nonce.go @@ -1,7 +1,7 @@ package keeper import ( - "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/x/pep/types" "github.com/cosmos/cosmos-sdk/store/prefix" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/pep/keeper/pep_nonce_test.go b/x/pep/keeper/pep_nonce_test.go index 4c7e84cf..094bde04 100644 --- a/x/pep/keeper/pep_nonce_test.go +++ b/x/pep/keeper/pep_nonce_test.go @@ -4,10 +4,10 @@ import ( "strconv" "testing" - keepertest "fairyring/testutil/keeper" - "fairyring/testutil/nullify" - "fairyring/x/pep/keeper" - "fairyring/x/pep/types" + keepertest "github.com/Fairblock/fairyring/testutil/keeper" + "github.com/Fairblock/fairyring/testutil/nullify" + "github.com/Fairblock/fairyring/x/pep/keeper" + "github.com/Fairblock/fairyring/x/pep/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" diff --git a/x/pep/keeper/pub_key.go b/x/pep/keeper/pub_key.go index ab5cf0d6..a1f62d24 100644 --- a/x/pep/keeper/pub_key.go +++ b/x/pep/keeper/pub_key.go @@ -1,7 +1,7 @@ package keeper import ( - "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/x/pep/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/pep/module.go b/x/pep/module.go index 396a71bc..04cdf197 100644 --- a/x/pep/module.go +++ b/x/pep/module.go @@ -28,9 +28,9 @@ import ( abci "github.com/cometbft/cometbft/abci/types" - "fairyring/x/pep/client/cli" - "fairyring/x/pep/keeper" - "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/x/pep/client/cli" + "github.com/Fairblock/fairyring/x/pep/keeper" + "github.com/Fairblock/fairyring/x/pep/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/codec" diff --git a/x/pep/module_ibc.go b/x/pep/module_ibc.go index 8edd84dc..f2ef3c99 100644 --- a/x/pep/module_ibc.go +++ b/x/pep/module_ibc.go @@ -3,8 +3,8 @@ package pep import ( "fmt" - "fairyring/x/pep/keeper" - "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/x/pep/keeper" + "github.com/Fairblock/fairyring/x/pep/types" sdkerrors "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/pep/module_simulation.go b/x/pep/module_simulation.go index 7a1c2fa6..eedd2039 100644 --- a/x/pep/module_simulation.go +++ b/x/pep/module_simulation.go @@ -3,9 +3,9 @@ package pep import ( "math/rand" - "fairyring/testutil/sample" - pepsimulation "fairyring/x/pep/simulation" - "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/testutil/sample" + pepsimulation "github.com/Fairblock/fairyring/x/pep/simulation" + "github.com/Fairblock/fairyring/x/pep/types" "github.com/cosmos/cosmos-sdk/baseapp" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/pep/simulation/aggregated_key_share.go b/x/pep/simulation/aggregated_key_share.go index c3286070..a32bdbe5 100644 --- a/x/pep/simulation/aggregated_key_share.go +++ b/x/pep/simulation/aggregated_key_share.go @@ -4,8 +4,8 @@ import ( "math/rand" "strconv" - "fairyring/x/pep/keeper" - "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/x/pep/keeper" + "github.com/Fairblock/fairyring/x/pep/types" "github.com/cosmos/cosmos-sdk/baseapp" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/pep/simulation/submit_encrypted_tx.go b/x/pep/simulation/submit_encrypted_tx.go index e24c9f6b..d382ef24 100644 --- a/x/pep/simulation/submit_encrypted_tx.go +++ b/x/pep/simulation/submit_encrypted_tx.go @@ -3,8 +3,8 @@ package simulation import ( "math/rand" - "fairyring/x/pep/keeper" - "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/x/pep/keeper" + "github.com/Fairblock/fairyring/x/pep/types" "github.com/cosmos/cosmos-sdk/baseapp" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/pep/types/aggregated_key_share.pb.go b/x/pep/types/aggregated_key_share.pb.go index 66c14412..17ea9e3c 100644 --- a/x/pep/types/aggregated_key_share.pb.go +++ b/x/pep/types/aggregated_key_share.pb.go @@ -87,7 +87,7 @@ func init() { } func init() { - proto.RegisterFile("fairyring/pep/aggregated_key_share.proto", fileDescriptor_95dc3bd78b9184ad) + proto.RegisterFile("github.com/Fairblock/fairyring/pep/aggregated_key_share.proto", fileDescriptor_95dc3bd78b9184ad) } var fileDescriptor_95dc3bd78b9184ad = []byte{ diff --git a/x/pep/types/encrypted_tx.pb.go b/x/pep/types/encrypted_tx.pb.go index ec66a5fe..a258ba77 100644 --- a/x/pep/types/encrypted_tx.pb.go +++ b/x/pep/types/encrypted_tx.pb.go @@ -149,7 +149,7 @@ func init() { proto.RegisterType((*EncryptedTxArray)(nil), "fairyring.pep.EncryptedTxArray") } -func init() { proto.RegisterFile("fairyring/pep/encrypted_tx.proto", fileDescriptor_7c124d687cde8326) } +func init() { proto.RegisterFile("github.com/Fairblock/fairyring/pep/encrypted_tx.proto", fileDescriptor_7c124d687cde8326) } var fileDescriptor_7c124d687cde8326 = []byte{ // 306 bytes of a gzipped FileDescriptorProto diff --git a/x/pep/types/genesis.pb.go b/x/pep/types/genesis.pb.go index 94e1d909..05aa8a6f 100644 --- a/x/pep/types/genesis.pb.go +++ b/x/pep/types/genesis.pb.go @@ -121,7 +121,7 @@ func init() { proto.RegisterType((*GenesisState)(nil), "fairyring.pep.GenesisState") } -func init() { proto.RegisterFile("fairyring/pep/genesis.proto", fileDescriptor_c02ca82ac7a8fa8f) } +func init() { proto.RegisterFile("github.com/Fairblock/fairyring/pep/genesis.proto", fileDescriptor_c02ca82ac7a8fa8f) } var fileDescriptor_c02ca82ac7a8fa8f = []byte{ // 386 bytes of a gzipped FileDescriptorProto diff --git a/x/pep/types/genesis_test.go b/x/pep/types/genesis_test.go index 1f77b6b1..5678cb77 100644 --- a/x/pep/types/genesis_test.go +++ b/x/pep/types/genesis_test.go @@ -3,7 +3,7 @@ package types_test import ( "testing" - "fairyring/x/pep/types" + "github.com/Fairblock/fairyring/x/pep/types" "github.com/stretchr/testify/require" ) diff --git a/x/pep/types/message_submit_encrypted_tx_test.go b/x/pep/types/message_submit_encrypted_tx_test.go index e58621b0..9a360559 100644 --- a/x/pep/types/message_submit_encrypted_tx_test.go +++ b/x/pep/types/message_submit_encrypted_tx_test.go @@ -3,7 +3,7 @@ package types import ( "testing" - "fairyring/testutil/sample" + "github.com/Fairblock/fairyring/testutil/sample" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/stretchr/testify/require" ) diff --git a/x/pep/types/messages_aggregated_key_share_test.go b/x/pep/types/messages_aggregated_key_share_test.go index 98453322..483de39d 100644 --- a/x/pep/types/messages_aggregated_key_share_test.go +++ b/x/pep/types/messages_aggregated_key_share_test.go @@ -3,7 +3,7 @@ package types import ( "testing" - "fairyring/testutil/sample" + "github.com/Fairblock/fairyring/testutil/sample" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" "github.com/stretchr/testify/require" ) diff --git a/x/pep/types/packet.pb.go b/x/pep/types/packet.pb.go index c19c9a24..3e3f276b 100644 --- a/x/pep/types/packet.pb.go +++ b/x/pep/types/packet.pb.go @@ -240,7 +240,7 @@ func init() { proto.RegisterType((*CurrentKeysPacketAck)(nil), "fairyring.pep.CurrentKeysPacketAck") } -func init() { proto.RegisterFile("fairyring/pep/packet.proto", fileDescriptor_69dc34a7ea22bf8e) } +func init() { proto.RegisterFile("github.com/Fairblock/fairyring/pep/packet.proto", fileDescriptor_69dc34a7ea22bf8e) } var fileDescriptor_69dc34a7ea22bf8e = []byte{ // 272 bytes of a gzipped FileDescriptorProto diff --git a/x/pep/types/params.pb.go b/x/pep/types/params.pb.go index 12013120..af819169 100644 --- a/x/pep/types/params.pb.go +++ b/x/pep/types/params.pb.go @@ -157,7 +157,7 @@ func init() { proto.RegisterType((*TrustedCounterParty)(nil), "fairyring.pep.TrustedCounterParty") } -func init() { proto.RegisterFile("fairyring/pep/params.proto", fileDescriptor_9a32cf7d58c7a431) } +func init() { proto.RegisterFile("github.com/Fairblock/fairyring/pep/params.proto", fileDescriptor_9a32cf7d58c7a431) } var fileDescriptor_9a32cf7d58c7a431 = []byte{ // 356 bytes of a gzipped FileDescriptorProto diff --git a/x/pep/types/pep_nonce.pb.go b/x/pep/types/pep_nonce.pb.go index e117d888..1e7de961 100644 --- a/x/pep/types/pep_nonce.pb.go +++ b/x/pep/types/pep_nonce.pb.go @@ -78,7 +78,7 @@ func init() { proto.RegisterType((*PepNonce)(nil), "fairyring.pep.PepNonce") } -func init() { proto.RegisterFile("fairyring/pep/pep_nonce.proto", fileDescriptor_5760221b7253d15f) } +func init() { proto.RegisterFile("github.com/Fairblock/fairyring/pep/pep_nonce.proto", fileDescriptor_5760221b7253d15f) } var fileDescriptor_5760221b7253d15f = []byte{ // 150 bytes of a gzipped FileDescriptorProto diff --git a/x/pep/types/pub_key.pb.go b/x/pep/types/pub_key.pb.go index e0757a61..ea979d9e 100644 --- a/x/pep/types/pub_key.pb.go +++ b/x/pep/types/pub_key.pb.go @@ -147,7 +147,7 @@ func init() { proto.RegisterType((*QueuedPubKey)(nil), "fairyring.pep.QueuedPubKey") } -func init() { proto.RegisterFile("fairyring/pep/pub_key.proto", fileDescriptor_759075ebcc395969) } +func init() { proto.RegisterFile("github.com/Fairblock/fairyring/pep/pub_key.proto", fileDescriptor_759075ebcc395969) } var fileDescriptor_759075ebcc395969 = []byte{ // 191 bytes of a gzipped FileDescriptorProto diff --git a/x/pep/types/query.pb.go b/x/pep/types/query.pb.go index 1e5e67d5..f0908832 100644 --- a/x/pep/types/query.pb.go +++ b/x/pep/types/query.pb.go @@ -764,7 +764,7 @@ func init() { proto.RegisterType((*QueryPubKeyResponse)(nil), "fairyring.pep.QueryPubKeyResponse") } -func init() { proto.RegisterFile("fairyring/pep/query.proto", fileDescriptor_dd36cf23112e8be0) } +func init() { proto.RegisterFile("github.com/Fairblock/fairyring/pep/query.proto", fileDescriptor_dd36cf23112e8be0) } var fileDescriptor_dd36cf23112e8be0 = []byte{ // 898 bytes of a gzipped FileDescriptorProto @@ -1172,7 +1172,7 @@ var _Query_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "fairyring/pep/query.proto", + Metadata: "github.com/Fairblock/fairyring/pep/query.proto", } func (m *QueryParamsRequest) Marshal() (dAtA []byte, err error) { diff --git a/x/pep/types/tx.pb.go b/x/pep/types/tx.pb.go index ce00806b..47c98e9f 100644 --- a/x/pep/types/tx.pb.go +++ b/x/pep/types/tx.pb.go @@ -227,7 +227,7 @@ func init() { proto.RegisterType((*MsgCreateAggregatedKeyShareResponse)(nil), "fairyring.pep.MsgCreateAggregatedKeyShareResponse") } -func init() { proto.RegisterFile("fairyring/pep/tx.proto", fileDescriptor_f6953e463911e1ec) } +func init() { proto.RegisterFile("github.com/Fairblock/fairyring/pep/tx.proto", fileDescriptor_f6953e463911e1ec) } var fileDescriptor_f6953e463911e1ec = []byte{ // 325 bytes of a gzipped FileDescriptorProto @@ -369,7 +369,7 @@ var _Msg_serviceDesc = grpc.ServiceDesc{ }, }, Streams: []grpc.StreamDesc{}, - Metadata: "fairyring/pep/tx.proto", + Metadata: "github.com/Fairblock/fairyring/pep/tx.proto", } func (m *MsgSubmitEncryptedTx) Marshal() (dAtA []byte, err error) {