diff --git a/CHANGELOG.md b/CHANGELOG.md index f51c4cd6..74ee0295 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,50 @@ # AXONE protocol changelog +## [9.0.0](https://github.com/axone-protocol/axoned/compare/v8.0.0...v9.0.0) (2024-08-02) + + +### ⚠ BREAKING CHANGES + +* **logic:** remove unsafe prolog predicates from registry +* **logic:** add max_variables limits params +* **logic:** change interpreter by our fork axone-protocol/prolog +* **logic:** remove max gas module parameter +* **wasm:** bump wasm to 0.52.0 + +### Features + +* **app:** update application init ([cee814a](https://github.com/axone-protocol/axoned/commit/cee814a391f1d1ec6fa6a73408bf90e9bc831d84)) +* handle MaxVariables error limit exceeded ([040a765](https://github.com/axone-protocol/axoned/commit/040a765ea934eb5c5dd0fa466758bd0385234a7e)) +* **logic:** add max_variables limits params ([94e54e0](https://github.com/axone-protocol/axoned/commit/94e54e04ee22c73d7fbf4fcddf20097b9b727816)) +* **logic:** mark rpc queries as safe ([66b1b8c](https://github.com/axone-protocol/axoned/commit/66b1b8cc4b4c35d94115b8fd80f7c3418de9ca9a)) +* **vesting:** update to align with cosmos-sdk v0.50.4 ([7536aee](https://github.com/axone-protocol/axoned/commit/7536aee0d8f84e5dfb11d26d3819289c45a2013f)) +* **wasm:** bump wasm to 0.52.0 ([c1e404c](https://github.com/axone-protocol/axoned/commit/c1e404c7ebd6684a9cb048046c905e1d71f399de)) +* **wasm:** use wasm provided build in capabilities ([77c1063](https://github.com/axone-protocol/axoned/commit/77c10635a901963768f6f2e55f011994235cfd2f)) + + +### Bug Fixes + +* **docs:** generate docs with module subfolder on proto ([fde166c](https://github.com/axone-protocol/axoned/commit/fde166cda8dec105b958a4f2ba4b5f1a15284b34)) +* **gov:** properly configure legacy props router ([74df1c7](https://github.com/axone-protocol/axoned/commit/74df1c73637329be6af5ec7e637321b01d0201a1)) +* **logic:** handle and return out of gas error at GRPC level ([ff3de76](https://github.com/axone-protocol/axoned/commit/ff3de76a201811d44eb8ca80b80c892b9feed767)) +* **logic:** remove max gas module parameter ([db9164b](https://github.com/axone-protocol/axoned/commit/db9164b7037e91c656d738d0f9f6b9c6f3027a3e)) +* **logic:** remove unsafe prolog predicates from registry ([293da10](https://github.com/axone-protocol/axoned/commit/293da10e8c24ec1712c8c700330beb9e213c3819)) +* **logic:** use ordered predicate register ([0c99e9c](https://github.com/axone-protocol/axoned/commit/0c99e9c3ae6d367f5870bab484694e031348516f)) +* **proto:** remove unused proto def from global registry ([798fdcd](https://github.com/axone-protocol/axoned/commit/798fdcded13ee8c4336b408dabd0d490bfc6d95e)) +* use new method for instantiate interpreter ([e08560d](https://github.com/axone-protocol/axoned/commit/e08560d02564c5d0fa6e21360703c8229e6897dc)) +* **vesting:** format and lint ([c018447](https://github.com/axone-protocol/axoned/commit/c018447c95832720e419282c7695d0655765a775)) +* **vesting:** reintroduce the add-genesis-account custom command to include cliff vesting account ([4b4bafb](https://github.com/axone-protocol/axoned/commit/4b4bafbc61a8d2ffb46fa1a4ca28eb35435b0d70)) + + +### Performance Improvements + +* **logic:** reduce read params in ask query ([92e6d05](https://github.com/axone-protocol/axoned/commit/92e6d054d06cd3096a199d3a1ba8d504ec4a3520)) + + +### Code Refactoring + +* **logic:** change interpreter by our fork axone-protocol/prolog ([c1b3035](https://github.com/axone-protocol/axoned/commit/c1b30352f084aeb6e91347d3c274f5a361bc6858)) + ## [8.0.0](https://github.com/axone-protocol/axoned/compare/v7.1.0...v8.0.0) (2024-05-22) diff --git a/app/app.go b/app/app.go index 4465983a..1bf01dec 100644 --- a/app/app.go +++ b/app/app.go @@ -134,18 +134,18 @@ 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/v8/app/wasm" - "github.com/axone-protocol/axoned/v8/docs" - logicmodule "github.com/axone-protocol/axoned/v8/x/logic" - "github.com/axone-protocol/axoned/v8/x/logic/fs/composite" - wasm2 "github.com/axone-protocol/axoned/v8/x/logic/fs/wasm" - 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" + axonewasm "github.com/axone-protocol/axoned/v9/app/wasm" + "github.com/axone-protocol/axoned/v9/docs" + logicmodule "github.com/axone-protocol/axoned/v9/x/logic" + "github.com/axone-protocol/axoned/v9/x/logic/fs/composite" + wasm2 "github.com/axone-protocol/axoned/v9/x/logic/fs/wasm" + logicmodulekeeper "github.com/axone-protocol/axoned/v9/x/logic/keeper" + logicmoduletypes "github.com/axone-protocol/axoned/v9/x/logic/types" + "github.com/axone-protocol/axoned/v9/x/mint" + mintkeeper "github.com/axone-protocol/axoned/v9/x/mint/keeper" + minttypes "github.com/axone-protocol/axoned/v9/x/mint/types" + "github.com/axone-protocol/axoned/v9/x/vesting" + vestingtypes "github.com/axone-protocol/axoned/v9/x/vesting/types" ) const ( diff --git a/app/encoding.go b/app/encoding.go index 9b9011dc..4455322a 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/v8/app/params" + "github.com/axone-protocol/axoned/v9/app/params" ) // makeEncodingConfig creates an EncodingConfig test configuration. diff --git a/app/upgrades.go b/app/upgrades.go index d8834def..90cac19f 100644 --- a/app/upgrades.go +++ b/app/upgrades.go @@ -3,7 +3,7 @@ package app import ( "fmt" - v7 "github.com/axone-protocol/axoned/v8/app/upgrades/v7" + v7 "github.com/axone-protocol/axoned/v9/app/upgrades/v7" ) // RegisterUpgradeHandlers registers the chain upgrade handlers. diff --git a/app/wasm/query.go b/app/wasm/query.go index 8a448bed..9b8fd7a4 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/v8/x/logic/keeper" - logicwasm "github.com/axone-protocol/axoned/v8/x/logic/wasm" + logickeeper "github.com/axone-protocol/axoned/v9/x/logic/keeper" + logicwasm "github.com/axone-protocol/axoned/v9/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 8dd52c1a..f90f68bd 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/v8/x/logic/util" + "github.com/axone-protocol/axoned/v9/x/logic/util" ) const ( diff --git a/client/keys/did.go b/client/keys/did.go index 5de55f29..fd4d2df4 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/v8/x/logic/util" + "github.com/axone-protocol/axoned/v9/x/logic/util" ) var flagPubKeyType = "type" diff --git a/client/keys/utils.go b/client/keys/utils.go index c094231a..ddfcc74a 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/v8/x/logic/util" + "github.com/axone-protocol/axoned/v9/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 8d987c54..0042d739 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/v8/app" + "github.com/axone-protocol/axoned/v9/app" ) func initSDKConfig() { diff --git a/cmd/axoned/cmd/genaccount.go b/cmd/axoned/cmd/genaccount.go index 20b44c55..a6f6c75c 100644 --- a/cmd/axoned/cmd/genaccount.go +++ b/cmd/axoned/cmd/genaccount.go @@ -14,7 +14,7 @@ import ( "github.com/cosmos/cosmos-sdk/server" sdk "github.com/cosmos/cosmos-sdk/types" - vestingtypes "github.com/axone-protocol/axoned/v8/x/vesting/types" + vestingtypes "github.com/axone-protocol/axoned/v9/x/vesting/types" ) const ( diff --git a/cmd/axoned/cmd/root.go b/cmd/axoned/cmd/root.go index ab7f9f94..3ee0f5e9 100644 --- a/cmd/axoned/cmd/root.go +++ b/cmd/axoned/cmd/root.go @@ -42,10 +42,10 @@ import ( "github.com/cosmos/cosmos-sdk/x/crisis" genutilcli "github.com/cosmos/cosmos-sdk/x/genutil/client/cli" - "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" + "github.com/axone-protocol/axoned/v9/app" + appparams "github.com/axone-protocol/axoned/v9/app/params" + "github.com/axone-protocol/axoned/v9/client/credential" + axonekeys "github.com/axone-protocol/axoned/v9/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 7746bc6b..7d110fef 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/v8/app" - "github.com/axone-protocol/axoned/v8/cmd/axoned/cmd" + "github.com/axone-protocol/axoned/v9/app" + "github.com/axone-protocol/axoned/v9/cmd/axoned/cmd" ) func main() { diff --git a/go.mod b/go.mod index 7a7598b8..042254f2 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/axone-protocol/axoned/v8 +module github.com/axone-protocol/axoned/v9 go 1.21 diff --git a/scripts/generate_command_doc.go b/scripts/generate_command_doc.go index d5ae9eeb..040f26dc 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/v8/cmd/axoned/cmd" + "github.com/axone-protocol/axoned/v9/cmd/axoned/cmd" ) func generateCommandDocumentation() error { diff --git a/version b/version index ae9a76b9..f7ee0669 100644 --- a/version +++ b/version @@ -1 +1 @@ -8.0.0 +9.0.0 diff --git a/x/logic/client/cli/query.go b/x/logic/client/cli/query.go index f87e09dd..0cc8f887 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/v8/x/logic/types" + "github.com/axone-protocol/axoned/v9/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 a4e6f14e..07d31749 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/v8/x/logic/types" + "github.com/axone-protocol/axoned/v9/x/logic/types" ) var ( diff --git a/x/logic/client/cli/query_params.go b/x/logic/client/cli/query_params.go index 617a50e5..2a09dfb5 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/v8/x/logic/types" + "github.com/axone-protocol/axoned/v9/x/logic/types" ) func CmdQueryParams() *cobra.Command { diff --git a/x/logic/fs/composite/fs_test.go b/x/logic/fs/composite/fs_test.go index 7ec6a69a..5439fcf9 100644 --- a/x/logic/fs/composite/fs_test.go +++ b/x/logic/fs/composite/fs_test.go @@ -12,8 +12,8 @@ import ( . "github.com/smartystreets/goconvey/convey" - "github.com/axone-protocol/axoned/v8/x/logic/fs/wasm" - "github.com/axone-protocol/axoned/v8/x/logic/testutil" + "github.com/axone-protocol/axoned/v9/x/logic/fs/wasm" + "github.com/axone-protocol/axoned/v9/x/logic/testutil" ) type fileSpec struct { diff --git a/x/logic/fs/filtered/fs.go b/x/logic/fs/filtered/fs.go index 1da6f555..e8c66700 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/v8/x/logic/util" + "github.com/axone-protocol/axoned/v9/x/logic/util" ) type vfs struct { diff --git a/x/logic/fs/filtered/fs_test.go b/x/logic/fs/filtered/fs_test.go index 28bd4ffb..3bb6b5c7 100644 --- a/x/logic/fs/filtered/fs_test.go +++ b/x/logic/fs/filtered/fs_test.go @@ -11,9 +11,9 @@ import ( . "github.com/smartystreets/goconvey/convey" - "github.com/axone-protocol/axoned/v8/x/logic/fs/wasm" - "github.com/axone-protocol/axoned/v8/x/logic/testutil" - "github.com/axone-protocol/axoned/v8/x/logic/util" + "github.com/axone-protocol/axoned/v9/x/logic/fs/wasm" + "github.com/axone-protocol/axoned/v9/x/logic/testutil" + "github.com/axone-protocol/axoned/v9/x/logic/util" ) func TestFilteredVFS(t *testing.T) { diff --git a/x/logic/fs/wasm/fs.go b/x/logic/fs/wasm/fs.go index b5304b56..a587f742 100644 --- a/x/logic/fs/wasm/fs.go +++ b/x/logic/fs/wasm/fs.go @@ -12,7 +12,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/axone-protocol/axoned/v8/x/logic/types" + "github.com/axone-protocol/axoned/v9/x/logic/types" ) const ( diff --git a/x/logic/fs/wasm/fs_test.go b/x/logic/fs/wasm/fs_test.go index 724106b7..9a77866e 100644 --- a/x/logic/fs/wasm/fs_test.go +++ b/x/logic/fs/wasm/fs_test.go @@ -21,7 +21,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/axone-protocol/axoned/v8/x/logic/testutil" + "github.com/axone-protocol/axoned/v9/x/logic/testutil" ) //nolint:gocognit diff --git a/x/logic/genesis.go b/x/logic/genesis.go index c475964c..423c573a 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/v8/x/logic/keeper" - "github.com/axone-protocol/axoned/v8/x/logic/types" + "github.com/axone-protocol/axoned/v9/x/logic/keeper" + "github.com/axone-protocol/axoned/v9/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 ee1e71dd..91ca61be 100644 --- a/x/logic/interpreter/registry.go +++ b/x/logic/interpreter/registry.go @@ -9,7 +9,7 @@ import ( "github.com/ichiban/prolog/engine" orderedmap "github.com/wk8/go-ordered-map/v2" - "github.com/axone-protocol/axoned/v8/x/logic/predicate" + "github.com/axone-protocol/axoned/v9/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 c9106285..12ade2f3 100644 --- a/x/logic/keeper/features_test.go +++ b/x/logic/keeper/features_test.go @@ -31,12 +31,12 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/axone-protocol/axoned/v8/x/logic" - "github.com/axone-protocol/axoned/v8/x/logic/fs/composite" - "github.com/axone-protocol/axoned/v8/x/logic/fs/wasm" - "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" + "github.com/axone-protocol/axoned/v9/x/logic" + "github.com/axone-protocol/axoned/v9/x/logic/fs/composite" + "github.com/axone-protocol/axoned/v9/x/logic/fs/wasm" + "github.com/axone-protocol/axoned/v9/x/logic/keeper" + logictestutil "github.com/axone-protocol/axoned/v9/x/logic/testutil" + "github.com/axone-protocol/axoned/v9/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 76e77393..56e52079 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/v8/x/logic/types" + "github.com/axone-protocol/axoned/v9/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 67827658..63cbfc7d 100644 --- a/x/logic/keeper/grpc_query_ask.go +++ b/x/logic/keeper/grpc_query_ask.go @@ -10,9 +10,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "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" + "github.com/axone-protocol/axoned/v9/x/logic/meter" + "github.com/axone-protocol/axoned/v9/x/logic/types" + "github.com/axone-protocol/axoned/v9/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 76d1042a..d54ac210 100644 --- a/x/logic/keeper/grpc_query_ask_test.go +++ b/x/logic/keeper/grpc_query_ask_test.go @@ -22,10 +22,10 @@ import ( bankypes "github.com/cosmos/cosmos-sdk/x/bank/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/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" + "github.com/axone-protocol/axoned/v9/x/logic" + "github.com/axone-protocol/axoned/v9/x/logic/keeper" + logictestutil "github.com/axone-protocol/axoned/v9/x/logic/testutil" + "github.com/axone-protocol/axoned/v9/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 4c534ebf..ad2738d8 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/v8/x/logic/types" + "github.com/axone-protocol/axoned/v9/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 653ec393..5835f7e5 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/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" + "github.com/axone-protocol/axoned/v9/x/logic" + "github.com/axone-protocol/axoned/v9/x/logic/keeper" + logictestutil "github.com/axone-protocol/axoned/v9/x/logic/testutil" + "github.com/axone-protocol/axoned/v9/x/logic/types" ) func TestGRPCParams(t *testing.T) { diff --git a/x/logic/keeper/interpreter.go b/x/logic/keeper/interpreter.go index 5e2fbf65..06736cf7 100644 --- a/x/logic/keeper/interpreter.go +++ b/x/logic/keeper/interpreter.go @@ -16,13 +16,13 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/axone-protocol/axoned/v8/x/logic/fs/filtered" - "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" + "github.com/axone-protocol/axoned/v9/x/logic/fs/filtered" + "github.com/axone-protocol/axoned/v9/x/logic/interpreter" + "github.com/axone-protocol/axoned/v9/x/logic/interpreter/bootstrap" + "github.com/axone-protocol/axoned/v9/x/logic/meter" + prolog2 "github.com/axone-protocol/axoned/v9/x/logic/prolog" + "github.com/axone-protocol/axoned/v9/x/logic/types" + "github.com/axone-protocol/axoned/v9/x/logic/util" ) const ( diff --git a/x/logic/keeper/keeper.go b/x/logic/keeper/keeper.go index c4718e92..3444715a 100644 --- a/x/logic/keeper/keeper.go +++ b/x/logic/keeper/keeper.go @@ -9,8 +9,8 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/axone-protocol/axoned/v8/x/logic/fs" - "github.com/axone-protocol/axoned/v8/x/logic/types" + "github.com/axone-protocol/axoned/v9/x/logic/fs" + "github.com/axone-protocol/axoned/v9/x/logic/types" ) type ( diff --git a/x/logic/keeper/msg_server.go b/x/logic/keeper/msg_server.go index ddf9ed5b..43bfed60 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/v8/x/logic/types" + "github.com/axone-protocol/axoned/v9/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 5867c8f1..5694a9ae 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/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" + "github.com/axone-protocol/axoned/v9/x/logic" + "github.com/axone-protocol/axoned/v9/x/logic/keeper" + logictestutil "github.com/axone-protocol/axoned/v9/x/logic/testutil" + "github.com/axone-protocol/axoned/v9/x/logic/types" ) func TestUpdateParams(t *testing.T) { diff --git a/x/logic/keeper/params.go b/x/logic/keeper/params.go index d7b1ece3..cb5bbb72 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/v8/x/logic/types" + "github.com/axone-protocol/axoned/v9/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 cf20cb98..e1ece136 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/v8/x/logic/testutil" + "github.com/axone-protocol/axoned/v9/x/logic/testutil" ) func TestMultiplyUint64Overflow(t *testing.T) { diff --git a/x/logic/module.go b/x/logic/module.go index ec1cae08..8ee12b51 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/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" + "github.com/axone-protocol/axoned/v9/x/logic/client/cli" + "github.com/axone-protocol/axoned/v9/x/logic/exported" + "github.com/axone-protocol/axoned/v9/x/logic/keeper" + "github.com/axone-protocol/axoned/v9/x/logic/types" ) var ( diff --git a/x/logic/predicate/address.go b/x/logic/predicate/address.go index 4c56b470..6c7b846e 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/v8/x/logic/prolog" + "github.com/axone-protocol/axoned/v9/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 1cbabacf..23b9d61a 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/v8/x/logic/prolog" - "github.com/axone-protocol/axoned/v8/x/logic/types" + "github.com/axone-protocol/axoned/v9/x/logic/prolog" + "github.com/axone-protocol/axoned/v9/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 31512863..6b2884eb 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/v8/x/logic/testutil" - "github.com/axone-protocol/axoned/v8/x/logic/types" + "github.com/axone-protocol/axoned/v9/x/logic/testutil" + "github.com/axone-protocol/axoned/v9/x/logic/types" ) func TestBank(t *testing.T) { diff --git a/x/logic/predicate/block.go b/x/logic/predicate/block.go index 0b05e4d1..0108b4ed 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/v8/x/logic/prolog" + "github.com/axone-protocol/axoned/v9/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 a0d186b1..a9f0cd08 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/v8/x/logic/testutil" - "github.com/axone-protocol/axoned/v8/x/logic/util" + "github.com/axone-protocol/axoned/v9/x/logic/testutil" + "github.com/axone-protocol/axoned/v9/x/logic/util" ) func TestWrite(t *testing.T) { diff --git a/x/logic/predicate/chain.go b/x/logic/predicate/chain.go index 0dfe07d3..0bea2cb1 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/v8/x/logic/prolog" + "github.com/axone-protocol/axoned/v9/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 1169afe1..f55c1827 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/v8/x/logic/testutil" + "github.com/axone-protocol/axoned/v9/x/logic/testutil" ) func TestChainID(t *testing.T) { diff --git a/x/logic/predicate/crypto.go b/x/logic/predicate/crypto.go index 508b89c7..77b61795 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/v8/x/logic/prolog" - "github.com/axone-protocol/axoned/v8/x/logic/util" + "github.com/axone-protocol/axoned/v9/x/logic/prolog" + "github.com/axone-protocol/axoned/v9/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 2dfea5e5..1b35ccba 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/v8/x/logic/testutil" + "github.com/axone-protocol/axoned/v9/x/logic/testutil" ) func TestCryptoOperations(t *testing.T) { diff --git a/x/logic/predicate/did.go b/x/logic/predicate/did.go index 3d719991..397d3ea3 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/v8/x/logic/prolog" + "github.com/axone-protocol/axoned/v9/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 85b42f49..fee9b4a2 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/v8/x/logic/testutil" + "github.com/axone-protocol/axoned/v9/x/logic/testutil" ) func TestDID(t *testing.T) { diff --git a/x/logic/predicate/encoding.go b/x/logic/predicate/encoding.go index 23f9ba28..88d15c6a 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/v8/x/logic/prolog" + "github.com/axone-protocol/axoned/v9/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 d6ce9906..76b7fcb4 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/v8/x/logic/testutil" + "github.com/axone-protocol/axoned/v9/x/logic/testutil" ) func TestHexBytesPredicate(t *testing.T) { diff --git a/x/logic/predicate/file.go b/x/logic/predicate/file.go index 703e4483..54fac07c 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/v8/x/logic/prolog" + "github.com/axone-protocol/axoned/v9/x/logic/prolog" ) var atomOpen = engine.NewAtom("open") diff --git a/x/logic/predicate/json.go b/x/logic/predicate/json.go index e5f8daf8..1daf4c9d 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/v8/x/logic/prolog" + "github.com/axone-protocol/axoned/v9/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 cfebaf3e..f2a33b21 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/v8/x/logic/testutil" + "github.com/axone-protocol/axoned/v9/x/logic/testutil" ) func TestJsonProlog(t *testing.T) { diff --git a/x/logic/predicate/string.go b/x/logic/predicate/string.go index dafe9cd6..8650da18 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/v8/x/logic/prolog" + "github.com/axone-protocol/axoned/v9/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 a32ba394..507e8073 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/v8/x/logic/testutil" + "github.com/axone-protocol/axoned/v9/x/logic/testutil" ) func TestReadString(t *testing.T) { diff --git a/x/logic/predicate/uri.go b/x/logic/predicate/uri.go index eedbda92..72d3ab76 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/v8/x/logic/prolog" + "github.com/axone-protocol/axoned/v9/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 86aaff63..dcfe3178 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/v8/x/logic/testutil" + "github.com/axone-protocol/axoned/v9/x/logic/testutil" ) func TestURIEncoded(t *testing.T) { diff --git a/x/logic/predicate/util.go b/x/logic/predicate/util.go index 4d6c0189..c2d515cd 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/v8/x/logic/prolog" - "github.com/axone-protocol/axoned/v8/x/logic/types" + "github.com/axone-protocol/axoned/v9/x/logic/prolog" + "github.com/axone-protocol/axoned/v9/x/logic/types" ) // SortBalances by coin denomination. diff --git a/x/logic/prolog/assert.go b/x/logic/prolog/assert.go index d29dd7d5..744c1be1 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/v8/x/logic/util" + "github.com/axone-protocol/axoned/v9/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 f81be175..f53c1c05 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/v8/x/logic/testutil" - "github.com/axone-protocol/axoned/v8/x/logic/util" + "github.com/axone-protocol/axoned/v9/x/logic/testutil" + "github.com/axone-protocol/axoned/v9/x/logic/util" ) var ( diff --git a/x/logic/prolog/encode.go b/x/logic/prolog/encode.go index 30501edb..d5fa5ba0 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/v8/x/logic/util" + "github.com/axone-protocol/axoned/v9/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 2f4a3eeb..7b1f7074 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/v8/x/logic/interpreter/bootstrap" + "github.com/axone-protocol/axoned/v9/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 cee1eb9d..412ab2e2 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/v8/x/logic/types" + "github.com/axone-protocol/axoned/v9/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 b4ba1cf8..5e7411f4 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/v8/x/logic/types" + "github.com/axone-protocol/axoned/v9/x/logic/types" ) func TestValidateParams(t *testing.T) { diff --git a/x/logic/util/prolog.go b/x/logic/util/prolog.go index 5d521068..acc3abf0 100644 --- a/x/logic/util/prolog.go +++ b/x/logic/util/prolog.go @@ -14,7 +14,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/axone-protocol/axoned/v8/x/logic/types" + "github.com/axone-protocol/axoned/v9/x/logic/types" ) const ( diff --git a/x/logic/wasm/query.go b/x/logic/wasm/query.go index 1b7a7b25..6ac893b2 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/v8/x/logic/keeper" - "github.com/axone-protocol/axoned/v8/x/logic/types" + "github.com/axone-protocol/axoned/v9/x/logic/keeper" + "github.com/axone-protocol/axoned/v9/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 223112ef..be516d8e 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/v8/x/logic/types" + "github.com/axone-protocol/axoned/v9/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 4945b09a..45998e81 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/v8/x/mint/keeper" - "github.com/axone-protocol/axoned/v8/x/mint/types" + "github.com/axone-protocol/axoned/v9/x/mint/keeper" + "github.com/axone-protocol/axoned/v9/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 729d9c22..404aeb50 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/v8/x/mint/types" + "github.com/axone-protocol/axoned/v9/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 1ee06eda..f8a32396 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/v8/x/mint" - mintcli "github.com/axone-protocol/axoned/v8/x/mint/client/cli" + "github.com/axone-protocol/axoned/v9/x/mint" + mintcli "github.com/axone-protocol/axoned/v9/x/mint/client/cli" ) func TestGetCmdQueryParams(t *testing.T) { diff --git a/x/mint/keeper/genesis.go b/x/mint/keeper/genesis.go index 75b2a736..7e80d909 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/v8/x/mint/types" + "github.com/axone-protocol/axoned/v9/x/mint/types" ) // InitGenesis new mint genesis. diff --git a/x/mint/keeper/genesis_test.go b/x/mint/keeper/genesis_test.go index c418db7b..b126796a 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/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" + "github.com/axone-protocol/axoned/v9/x/mint" + "github.com/axone-protocol/axoned/v9/x/mint/keeper" + minttestutil "github.com/axone-protocol/axoned/v9/x/mint/testutil" + "github.com/axone-protocol/axoned/v9/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 3fdd5ba5..881849d7 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/v8/x/mint/types" + "github.com/axone-protocol/axoned/v9/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 2fc932ed..4b5f3fd2 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/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" + "github.com/axone-protocol/axoned/v9/x/mint" + "github.com/axone-protocol/axoned/v9/x/mint/keeper" + minttestutil "github.com/axone-protocol/axoned/v9/x/mint/testutil" + "github.com/axone-protocol/axoned/v9/x/mint/types" ) type MintTestSuite struct { diff --git a/x/mint/keeper/keeper.go b/x/mint/keeper/keeper.go index a1c06224..3e2108cf 100644 --- a/x/mint/keeper/keeper.go +++ b/x/mint/keeper/keeper.go @@ -12,7 +12,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/axone-protocol/axoned/v8/x/mint/types" + "github.com/axone-protocol/axoned/v9/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 9b91729b..1c6c16a7 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/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" + "github.com/axone-protocol/axoned/v9/x/mint" + "github.com/axone-protocol/axoned/v9/x/mint/keeper" + minttestutil "github.com/axone-protocol/axoned/v9/x/mint/testutil" + "github.com/axone-protocol/axoned/v9/x/mint/types" ) type IntegrationTestSuite struct { diff --git a/x/mint/keeper/msg_server.go b/x/mint/keeper/msg_server.go index 33cb19a4..3c516133 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/v8/x/mint/types" + "github.com/axone-protocol/axoned/v9/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 fc77ef48..7cfdedb8 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/v8/x/mint/types" + "github.com/axone-protocol/axoned/v9/x/mint/types" ) func (s *IntegrationTestSuite) TestUpdateParams() { diff --git a/x/mint/module.go b/x/mint/module.go index bab18777..39c7be6d 100644 --- a/x/mint/module.go +++ b/x/mint/module.go @@ -21,9 +21,9 @@ import ( authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "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" + "github.com/axone-protocol/axoned/v9/x/mint/keeper" + "github.com/axone-protocol/axoned/v9/x/mint/simulation" + "github.com/axone-protocol/axoned/v9/x/mint/types" ) // ConsensusVersion defines the current x/mint module consensus version. diff --git a/x/mint/module_test.go b/x/mint/module_test.go index f165e84b..1e47525b 100644 --- a/x/mint/module_test.go +++ b/x/mint/module_test.go @@ -12,8 +12,8 @@ import ( authkeeper "github.com/cosmos/cosmos-sdk/x/auth/keeper" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/axone-protocol/axoned/v8/x/mint/testutil" - "github.com/axone-protocol/axoned/v8/x/mint/types" + "github.com/axone-protocol/axoned/v9/x/mint/testutil" + "github.com/axone-protocol/axoned/v9/x/mint/types" ) func TestItCreatesModuleAccountOnInitBlock(t *testing.T) { diff --git a/x/mint/simulation/genesis.go b/x/mint/simulation/genesis.go index bb23a68c..36f36249 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/v8/x/mint/types" + "github.com/axone-protocol/axoned/v9/x/mint/types" ) // Simulation parameter constants. diff --git a/x/mint/simulation/genesis_test.go b/x/mint/simulation/genesis_test.go index 103f094c..7b6eefb7 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/v8/x/mint/simulation" - "github.com/axone-protocol/axoned/v8/x/mint/types" + "github.com/axone-protocol/axoned/v9/x/mint/simulation" + "github.com/axone-protocol/axoned/v9/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 bdc5329f..9641706c 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/v8/x/mint/types" + "github.com/axone-protocol/axoned/v9/x/mint/types" ) // Simulation operation weights constants. diff --git a/x/mint/simulation/proposals_test.go b/x/mint/simulation/proposals_test.go index 0d158af5..5328f586 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/v8/x/mint/simulation" - "github.com/axone-protocol/axoned/v8/x/mint/types" + "github.com/axone-protocol/axoned/v9/x/mint/simulation" + "github.com/axone-protocol/axoned/v9/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 3fcc45e2..1307a281 100644 --- a/x/vesting/client/cli/tx.go +++ b/x/vesting/client/cli/tx.go @@ -16,7 +16,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/tx" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/axone-protocol/axoned/v8/x/vesting/types" + "github.com/axone-protocol/axoned/v9/x/vesting/types" ) // Transaction command flags. diff --git a/x/vesting/client/cli/tx_test.go b/x/vesting/client/cli/tx_test.go index d3650ee3..633939b8 100644 --- a/x/vesting/client/cli/tx_test.go +++ b/x/vesting/client/cli/tx_test.go @@ -23,8 +23,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" testutilmod "github.com/cosmos/cosmos-sdk/types/module/testutil" - "github.com/axone-protocol/axoned/v8/x/vesting" - "github.com/axone-protocol/axoned/v8/x/vesting/client/cli" + "github.com/axone-protocol/axoned/v9/x/vesting" + "github.com/axone-protocol/axoned/v9/x/vesting/client/cli" ) type CLITestSuite struct { diff --git a/x/vesting/module.go b/x/vesting/module.go index ce6b7712..6372f541 100644 --- a/x/vesting/module.go +++ b/x/vesting/module.go @@ -21,8 +21,8 @@ import ( "github.com/cosmos/cosmos-sdk/types/module" "github.com/cosmos/cosmos-sdk/x/auth/keeper" - "github.com/axone-protocol/axoned/v8/x/vesting/client/cli" - "github.com/axone-protocol/axoned/v8/x/vesting/types" + "github.com/axone-protocol/axoned/v9/x/vesting/client/cli" + "github.com/axone-protocol/axoned/v9/x/vesting/types" ) var ( diff --git a/x/vesting/msg_server.go b/x/vesting/msg_server.go index b3da2408..a5f9c60c 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/v8/x/vesting/types" + "github.com/axone-protocol/axoned/v9/x/vesting/types" ) type msgServer struct { diff --git a/x/vesting/msg_server_test.go b/x/vesting/msg_server_test.go index 644f4d29..09efac00 100644 --- a/x/vesting/msg_server_test.go +++ b/x/vesting/msg_server_test.go @@ -21,9 +21,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/v8/x/vesting" - vestingtestutil "github.com/axone-protocol/axoned/v8/x/vesting/testutil" - vestingtypes "github.com/axone-protocol/axoned/v8/x/vesting/types" + "github.com/axone-protocol/axoned/v9/x/vesting" + vestingtestutil "github.com/axone-protocol/axoned/v9/x/vesting/testutil" + vestingtypes "github.com/axone-protocol/axoned/v9/x/vesting/types" ) var ( diff --git a/x/vesting/types/codec.go b/x/vesting/types/codec.go index 407c894f..283c9572 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/v8/x/vesting/exported" + "github.com/axone-protocol/axoned/v9/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 d08c6189..8328e71d 100644 --- a/x/vesting/types/vesting_account.go +++ b/x/vesting/types/vesting_account.go @@ -10,7 +10,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - vestexported "github.com/axone-protocol/axoned/v8/x/vesting/exported" + vestexported "github.com/axone-protocol/axoned/v9/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 cb85a213..ce9dc598 100644 --- a/x/vesting/types/vesting_account_test.go +++ b/x/vesting/types/vesting_account_test.go @@ -23,8 +23,8 @@ import ( "github.com/cosmos/cosmos-sdk/x/auth/keeper" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" - "github.com/axone-protocol/axoned/v8/x/vesting" - "github.com/axone-protocol/axoned/v8/x/vesting/types" + "github.com/axone-protocol/axoned/v9/x/vesting" + "github.com/axone-protocol/axoned/v9/x/vesting/types" ) var (