diff --git a/CHANGELOG.md b/CHANGELOG.md index 34b2ccab..f51c4cd6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,22 @@ +# AXONE protocol changelog + +## [8.0.0](https://github.com/axone-protocol/axoned/compare/v7.1.0...v8.0.0) (2024-05-22) + + +### ⚠ BREAKING CHANGES + +* **renaming:** change denom name from uknow to uaxone + +### Features + +* **cli:** update narative of axone command description ([4ab2b38](https://github.com/axone-protocol/axoned/commit/4ab2b38bd1b868534d0e2856f8781c6421517b33)) +* **logic:** introduce "limit" flag to command "ask" ([58b4c45](https://github.com/axone-protocol/axoned/commit/58b4c45855c21885e65292482fddfe55d91ebaa5)) + + +### Code Refactoring + +* **renaming:** change denom name from uknow to uaxone ([88b9c92](https://github.com/axone-protocol/axoned/commit/88b9c92c6cfb559470f8b6bace299d8272c05bc4)) + # ØKP4 protocol changelog ## [7.1.0](https://github.com/axone-protocol/axoned/compare/v7.0.1...v7.1.0) (2024-04-02) diff --git a/app/app.go b/app/app.go index 2af16ebf..0b2c49b7 100644 --- a/app/app.go +++ b/app/app.go @@ -136,17 +136,17 @@ import ( ibckeeper "github.com/cosmos/ibc-go/v8/modules/core/keeper" ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" - axonewasm "github.com/axone-protocol/axoned/v7/app/wasm" - "github.com/axone-protocol/axoned/v7/docs" - logicmodule "github.com/axone-protocol/axoned/v7/x/logic" - logicfs "github.com/axone-protocol/axoned/v7/x/logic/fs" - logicmodulekeeper "github.com/axone-protocol/axoned/v7/x/logic/keeper" - logicmoduletypes "github.com/axone-protocol/axoned/v7/x/logic/types" - "github.com/axone-protocol/axoned/v7/x/mint" - mintkeeper "github.com/axone-protocol/axoned/v7/x/mint/keeper" - minttypes "github.com/axone-protocol/axoned/v7/x/mint/types" - "github.com/axone-protocol/axoned/v7/x/vesting" - vestingtypes "github.com/axone-protocol/axoned/v7/x/vesting/types" + axonewasm "github.com/axone-protocol/axoned/v8/app/wasm" + "github.com/axone-protocol/axoned/v8/docs" + logicmodule "github.com/axone-protocol/axoned/v8/x/logic" + logicfs "github.com/axone-protocol/axoned/v8/x/logic/fs" + logicmodulekeeper "github.com/axone-protocol/axoned/v8/x/logic/keeper" + logicmoduletypes "github.com/axone-protocol/axoned/v8/x/logic/types" + "github.com/axone-protocol/axoned/v8/x/mint" + mintkeeper "github.com/axone-protocol/axoned/v8/x/mint/keeper" + minttypes "github.com/axone-protocol/axoned/v8/x/mint/types" + "github.com/axone-protocol/axoned/v8/x/vesting" + vestingtypes "github.com/axone-protocol/axoned/v8/x/vesting/types" ) const ( diff --git a/app/encoding.go b/app/encoding.go index c5e14d9c..9b9011dc 100644 --- a/app/encoding.go +++ b/app/encoding.go @@ -9,7 +9,7 @@ import ( simtestutil "github.com/cosmos/cosmos-sdk/testutil/sims" - "github.com/axone-protocol/axoned/v7/app/params" + "github.com/axone-protocol/axoned/v8/app/params" ) // makeEncodingConfig creates an EncodingConfig test configuration. diff --git a/app/upgrades.go b/app/upgrades.go index 33d3e67c..d8834def 100644 --- a/app/upgrades.go +++ b/app/upgrades.go @@ -3,7 +3,7 @@ package app import ( "fmt" - v7 "github.com/axone-protocol/axoned/v7/app/upgrades/v7" + v7 "github.com/axone-protocol/axoned/v8/app/upgrades/v7" ) // RegisterUpgradeHandlers registers the chain upgrade handlers. diff --git a/app/wasm/query.go b/app/wasm/query.go index 9c178375..8a448bed 100644 --- a/app/wasm/query.go +++ b/app/wasm/query.go @@ -11,8 +11,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - logickeeper "github.com/axone-protocol/axoned/v7/x/logic/keeper" - logicwasm "github.com/axone-protocol/axoned/v7/x/logic/wasm" + logickeeper "github.com/axone-protocol/axoned/v8/x/logic/keeper" + logicwasm "github.com/axone-protocol/axoned/v8/x/logic/wasm" ) // customQuery represents the wasm custom query structure, it is intended to allow wasm contracts to execute queries diff --git a/client/credential/sign.go b/client/credential/sign.go index c6a438d2..8dd52c1a 100644 --- a/client/credential/sign.go +++ b/client/credential/sign.go @@ -29,7 +29,7 @@ import ( sdkerr "github.com/cosmos/cosmos-sdk/types/errors" "github.com/cosmos/cosmos-sdk/types/tx/signing" - "github.com/axone-protocol/axoned/v7/x/logic/util" + "github.com/axone-protocol/axoned/v8/x/logic/util" ) const ( diff --git a/client/keys/did.go b/client/keys/did.go index 9976f985..5de55f29 100644 --- a/client/keys/did.go +++ b/client/keys/did.go @@ -12,7 +12,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/errors" "github.com/cosmos/cosmos-sdk/version" - "github.com/axone-protocol/axoned/v7/x/logic/util" + "github.com/axone-protocol/axoned/v8/x/logic/util" ) var flagPubKeyType = "type" diff --git a/client/keys/utils.go b/client/keys/utils.go index 377c5d5f..c094231a 100644 --- a/client/keys/utils.go +++ b/client/keys/utils.go @@ -11,7 +11,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/keys" cryptokeyring "github.com/cosmos/cosmos-sdk/crypto/keyring" - "github.com/axone-protocol/axoned/v7/x/logic/util" + "github.com/axone-protocol/axoned/v8/x/logic/util" ) // KeyOutput is the output format for keys when listing them. diff --git a/cmd/axoned/cmd/config.go b/cmd/axoned/cmd/config.go index e6417075..8d987c54 100644 --- a/cmd/axoned/cmd/config.go +++ b/cmd/axoned/cmd/config.go @@ -3,7 +3,7 @@ package cmd import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/axone-protocol/axoned/v7/app" + "github.com/axone-protocol/axoned/v8/app" ) func initSDKConfig() { diff --git a/cmd/axoned/cmd/root.go b/cmd/axoned/cmd/root.go index e16074fd..56687817 100644 --- a/cmd/axoned/cmd/root.go +++ b/cmd/axoned/cmd/root.go @@ -40,10 +40,10 @@ import ( "github.com/cosmos/cosmos-sdk/x/crisis" genutilcli "github.com/cosmos/cosmos-sdk/x/genutil/client/cli" - "github.com/axone-protocol/axoned/v7/app" - appparams "github.com/axone-protocol/axoned/v7/app/params" - "github.com/axone-protocol/axoned/v7/client/credential" - axonekeys "github.com/axone-protocol/axoned/v7/client/keys" + "github.com/axone-protocol/axoned/v8/app" + appparams "github.com/axone-protocol/axoned/v8/app/params" + "github.com/axone-protocol/axoned/v8/client/credential" + axonekeys "github.com/axone-protocol/axoned/v8/client/keys" ) // NewRootCmd creates a new root command for a Cosmos SDK application. diff --git a/cmd/axoned/main.go b/cmd/axoned/main.go index a8d26828..7746bc6b 100644 --- a/cmd/axoned/main.go +++ b/cmd/axoned/main.go @@ -7,8 +7,8 @@ import ( svrcmd "github.com/cosmos/cosmos-sdk/server/cmd" - "github.com/axone-protocol/axoned/v7/app" - "github.com/axone-protocol/axoned/v7/cmd/axoned/cmd" + "github.com/axone-protocol/axoned/v8/app" + "github.com/axone-protocol/axoned/v8/cmd/axoned/cmd" ) func main() { diff --git a/go.mod b/go.mod index 2a815af5..e8186eb2 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/axone-protocol/axoned/v7 +module github.com/axone-protocol/axoned/v8 go 1.21 diff --git a/scripts/generate_command_doc.go b/scripts/generate_command_doc.go index 015cc63a..d5ae9eeb 100644 --- a/scripts/generate_command_doc.go +++ b/scripts/generate_command_doc.go @@ -5,7 +5,7 @@ import ( "github.com/spf13/cobra/doc" - "github.com/axone-protocol/axoned/v7/cmd/axoned/cmd" + "github.com/axone-protocol/axoned/v8/cmd/axoned/cmd" ) func generateCommandDocumentation() error { diff --git a/version b/version index a3fcc712..ae9a76b9 100644 --- a/version +++ b/version @@ -1 +1 @@ -7.1.0 +8.0.0 diff --git a/x/logic/client/cli/query.go b/x/logic/client/cli/query.go index ac606b44..f87e09dd 100644 --- a/x/logic/client/cli/query.go +++ b/x/logic/client/cli/query.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" - "github.com/axone-protocol/axoned/v7/x/logic/types" + "github.com/axone-protocol/axoned/v8/x/logic/types" ) // GetQueryCmd returns the cli query commands for this module. diff --git a/x/logic/client/cli/query_ask.go b/x/logic/client/cli/query_ask.go index dc19b38a..a4e6f14e 100644 --- a/x/logic/client/cli/query_ask.go +++ b/x/logic/client/cli/query_ask.go @@ -12,7 +12,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/version" - "github.com/axone-protocol/axoned/v7/x/logic/types" + "github.com/axone-protocol/axoned/v8/x/logic/types" ) var ( diff --git a/x/logic/client/cli/query_params.go b/x/logic/client/cli/query_params.go index 26b2aa5d..617a50e5 100644 --- a/x/logic/client/cli/query_params.go +++ b/x/logic/client/cli/query_params.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" - "github.com/axone-protocol/axoned/v7/x/logic/types" + "github.com/axone-protocol/axoned/v8/x/logic/types" ) func CmdQueryParams() *cobra.Command { diff --git a/x/logic/fs/filtered_fs.go b/x/logic/fs/filtered_fs.go index 5c39fb76..c0a27400 100644 --- a/x/logic/fs/filtered_fs.go +++ b/x/logic/fs/filtered_fs.go @@ -4,7 +4,7 @@ import ( "io/fs" "net/url" - "github.com/axone-protocol/axoned/v7/x/logic/util" + "github.com/axone-protocol/axoned/v8/x/logic/util" ) // FilteredFS is a wrapper around a fs.FS that filters out files that are not allowed to be read. diff --git a/x/logic/fs/filtered_fs_test.go b/x/logic/fs/filtered_fs_test.go index 0c5e95ab..395c9979 100644 --- a/x/logic/fs/filtered_fs_test.go +++ b/x/logic/fs/filtered_fs_test.go @@ -12,8 +12,8 @@ import ( . "github.com/smartystreets/goconvey/convey" - "github.com/axone-protocol/axoned/v7/x/logic/testutil" - "github.com/axone-protocol/axoned/v7/x/logic/util" + "github.com/axone-protocol/axoned/v8/x/logic/testutil" + "github.com/axone-protocol/axoned/v8/x/logic/util" ) func TestSourceFile(t *testing.T) { diff --git a/x/logic/fs/wasm.go b/x/logic/fs/wasm.go index 8b87e1b9..302c7fb0 100644 --- a/x/logic/fs/wasm.go +++ b/x/logic/fs/wasm.go @@ -12,7 +12,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/axone-protocol/axoned/v7/x/logic/types" + "github.com/axone-protocol/axoned/v8/x/logic/types" ) const ( diff --git a/x/logic/fs/wasm_test.go b/x/logic/fs/wasm_test.go index 59c7bd94..7928eea2 100644 --- a/x/logic/fs/wasm_test.go +++ b/x/logic/fs/wasm_test.go @@ -21,7 +21,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/axone-protocol/axoned/v7/x/logic/testutil" + "github.com/axone-protocol/axoned/v8/x/logic/testutil" ) func TestWasmHandler(t *testing.T) { diff --git a/x/logic/genesis.go b/x/logic/genesis.go index 2bb5d8c1..c475964c 100644 --- a/x/logic/genesis.go +++ b/x/logic/genesis.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/axone-protocol/axoned/v7/x/logic/keeper" - "github.com/axone-protocol/axoned/v7/x/logic/types" + "github.com/axone-protocol/axoned/v8/x/logic/keeper" + "github.com/axone-protocol/axoned/v8/x/logic/types" ) // InitGenesis initializes the module's state from a provided genesis state. diff --git a/x/logic/interpreter/registry.go b/x/logic/interpreter/registry.go index 4f0344c2..50af563a 100644 --- a/x/logic/interpreter/registry.go +++ b/x/logic/interpreter/registry.go @@ -8,7 +8,7 @@ import ( "github.com/ichiban/prolog" "github.com/ichiban/prolog/engine" - "github.com/axone-protocol/axoned/v7/x/logic/predicate" + "github.com/axone-protocol/axoned/v8/x/logic/predicate" ) // registry is a map from predicate names (in the form of "atom/arity") to predicates functions. diff --git a/x/logic/keeper/features_test.go b/x/logic/keeper/features_test.go index 568ecf45..29eeaebc 100644 --- a/x/logic/keeper/features_test.go +++ b/x/logic/keeper/features_test.go @@ -31,11 +31,11 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/axone-protocol/axoned/v7/x/logic" - logicfs "github.com/axone-protocol/axoned/v7/x/logic/fs" - "github.com/axone-protocol/axoned/v7/x/logic/keeper" - logictestutil "github.com/axone-protocol/axoned/v7/x/logic/testutil" - "github.com/axone-protocol/axoned/v7/x/logic/types" + "github.com/axone-protocol/axoned/v8/x/logic" + logicfs "github.com/axone-protocol/axoned/v8/x/logic/fs" + "github.com/axone-protocol/axoned/v8/x/logic/keeper" + logictestutil "github.com/axone-protocol/axoned/v8/x/logic/testutil" + "github.com/axone-protocol/axoned/v8/x/logic/types" ) var key = storetypes.NewKVStoreKey(types.StoreKey) diff --git a/x/logic/keeper/grpc_query.go b/x/logic/keeper/grpc_query.go index 5ee64ed0..76e77393 100644 --- a/x/logic/keeper/grpc_query.go +++ b/x/logic/keeper/grpc_query.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/axone-protocol/axoned/v7/x/logic/types" + "github.com/axone-protocol/axoned/v8/x/logic/types" ) var _ types.QueryServiceServer = Keeper{} diff --git a/x/logic/keeper/grpc_query_ask.go b/x/logic/keeper/grpc_query_ask.go index 66c08eb2..b082c118 100644 --- a/x/logic/keeper/grpc_query_ask.go +++ b/x/logic/keeper/grpc_query_ask.go @@ -9,9 +9,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/axone-protocol/axoned/v7/x/logic/meter" - "github.com/axone-protocol/axoned/v7/x/logic/types" - "github.com/axone-protocol/axoned/v7/x/logic/util" + "github.com/axone-protocol/axoned/v8/x/logic/meter" + "github.com/axone-protocol/axoned/v8/x/logic/types" + "github.com/axone-protocol/axoned/v8/x/logic/util" ) var defaultSolutionsLimit = sdkmath.OneUint() diff --git a/x/logic/keeper/grpc_query_ask_test.go b/x/logic/keeper/grpc_query_ask_test.go index de97de9d..f42692c1 100644 --- a/x/logic/keeper/grpc_query_ask_test.go +++ b/x/logic/keeper/grpc_query_ask_test.go @@ -21,10 +21,10 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/axone-protocol/axoned/v7/x/logic" - "github.com/axone-protocol/axoned/v7/x/logic/keeper" - logictestutil "github.com/axone-protocol/axoned/v7/x/logic/testutil" - "github.com/axone-protocol/axoned/v7/x/logic/types" + "github.com/axone-protocol/axoned/v8/x/logic" + "github.com/axone-protocol/axoned/v8/x/logic/keeper" + logictestutil "github.com/axone-protocol/axoned/v8/x/logic/testutil" + "github.com/axone-protocol/axoned/v8/x/logic/types" ) func TestGRPCAsk(t *testing.T) { diff --git a/x/logic/keeper/grpc_query_params.go b/x/logic/keeper/grpc_query_params.go index 3a70ea20..4c534ebf 100644 --- a/x/logic/keeper/grpc_query_params.go +++ b/x/logic/keeper/grpc_query_params.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/axone-protocol/axoned/v7/x/logic/types" + "github.com/axone-protocol/axoned/v8/x/logic/types" ) func (k Keeper) Params(c context.Context, req *types.QueryServiceParamsRequest) (*types.QueryServiceParamsResponse, error) { diff --git a/x/logic/keeper/grpc_query_params_test.go b/x/logic/keeper/grpc_query_params_test.go index 1ca97731..5c2976a3 100644 --- a/x/logic/keeper/grpc_query_params_test.go +++ b/x/logic/keeper/grpc_query_params_test.go @@ -19,10 +19,10 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/axone-protocol/axoned/v7/x/logic" - "github.com/axone-protocol/axoned/v7/x/logic/keeper" - logictestutil "github.com/axone-protocol/axoned/v7/x/logic/testutil" - "github.com/axone-protocol/axoned/v7/x/logic/types" + "github.com/axone-protocol/axoned/v8/x/logic" + "github.com/axone-protocol/axoned/v8/x/logic/keeper" + logictestutil "github.com/axone-protocol/axoned/v8/x/logic/testutil" + "github.com/axone-protocol/axoned/v8/x/logic/types" ) func TestGRPCParams(t *testing.T) { diff --git a/x/logic/keeper/interpreter.go b/x/logic/keeper/interpreter.go index f9de7c98..901d7bc5 100644 --- a/x/logic/keeper/interpreter.go +++ b/x/logic/keeper/interpreter.go @@ -17,13 +17,13 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/axone-protocol/axoned/v7/x/logic/fs" - "github.com/axone-protocol/axoned/v7/x/logic/interpreter" - "github.com/axone-protocol/axoned/v7/x/logic/interpreter/bootstrap" - "github.com/axone-protocol/axoned/v7/x/logic/meter" - prolog2 "github.com/axone-protocol/axoned/v7/x/logic/prolog" - "github.com/axone-protocol/axoned/v7/x/logic/types" - "github.com/axone-protocol/axoned/v7/x/logic/util" + "github.com/axone-protocol/axoned/v8/x/logic/fs" + "github.com/axone-protocol/axoned/v8/x/logic/interpreter" + "github.com/axone-protocol/axoned/v8/x/logic/interpreter/bootstrap" + "github.com/axone-protocol/axoned/v8/x/logic/meter" + prolog2 "github.com/axone-protocol/axoned/v8/x/logic/prolog" + "github.com/axone-protocol/axoned/v8/x/logic/types" + "github.com/axone-protocol/axoned/v8/x/logic/util" ) const ( diff --git a/x/logic/keeper/keeper.go b/x/logic/keeper/keeper.go index 91ef9fd3..8e268602 100644 --- a/x/logic/keeper/keeper.go +++ b/x/logic/keeper/keeper.go @@ -11,7 +11,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/axone-protocol/axoned/v7/x/logic/types" + "github.com/axone-protocol/axoned/v8/x/logic/types" ) type FSProvider = func(ctx goctx.Context) fs.FS diff --git a/x/logic/keeper/msg_server.go b/x/logic/keeper/msg_server.go index 93fcaf4d..ddf9ed5b 100644 --- a/x/logic/keeper/msg_server.go +++ b/x/logic/keeper/msg_server.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/axone-protocol/axoned/v7/x/logic/types" + "github.com/axone-protocol/axoned/v8/x/logic/types" ) type msgServer struct { diff --git a/x/logic/keeper/msg_server_test.go b/x/logic/keeper/msg_server_test.go index 2dc06e98..5867c8f1 100644 --- a/x/logic/keeper/msg_server_test.go +++ b/x/logic/keeper/msg_server_test.go @@ -17,10 +17,10 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/axone-protocol/axoned/v7/x/logic" - "github.com/axone-protocol/axoned/v7/x/logic/keeper" - logictestutil "github.com/axone-protocol/axoned/v7/x/logic/testutil" - "github.com/axone-protocol/axoned/v7/x/logic/types" + "github.com/axone-protocol/axoned/v8/x/logic" + "github.com/axone-protocol/axoned/v8/x/logic/keeper" + logictestutil "github.com/axone-protocol/axoned/v8/x/logic/testutil" + "github.com/axone-protocol/axoned/v8/x/logic/types" ) func TestUpdateParams(t *testing.T) { diff --git a/x/logic/keeper/params.go b/x/logic/keeper/params.go index bbcb30cb..d7b1ece3 100644 --- a/x/logic/keeper/params.go +++ b/x/logic/keeper/params.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/axone-protocol/axoned/v7/x/logic/types" + "github.com/axone-protocol/axoned/v8/x/logic/types" ) // GetParams get all parameters as types.Params. diff --git a/x/logic/meter/weighted_test.go b/x/logic/meter/weighted_test.go index f71d9110..cf20cb98 100644 --- a/x/logic/meter/weighted_test.go +++ b/x/logic/meter/weighted_test.go @@ -9,7 +9,7 @@ import ( . "github.com/smartystreets/goconvey/convey" - "github.com/axone-protocol/axoned/v7/x/logic/testutil" + "github.com/axone-protocol/axoned/v8/x/logic/testutil" ) func TestMultiplyUint64Overflow(t *testing.T) { diff --git a/x/logic/module.go b/x/logic/module.go index 1cf0837f..ec1cae08 100644 --- a/x/logic/module.go +++ b/x/logic/module.go @@ -16,10 +16,10 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/axone-protocol/axoned/v7/x/logic/client/cli" - "github.com/axone-protocol/axoned/v7/x/logic/exported" - "github.com/axone-protocol/axoned/v7/x/logic/keeper" - "github.com/axone-protocol/axoned/v7/x/logic/types" + "github.com/axone-protocol/axoned/v8/x/logic/client/cli" + "github.com/axone-protocol/axoned/v8/x/logic/exported" + "github.com/axone-protocol/axoned/v8/x/logic/keeper" + "github.com/axone-protocol/axoned/v8/x/logic/types" ) var ( diff --git a/x/logic/predicate/address.go b/x/logic/predicate/address.go index 2bc8f954..4c56b470 100644 --- a/x/logic/predicate/address.go +++ b/x/logic/predicate/address.go @@ -5,7 +5,7 @@ import ( bech322 "github.com/cosmos/cosmos-sdk/types/bech32" - "github.com/axone-protocol/axoned/v7/x/logic/prolog" + "github.com/axone-protocol/axoned/v8/x/logic/prolog" ) // Bech32Address is a predicate that convert a [bech32] encoded string into [base64] bytes and give the address prefix, diff --git a/x/logic/predicate/bank.go b/x/logic/predicate/bank.go index 81a01941..1cbabacf 100644 --- a/x/logic/predicate/bank.go +++ b/x/logic/predicate/bank.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/axone-protocol/axoned/v7/x/logic/prolog" - "github.com/axone-protocol/axoned/v7/x/logic/types" + "github.com/axone-protocol/axoned/v8/x/logic/prolog" + "github.com/axone-protocol/axoned/v8/x/logic/types" ) // BankBalances is a predicate which unifies the given terms with the list of balances (coins) of the given account. diff --git a/x/logic/predicate/bank_test.go b/x/logic/predicate/bank_test.go index dfa7248b..31512863 100644 --- a/x/logic/predicate/bank_test.go +++ b/x/logic/predicate/bank_test.go @@ -22,8 +22,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" bank "github.com/cosmos/cosmos-sdk/x/bank/types" - "github.com/axone-protocol/axoned/v7/x/logic/testutil" - "github.com/axone-protocol/axoned/v7/x/logic/types" + "github.com/axone-protocol/axoned/v8/x/logic/testutil" + "github.com/axone-protocol/axoned/v8/x/logic/types" ) func TestBank(t *testing.T) { diff --git a/x/logic/predicate/block.go b/x/logic/predicate/block.go index 055ab5a0..0b05e4d1 100644 --- a/x/logic/predicate/block.go +++ b/x/logic/predicate/block.go @@ -5,7 +5,7 @@ import ( "github.com/ichiban/prolog/engine" - "github.com/axone-protocol/axoned/v7/x/logic/prolog" + "github.com/axone-protocol/axoned/v8/x/logic/prolog" ) // BlockHeight is a predicate which unifies the given term with the current block height. diff --git a/x/logic/predicate/builtin_test.go b/x/logic/predicate/builtin_test.go index b1e47b41..a0d186b1 100644 --- a/x/logic/predicate/builtin_test.go +++ b/x/logic/predicate/builtin_test.go @@ -18,8 +18,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/axone-protocol/axoned/v7/x/logic/testutil" - "github.com/axone-protocol/axoned/v7/x/logic/util" + "github.com/axone-protocol/axoned/v8/x/logic/testutil" + "github.com/axone-protocol/axoned/v8/x/logic/util" ) func TestWrite(t *testing.T) { diff --git a/x/logic/predicate/chain.go b/x/logic/predicate/chain.go index c5457072..0dfe07d3 100644 --- a/x/logic/predicate/chain.go +++ b/x/logic/predicate/chain.go @@ -5,7 +5,7 @@ import ( "github.com/ichiban/prolog/engine" - "github.com/axone-protocol/axoned/v7/x/logic/prolog" + "github.com/axone-protocol/axoned/v8/x/logic/prolog" ) // ChainID is a predicate which unifies the given term with the current chain ID. The signature is: diff --git a/x/logic/predicate/chain_test.go b/x/logic/predicate/chain_test.go index 686d232e..1169afe1 100644 --- a/x/logic/predicate/chain_test.go +++ b/x/logic/predicate/chain_test.go @@ -17,7 +17,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/axone-protocol/axoned/v7/x/logic/testutil" + "github.com/axone-protocol/axoned/v8/x/logic/testutil" ) func TestChainID(t *testing.T) { diff --git a/x/logic/predicate/crypto.go b/x/logic/predicate/crypto.go index c1f6bc92..508b89c7 100644 --- a/x/logic/predicate/crypto.go +++ b/x/logic/predicate/crypto.go @@ -5,8 +5,8 @@ import ( "github.com/ichiban/prolog/engine" - "github.com/axone-protocol/axoned/v7/x/logic/prolog" - "github.com/axone-protocol/axoned/v7/x/logic/util" + "github.com/axone-protocol/axoned/v8/x/logic/prolog" + "github.com/axone-protocol/axoned/v8/x/logic/util" ) // CryptoDataHash is a predicate that computes the Hash of the given Data using different algorithms. diff --git a/x/logic/predicate/crypto_test.go b/x/logic/predicate/crypto_test.go index 7eb5de30..2dfea5e5 100644 --- a/x/logic/predicate/crypto_test.go +++ b/x/logic/predicate/crypto_test.go @@ -19,7 +19,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/axone-protocol/axoned/v7/x/logic/testutil" + "github.com/axone-protocol/axoned/v8/x/logic/testutil" ) func TestCryptoOperations(t *testing.T) { diff --git a/x/logic/predicate/did.go b/x/logic/predicate/did.go index 4adee51c..3d719991 100644 --- a/x/logic/predicate/did.go +++ b/x/logic/predicate/did.go @@ -7,7 +7,7 @@ import ( godid "github.com/nuts-foundation/go-did/did" "github.com/samber/lo" - "github.com/axone-protocol/axoned/v7/x/logic/prolog" + "github.com/axone-protocol/axoned/v8/x/logic/prolog" ) // DIDPrefix is the prefix for a DID. diff --git a/x/logic/predicate/did_test.go b/x/logic/predicate/did_test.go index a29e9599..85b42f49 100644 --- a/x/logic/predicate/did_test.go +++ b/x/logic/predicate/did_test.go @@ -19,7 +19,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/axone-protocol/axoned/v7/x/logic/testutil" + "github.com/axone-protocol/axoned/v8/x/logic/testutil" ) func TestDID(t *testing.T) { diff --git a/x/logic/predicate/encoding.go b/x/logic/predicate/encoding.go index f220fca0..23f9ba28 100644 --- a/x/logic/predicate/encoding.go +++ b/x/logic/predicate/encoding.go @@ -5,7 +5,7 @@ import ( "github.com/ichiban/prolog/engine" - "github.com/axone-protocol/axoned/v7/x/logic/prolog" + "github.com/axone-protocol/axoned/v8/x/logic/prolog" ) // HexBytes is a predicate that unifies hexadecimal encoded bytes to a list of bytes. diff --git a/x/logic/predicate/encoding_test.go b/x/logic/predicate/encoding_test.go index 64065e43..d6ce9906 100644 --- a/x/logic/predicate/encoding_test.go +++ b/x/logic/predicate/encoding_test.go @@ -19,7 +19,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/axone-protocol/axoned/v7/x/logic/testutil" + "github.com/axone-protocol/axoned/v8/x/logic/testutil" ) func TestHexBytesPredicate(t *testing.T) { diff --git a/x/logic/predicate/file.go b/x/logic/predicate/file.go index 459d935a..703e4483 100644 --- a/x/logic/predicate/file.go +++ b/x/logic/predicate/file.go @@ -8,7 +8,7 @@ import ( "github.com/ichiban/prolog/engine" - "github.com/axone-protocol/axoned/v7/x/logic/prolog" + "github.com/axone-protocol/axoned/v8/x/logic/prolog" ) var atomOpen = engine.NewAtom("open") diff --git a/x/logic/predicate/json.go b/x/logic/predicate/json.go index 802f084b..e5f8daf8 100644 --- a/x/logic/predicate/json.go +++ b/x/logic/predicate/json.go @@ -13,7 +13,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/axone-protocol/axoned/v7/x/logic/prolog" + "github.com/axone-protocol/axoned/v8/x/logic/prolog" ) // JSONProlog is a predicate that will unify a JSON string into prolog terms and vice versa. diff --git a/x/logic/predicate/json_test.go b/x/logic/predicate/json_test.go index 855c0522..cfebaf3e 100644 --- a/x/logic/predicate/json_test.go +++ b/x/logic/predicate/json_test.go @@ -19,7 +19,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/axone-protocol/axoned/v7/x/logic/testutil" + "github.com/axone-protocol/axoned/v8/x/logic/testutil" ) func TestJsonProlog(t *testing.T) { diff --git a/x/logic/predicate/string.go b/x/logic/predicate/string.go index 27926b8c..dafe9cd6 100644 --- a/x/logic/predicate/string.go +++ b/x/logic/predicate/string.go @@ -7,7 +7,7 @@ import ( "github.com/ichiban/prolog/engine" - "github.com/axone-protocol/axoned/v7/x/logic/prolog" + "github.com/axone-protocol/axoned/v8/x/logic/prolog" ) // ReadString is a predicate that reads characters from the provided Stream and unifies them with String. diff --git a/x/logic/predicate/string_test.go b/x/logic/predicate/string_test.go index f901371c..a32ba394 100644 --- a/x/logic/predicate/string_test.go +++ b/x/logic/predicate/string_test.go @@ -19,7 +19,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/axone-protocol/axoned/v7/x/logic/testutil" + "github.com/axone-protocol/axoned/v8/x/logic/testutil" ) func TestReadString(t *testing.T) { diff --git a/x/logic/predicate/uri.go b/x/logic/predicate/uri.go index 5e4b80da..eedbda92 100644 --- a/x/logic/predicate/uri.go +++ b/x/logic/predicate/uri.go @@ -3,7 +3,7 @@ package predicate import ( "github.com/ichiban/prolog/engine" - "github.com/axone-protocol/axoned/v7/x/logic/prolog" + "github.com/axone-protocol/axoned/v8/x/logic/prolog" ) // URIEncoded is a predicate that unifies the given URI component with the given encoded or decoded string. diff --git a/x/logic/predicate/uri_test.go b/x/logic/predicate/uri_test.go index c99802d9..86aaff63 100644 --- a/x/logic/predicate/uri_test.go +++ b/x/logic/predicate/uri_test.go @@ -19,7 +19,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/axone-protocol/axoned/v7/x/logic/testutil" + "github.com/axone-protocol/axoned/v8/x/logic/testutil" ) func TestURIEncoded(t *testing.T) { diff --git a/x/logic/predicate/util.go b/x/logic/predicate/util.go index 95ba7d82..4d6c0189 100644 --- a/x/logic/predicate/util.go +++ b/x/logic/predicate/util.go @@ -7,8 +7,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/axone-protocol/axoned/v7/x/logic/prolog" - "github.com/axone-protocol/axoned/v7/x/logic/types" + "github.com/axone-protocol/axoned/v8/x/logic/prolog" + "github.com/axone-protocol/axoned/v8/x/logic/types" ) // SortBalances by coin denomination. diff --git a/x/logic/prolog/assert.go b/x/logic/prolog/assert.go index f1b99922..d29dd7d5 100644 --- a/x/logic/prolog/assert.go +++ b/x/logic/prolog/assert.go @@ -7,7 +7,7 @@ import ( "github.com/ichiban/prolog/engine" "github.com/samber/lo" - "github.com/axone-protocol/axoned/v7/x/logic/util" + "github.com/axone-protocol/axoned/v8/x/logic/util" ) // PredicateMatches returns a function that matches the given predicate against the given other predicate. diff --git a/x/logic/prolog/assert_test.go b/x/logic/prolog/assert_test.go index 8bd4f381..f81be175 100644 --- a/x/logic/prolog/assert_test.go +++ b/x/logic/prolog/assert_test.go @@ -9,8 +9,8 @@ import ( . "github.com/smartystreets/goconvey/convey" - "github.com/axone-protocol/axoned/v7/x/logic/testutil" - "github.com/axone-protocol/axoned/v7/x/logic/util" + "github.com/axone-protocol/axoned/v8/x/logic/testutil" + "github.com/axone-protocol/axoned/v8/x/logic/util" ) var ( diff --git a/x/logic/prolog/encode.go b/x/logic/prolog/encode.go index 3a6564ff..30501edb 100644 --- a/x/logic/prolog/encode.go +++ b/x/logic/prolog/encode.go @@ -5,7 +5,7 @@ import ( "github.com/ichiban/prolog/engine" - "github.com/axone-protocol/axoned/v7/x/logic/util" + "github.com/axone-protocol/axoned/v8/x/logic/util" ) // Encode encodes the given string with the given encoding. diff --git a/x/logic/testutil/logic.go b/x/logic/testutil/logic.go index 376eac69..0e830477 100644 --- a/x/logic/testutil/logic.go +++ b/x/logic/testutil/logic.go @@ -8,7 +8,7 @@ import ( "github.com/ichiban/prolog" "github.com/ichiban/prolog/engine" - "github.com/axone-protocol/axoned/v7/x/logic/interpreter/bootstrap" + "github.com/axone-protocol/axoned/v8/x/logic/interpreter/bootstrap" ) type TermResults map[string]prolog.TermString diff --git a/x/logic/types/genesis_test.go b/x/logic/types/genesis_test.go index 65f5193a..cee1eb9d 100644 --- a/x/logic/types/genesis_test.go +++ b/x/logic/types/genesis_test.go @@ -5,7 +5,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/axone-protocol/axoned/v7/x/logic/types" + "github.com/axone-protocol/axoned/v8/x/logic/types" ) func TestGenesisState_Validate(t *testing.T) { diff --git a/x/logic/types/params_test.go b/x/logic/types/params_test.go index abb75d22..dad490d6 100644 --- a/x/logic/types/params_test.go +++ b/x/logic/types/params_test.go @@ -8,7 +8,7 @@ import ( "cosmossdk.io/math" - "github.com/axone-protocol/axoned/v7/x/logic/types" + "github.com/axone-protocol/axoned/v8/x/logic/types" ) func TestValidateParams(t *testing.T) { diff --git a/x/logic/util/prolog.go b/x/logic/util/prolog.go index 2330d711..7aea91ef 100644 --- a/x/logic/util/prolog.go +++ b/x/logic/util/prolog.go @@ -10,7 +10,7 @@ import ( sdkmath "cosmossdk.io/math" - "github.com/axone-protocol/axoned/v7/x/logic/types" + "github.com/axone-protocol/axoned/v8/x/logic/types" ) const ( diff --git a/x/logic/wasm/query.go b/x/logic/wasm/query.go index abf2ae50..1b7a7b25 100644 --- a/x/logic/wasm/query.go +++ b/x/logic/wasm/query.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/axone-protocol/axoned/v7/x/logic/keeper" - "github.com/axone-protocol/axoned/v7/x/logic/types" + "github.com/axone-protocol/axoned/v8/x/logic/keeper" + "github.com/axone-protocol/axoned/v8/x/logic/types" ) // LogicQuerier ease the bridge between the logic module with the wasm CustomQuerier to allow wasm contracts to query diff --git a/x/logic/wasm/types.go b/x/logic/wasm/types.go index 1d5aafe8..223112ef 100644 --- a/x/logic/wasm/types.go +++ b/x/logic/wasm/types.go @@ -3,7 +3,7 @@ package wasm import ( sdkmath "cosmossdk.io/math" - "github.com/axone-protocol/axoned/v7/x/logic/types" + "github.com/axone-protocol/axoned/v8/x/logic/types" ) // AskQuery implements the wasm custom Ask query JSON schema, it basically redefined the Ask gRPC request parameters diff --git a/x/mint/abci.go b/x/mint/abci.go index 05c4b774..4945b09a 100644 --- a/x/mint/abci.go +++ b/x/mint/abci.go @@ -7,8 +7,8 @@ import ( "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/axone-protocol/axoned/v7/x/mint/keeper" - "github.com/axone-protocol/axoned/v7/x/mint/types" + "github.com/axone-protocol/axoned/v8/x/mint/keeper" + "github.com/axone-protocol/axoned/v8/x/mint/types" ) // BeginBlocker mints new tokens for the previous block. diff --git a/x/mint/client/cli/query.go b/x/mint/client/cli/query.go index 34d205d9..729d9c22 100644 --- a/x/mint/client/cli/query.go +++ b/x/mint/client/cli/query.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" - "github.com/axone-protocol/axoned/v7/x/mint/types" + "github.com/axone-protocol/axoned/v8/x/mint/types" ) // GetQueryCmd returns the cli query commands for the minting module. diff --git a/x/mint/client/cli/query_test.go b/x/mint/client/cli/query_test.go index 42b188ff..1ee06eda 100644 --- a/x/mint/client/cli/query_test.go +++ b/x/mint/client/cli/query_test.go @@ -18,8 +18,8 @@ import ( clitestutil "github.com/cosmos/cosmos-sdk/testutil/cli" testutilmod "github.com/cosmos/cosmos-sdk/types/module/testutil" - "github.com/axone-protocol/axoned/v7/x/mint" - mintcli "github.com/axone-protocol/axoned/v7/x/mint/client/cli" + "github.com/axone-protocol/axoned/v8/x/mint" + mintcli "github.com/axone-protocol/axoned/v8/x/mint/client/cli" ) func TestGetCmdQueryParams(t *testing.T) { diff --git a/x/mint/keeper/genesis.go b/x/mint/keeper/genesis.go index c6c8439a..1394c76a 100644 --- a/x/mint/keeper/genesis.go +++ b/x/mint/keeper/genesis.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/axone-protocol/axoned/v7/x/mint/types" + "github.com/axone-protocol/axoned/v8/x/mint/types" ) // InitGenesis new mint genesis. diff --git a/x/mint/keeper/genesis_test.go b/x/mint/keeper/genesis_test.go index 6d0ce556..b997c1c4 100644 --- a/x/mint/keeper/genesis_test.go +++ b/x/mint/keeper/genesis_test.go @@ -17,10 +17,10 @@ import ( moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/axone-protocol/axoned/v7/x/mint" - "github.com/axone-protocol/axoned/v7/x/mint/keeper" - minttestutil "github.com/axone-protocol/axoned/v7/x/mint/testutil" - "github.com/axone-protocol/axoned/v7/x/mint/types" + "github.com/axone-protocol/axoned/v8/x/mint" + "github.com/axone-protocol/axoned/v8/x/mint/keeper" + minttestutil "github.com/axone-protocol/axoned/v8/x/mint/testutil" + "github.com/axone-protocol/axoned/v8/x/mint/types" ) var minterAcc = authtypes.NewEmptyModuleAccount(types.ModuleName, authtypes.Minter) diff --git a/x/mint/keeper/grpc_query.go b/x/mint/keeper/grpc_query.go index 5fc34dfe..3fdd5ba5 100644 --- a/x/mint/keeper/grpc_query.go +++ b/x/mint/keeper/grpc_query.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "github.com/axone-protocol/axoned/v7/x/mint/types" + "github.com/axone-protocol/axoned/v8/x/mint/types" ) var _ types.QueryServer = queryServer{} diff --git a/x/mint/keeper/grpc_query_test.go b/x/mint/keeper/grpc_query_test.go index 090f8c18..2fc932ed 100644 --- a/x/mint/keeper/grpc_query_test.go +++ b/x/mint/keeper/grpc_query_test.go @@ -17,10 +17,10 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/axone-protocol/axoned/v7/x/mint" - "github.com/axone-protocol/axoned/v7/x/mint/keeper" - minttestutil "github.com/axone-protocol/axoned/v7/x/mint/testutil" - "github.com/axone-protocol/axoned/v7/x/mint/types" + "github.com/axone-protocol/axoned/v8/x/mint" + "github.com/axone-protocol/axoned/v8/x/mint/keeper" + minttestutil "github.com/axone-protocol/axoned/v8/x/mint/testutil" + "github.com/axone-protocol/axoned/v8/x/mint/types" ) type MintTestSuite struct { diff --git a/x/mint/keeper/keeper.go b/x/mint/keeper/keeper.go index 9acbed64..24cd6b21 100644 --- a/x/mint/keeper/keeper.go +++ b/x/mint/keeper/keeper.go @@ -11,7 +11,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/axone-protocol/axoned/v7/x/mint/types" + "github.com/axone-protocol/axoned/v8/x/mint/types" ) // Keeper of the mint store. diff --git a/x/mint/keeper/keeper_test.go b/x/mint/keeper/keeper_test.go index 5e0a0889..59c75bab 100644 --- a/x/mint/keeper/keeper_test.go +++ b/x/mint/keeper/keeper_test.go @@ -16,10 +16,10 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/axone-protocol/axoned/v7/x/mint" - "github.com/axone-protocol/axoned/v7/x/mint/keeper" - minttestutil "github.com/axone-protocol/axoned/v7/x/mint/testutil" - "github.com/axone-protocol/axoned/v7/x/mint/types" + "github.com/axone-protocol/axoned/v8/x/mint" + "github.com/axone-protocol/axoned/v8/x/mint/keeper" + minttestutil "github.com/axone-protocol/axoned/v8/x/mint/testutil" + "github.com/axone-protocol/axoned/v8/x/mint/types" ) type IntegrationTestSuite struct { diff --git a/x/mint/keeper/msg_server.go b/x/mint/keeper/msg_server.go index fffcef77..a0490a6d 100644 --- a/x/mint/keeper/msg_server.go +++ b/x/mint/keeper/msg_server.go @@ -7,7 +7,7 @@ import ( govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/axone-protocol/axoned/v7/x/mint/types" + "github.com/axone-protocol/axoned/v8/x/mint/types" ) var _ types.MsgServer = msgServer{} diff --git a/x/mint/keeper/msg_server_test.go b/x/mint/keeper/msg_server_test.go index 71ea80c4..fc77ef48 100644 --- a/x/mint/keeper/msg_server_test.go +++ b/x/mint/keeper/msg_server_test.go @@ -5,7 +5,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/axone-protocol/axoned/v7/x/mint/types" + "github.com/axone-protocol/axoned/v8/x/mint/types" ) func (s *IntegrationTestSuite) TestUpdateParams() { diff --git a/x/mint/module.go b/x/mint/module.go index 8396d274..fc202f08 100644 --- a/x/mint/module.go +++ b/x/mint/module.go @@ -17,10 +17,10 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/axone-protocol/axoned/v7/x/mint/client/cli" - "github.com/axone-protocol/axoned/v7/x/mint/keeper" - "github.com/axone-protocol/axoned/v7/x/mint/simulation" - "github.com/axone-protocol/axoned/v7/x/mint/types" + "github.com/axone-protocol/axoned/v8/x/mint/client/cli" + "github.com/axone-protocol/axoned/v8/x/mint/keeper" + "github.com/axone-protocol/axoned/v8/x/mint/simulation" + "github.com/axone-protocol/axoned/v8/x/mint/types" ) var ( diff --git a/x/mint/simulation/decoder.go b/x/mint/simulation/decoder.go index ad95f97a..38be30f2 100644 --- a/x/mint/simulation/decoder.go +++ b/x/mint/simulation/decoder.go @@ -7,7 +7,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec" "github.com/cosmos/cosmos-sdk/types/kv" - "github.com/axone-protocol/axoned/v7/x/mint/types" + "github.com/axone-protocol/axoned/v8/x/mint/types" ) // NewDecodeStore returns a decoder function closure that unmarshals the KVPair's diff --git a/x/mint/simulation/decoder_test.go b/x/mint/simulation/decoder_test.go index 395d3b07..ac769fe3 100644 --- a/x/mint/simulation/decoder_test.go +++ b/x/mint/simulation/decoder_test.go @@ -11,9 +11,9 @@ import ( "github.com/cosmos/cosmos-sdk/types/kv" moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" - "github.com/axone-protocol/axoned/v7/x/mint" - "github.com/axone-protocol/axoned/v7/x/mint/simulation" - "github.com/axone-protocol/axoned/v7/x/mint/types" + "github.com/axone-protocol/axoned/v8/x/mint" + "github.com/axone-protocol/axoned/v8/x/mint/simulation" + "github.com/axone-protocol/axoned/v8/x/mint/types" ) func TestDecodeStore(t *testing.T) { diff --git a/x/mint/simulation/genesis.go b/x/mint/simulation/genesis.go index afa9231c..bb23a68c 100644 --- a/x/mint/simulation/genesis.go +++ b/x/mint/simulation/genesis.go @@ -12,7 +12,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/axone-protocol/axoned/v7/x/mint/types" + "github.com/axone-protocol/axoned/v8/x/mint/types" ) // Simulation parameter constants. diff --git a/x/mint/simulation/genesis_test.go b/x/mint/simulation/genesis_test.go index 6640de57..103f094c 100644 --- a/x/mint/simulation/genesis_test.go +++ b/x/mint/simulation/genesis_test.go @@ -15,8 +15,8 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/axone-protocol/axoned/v7/x/mint/simulation" - "github.com/axone-protocol/axoned/v7/x/mint/types" + "github.com/axone-protocol/axoned/v8/x/mint/simulation" + "github.com/axone-protocol/axoned/v8/x/mint/types" ) // TestRandomizedGenState tests the normal scenario of applying RandomizedGenState. diff --git a/x/mint/simulation/proposals.go b/x/mint/simulation/proposals.go index 64b51e22..bdc5329f 100644 --- a/x/mint/simulation/proposals.go +++ b/x/mint/simulation/proposals.go @@ -10,7 +10,7 @@ import ( simtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" - "github.com/axone-protocol/axoned/v7/x/mint/types" + "github.com/axone-protocol/axoned/v8/x/mint/types" ) // Simulation operation weights constants. diff --git a/x/mint/simulation/proposals_test.go b/x/mint/simulation/proposals_test.go index ce7cc36c..0d158af5 100644 --- a/x/mint/simulation/proposals_test.go +++ b/x/mint/simulation/proposals_test.go @@ -14,8 +14,8 @@ import ( "github.com/cosmos/cosmos-sdk/types/address" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" - "github.com/axone-protocol/axoned/v7/x/mint/simulation" - "github.com/axone-protocol/axoned/v7/x/mint/types" + "github.com/axone-protocol/axoned/v8/x/mint/simulation" + "github.com/axone-protocol/axoned/v8/x/mint/types" ) func TestProposalMsgs(t *testing.T) { diff --git a/x/vesting/client/cli/tx.go b/x/vesting/client/cli/tx.go index 02f27fc1..4050c897 100644 --- a/x/vesting/client/cli/tx.go +++ b/x/vesting/client/cli/tx.go @@ -13,7 +13,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/tx" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/axone-protocol/axoned/v7/x/vesting/types" + "github.com/axone-protocol/axoned/v8/x/vesting/types" ) // FlagDelayed Transaction command flags. diff --git a/x/vesting/module.go b/x/vesting/module.go index 079851d5..e84e4284 100644 --- a/x/vesting/module.go +++ b/x/vesting/module.go @@ -18,8 +18,8 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" "github.com/cosmos/cosmos-sdk/x/auth/keeper" - "github.com/axone-protocol/axoned/v7/x/vesting/client/cli" - "github.com/axone-protocol/axoned/v7/x/vesting/types" + "github.com/axone-protocol/axoned/v8/x/vesting/client/cli" + "github.com/axone-protocol/axoned/v8/x/vesting/types" ) var ( diff --git a/x/vesting/msg_server.go b/x/vesting/msg_server.go index e88c07fe..f96f0a7a 100644 --- a/x/vesting/msg_server.go +++ b/x/vesting/msg_server.go @@ -13,7 +13,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/auth/keeper" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/axone-protocol/axoned/v7/x/vesting/types" + "github.com/axone-protocol/axoned/v8/x/vesting/types" ) type msgServer struct { diff --git a/x/vesting/msg_server_test.go b/x/vesting/msg_server_test.go index b2c3e506..38e077d8 100644 --- a/x/vesting/msg_server_test.go +++ b/x/vesting/msg_server_test.go @@ -20,9 +20,9 @@ import ( authkeeper "github.com/cosmos/cosmos-sdk/x/auth/keeper" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/axone-protocol/axoned/v7/x/vesting" - vestingtestutil "github.com/axone-protocol/axoned/v7/x/vesting/testutil" - vestingtypes "github.com/axone-protocol/axoned/v7/x/vesting/types" + "github.com/axone-protocol/axoned/v8/x/vesting" + vestingtestutil "github.com/axone-protocol/axoned/v8/x/vesting/testutil" + vestingtypes "github.com/axone-protocol/axoned/v8/x/vesting/types" ) var ( diff --git a/x/vesting/types/codec.go b/x/vesting/types/codec.go index 192b49eb..72802262 100644 --- a/x/vesting/types/codec.go +++ b/x/vesting/types/codec.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/types/msgservice" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/axone-protocol/axoned/v7/x/vesting/exported" + "github.com/axone-protocol/axoned/v8/x/vesting/exported" ) // RegisterLegacyAminoCodec registers the vesting interfaces and concrete types on the diff --git a/x/vesting/types/vesting_account.go b/x/vesting/types/vesting_account.go index f85f8601..c8c420e4 100644 --- a/x/vesting/types/vesting_account.go +++ b/x/vesting/types/vesting_account.go @@ -12,7 +12,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - vestexported "github.com/axone-protocol/axoned/v7/x/vesting/exported" + vestexported "github.com/axone-protocol/axoned/v8/x/vesting/exported" ) // Compile-time type assertions. diff --git a/x/vesting/types/vesting_account_test.go b/x/vesting/types/vesting_account_test.go index 74cabcdb..1581b343 100644 --- a/x/vesting/types/vesting_account_test.go +++ b/x/vesting/types/vesting_account_test.go @@ -22,8 +22,8 @@ import ( "github.com/cosmos/cosmos-sdk/x/auth/keeper" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/axone-protocol/axoned/v7/x/vesting" - "github.com/axone-protocol/axoned/v7/x/vesting/types" + "github.com/axone-protocol/axoned/v8/x/vesting" + "github.com/axone-protocol/axoned/v8/x/vesting/types" ) var (