diff --git a/Makefile b/Makefile index f5116eb..be0ca33 100644 --- a/Makefile +++ b/Makefile @@ -53,8 +53,8 @@ build_tags_comma_sep := $(subst $(whitespace),$(comma),$(build_tags)) # process linker flags -ldflags = -X github.com/cosmos/cosmos-sdk/version.Name=coho \ - -X github.com/cosmos/cosmos-sdk/version.AppName=cohod \ +ldflags = -X github.com/cosmos/cosmos-sdk/version.Name=qwoyn \ + -X github.com/cosmos/cosmos-sdk/version.AppName=qwoynd \ -X github.com/cosmos/cosmos-sdk/version.Version=$(VERSION) \ -X github.com/cosmos/cosmos-sdk/version.Commit=$(COMMIT) \ -X "github.com/cosmos/cosmos-sdk/version.BuildTags=$(build_tags_comma_sep)" @@ -71,16 +71,16 @@ all: install tools lint build: go.sum ifeq ($(OS),Windows_NT) - go build -mod=readonly $(BUILD_FLAGS) -o build/cohod.exe ./cmd/cohod + go build -mod=readonly $(BUILD_FLAGS) -o build/qwoynd.exe ./cmd/qwoynd else - go build -mod=readonly $(BUILD_FLAGS) -o build/cohod ./cmd/cohod + go build -mod=readonly $(BUILD_FLAGS) -o build/qwoynd ./cmd/qwoynd endif build-linux: go.sum LEDGER_ENABLED=false GOOS=linux GOARCH=amd64 $(MAKE) build install: go.sum - go install -mod=readonly $(BUILD_FLAGS) ./cmd/cohod + go install -mod=readonly $(BUILD_FLAGS) ./cmd/qwoynd update-swagger-docs: statik $(BINDIR)/statik -src=swagger/swagger-ui -dest=swagger -f -m diff --git a/app/app.go b/app/app.go index 8ce318f..7dde0c2 100644 --- a/app/app.go +++ b/app/app.go @@ -7,9 +7,9 @@ import ( "path/filepath" "strings" - "github.com/cosmic-horizon/coho/x/mint" - mintkeeper "github.com/cosmic-horizon/coho/x/mint/keeper" - minttypes "github.com/cosmic-horizon/coho/x/mint/types" + "github.com/cosmic-horizon/qwoyn/x/mint" + mintkeeper "github.com/cosmic-horizon/qwoyn/x/mint/keeper" + minttypes "github.com/cosmic-horizon/qwoyn/x/mint/types" "github.com/cosmos/cosmos-sdk/baseapp" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/grpc/tmservice" @@ -100,15 +100,15 @@ import ( tmos "github.com/tendermint/tendermint/libs/os" dbm "github.com/tendermint/tm-db" - cohomodule "github.com/cosmic-horizon/coho/x/coho" - cohomodulekeeper "github.com/cosmic-horizon/coho/x/coho/keeper" - cohomoduletypes "github.com/cosmic-horizon/coho/x/coho/types" + cohomodule "github.com/cosmic-horizon/qwoyn/x/coho" + cohomodulekeeper "github.com/cosmic-horizon/qwoyn/x/coho/keeper" + cohomoduletypes "github.com/cosmic-horizon/qwoyn/x/coho/types" - "github.com/cosmic-horizon/coho/x/game" - gamekeeper "github.com/cosmic-horizon/coho/x/game/keeper" - gametypes "github.com/cosmic-horizon/coho/x/game/types" + "github.com/cosmic-horizon/qwoyn/x/game" + gamekeeper "github.com/cosmic-horizon/qwoyn/x/game/keeper" + gametypes "github.com/cosmic-horizon/qwoyn/x/game/types" - appparams "github.com/cosmic-horizon/coho/app/params" + appparams "github.com/cosmic-horizon/qwoyn/app/params" "github.com/CosmWasm/wasmd/x/wasm" wasmclient "github.com/CosmWasm/wasmd/x/wasm/client" @@ -116,7 +116,7 @@ import ( ) const ( - Name = "cohod" + Name = "qwoynd" ) var ( diff --git a/app/encoding.go b/app/encoding.go index 120e68f..0af2c92 100644 --- a/app/encoding.go +++ b/app/encoding.go @@ -1,7 +1,7 @@ package app import ( - "github.com/cosmic-horizon/coho/app/params" + "github.com/cosmic-horizon/qwoyn/app/params" "github.com/cosmos/cosmos-sdk/std" ) diff --git a/app/params/config.go b/app/params/config.go index c7c7353..13ff81b 100644 --- a/app/params/config.go +++ b/app/params/config.go @@ -6,7 +6,7 @@ import ( ) const ( - CohoDecimals = 6 + Decimals = 6 HumanGameCoinUnit = "COHO" GameCoinUnit = "ucoho" diff --git a/app/params/doc.go b/app/params/doc.go index 082e5e6..c0b6eb1 100644 --- a/app/params/doc.go +++ b/app/params/doc.go @@ -1,5 +1,5 @@ /* -Package params defines the simulation parameters in the coho. +Package params defines the simulation parameters in the qwoyn. It contains the default weights used for each transaction used on the module's simulation. These weights define the chance for a transaction to be simulated at any gived operation. diff --git a/app/simulation_test.go b/app/simulation_test.go index 2ae7144..3fdc93b 100644 --- a/app/simulation_test.go +++ b/app/simulation_test.go @@ -5,7 +5,7 @@ import ( "testing" "time" - "github.com/cosmic-horizon/coho/app" + "github.com/cosmic-horizon/qwoyn/app" "github.com/cosmos/cosmos-sdk/simapp" simulationtypes "github.com/cosmos/cosmos-sdk/types/simulation" "github.com/cosmos/cosmos-sdk/x/simulation" diff --git a/cmd/cohod/cmd/genaccounts.go b/cmd/qwoynd/cmd/genaccounts.go similarity index 100% rename from cmd/cohod/cmd/genaccounts.go rename to cmd/qwoynd/cmd/genaccounts.go diff --git a/cmd/cohod/cmd/root.go b/cmd/qwoynd/cmd/root.go similarity index 95% rename from cmd/cohod/cmd/root.go rename to cmd/qwoynd/cmd/root.go index d3427e7..0d6f755 100644 --- a/cmd/cohod/cmd/root.go +++ b/cmd/qwoynd/cmd/root.go @@ -32,8 +32,8 @@ import ( "github.com/tendermint/tendermint/libs/log" dbm "github.com/tendermint/tm-db" - "github.com/cosmic-horizon/coho/app" - "github.com/cosmic-horizon/coho/app/params" + "github.com/cosmic-horizon/qwoyn/app" + "github.com/cosmic-horizon/qwoyn/app/params" ) // NewRootCmd creates a new root command for simd. It is called once in the @@ -51,7 +51,7 @@ func NewRootCmd() (*cobra.Command, params.EncodingConfig) { WithViper("") rootCmd := &cobra.Command{ - Use: "cohod", + Use: "qwoynd", Short: "Stargate Cosmos Hub App", PersistentPreRunE: func(cmd *cobra.Command, _ []string) error { initClientCtx, err := client.ReadPersistentCommandFlags(initClientCtx, cmd.Flags()) @@ -68,8 +68,8 @@ func NewRootCmd() (*cobra.Command, params.EncodingConfig) { return err } - customTemplate, customCohoConfig := initAppConfig() - return server.InterceptConfigsPreRunHandler(cmd, customTemplate, customCohoConfig) + customTemplate, customConfig := initAppConfig() + return server.InterceptConfigsPreRunHandler(cmd, customTemplate, customConfig) }, } @@ -257,7 +257,7 @@ func (ac appCreator) appExport( loadLatest = true } - cohoApp := app.New( + qwoynApp := app.New( logger, db, traceStore, @@ -270,10 +270,10 @@ func (ac appCreator) appExport( ) if height != -1 { - if err := cohoApp.LoadHeight(height); err != nil { + if err := qwoynApp.LoadHeight(height); err != nil { return servertypes.ExportedApp{}, err } } - return cohoApp.ExportAppStateAndValidators(forZeroHeight, jailAllowedAddrs) + return qwoynApp.ExportAppStateAndValidators(forZeroHeight, jailAllowedAddrs) } diff --git a/cmd/cohod/cmd/sign.go b/cmd/qwoynd/cmd/sign.go similarity index 100% rename from cmd/cohod/cmd/sign.go rename to cmd/qwoynd/cmd/sign.go diff --git a/cmd/cohod/cmd/testnet.go b/cmd/qwoynd/cmd/testnet.go similarity index 97% rename from cmd/cohod/cmd/testnet.go rename to cmd/qwoynd/cmd/testnet.go index e32fb8b..a8c82f7 100644 --- a/cmd/cohod/cmd/testnet.go +++ b/cmd/qwoynd/cmd/testnet.go @@ -36,9 +36,9 @@ import ( ibcclienttypes "github.com/cosmos/ibc-go/v3/modules/core/02-client/types" ibcchanneltypes "github.com/cosmos/ibc-go/v3/modules/core/04-channel/types" - "github.com/cosmic-horizon/coho/app/params" - gametypes "github.com/cosmic-horizon/coho/x/game/types" - minttypes "github.com/cosmic-horizon/coho/x/mint/types" + "github.com/cosmic-horizon/qwoyn/app/params" + gametypes "github.com/cosmic-horizon/qwoyn/x/game/types" + minttypes "github.com/cosmic-horizon/qwoyn/x/mint/types" crisistypes "github.com/cosmos/cosmos-sdk/x/crisis/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" ) @@ -60,7 +60,7 @@ func testnetCmd(mbm module.BasicManager, genBalIterator banktypes.GenesisBalance necessary files (private validator, genesis, config, etc.). Note, strict routability for addresses is turned off in the config file. Example: - cohod testnet --v 4 --output-dir ./output --starting-ip-address 192.168.10.2 + qwoynd testnet --v 4 --output-dir ./output --starting-ip-address 192.168.10.2 `, RunE: func(cmd *cobra.Command, _ []string) error { clientCtx, err := client.GetClientQueryContext(cmd) @@ -90,7 +90,7 @@ Example: cmd.Flags().Int(flagNumValidators, 4, "Number of validators to initialize the testnet with") cmd.Flags().StringP(flagOutputDir, "o", "./mytestnet", "Directory to store initialization data for the testnet") cmd.Flags().String(flagNodeDirPrefix, "node", "Prefix the directory name for each node with (node results in node0, node1, ...)") - cmd.Flags().String(flagNodeDaemonHome, "cohod", "Home directory of the node's daemon configuration") + cmd.Flags().String(flagNodeDaemonHome, "qwoynd", "Home directory of the node's daemon configuration") cmd.Flags().String(flagStartingIPAddress, "192.168.0.1", "Starting IP address (192.168.0.1 results in persistent peers list ID0@192.168.0.1:46656, ID1@192.168.0.2:46656, ...)") cmd.Flags().String(flags.FlagChainID, "", "genesis file chain-id, if left blank will be randomly created") cmd.Flags().String(server.FlagMinGasPrices, fmt.Sprintf("0.000006%s", params.BondDenom), "Minimum gas prices to accept for transactions; All fees in a tx must meet this minimum (e.g. 0.01photino,0.001stake)") diff --git a/cmd/cohod/main.go b/cmd/qwoynd/main.go similarity index 78% rename from cmd/cohod/main.go rename to cmd/qwoynd/main.go index 07114d0..3a98ac3 100644 --- a/cmd/cohod/main.go +++ b/cmd/qwoynd/main.go @@ -6,8 +6,8 @@ import ( "github.com/cosmos/cosmos-sdk/server" svrcmd "github.com/cosmos/cosmos-sdk/server/cmd" - app "github.com/cosmic-horizon/coho/app" - "github.com/cosmic-horizon/coho/cmd/cohod/cmd" + app "github.com/cosmic-horizon/qwoyn/app" + "github.com/cosmic-horizon/qwoyn/cmd/qwoynd/cmd" ) func main() { diff --git a/cosmwasm/README.md b/cosmwasm/README.md index 85d756b..326359a 100644 --- a/cosmwasm/README.md +++ b/cosmwasm/README.md @@ -11,10 +11,10 @@ Here's [installation guide](https://doc.rust-lang.org/cargo/getting-started/inst ## Add contract owner account ```sh -cohod keys add signer --keyring-backend=test --home=$HOME/.cohod --recover +qwoynd keys add signer --keyring-backend=test --home=$HOME/.qwoynd --recover # pipe woman clutch absorb lonely cost credit math antique better thumb cook pave clarify hungry east garbage absent warfare song helmet anchor drift purity -cohod tx bank send validator $(cohod keys show -a signer --keyring-backend=test --home=$HOME/.cohod) 1000000stake --keyring-backend=test --home=$HOME/.cohod --broadcast-mode=block -y --chain-id=qwoyn-1 +qwoynd tx bank send validator $(qwoynd keys show -a signer --keyring-backend=test --home=$HOME/.qwoynd) 1000000stake --keyring-backend=test --home=$HOME/.qwoynd --broadcast-mode=block -y --chain-id=qwoyn-1 ``` ## Build Contracts @@ -36,7 +36,7 @@ You can find compiled `.wasm` files under `artifacts` directory. ## Upload WASM binary ``` -cohod tx wasm store $WASM_FILE --from $FROM --chain-id $CHAIN_ID --gas auto --gas-adjustment 1.3 -b block --keyring-backend=$KEYRING_BACKEND --home=$HOME/.cohod/ -y +qwoynd tx wasm store $WASM_FILE --from $FROM --chain-id $CHAIN_ID --gas auto --gas-adjustment 1.3 -b block --keyring-backend=$KEYRING_BACKEND --home=$HOME/.qwoynd/ -y # $WASM_FILE - Path to wasm binary file (Example: ./artifacts/ship_nft.wasm) # $FROM - Name or address of signer account (Example: coho1m6auqrjwertsnccvkk9tts3lzw0hcz0jn2v3lf) @@ -47,13 +47,13 @@ cohod tx wasm store $WASM_FILE --from $FROM --chain-id $CHAIN_ID --gas auto --ga Example command to upload Ship NFT wasm binary to local test node ``` -cohod tx wasm store ./artifacts/ship_nft.wasm --from validator --chain-id qwoyn-1 --gas auto --gas-adjustment 1.3 -b block --keyring-backend=test --home=$HOME/.cohod/ -y +qwoynd tx wasm store ./artifacts/ship_nft.wasm --from validator --chain-id qwoyn-1 --gas auto --gas-adjustment 1.3 -b block --keyring-backend=test --home=$HOME/.qwoynd/ -y ``` ## Instantiate Contract ``` -cohod tx wasm instantiate $CODE_ID $INSTANTIATE_MSG --from $FROM --label $LABEL --chain-id $CHAIN_ID --gas auto --gas-adjustment 1.3 -b block --keyring-backend=$KEYRING_BACKEND --home=$HOME/.cohod/ --no-admin -y +qwoynd tx wasm instantiate $CODE_ID $INSTANTIATE_MSG --from $FROM --label $LABEL --chain-id $CHAIN_ID --gas auto --gas-adjustment 1.3 -b block --keyring-backend=$KEYRING_BACKEND --home=$HOME/.qwoynd/ --no-admin -y # $CODE_ID - Uploaded Code ID (Example: 1) # $INSTANTIATE_MSG - JSON encoded init args (Example: '{"name":"Ship NFT","symbol":"SHIP","minter":"coho1m6auqrjwertsnccvkk9tts3lzw0hcz0jn2v3lf"}') @@ -66,13 +66,13 @@ cohod tx wasm instantiate $CODE_ID $INSTANTIATE_MSG --from $FROM --label $LABEL Example command to init Ship NFT contract on local test node ``` -cohod tx wasm instantiate 1 '{"name":"Ship NFT","symbol":"SHIP","minter":"coho1x0fha27pejg5ajg8vnrqm33ck8tq6raafkwa9v","owner":"coho1x0fha27pejg5ajg8vnrqm33ck8tq6raafkwa9v"}' --from validator --label "Ship-NFT" --chain-id qwoyn-1 --gas auto --gas-adjustment 1.3 -b block --keyring-backend=test --home=$HOME/.cohod/ --no-admin -y +qwoynd tx wasm instantiate 1 '{"name":"Ship NFT","symbol":"SHIP","minter":"coho1x0fha27pejg5ajg8vnrqm33ck8tq6raafkwa9v","owner":"coho1x0fha27pejg5ajg8vnrqm33ck8tq6raafkwa9v"}' --from validator --label "Ship-NFT" --chain-id qwoyn-1 --gas auto --gas-adjustment 1.3 -b block --keyring-backend=test --home=$HOME/.qwoynd/ --no-admin -y ``` ## Get Contract Address ``` -cohod query wasm list-contract-by-code $CODE_ID +qwoynd query wasm list-contract-by-code $CODE_ID # $CODE_ID - Uploaded Code ID (Example: 1) ``` @@ -80,13 +80,13 @@ cohod query wasm list-contract-by-code $CODE_ID Example command to get Ship NFT contract address on local test node ``` -cohod query wasm list-contract-by-code 1 +qwoynd query wasm list-contract-by-code 1 ``` ## Mint NFT ``` -cohod tx wasm execute $CONTRACT_ADDRESS $EXECUTE_MSG --from $FROM --chain-id $CHAIN_ID --gas auto --gas-adjustment 1.3 -b block --keyring-backend=$KEYRING_BACKEND --home=$HOME/.cohod/ -y +qwoynd tx wasm execute $CONTRACT_ADDRESS $EXECUTE_MSG --from $FROM --chain-id $CHAIN_ID --gas auto --gas-adjustment 1.3 -b block --keyring-backend=$KEYRING_BACKEND --home=$HOME/.qwoynd/ -y # $CONTRACT_ADDRESS - Contract address (Example: coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc) # $EXECUTE_MSG - JSON encoded send args (Example: '{"mint":{"token_id":"1","owner":"coho1m6auqrjwertsnccvkk9tts3lzw0hcz0jn2v3lf","extension":{"ship_type":10,"owner":"100"}}}') @@ -99,7 +99,7 @@ cohod tx wasm execute $CONTRACT_ADDRESS $EXECUTE_MSG --from $FROM --chain-id $CH Example command to mint Ship NFT with token_id "1" ``` -cohod tx wasm execute coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc '{"mint":{"token_id":"1","owner":"coho1x0fha27pejg5ajg8vnrqm33ck8tq6raafkwa9v","extension":{"ship_type":10,"owner":"100"}}}' --from signer --chain-id qwoyn-1 --gas auto --gas-adjustment 1.3 -b block --keyring-backend=test --home=$HOME/.cohod/ -y +qwoynd tx wasm execute coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc '{"mint":{"token_id":"1","owner":"coho1x0fha27pejg5ajg8vnrqm33ck8tq6raafkwa9v","extension":{"ship_type":10,"owner":"100"}}}' --from signer --chain-id qwoyn-1 --gas auto --gas-adjustment 1.3 -b block --keyring-backend=test --home=$HOME/.qwoynd/ -y ``` ## Transfer NFT @@ -107,13 +107,13 @@ cohod tx wasm execute coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9sn Example command to transfer minted Ship NFT with token_id "1" ``` -cohod tx wasm execute coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc '{"transfer_nft":{"token_id":"1","recipient":"coho1x0fha27pejg5ajg8vnrqm33ck8tq6raafkwa9v"}}' --from signer --chain-id qwoyn-1 --gas auto --gas-adjustment 1.3 -b block --keyring-backend=test --home=$HOME/.cohod/ -y +qwoynd tx wasm execute coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc '{"transfer_nft":{"token_id":"1","recipient":"coho1x0fha27pejg5ajg8vnrqm33ck8tq6raafkwa9v"}}' --from signer --chain-id qwoyn-1 --gas auto --gas-adjustment 1.3 -b block --keyring-backend=test --home=$HOME/.qwoynd/ -y ``` ## Get NFT Info ``` -cohod query wasm contract-state smart $CONTRACT_ADDRESS $QUERY_MSG +qwoynd query wasm contract-state smart $CONTRACT_ADDRESS $QUERY_MSG # $CONTRACT_ADDRESS - Contract address (Example: coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc) # QUERY_MSG - JSON encoded read args (Example: '{"nft_info":{"token_id":"1"}}') @@ -122,19 +122,19 @@ cohod query wasm contract-state smart $CONTRACT_ADDRESS $QUERY_MSG Example command to get Ship NFT contract info ``` -cohod query wasm contract-state smart coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc '{"contract_info":{}}' +qwoynd query wasm contract-state smart coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc '{"contract_info":{}}' ``` Example command to get Ship NFT info with token_id "1" ``` -cohod query wasm contract-state smart coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc '{"nft_info":{"token_id":"1"}}' +qwoynd query wasm contract-state smart coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc '{"nft_info":{"token_id":"1"}}' ``` ## Update NFT ``` -cohod tx wasm execute $CONTRACT_ADDRESS $EXECUTE_MSG --from $FROM --chain-id $CHAIN_ID --gas auto --gas-adjustment 1.3 -b block --keyring-backend=$KEYRING_BACKEND --home=$HOME/.cohod/ -y +qwoynd tx wasm execute $CONTRACT_ADDRESS $EXECUTE_MSG --from $FROM --chain-id $CHAIN_ID --gas auto --gas-adjustment 1.3 -b block --keyring-backend=$KEYRING_BACKEND --home=$HOME/.qwoynd/ -y # $CONTRACT_ADDRESS - Contract address (Example: coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc) # $EXECUTE_MSG - JSON encoded send args (Example: '{"update_nft":{"token_id":"1","extension":{"ship_type":20,"owner":"200"}}}') @@ -147,13 +147,13 @@ cohod tx wasm execute $CONTRACT_ADDRESS $EXECUTE_MSG --from $FROM --chain-id $CH Example command to update Ship NFT with token_id "1" ``` -cohod tx wasm execute coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc '{"update_nft":{"token_id":"1","extension":{"ship_type":20,"owner":"200"}}}' --from signer --chain-id qwoyn-1 --gas auto --gas-adjustment 1.3 -b block --keyring-backend=test --home=$HOME/.cohod/ -y +qwoynd tx wasm execute coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc '{"update_nft":{"token_id":"1","extension":{"ship_type":20,"owner":"200"}}}' --from signer --chain-id qwoyn-1 --gas auto --gas-adjustment 1.3 -b block --keyring-backend=test --home=$HOME/.qwoynd/ -y ``` ## Transfer Ownership ``` -cohod tx wasm execute $CONTRACT_ADDRESS $EXECUTE_MSG --from $FROM --chain-id $CHAIN_ID --gas auto --gas-adjustment 1.3 -b block --keyring-backend=$KEYRING_BACKEND --home=$HOME/.cohod/ -y +qwoynd tx wasm execute $CONTRACT_ADDRESS $EXECUTE_MSG --from $FROM --chain-id $CHAIN_ID --gas auto --gas-adjustment 1.3 -b block --keyring-backend=$KEYRING_BACKEND --home=$HOME/.qwoynd/ -y # $CONTRACT_ADDRESS - Contract address (Example: coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc) # $EXECUTE_MSG - JSON encoded send args (Example: '{"transfer_ownership":{"owner":"coho1f0yhatqxayku7y00k448n43qwch320v4da2plx"}}') @@ -166,5 +166,5 @@ cohod tx wasm execute $CONTRACT_ADDRESS $EXECUTE_MSG --from $FROM --chain-id $CH Example command to transfer ownership to `coho1f0yhatqxayku7y00k448n43qwch320v4da2plx` ``` -cohod tx wasm execute coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc '{"transfer_ownership":{"owner":"coho1f0yhatqxayku7y00k448n43qwch320v4da2plx"}}' --from signer --chain-id qwoyn-1 --gas auto --gas-adjustment 1.3 -b block --keyring-backend=test --home=$HOME/.cohod/ -y +qwoynd tx wasm execute coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc '{"transfer_ownership":{"owner":"coho1f0yhatqxayku7y00k448n43qwch320v4da2plx"}}' --from signer --chain-id qwoyn-1 --gas auto --gas-adjustment 1.3 -b block --keyring-backend=test --home=$HOME/.qwoynd/ -y ``` diff --git a/go.mod b/go.mod index 087b7ff..1967c10 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/cosmic-horizon/coho +module github.com/cosmic-horizon/qwoyn go 1.16 diff --git a/proto/coho/genesis.proto b/proto/coho/genesis.proto index e4628f2..b713840 100644 --- a/proto/coho/genesis.proto +++ b/proto/coho/genesis.proto @@ -1,11 +1,11 @@ syntax = "proto3"; -package cosmichorizon.coho.coho; +package cosmichorizon.qwoyn.coho; import "gogoproto/gogo.proto"; import "coho/params.proto"; // this line is used by starport scaffolding # genesis/proto/import -option go_package = "github.com/cosmic-horizon/coho/x/coho/types"; +option go_package = "github.com/cosmic-horizon/qwoyn/x/coho/types"; // GenesisState defines the coho module's genesis state. message GenesisState { diff --git a/proto/coho/params.proto b/proto/coho/params.proto index 5cb4986..aafcb9d 100644 --- a/proto/coho/params.proto +++ b/proto/coho/params.proto @@ -1,9 +1,9 @@ syntax = "proto3"; -package cosmichorizon.coho.coho; +package cosmichorizon.qwoyn.coho; import "gogoproto/gogo.proto"; -option go_package = "github.com/cosmic-horizon/coho/x/coho/types"; +option go_package = "github.com/cosmic-horizon/qwoyn/x/coho/types"; // Params defines the parameters for the module. message Params { diff --git a/proto/coho/query.proto b/proto/coho/query.proto index c985f30..eeaace4 100644 --- a/proto/coho/query.proto +++ b/proto/coho/query.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmichorizon.coho.coho; +package cosmichorizon.qwoyn.coho; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; @@ -7,7 +7,7 @@ import "cosmos/base/query/v1beta1/pagination.proto"; import "coho/params.proto"; // this line is used by starport scaffolding # 1 -option go_package = "github.com/cosmic-horizon/coho/x/coho/types"; +option go_package = "github.com/cosmic-horizon/qwoyn/x/coho/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/coho/tx.proto b/proto/coho/tx.proto index 1989d5d..aa8f72e 100644 --- a/proto/coho/tx.proto +++ b/proto/coho/tx.proto @@ -1,9 +1,9 @@ syntax = "proto3"; -package cosmichorizon.coho.coho; +package cosmichorizon.qwoyn.coho; // this line is used by starport scaffolding # proto/tx/import -option go_package = "github.com/cosmic-horizon/coho/x/coho/types"; +option go_package = "github.com/cosmic-horizon/qwoyn/x/coho/types"; // Msg defines the Msg service. service Msg { diff --git a/proto/game/game.proto b/proto/game/game.proto index e0eaf42..599820d 100644 --- a/proto/game/game.proto +++ b/proto/game/game.proto @@ -1,12 +1,12 @@ syntax = "proto3"; -package cosmichorizon.coho.game; +package cosmichorizon.qwoyn.game; import "cosmos/base/v1beta1/coin.proto"; import "google/protobuf/duration.proto"; import "google/protobuf/timestamp.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/cosmic-horizon/coho/x/game/types"; +option go_package = "github.com/cosmic-horizon/qwoyn/x/game/types"; message Deposit { string address = 1; diff --git a/proto/game/genesis.proto b/proto/game/genesis.proto index 33ee6db..e6c5dce 100644 --- a/proto/game/genesis.proto +++ b/proto/game/genesis.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmichorizon.coho.game; +package cosmichorizon.qwoyn.game; import "gogoproto/gogo.proto"; import "google/protobuf/duration.proto"; @@ -8,7 +8,7 @@ import "game/params.proto"; import "game/game.proto"; import "game/liquidity.proto"; -option go_package = "github.com/cosmic-horizon/coho/x/game/types"; +option go_package = "github.com/cosmic-horizon/qwoyn/x/game/types"; // GenesisState defines the game module's genesis state. message GenesisState { diff --git a/proto/game/liquidity.proto b/proto/game/liquidity.proto index 5d93515..290edaa 100644 --- a/proto/game/liquidity.proto +++ b/proto/game/liquidity.proto @@ -1,12 +1,12 @@ syntax = "proto3"; -package cosmichorizon.coho.game; +package cosmichorizon.qwoyn.game; import "cosmos/base/v1beta1/coin.proto"; import "google/protobuf/duration.proto"; import "google/protobuf/timestamp.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/cosmic-horizon/coho/x/game/types"; +option go_package = "github.com/cosmic-horizon/qwoyn/x/game/types"; message Liquidity { repeated cosmos.base.v1beta1.Coin amounts = 1 [ (gogoproto.nullable) = false ]; diff --git a/proto/game/params.proto b/proto/game/params.proto index 6532970..1978c8e 100644 --- a/proto/game/params.proto +++ b/proto/game/params.proto @@ -1,11 +1,11 @@ syntax = "proto3"; -package cosmichorizon.coho.game; +package cosmichorizon.qwoyn.game; import "gogoproto/gogo.proto"; import "google/protobuf/duration.proto"; import "google/protobuf/timestamp.proto"; -option go_package = "github.com/cosmic-horizon/coho/x/game/types"; +option go_package = "github.com/cosmic-horizon/qwoyn/x/game/types"; // Params defines the parameters for the module. message Params { diff --git a/proto/game/query.proto b/proto/game/query.proto index db3f0ef..52d2ad0 100644 --- a/proto/game/query.proto +++ b/proto/game/query.proto @@ -1,5 +1,5 @@ syntax = "proto3"; -package cosmichorizon.coho.game; +package cosmichorizon.qwoyn.game; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; @@ -9,7 +9,7 @@ import "game/game.proto"; import "game/liquidity.proto"; import "cosmos/base/v1beta1/coin.proto"; -option go_package = "github.com/cosmic-horizon/coho/x/game/types"; +option go_package = "github.com/cosmic-horizon/qwoyn/x/game/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/game/tx.proto b/proto/game/tx.proto index d52baaf..bba577d 100644 --- a/proto/game/tx.proto +++ b/proto/game/tx.proto @@ -1,10 +1,10 @@ syntax = "proto3"; -package cosmichorizon.coho.game; +package cosmichorizon.qwoyn.game; import "cosmos/base/v1beta1/coin.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/cosmic-horizon/coho/x/game/types"; +option go_package = "github.com/cosmic-horizon/qwoyn/x/game/types"; // Msg defines the Msg service. service Msg { diff --git a/proto/mint/genesis.proto b/proto/mint/genesis.proto index 6c3892c..ea3ddaa 100644 --- a/proto/mint/genesis.proto +++ b/proto/mint/genesis.proto @@ -1,10 +1,10 @@ syntax = "proto3"; -package cosmichorizon.coho.mint; +package cosmichorizon.qwoyn.mint; import "gogoproto/gogo.proto"; import "mint/mint.proto"; -option go_package = "github.com/cosmic-horizon/coho/x/mint/types"; +option go_package = "github.com/cosmic-horizon/qwoyn/x/mint/types"; // GenesisState defines the mint module's genesis state. message GenesisState { diff --git a/proto/mint/mint.proto b/proto/mint/mint.proto index e543eb8..d352d9d 100644 --- a/proto/mint/mint.proto +++ b/proto/mint/mint.proto @@ -1,7 +1,7 @@ syntax = "proto3"; -package cosmichorizon.coho.mint; +package cosmichorizon.qwoyn.mint; -option go_package = "github.com/cosmic-horizon/coho/x/mint/types"; +option go_package = "github.com/cosmic-horizon/qwoyn/x/mint/types"; import "gogoproto/gogo.proto"; diff --git a/proto/mint/query.proto b/proto/mint/query.proto index cff0412..e0a2619 100644 --- a/proto/mint/query.proto +++ b/proto/mint/query.proto @@ -1,11 +1,11 @@ syntax = "proto3"; -package cosmichorizon.coho.mint; +package cosmichorizon.qwoyn.mint; import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; import "mint/mint.proto"; -option go_package = "github.com/cosmic-horizon/coho/x/mint/types"; +option go_package = "github.com/cosmic-horizon/qwoyn/x/mint/types"; // Query provides defines the gRPC querier service. service Query { diff --git a/readme.md b/readme.md index d009366..f0a3755 100644 --- a/readme.md +++ b/readme.md @@ -1,6 +1,6 @@ # Cosmic Horizon Network -# Installing CoHo +# Installing `Qwoynd` ## Hardware Requirements @@ -15,9 +15,9 @@ Here are the minimal hardware configs required for running a validator/sentry no - Ubuntu 18.04 or higher - [Go v1.17.1](https://golang.org/doc/install) -# Install CoHo, Generate Wallet and Start your Node +# Install `Qwoynd`, Generate Wallet and Start your Node -You have two options for installing the cohod binary. First, our team will be providing releases of cohod in our github repository, please check the [releases page](https://github.com/cosmic-horizon/coho/releases) for the latest version of cohod. Secondly, you can follow the steps below to compile coho yourself. +You have two options for installing the qwoynd binary. First, our team will be providing releases of qwoynd in our github repository, please check the [releases page](https://github.com/cosmic-horizon/qwoyn/releases) for the latest version of qwoynd. Secondly, you can follow the steps below to compile `Qwoynd` yourself. ## Install Go version 1.17.1 @@ -43,21 +43,21 @@ echo 'export PATH=$PATH:/usr/local/go/bin:$GOBIN' >> ~/.bashrc source ~/.bashrc ``` -## Build CoHo +## Build `Qwoynd` -These steps install the `cohod` binary. +These steps install the `qwoynd` binary. ``` # Clone the Repo -git clone https://github.com/cosmic-horizon/coho.git +git clone https://github.com/cosmic-horizon/QWOYN.git -# Install CoHo -cd coho +# Install `Qwoynd` +cd QWOYN make install ``` ## Testnet generation ``` -cohod testnet --keyring-backend=test --chain-id="qwoyn-1" --v 4 --output-dir ./testnet --starting-ip-address 192.168.10.2 +qwoynd testnet --keyring-backend=test --chain-id="qwoyn-1" --v 4 --output-dir ./testnet --starting-ip-address 192.168.10.2 ``` diff --git a/scripts/protocgen.sh b/scripts/protocgen.sh index 66086f2..f9fa21f 100644 --- a/scripts/protocgen.sh +++ b/scripts/protocgen.sh @@ -29,5 +29,5 @@ Mgoogle/protobuf/any.proto=github.com/cosmos/cosmos-sdk/codec/types:. \ done # move proto files to the right places -cp -r github.com/cosmic-horizon/coho/* ./ +cp -r github.com/cosmic-horizon/qwoyn/* ./ rm -rf github.com diff --git a/start.sh b/start.sh index ee3448c..bc9f5be 100644 --- a/start.sh +++ b/start.sh @@ -1,13 +1,13 @@ #!/bin/sh -rm -rf ~/.cohod +rm -rf ~/.qwoynd # Build genesis -cohod init --chain-id=qwoyn-1 test -cohod keys add validator --keyring-backend="test" -cohod add-genesis-account $(cohod keys show validator -a --keyring-backend="test") 100000000000000uqwoyn,100000000000000ucoho,100000000000000stake -cohod gentx validator 100000000stake --keyring-backend="test" --chain-id=qwoyn-1 -cohod collect-gentxs +qwoynd init --chain-id=qwoyn-1 test +qwoynd keys add validator --keyring-backend="test" +qwoynd add-genesis-account $(qwoynd keys show validator -a --keyring-backend="test") 100000000000000uqwoyn,100000000000000ucoho,100000000000000stake +qwoynd gentx validator 100000000stake --keyring-backend="test" --chain-id=qwoyn-1 +qwoynd collect-gentxs # Start node -cohod start --pruning=nothing --minimum-gas-prices="0stake" +qwoynd start --pruning=nothing --minimum-gas-prices="0stake" diff --git a/startport-instructions.md b/startport-instructions.md index e92e569..afc3d2c 100644 --- a/startport-instructions.md +++ b/startport-instructions.md @@ -1,5 +1,6 @@ -# coho -**coho** is a blockchain built using Cosmos SDK and Tendermint and created with [Starport](https://starport.com). +# Qwoyn + +**Qwoyn** is a blockchain built using Cosmos SDK and Tendermint and created with [Starport](https://starport.com). ## Get started @@ -26,6 +27,7 @@ npm run serve The frontend app is built using the `@starport/vue` and `@starport/vuex` packages. For details, see the [monorepo for Starport front-end development](https://github.com/tendermint/vue). ## Release + To release a new version of your blockchain, create and push a new tag with `v` prefix. A new draft release with the configured targets will be created. ``` @@ -36,12 +38,14 @@ git push origin v0.1 After a draft release is created, make your final changes from the release page and publish it. ### Install + To install the latest version of your blockchain node's binary, execute the following command on your machine: ``` -curl https://get.starport.com/cosmic-horizon/coho@latest! | sudo bash +curl https://get.starport.com/cosmic-horizon/QWOYN@latest! | sudo bash ``` -`cosmic-horizon/coho` should match the `username` and `repo_name` of the Github repository to which the source code was pushed. Learn more about [the install process](https://github.com/allinbits/starport-installer). + +`cosmic-horizon/QWOYN` should match the `username` and `repo_name` of the Github repository to which the source code was pushed. Learn more about [the install process](https://github.com/allinbits/starport-installer). ## Learn more diff --git a/testutil/keeper/coho.go b/testutil/keeper/coho.go index 5b30a09..1f3c6b3 100644 --- a/testutil/keeper/coho.go +++ b/testutil/keeper/coho.go @@ -3,8 +3,8 @@ package keeper import ( "testing" - "github.com/cosmic-horizon/coho/x/coho/keeper" - "github.com/cosmic-horizon/coho/x/coho/types" + "github.com/cosmic-horizon/qwoyn/x/coho/keeper" + "github.com/cosmic-horizon/qwoyn/x/coho/types" "github.com/cosmos/cosmos-sdk/codec" codectypes "github.com/cosmos/cosmos-sdk/codec/types" "github.com/cosmos/cosmos-sdk/store" diff --git a/testutil/network/network.go b/testutil/network/network.go index 90caadb..2e77a62 100644 --- a/testutil/network/network.go +++ b/testutil/network/network.go @@ -17,8 +17,8 @@ import ( tmrand "github.com/tendermint/tendermint/libs/rand" tmdb "github.com/tendermint/tm-db" - "github.com/cosmic-horizon/coho/app" - "github.com/cosmic-horizon/coho/app/params" + "github.com/cosmic-horizon/qwoyn/app" + "github.com/cosmic-horizon/qwoyn/app/params" ) type ( diff --git a/x/coho/client/cli/query.go b/x/coho/client/cli/query.go index 0273701..2119caa 100644 --- a/x/coho/client/cli/query.go +++ b/x/coho/client/cli/query.go @@ -10,7 +10,7 @@ import ( // "github.com/cosmos/cosmos-sdk/client/flags" // sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmic-horizon/coho/x/coho/types" + "github.com/cosmic-horizon/qwoyn/x/coho/types" ) // GetQueryCmd returns the cli query commands for this module diff --git a/x/coho/client/cli/query_params.go b/x/coho/client/cli/query_params.go index c01c4ae..7dff62d 100644 --- a/x/coho/client/cli/query_params.go +++ b/x/coho/client/cli/query_params.go @@ -3,7 +3,7 @@ package cli import ( "context" - "github.com/cosmic-horizon/coho/x/coho/types" + "github.com/cosmic-horizon/qwoyn/x/coho/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" diff --git a/x/coho/client/cli/tx.go b/x/coho/client/cli/tx.go index 185b9c3..cc95c0a 100644 --- a/x/coho/client/cli/tx.go +++ b/x/coho/client/cli/tx.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" // "github.com/cosmos/cosmos-sdk/client/flags" - "github.com/cosmic-horizon/coho/x/coho/types" + "github.com/cosmic-horizon/qwoyn/x/coho/types" ) var ( diff --git a/x/coho/genesis.go b/x/coho/genesis.go index 440fe94..c600dc8 100644 --- a/x/coho/genesis.go +++ b/x/coho/genesis.go @@ -1,8 +1,8 @@ package coho import ( - "github.com/cosmic-horizon/coho/x/coho/keeper" - "github.com/cosmic-horizon/coho/x/coho/types" + "github.com/cosmic-horizon/qwoyn/x/coho/keeper" + "github.com/cosmic-horizon/qwoyn/x/coho/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/coho/genesis_test.go b/x/coho/genesis_test.go index d71885b..b5b4d61 100644 --- a/x/coho/genesis_test.go +++ b/x/coho/genesis_test.go @@ -3,10 +3,10 @@ package coho_test import ( "testing" - keepertest "github.com/cosmic-horizon/coho/testutil/keeper" - "github.com/cosmic-horizon/coho/testutil/nullify" - "github.com/cosmic-horizon/coho/x/coho" - "github.com/cosmic-horizon/coho/x/coho/types" + keepertest "github.com/cosmic-horizon/qwoyn/testutil/keeper" + "github.com/cosmic-horizon/qwoyn/testutil/nullify" + "github.com/cosmic-horizon/qwoyn/x/coho" + "github.com/cosmic-horizon/qwoyn/x/coho/types" "github.com/stretchr/testify/require" ) diff --git a/x/coho/handler.go b/x/coho/handler.go index 2672c47..b80e9fc 100644 --- a/x/coho/handler.go +++ b/x/coho/handler.go @@ -3,8 +3,8 @@ package coho import ( "fmt" - "github.com/cosmic-horizon/coho/x/coho/keeper" - "github.com/cosmic-horizon/coho/x/coho/types" + "github.com/cosmic-horizon/qwoyn/x/coho/keeper" + "github.com/cosmic-horizon/qwoyn/x/coho/types" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" ) diff --git a/x/coho/keeper/grpc_query.go b/x/coho/keeper/grpc_query.go index 2329e90..e896ce0 100644 --- a/x/coho/keeper/grpc_query.go +++ b/x/coho/keeper/grpc_query.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/cosmic-horizon/coho/x/coho/types" + "github.com/cosmic-horizon/qwoyn/x/coho/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/coho/keeper/grpc_query_params.go b/x/coho/keeper/grpc_query_params.go index d5e4cbd..e3f4877 100644 --- a/x/coho/keeper/grpc_query_params.go +++ b/x/coho/keeper/grpc_query_params.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "github.com/cosmic-horizon/coho/x/coho/types" + "github.com/cosmic-horizon/qwoyn/x/coho/types" sdk "github.com/cosmos/cosmos-sdk/types" "google.golang.org/grpc/codes" "google.golang.org/grpc/status" diff --git a/x/coho/keeper/grpc_query_params_test.go b/x/coho/keeper/grpc_query_params_test.go index 155761d..578dab2 100644 --- a/x/coho/keeper/grpc_query_params_test.go +++ b/x/coho/keeper/grpc_query_params_test.go @@ -3,8 +3,8 @@ package keeper_test import ( "testing" - testkeeper "github.com/cosmic-horizon/coho/testutil/keeper" - "github.com/cosmic-horizon/coho/x/coho/types" + testkeeper "github.com/cosmic-horizon/qwoyn/testutil/keeper" + "github.com/cosmic-horizon/qwoyn/x/coho/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" ) diff --git a/x/coho/keeper/keeper.go b/x/coho/keeper/keeper.go index b7c2b0b..0cc1531 100644 --- a/x/coho/keeper/keeper.go +++ b/x/coho/keeper/keeper.go @@ -5,7 +5,7 @@ import ( "github.com/tendermint/tendermint/libs/log" - "github.com/cosmic-horizon/coho/x/coho/types" + "github.com/cosmic-horizon/qwoyn/x/coho/types" "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" diff --git a/x/coho/keeper/msg_server.go b/x/coho/keeper/msg_server.go index 6e72eb4..a0eff30 100644 --- a/x/coho/keeper/msg_server.go +++ b/x/coho/keeper/msg_server.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/cosmic-horizon/coho/x/coho/types" + "github.com/cosmic-horizon/qwoyn/x/coho/types" ) type msgServer struct { diff --git a/x/coho/keeper/msg_server_test.go b/x/coho/keeper/msg_server_test.go index 7d50d90..b2fbdcd 100644 --- a/x/coho/keeper/msg_server_test.go +++ b/x/coho/keeper/msg_server_test.go @@ -4,9 +4,9 @@ import ( "context" "testing" - keepertest "github.com/cosmic-horizon/coho/testutil/keeper" - "github.com/cosmic-horizon/coho/x/coho/keeper" - "github.com/cosmic-horizon/coho/x/coho/types" + keepertest "github.com/cosmic-horizon/qwoyn/testutil/keeper" + "github.com/cosmic-horizon/qwoyn/x/coho/keeper" + "github.com/cosmic-horizon/qwoyn/x/coho/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/coho/keeper/params.go b/x/coho/keeper/params.go index fc1486e..162edf9 100644 --- a/x/coho/keeper/params.go +++ b/x/coho/keeper/params.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/cosmic-horizon/coho/x/coho/types" + "github.com/cosmic-horizon/qwoyn/x/coho/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/coho/keeper/params_test.go b/x/coho/keeper/params_test.go index 4efcc79..7f640ca 100644 --- a/x/coho/keeper/params_test.go +++ b/x/coho/keeper/params_test.go @@ -3,8 +3,8 @@ package keeper_test import ( "testing" - testkeeper "github.com/cosmic-horizon/coho/testutil/keeper" - "github.com/cosmic-horizon/coho/x/coho/types" + testkeeper "github.com/cosmic-horizon/qwoyn/testutil/keeper" + "github.com/cosmic-horizon/qwoyn/x/coho/types" "github.com/stretchr/testify/require" ) diff --git a/x/coho/module.go b/x/coho/module.go index 4a95437..b28b750 100644 --- a/x/coho/module.go +++ b/x/coho/module.go @@ -10,9 +10,9 @@ import ( abci "github.com/tendermint/tendermint/abci/types" - "github.com/cosmic-horizon/coho/x/coho/client/cli" - "github.com/cosmic-horizon/coho/x/coho/keeper" - "github.com/cosmic-horizon/coho/x/coho/types" + "github.com/cosmic-horizon/qwoyn/x/coho/client/cli" + "github.com/cosmic-horizon/qwoyn/x/coho/keeper" + "github.com/cosmic-horizon/qwoyn/x/coho/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/codec" cdctypes "github.com/cosmos/cosmos-sdk/codec/types" diff --git a/x/coho/module_simulation.go b/x/coho/module_simulation.go index c0e7130..fe4c00e 100644 --- a/x/coho/module_simulation.go +++ b/x/coho/module_simulation.go @@ -3,9 +3,9 @@ package coho import ( "math/rand" - "github.com/cosmic-horizon/coho/testutil/sample" - cohosimulation "github.com/cosmic-horizon/coho/x/coho/simulation" - "github.com/cosmic-horizon/coho/x/coho/types" + "github.com/cosmic-horizon/qwoyn/testutil/sample" + cohosimulation "github.com/cosmic-horizon/qwoyn/x/coho/simulation" + "github.com/cosmic-horizon/qwoyn/x/coho/types" "github.com/cosmos/cosmos-sdk/baseapp" simappparams "github.com/cosmos/cosmos-sdk/simapp/params" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/coho/types/genesis.pb.go b/x/coho/types/genesis.pb.go index 5c2170d..2b8293d 100644 --- a/x/coho/types/genesis.pb.go +++ b/x/coho/types/genesis.pb.go @@ -69,25 +69,26 @@ func (m *GenesisState) GetParams() Params { } func init() { - proto.RegisterType((*GenesisState)(nil), "cosmichorizon.coho.coho.GenesisState") + proto.RegisterType((*GenesisState)(nil), "cosmichorizon.qwoyn.coho.GenesisState") } func init() { proto.RegisterFile("coho/genesis.proto", fileDescriptor_c6d0714f77876b4c) } var fileDescriptor_c6d0714f77876b4c = []byte{ - // 192 bytes of a gzipped FileDescriptorProto + // 199 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x4a, 0xce, 0xcf, 0xc8, - 0xd7, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, - 0x4f, 0xce, 0x2f, 0xce, 0xcd, 0x4c, 0xce, 0xc8, 0x2f, 0xca, 0xac, 0xca, 0xcf, 0xd3, 0x03, 0xa9, - 0x00, 0x13, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0x35, 0xfa, 0x20, 0x16, 0x44, 0xb9, 0x94, - 0x20, 0xd8, 0x88, 0x82, 0xc4, 0xa2, 0xc4, 0x5c, 0xa8, 0x09, 0x4a, 0xbe, 0x5c, 0x3c, 0xee, 0x10, - 0x23, 0x83, 0x4b, 0x12, 0x4b, 0x52, 0x85, 0x6c, 0xb9, 0xd8, 0x20, 0xf2, 0x12, 0x8c, 0x0a, 0x8c, - 0x1a, 0xdc, 0x46, 0xf2, 0x7a, 0x38, 0xac, 0xd0, 0x0b, 0x00, 0x2b, 0x73, 0x62, 0x39, 0x71, 0x4f, - 0x9e, 0x21, 0x08, 0xaa, 0xc9, 0xc9, 0xf5, 0xc4, 0x23, 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, - 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, 0x8e, 0xe1, 0xc2, 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, - 0xa2, 0xb4, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, 0xf3, 0x73, 0xf5, 0x21, 0x46, 0xea, - 0x42, 0xcd, 0xd4, 0x07, 0xbb, 0xaa, 0x02, 0x42, 0x95, 0x54, 0x16, 0xa4, 0x16, 0x27, 0xb1, 0x81, - 0x1d, 0x67, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0xd0, 0x8a, 0xe9, 0xcf, 0xf4, 0x00, 0x00, 0x00, + 0xd7, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x92, + 0x48, 0xce, 0x2f, 0xce, 0xcd, 0x4c, 0xce, 0xc8, 0x2f, 0xca, 0xac, 0xca, 0xcf, 0xd3, 0x2b, 0x2c, + 0xcf, 0xaf, 0xcc, 0xd3, 0x03, 0xa9, 0x93, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0x2b, 0xd2, 0x07, + 0xb1, 0x20, 0xea, 0xa5, 0x04, 0xc1, 0x66, 0x14, 0x24, 0x16, 0x25, 0xe6, 0x42, 0x8d, 0x50, 0xf2, + 0xe3, 0xe2, 0x71, 0x87, 0x98, 0x19, 0x5c, 0x92, 0x58, 0x92, 0x2a, 0x64, 0xc7, 0xc5, 0x06, 0x91, + 0x97, 0x60, 0x54, 0x60, 0xd4, 0xe0, 0x36, 0x52, 0xd0, 0xc3, 0x65, 0x87, 0x5e, 0x00, 0x58, 0x9d, + 0x13, 0xcb, 0x89, 0x7b, 0xf2, 0x0c, 0x41, 0x50, 0x5d, 0x4e, 0x6e, 0x27, 0x1e, 0xc9, 0x31, 0x5e, + 0x78, 0x24, 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x84, 0xc7, 0x72, 0x0c, 0x17, 0x1e, 0xcb, 0x31, + 0xdc, 0x78, 0x2c, 0xc7, 0x10, 0xa5, 0x93, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, 0x9c, 0x9f, + 0xab, 0x0f, 0x31, 0x53, 0x17, 0x6a, 0xa8, 0x3e, 0xd8, 0x50, 0xfd, 0x0a, 0x7d, 0xb0, 0xf3, 0x4a, + 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0xce, 0x33, 0x06, 0x04, 0x00, 0x00, 0xff, 0xff, 0xd8, + 0x3d, 0x30, 0x2d, 0xf7, 0x00, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/coho/types/genesis_test.go b/x/coho/types/genesis_test.go index e9920ba..cc641ed 100644 --- a/x/coho/types/genesis_test.go +++ b/x/coho/types/genesis_test.go @@ -3,7 +3,7 @@ package types_test import ( "testing" - "github.com/cosmic-horizon/coho/x/coho/types" + "github.com/cosmic-horizon/qwoyn/x/coho/types" "github.com/stretchr/testify/require" ) diff --git a/x/coho/types/params.pb.go b/x/coho/types/params.pb.go index f5b399c..b56a48e 100644 --- a/x/coho/types/params.pb.go +++ b/x/coho/types/params.pb.go @@ -60,23 +60,23 @@ func (m *Params) XXX_DiscardUnknown() { var xxx_messageInfo_Params proto.InternalMessageInfo func init() { - proto.RegisterType((*Params)(nil), "cosmichorizon.coho.coho.Params") + proto.RegisterType((*Params)(nil), "cosmichorizon.qwoyn.coho.Params") } func init() { proto.RegisterFile("coho/params.proto", fileDescriptor_4985f6d8f8969460) } var fileDescriptor_4985f6d8f8969460 = []byte{ - // 150 bytes of a gzipped FileDescriptorProto + // 157 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0x4c, 0xce, 0xcf, 0xc8, - 0xd7, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x4f, - 0xce, 0x2f, 0xce, 0xcd, 0x4c, 0xce, 0xc8, 0x2f, 0xca, 0xac, 0xca, 0xcf, 0xd3, 0x03, 0x29, 0x00, - 0x13, 0x52, 0x22, 0xe9, 0xf9, 0xe9, 0xf9, 0x60, 0x35, 0xfa, 0x20, 0x16, 0x44, 0xb9, 0x12, 0x1f, - 0x17, 0x5b, 0x00, 0x58, 0xbb, 0x15, 0xcb, 0x8c, 0x05, 0xf2, 0x0c, 0x4e, 0xae, 0x27, 0x1e, 0xc9, - 0x31, 0x5e, 0x78, 0x24, 0xc7, 0xf8, 0xe0, 0x91, 0x1c, 0xe3, 0x84, 0xc7, 0x72, 0x0c, 0x17, 0x1e, - 0xcb, 0x31, 0xdc, 0x78, 0x2c, 0xc7, 0x10, 0xa5, 0x9d, 0x9e, 0x59, 0x92, 0x51, 0x9a, 0xa4, 0x97, - 0x9c, 0x9f, 0xab, 0x0f, 0xb1, 0x43, 0x17, 0x6a, 0x89, 0x3e, 0xd8, 0x15, 0x15, 0x10, 0xaa, 0xa4, - 0xb2, 0x20, 0xb5, 0x38, 0x89, 0x0d, 0x6c, 0xba, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0x4d, 0x2e, - 0xea, 0x82, 0xa1, 0x00, 0x00, 0x00, + 0xd7, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x92, 0x48, + 0xce, 0x2f, 0xce, 0xcd, 0x4c, 0xce, 0xc8, 0x2f, 0xca, 0xac, 0xca, 0xcf, 0xd3, 0x2b, 0x2c, 0xcf, + 0xaf, 0xcc, 0xd3, 0x03, 0x29, 0x93, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0x2b, 0xd2, 0x07, 0xb1, + 0x20, 0xea, 0x95, 0xf8, 0xb8, 0xd8, 0x02, 0xc0, 0xfa, 0xad, 0x58, 0x66, 0x2c, 0x90, 0x67, 0x70, + 0x72, 0x3b, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, + 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, 0xc6, 0x63, 0x39, 0x86, 0x28, 0x9d, 0xf4, 0xcc, 0x92, + 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, 0x7d, 0x88, 0x25, 0xba, 0x50, 0x5b, 0xf4, 0xc1, 0xb6, + 0xe8, 0x57, 0xe8, 0x83, 0x9d, 0x53, 0x52, 0x59, 0x90, 0x5a, 0x9c, 0xc4, 0x06, 0x36, 0xde, 0x18, + 0x10, 0x00, 0x00, 0xff, 0xff, 0xc2, 0x4d, 0x8e, 0x1b, 0xa3, 0x00, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/coho/types/query.pb.go b/x/coho/types/query.pb.go index 70dd65c..799346d 100644 --- a/x/coho/types/query.pb.go +++ b/x/coho/types/query.pb.go @@ -114,33 +114,34 @@ func (m *QueryParamsResponse) GetParams() Params { } func init() { - proto.RegisterType((*QueryParamsRequest)(nil), "cosmichorizon.coho.coho.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "cosmichorizon.coho.coho.QueryParamsResponse") + proto.RegisterType((*QueryParamsRequest)(nil), "cosmichorizon.qwoyn.coho.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "cosmichorizon.qwoyn.coho.QueryParamsResponse") } func init() { proto.RegisterFile("coho/query.proto", fileDescriptor_0c71ba60c5a739ac) } var fileDescriptor_0c71ba60c5a739ac = []byte{ - // 303 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x90, 0x31, 0x4b, 0x03, 0x31, - 0x14, 0xc7, 0x2f, 0xa2, 0x1d, 0xe2, 0xa2, 0xb1, 0xa0, 0x14, 0x49, 0xb5, 0x8b, 0x62, 0xf5, 0x42, - 0xeb, 0xec, 0x52, 0x70, 0xd7, 0xe2, 0xe4, 0x96, 0x3b, 0x42, 0x1a, 0xb0, 0x79, 0xe9, 0x25, 0x27, - 0xd6, 0xd1, 0xd9, 0x41, 0x10, 0xfc, 0x4c, 0x1d, 0x0b, 0x2e, 0x4e, 0x22, 0x77, 0x7e, 0x10, 0xb9, - 0xe4, 0x06, 0x0f, 0x29, 0xb8, 0xdc, 0x85, 0xf7, 0x7e, 0xbf, 0x7f, 0x5e, 0x1e, 0xde, 0x4a, 0x61, - 0x02, 0x6c, 0x96, 0x8b, 0x6c, 0x1e, 0x9b, 0x0c, 0x1c, 0x90, 0xdd, 0x14, 0xec, 0x54, 0xa5, 0x13, - 0xc8, 0xd4, 0x23, 0xe8, 0xb8, 0xea, 0xfb, 0x4f, 0xa7, 0x2d, 0x41, 0x82, 0x67, 0x58, 0x75, 0x0a, - 0x78, 0x67, 0x5f, 0x02, 0xc8, 0x3b, 0xc1, 0xb8, 0x51, 0x8c, 0x6b, 0x0d, 0x8e, 0x3b, 0x05, 0xda, - 0xd6, 0xdd, 0x93, 0x2a, 0x0c, 0x2c, 0x4b, 0xb8, 0x15, 0xe1, 0x16, 0x76, 0x3f, 0x48, 0x84, 0xe3, - 0x03, 0x66, 0xb8, 0x54, 0xda, 0xc3, 0x35, 0xbb, 0xed, 0x47, 0x31, 0x3c, 0xe3, 0xd3, 0x5a, 0xef, - 0xb5, 0x31, 0xb9, 0xae, 0xa4, 0x2b, 0x5f, 0x1c, 0x8b, 0x59, 0x2e, 0xac, 0xeb, 0xdd, 0xe0, 0x9d, - 0x46, 0xd5, 0x1a, 0xd0, 0x56, 0x90, 0x0b, 0xdc, 0x0a, 0xf2, 0x1e, 0x3a, 0x40, 0xc7, 0x9b, 0xc3, - 0x6e, 0xbc, 0xe2, 0x25, 0x71, 0x10, 0x47, 0xeb, 0x8b, 0xcf, 0x6e, 0x34, 0xae, 0xa5, 0xe1, 0x1b, - 0xc2, 0x1b, 0x3e, 0x96, 0x3c, 0x23, 0xdc, 0x0a, 0x08, 0xe9, 0xaf, 0xcc, 0xf8, 0x3b, 0x57, 0xe7, - 0xf4, 0x7f, 0x70, 0x18, 0xb7, 0x77, 0xf4, 0xf4, 0xfe, 0xfd, 0xba, 0x76, 0x48, 0xba, 0xac, 0x61, - 0x31, 0xbf, 0x85, 0x5f, 0xab, 0x18, 0x5d, 0x2e, 0x0a, 0x8a, 0x96, 0x05, 0x45, 0x5f, 0x05, 0x45, - 0x2f, 0x25, 0x8d, 0x96, 0x25, 0x8d, 0x3e, 0x4a, 0x1a, 0xdd, 0xf6, 0xa5, 0x72, 0x93, 0x3c, 0x89, - 0x53, 0x98, 0xd6, 0x21, 0x67, 0x8d, 0x94, 0x87, 0xf0, 0x73, 0x73, 0x23, 0x6c, 0xd2, 0xf2, 0x2b, - 0x3d, 0xff, 0x09, 0x00, 0x00, 0xff, 0xff, 0x15, 0x3a, 0x2e, 0x36, 0xf2, 0x01, 0x00, 0x00, + // 311 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x8c, 0x90, 0x31, 0x4b, 0x33, 0x31, + 0x18, 0xc7, 0x2f, 0x2f, 0xaf, 0x1d, 0xe2, 0xa2, 0xb1, 0x43, 0x29, 0x92, 0xd6, 0x2e, 0x8a, 0xb4, + 0x09, 0xad, 0xbb, 0x43, 0x07, 0x67, 0x2d, 0xb8, 0xb8, 0xe5, 0x8e, 0x90, 0x06, 0x6c, 0x9e, 0xf4, + 0x92, 0xaa, 0x75, 0xf4, 0x03, 0x88, 0xe0, 0xe2, 0x47, 0xea, 0x58, 0x70, 0x71, 0x12, 0xe9, 0xf9, + 0x41, 0xe4, 0x92, 0x13, 0x2c, 0x52, 0x70, 0x3b, 0x9e, 0xfb, 0xfd, 0x7f, 0xcf, 0x93, 0x3f, 0xde, + 0xc9, 0x60, 0x0c, 0x7c, 0x3a, 0x93, 0xf9, 0x9c, 0xd9, 0x1c, 0x3c, 0x90, 0x46, 0x06, 0x6e, 0xa2, + 0xb3, 0x31, 0xe4, 0xfa, 0x1e, 0x0c, 0x9b, 0xde, 0xc2, 0xdc, 0xb0, 0x92, 0x6a, 0xd6, 0x15, 0x28, + 0x08, 0x10, 0x2f, 0xbf, 0x22, 0xdf, 0xdc, 0x57, 0x00, 0xea, 0x5a, 0x72, 0x61, 0x35, 0x17, 0xc6, + 0x80, 0x17, 0x5e, 0x83, 0x71, 0xd5, 0xdf, 0xe3, 0xd2, 0x06, 0x8e, 0xa7, 0xc2, 0xc9, 0xb8, 0x86, + 0xdf, 0xf4, 0x53, 0xe9, 0x45, 0x9f, 0x5b, 0xa1, 0xb4, 0x09, 0x70, 0xc5, 0xee, 0x86, 0x5b, 0xac, + 0xc8, 0xc5, 0xa4, 0x8a, 0x77, 0xea, 0x98, 0x5c, 0x94, 0xa1, 0xf3, 0x30, 0x1c, 0xc9, 0xe9, 0x4c, + 0x3a, 0xdf, 0xb9, 0xc4, 0x7b, 0x6b, 0x53, 0x67, 0xc1, 0x38, 0x49, 0x4e, 0x71, 0x2d, 0x86, 0x1b, + 0xa8, 0x8d, 0x8e, 0xb6, 0x07, 0x6d, 0xb6, 0xe9, 0x29, 0x2c, 0x26, 0x87, 0xff, 0x17, 0xef, 0xad, + 0x64, 0x54, 0xa5, 0x06, 0x2f, 0x08, 0x6f, 0x05, 0x2f, 0x79, 0x44, 0xb8, 0x16, 0x11, 0xd2, 0xdd, + 0x2c, 0xf9, 0x7d, 0x59, 0xb3, 0xf7, 0x47, 0x3a, 0x5e, 0xdc, 0x39, 0x7c, 0x78, 0xfd, 0x7c, 0xfe, + 0x77, 0x40, 0x5a, 0x7c, 0x2d, 0xc6, 0x43, 0x11, 0x3f, 0xda, 0x18, 0x9e, 0x2d, 0x56, 0x14, 0x2d, + 0x57, 0x14, 0x7d, 0xac, 0x28, 0x7a, 0x2a, 0x68, 0xb2, 0x2c, 0x68, 0xf2, 0x56, 0xd0, 0xe4, 0xaa, + 0xab, 0xb4, 0x1f, 0xcf, 0x52, 0x96, 0xc1, 0xa4, 0x92, 0xf4, 0xbe, 0x2d, 0x61, 0x39, 0xbf, 0x8b, + 0x22, 0x3f, 0xb7, 0xd2, 0xa5, 0xb5, 0x50, 0xeb, 0xc9, 0x57, 0x00, 0x00, 0x00, 0xff, 0xff, 0x7c, + 0xf6, 0xed, 0xf0, 0xf7, 0x01, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -169,7 +170,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { out := new(QueryParamsResponse) - err := c.cc.Invoke(ctx, "/cosmichorizon.coho.coho.Query/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmichorizon.qwoyn.coho.Query/Params", in, out, opts...) if err != nil { return nil, err } @@ -204,7 +205,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmichorizon.coho.coho.Query/Params", + FullMethod: "/cosmichorizon.qwoyn.coho.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) @@ -213,7 +214,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "cosmichorizon.coho.coho.Query", + ServiceName: "cosmichorizon.qwoyn.coho.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { diff --git a/x/coho/types/tx.pb.go b/x/coho/types/tx.pb.go index 0bdd7b6..307fe6f 100644 --- a/x/coho/types/tx.pb.go +++ b/x/coho/types/tx.pb.go @@ -26,15 +26,16 @@ const _ = proto.GoGoProtoPackageIsVersion3 // please upgrade the proto package func init() { proto.RegisterFile("coho/tx.proto", fileDescriptor_fc136ffc7e068a88) } var fileDescriptor_fc136ffc7e068a88 = []byte{ - // 127 bytes of a gzipped FileDescriptorProto + // 133 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xe2, 0x4d, 0xce, 0xcf, 0xc8, - 0xd7, 0x2f, 0xa9, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x4f, 0xce, 0x2f, 0xce, 0xcd, - 0x4c, 0xce, 0xc8, 0x2f, 0xca, 0xac, 0xca, 0xcf, 0xd3, 0x03, 0x49, 0x82, 0x09, 0x23, 0x56, 0x2e, - 0x66, 0xdf, 0xe2, 0x74, 0x27, 0xd7, 0x13, 0x8f, 0xe4, 0x18, 0x2f, 0x3c, 0x92, 0x63, 0x7c, 0xf0, - 0x48, 0x8e, 0x71, 0xc2, 0x63, 0x39, 0x86, 0x0b, 0x8f, 0xe5, 0x18, 0x6e, 0x3c, 0x96, 0x63, 0x88, - 0xd2, 0x4e, 0xcf, 0x2c, 0xc9, 0x28, 0x4d, 0xd2, 0x4b, 0xce, 0xcf, 0xd5, 0x87, 0x18, 0xa2, 0x0b, - 0x35, 0x45, 0x1f, 0x6c, 0x45, 0x05, 0x84, 0x2a, 0xa9, 0x2c, 0x48, 0x2d, 0x4e, 0x62, 0x03, 0xdb, - 0x66, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0xad, 0x5e, 0xe8, 0xc4, 0x7e, 0x00, 0x00, 0x00, + 0xd7, 0x2f, 0xa9, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x92, 0x48, 0xce, 0x2f, 0xce, 0xcd, + 0x4c, 0xce, 0xc8, 0x2f, 0xca, 0xac, 0xca, 0xcf, 0xd3, 0x2b, 0x2c, 0xcf, 0xaf, 0xcc, 0xd3, 0x03, + 0x29, 0x31, 0x62, 0xe5, 0x62, 0xf6, 0x2d, 0x4e, 0x77, 0x72, 0x3b, 0xf1, 0x48, 0x8e, 0xf1, 0xc2, + 0x23, 0x39, 0xc6, 0x07, 0x8f, 0xe4, 0x18, 0x27, 0x3c, 0x96, 0x63, 0xb8, 0xf0, 0x58, 0x8e, 0xe1, + 0xc6, 0x63, 0x39, 0x86, 0x28, 0x9d, 0xf4, 0xcc, 0x92, 0x8c, 0xd2, 0x24, 0xbd, 0xe4, 0xfc, 0x5c, + 0x7d, 0x88, 0x29, 0xba, 0x50, 0x63, 0xf4, 0xc1, 0xc6, 0xe8, 0x57, 0xe8, 0x43, 0xec, 0xaa, 0x2c, + 0x48, 0x2d, 0x4e, 0x62, 0x03, 0xdb, 0x67, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x1c, 0x21, 0x76, + 0x7c, 0x80, 0x00, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -72,7 +73,7 @@ func RegisterMsgServer(s grpc1.Server, srv MsgServer) { } var _Msg_serviceDesc = grpc.ServiceDesc{ - ServiceName: "cosmichorizon.coho.coho.Msg", + ServiceName: "cosmichorizon.qwoyn.coho.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{}, Streams: []grpc.StreamDesc{}, diff --git a/x/game/client/cli/query.go b/x/game/client/cli/query.go index 40029fe..9a308e2 100644 --- a/x/game/client/cli/query.go +++ b/x/game/client/cli/query.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/version" "github.com/spf13/cobra" - "github.com/cosmic-horizon/coho/x/game/types" + "github.com/cosmic-horizon/qwoyn/x/game/types" ) // GetQueryCmd returns the query commands for the game module. diff --git a/x/game/client/cli/tx.go b/x/game/client/cli/tx.go index 3a7c9ea..5788a8b 100644 --- a/x/game/client/cli/tx.go +++ b/x/game/client/cli/tx.go @@ -6,7 +6,7 @@ import ( "strconv" "strings" - "github.com/cosmic-horizon/coho/x/game/types" + "github.com/cosmic-horizon/qwoyn/x/game/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" "github.com/cosmos/cosmos-sdk/client/tx" diff --git a/x/game/genesis.go b/x/game/genesis.go index e809239..3fedb3e 100644 --- a/x/game/genesis.go +++ b/x/game/genesis.go @@ -1,8 +1,8 @@ package game import ( - "github.com/cosmic-horizon/coho/x/game/keeper" - "github.com/cosmic-horizon/coho/x/game/types" + "github.com/cosmic-horizon/qwoyn/x/game/keeper" + "github.com/cosmic-horizon/qwoyn/x/game/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/game/handler.go b/x/game/handler.go index cec44f5..33fb267 100644 --- a/x/game/handler.go +++ b/x/game/handler.go @@ -3,8 +3,8 @@ package game import ( "fmt" - "github.com/cosmic-horizon/coho/x/game/keeper" - "github.com/cosmic-horizon/coho/x/game/types" + "github.com/cosmic-horizon/qwoyn/x/game/keeper" + "github.com/cosmic-horizon/qwoyn/x/game/types" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" ) diff --git a/x/game/keeper/abci.go b/x/game/keeper/abci.go index e19aab8..974624a 100644 --- a/x/game/keeper/abci.go +++ b/x/game/keeper/abci.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/cosmic-horizon/coho/x/game/types" + "github.com/cosmic-horizon/qwoyn/x/game/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/game/keeper/abci_test.go b/x/game/keeper/abci_test.go index 58fa83e..2f5dced 100644 --- a/x/game/keeper/abci_test.go +++ b/x/game/keeper/abci_test.go @@ -3,8 +3,8 @@ package keeper_test import ( "time" - "github.com/cosmic-horizon/coho/x/game/keeper" - "github.com/cosmic-horizon/coho/x/game/types" + "github.com/cosmic-horizon/qwoyn/x/game/keeper" + "github.com/cosmic-horizon/qwoyn/x/game/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/tendermint/tendermint/crypto/ed25519" ) diff --git a/x/game/keeper/grpc_query.go b/x/game/keeper/grpc_query.go index 31fa032..21fca57 100644 --- a/x/game/keeper/grpc_query.go +++ b/x/game/keeper/grpc_query.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/cosmic-horizon/coho/x/game/types" + "github.com/cosmic-horizon/qwoyn/x/game/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/game/keeper/grpc_query_test.go b/x/game/keeper/grpc_query_test.go index d20163e..0aa8f3d 100644 --- a/x/game/keeper/grpc_query_test.go +++ b/x/game/keeper/grpc_query_test.go @@ -3,7 +3,7 @@ package keeper_test import ( "time" - "github.com/cosmic-horizon/coho/x/game/types" + "github.com/cosmic-horizon/qwoyn/x/game/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/game/keeper/ingame_unbonding.go b/x/game/keeper/ingame_unbonding.go index 93a96d3..468f17b 100644 --- a/x/game/keeper/ingame_unbonding.go +++ b/x/game/keeper/ingame_unbonding.go @@ -3,7 +3,7 @@ package keeper import ( "time" - "github.com/cosmic-horizon/coho/x/game/types" + "github.com/cosmic-horizon/qwoyn/x/game/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/game/keeper/ingame_unbonding_test.go b/x/game/keeper/ingame_unbonding_test.go index 66d6904..297626b 100644 --- a/x/game/keeper/ingame_unbonding_test.go +++ b/x/game/keeper/ingame_unbonding_test.go @@ -3,7 +3,7 @@ package keeper_test import ( "time" - "github.com/cosmic-horizon/coho/x/game/types" + "github.com/cosmic-horizon/qwoyn/x/game/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/tendermint/tendermint/crypto/ed25519" ) diff --git a/x/game/keeper/keeper.go b/x/game/keeper/keeper.go index dde9a5a..77c8041 100644 --- a/x/game/keeper/keeper.go +++ b/x/game/keeper/keeper.go @@ -6,7 +6,7 @@ import ( wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" "github.com/tendermint/tendermint/libs/log" - "github.com/cosmic-horizon/coho/x/game/types" + "github.com/cosmic-horizon/qwoyn/x/game/types" "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" diff --git a/x/game/keeper/keeper_test.go b/x/game/keeper/keeper_test.go index 24d0fd3..0484264 100644 --- a/x/game/keeper/keeper_test.go +++ b/x/game/keeper/keeper_test.go @@ -3,7 +3,7 @@ package keeper_test import ( "testing" - simapp "github.com/cosmic-horizon/coho/app" + simapp "github.com/cosmic-horizon/qwoyn/app" "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/suite" diff --git a/x/game/keeper/liquidity.go b/x/game/keeper/liquidity.go index fa862af..95d0981 100644 --- a/x/game/keeper/liquidity.go +++ b/x/game/keeper/liquidity.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/cosmic-horizon/coho/x/game/types" + "github.com/cosmic-horizon/qwoyn/x/game/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/game/keeper/liquidity_test.go b/x/game/keeper/liquidity_test.go index e3824c8..66ce977 100644 --- a/x/game/keeper/liquidity_test.go +++ b/x/game/keeper/liquidity_test.go @@ -3,7 +3,7 @@ package keeper_test import ( "time" - "github.com/cosmic-horizon/coho/x/game/types" + "github.com/cosmic-horizon/qwoyn/x/game/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/game/keeper/msg_server.go b/x/game/keeper/msg_server.go index cf895f7..7f4bc1e 100644 --- a/x/game/keeper/msg_server.go +++ b/x/game/keeper/msg_server.go @@ -5,7 +5,7 @@ import ( "encoding/json" "fmt" - "github.com/cosmic-horizon/coho/x/game/types" + "github.com/cosmic-horizon/qwoyn/x/game/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/game/keeper/msg_server_test.go b/x/game/keeper/msg_server_test.go index 09762b2..02412c0 100644 --- a/x/game/keeper/msg_server_test.go +++ b/x/game/keeper/msg_server_test.go @@ -3,9 +3,9 @@ package keeper_test import ( "time" - "github.com/cosmic-horizon/coho/x/game/keeper" - "github.com/cosmic-horizon/coho/x/game/types" - minttypes "github.com/cosmic-horizon/coho/x/mint/types" + "github.com/cosmic-horizon/qwoyn/x/game/keeper" + "github.com/cosmic-horizon/qwoyn/x/game/types" + minttypes "github.com/cosmic-horizon/qwoyn/x/mint/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/tendermint/tendermint/crypto/ed25519" ) diff --git a/x/game/keeper/nft.go b/x/game/keeper/nft.go index 322a2a1..8746c96 100644 --- a/x/game/keeper/nft.go +++ b/x/game/keeper/nft.go @@ -3,7 +3,7 @@ package keeper import ( "fmt" - "github.com/cosmic-horizon/coho/x/game/types" + "github.com/cosmic-horizon/qwoyn/x/game/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/game/keeper/nft_test.go b/x/game/keeper/nft_test.go index 23c0b7f..1788e58 100644 --- a/x/game/keeper/nft_test.go +++ b/x/game/keeper/nft_test.go @@ -7,8 +7,8 @@ import ( "time" wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" - "github.com/cosmic-horizon/coho/x/game/keeper" - "github.com/cosmic-horizon/coho/x/game/types" + "github.com/cosmic-horizon/qwoyn/x/game/keeper" + "github.com/cosmic-horizon/qwoyn/x/game/types" sdk "github.com/cosmos/cosmos-sdk/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" diff --git a/x/game/keeper/params.go b/x/game/keeper/params.go index 910af8d..982813a 100644 --- a/x/game/keeper/params.go +++ b/x/game/keeper/params.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/cosmic-horizon/coho/x/game/types" + "github.com/cosmic-horizon/qwoyn/x/game/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/game/keeper/params_test.go b/x/game/keeper/params_test.go index d17a84b..6d99aa1 100644 --- a/x/game/keeper/params_test.go +++ b/x/game/keeper/params_test.go @@ -3,7 +3,7 @@ package keeper_test import ( "time" - "github.com/cosmic-horizon/coho/x/game/types" + "github.com/cosmic-horizon/qwoyn/x/game/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/tendermint/tendermint/crypto/ed25519" ) diff --git a/x/game/keeper/token.go b/x/game/keeper/token.go index 995a93c..010847e 100644 --- a/x/game/keeper/token.go +++ b/x/game/keeper/token.go @@ -3,7 +3,7 @@ package keeper import ( "time" - "github.com/cosmic-horizon/coho/x/game/types" + "github.com/cosmic-horizon/qwoyn/x/game/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/game/keeper/token_test.go b/x/game/keeper/token_test.go index 6de489d..e428942 100644 --- a/x/game/keeper/token_test.go +++ b/x/game/keeper/token_test.go @@ -3,7 +3,7 @@ package keeper_test import ( "time" - "github.com/cosmic-horizon/coho/x/game/types" + "github.com/cosmic-horizon/qwoyn/x/game/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/tendermint/tendermint/crypto/ed25519" ) diff --git a/x/game/keeper/whitelisted_contract.go b/x/game/keeper/whitelisted_contract.go index f648c56..bbc760f 100644 --- a/x/game/keeper/whitelisted_contract.go +++ b/x/game/keeper/whitelisted_contract.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/cosmic-horizon/coho/x/game/types" + "github.com/cosmic-horizon/qwoyn/x/game/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/game/module.go b/x/game/module.go index a5fa1b0..9254e19 100644 --- a/x/game/module.go +++ b/x/game/module.go @@ -10,9 +10,9 @@ import ( abci "github.com/tendermint/tendermint/abci/types" - "github.com/cosmic-horizon/coho/x/game/client/cli" - "github.com/cosmic-horizon/coho/x/game/keeper" - "github.com/cosmic-horizon/coho/x/game/types" + "github.com/cosmic-horizon/qwoyn/x/game/client/cli" + "github.com/cosmic-horizon/qwoyn/x/game/keeper" + "github.com/cosmic-horizon/qwoyn/x/game/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/codec" cdctypes "github.com/cosmos/cosmos-sdk/codec/types" diff --git a/x/game/module_simulation.go b/x/game/module_simulation.go index 8d7a63d..9978d7f 100644 --- a/x/game/module_simulation.go +++ b/x/game/module_simulation.go @@ -3,8 +3,8 @@ package game import ( "math/rand" - "github.com/cosmic-horizon/coho/testutil/sample" - "github.com/cosmic-horizon/coho/x/game/types" + "github.com/cosmic-horizon/qwoyn/testutil/sample" + "github.com/cosmic-horizon/qwoyn/x/game/types" "github.com/cosmos/cosmos-sdk/baseapp" simappparams "github.com/cosmos/cosmos-sdk/simapp/params" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/game/spec/04_events.md b/x/game/spec/04_events.md index b0ce0a4..129929c 100644 --- a/x/game/spec/04_events.md +++ b/x/game/spec/04_events.md @@ -8,182 +8,182 @@ The game module emits the following events: ## EndBlocker -| Type | Attribute Key | Attribute Value | -| ------------------------------------------------------- | --------------- | --------------- | -| cosmichorizon.coho.game.EventCompleteUnstakeInGameToken | user | {user} | -| cosmichorizon.coho.game.EventCompleteUnstakeInGameToken | amount | {amount} | -| cosmichorizon.coho.game.EventCompleteUnstakeInGameToken | completion_time | {timestamp} | -| cosmichorizon.coho.game.EventCompleteUnstakeInGameToken | unbonding_id | {unbonding_id} | +| Type | Attribute Key | Attribute Value | +| -------------------------------------------------------- | --------------- | --------------- | +| cosmichorizon.qwoyn.game.EventCompleteUnstakeInGameToken | user | {user} | +| cosmichorizon.qwoyn.game.EventCompleteUnstakeInGameToken | amount | {amount} | +| cosmichorizon.qwoyn.game.EventCompleteUnstakeInGameToken | completion_time | {timestamp} | +| cosmichorizon.qwoyn.game.EventCompleteUnstakeInGameToken | unbonding_id | {unbonding_id} | ## Msg's ### MsgTransferModuleOwnership -| Type | Attribute Key | Attribute Value | -| ---------------------------------------------------- | ------------- | --------------------------------------------------- | -| message | action | /cosmichorizon.coho.game.MsgTransferModuleOwnership | -| cosmichorizon.coho.game.EventTransferModuleOwnership | origin_owner | {origin_owner} | -| cosmichorizon.coho.game.EventTransferModuleOwnership | new_owner | {new_owner} | +| Type | Attribute Key | Attribute Value | +| ----------------------------------------------------- | ------------- | ---------------------------------------------------- | +| message | action | /cosmichorizon.qwoyn.game.MsgTransferModuleOwnership | +| cosmichorizon.qwoyn.game.EventTransferModuleOwnership | origin_owner | {origin_owner} | +| cosmichorizon.qwoyn.game.EventTransferModuleOwnership | new_owner | {new_owner} | ### MsgWhitelistNftContracts -| Type | Attribute Key | Attribute Value | -| ---------------------------------------------------- | ------------- | ------------------------------------------------- | -| message | action | /cosmichorizon.coho.game.MsgWhitelistNftContracts | -| cosmichorizon.coho.game.EventNftContractAddWhitelist | contract | {contract_addr} | +| Type | Attribute Key | Attribute Value | +| ----------------------------------------------------- | ------------- | -------------------------------------------------- | +| message | action | /cosmichorizon.qwoyn.game.MsgWhitelistNftContracts | +| cosmichorizon.qwoyn.game.EventNftContractAddWhitelist | contract | {contract_addr} | ### MsgRemoveWhitelistedNftContracts -| Type | Attribute Key | Attribute Value | -| ------------------------------------------------------- | ------------- | --------------------------------------------------------- | -| message | action | /cosmichorizon.coho.game.MsgRemoveWhitelistedNftContracts | -| cosmichorizon.coho.game.EventNftContractRemoveWhitelist | contract | {contract_addr} | +| Type | Attribute Key | Attribute Value | +| -------------------------------------------------------- | ------------- | ---------------------------------------------------------- | +| message | action | /cosmichorizon.qwoyn.game.MsgRemoveWhitelistedNftContracts | +| cosmichorizon.qwoyn.game.EventNftContractRemoveWhitelist | contract | {contract_addr} | ### MsgDepositNft -| Type | Attribute Key | Attribute Value | -| --------------------------------------- | ------------------ | -------------------------------------- | -| message | action | /cosmichorizon.coho.game.MsgDepositNft | -| cosmichorizon.coho.game.EventDepositNft | contract | {contract_addr} | -| cosmichorizon.coho.game.EventDepositNft | token_id | {token_id} | -| cosmichorizon.coho.game.EventDepositNft | owner | {owner} | -| execute | \_contract_address | {contract_addr} | -| wasm | token_id | {token_id} | -| wasm | recipient | {recipient} | -| wasm | sender | {sender} | -| wasm | action | transfer_nft | -| wasm | \_contract_address | contract_addr | +| Type | Attribute Key | Attribute Value | +| ---------------------------------------- | ------------------ | --------------------------------------- | +| message | action | /cosmichorizon.qwoyn.game.MsgDepositNft | +| cosmichorizon.qwoyn.game.EventDepositNft | contract | {contract_addr} | +| cosmichorizon.qwoyn.game.EventDepositNft | token_id | {token_id} | +| cosmichorizon.qwoyn.game.EventDepositNft | owner | {owner} | +| execute | \_contract_address | {contract_addr} | +| wasm | token_id | {token_id} | +| wasm | recipient | {recipient} | +| wasm | sender | {sender} | +| wasm | action | transfer_nft | +| wasm | \_contract_address | contract_addr | ### MsgWithdrawUpdatedNft -| Type | Attribute Key | Attribute Value | -| ---------------------------------------- | ------------------ | ---------------------------------------------- | -| message | action | /cosmichorizon.coho.game.MsgWithdrawUpdatedNft | -| cosmichorizon.coho.game.EventWithdrawNft | sender | {sender} | -| cosmichorizon.coho.game.EventWithdrawNft | contract | {contract} | -| cosmichorizon.coho.game.EventWithdrawNft | token_id | {token_id} | -| cosmichorizon.coho.game.EventWithdrawNft | exec_msg | {exec_msg} | -| execute | \_contract_address | {contract_addr} | -| wasm | token_id | {token_id} | -| wasm | recipient | {recipient} | -| wasm | sender | {sender} | -| wasm | action | transfer_nft | -| wasm | \_contract_address | {contract_addr} | -| wasm | token_id | {token_id} | -| wasm | owner | {owner} | -| wasm | minter | {minter} | -| wasm | action | mint | -| wasm | \_contract_address | {contract_addr} | +| Type | Attribute Key | Attribute Value | +| ----------------------------------------- | ------------------ | ----------------------------------------------- | +| message | action | /cosmichorizon.qwoyn.game.MsgWithdrawUpdatedNft | +| cosmichorizon.qwoyn.game.EventWithdrawNft | sender | {sender} | +| cosmichorizon.qwoyn.game.EventWithdrawNft | contract | {contract} | +| cosmichorizon.qwoyn.game.EventWithdrawNft | token_id | {token_id} | +| cosmichorizon.qwoyn.game.EventWithdrawNft | exec_msg | {exec_msg} | +| execute | \_contract_address | {contract_addr} | +| wasm | token_id | {token_id} | +| wasm | recipient | {recipient} | +| wasm | sender | {sender} | +| wasm | action | transfer_nft | +| wasm | \_contract_address | {contract_addr} | +| wasm | token_id | {token_id} | +| wasm | owner | {owner} | +| wasm | minter | {minter} | +| wasm | action | mint | +| wasm | \_contract_address | {contract_addr} | ### MsgDepositToken -| Type | Attribute Key | Attribute Value | -| ----------------------------------------- | ------------- | ---------------------------------------- | -| message | action | /cosmichorizon.coho.game.MsgDepositToken | -| message | sender | {sender} | -| cosmichorizon.coho.game.EventDepositToken | sender | {sender} | -| cosmichorizon.coho.game.EventDepositToken | amount | {amount} | -| coin_spent | spender | {spender} | -| coin_spent | amount | {amount} | -| coin_received | receiver | {receiver} | -| coin_received | amount | {amount} | -| transfer | recipient | {recipient} | -| transfer | sender | {sender} | -| transfer | amount | {amount} | +| Type | Attribute Key | Attribute Value | +| ------------------------------------------ | ------------- | ----------------------------------------- | +| message | action | /cosmichorizon.qwoyn.game.MsgDepositToken | +| message | sender | {sender} | +| cosmichorizon.qwoyn.game.EventDepositToken | sender | {sender} | +| cosmichorizon.qwoyn.game.EventDepositToken | amount | {amount} | +| coin_spent | spender | {spender} | +| coin_spent | amount | {amount} | +| coin_received | receiver | {receiver} | +| coin_received | amount | {amount} | +| transfer | recipient | {recipient} | +| transfer | sender | {sender} | +| transfer | amount | {amount} | ### MsgWithdrawToken -| Type | Attribute Key | Attribute Value | -| ------------------------------------------ | ------------- | ---------------------------------------- | -| message | action | /cosmichorizon.coho.game.MsgDepositToken | -| message | sender | {sender} | -| cosmichorizon.coho.game.EventWithdrawToken | sender | {sender} | -| cosmichorizon.coho.game.EventWithdrawToken | amount | {amount} | -| coin_spent | spender | {spender} | -| coin_spent | amount | {amount} | -| coin_received | receiver | {receiver} | -| coin_received | amount | {amount} | -| transfer | recipient | {recipient} | -| transfer | sender | {sender} | -| transfer | amount | {amount} | +| Type | Attribute Key | Attribute Value | +| ------------------------------------------- | ------------- | ----------------------------------------- | +| message | action | /cosmichorizon.qwoyn.game.MsgDepositToken | +| message | sender | {sender} | +| cosmichorizon.qwoyn.game.EventWithdrawToken | sender | {sender} | +| cosmichorizon.qwoyn.game.EventWithdrawToken | amount | {amount} | +| coin_spent | spender | {spender} | +| coin_spent | amount | {amount} | +| coin_received | receiver | {receiver} | +| coin_received | amount | {amount} | +| transfer | recipient | {recipient} | +| transfer | sender | {sender} | +| transfer | amount | {amount} | ### MsgStakeInGameToken -| Type | Attribute Key | Attribute Value | -| ----------------------------------------------------- | ----------------- | -------------------------------------------- | -| message | action | /cosmichorizon.coho.game.MsgStakeInGameToken | -| cosmichorizon.coho.game.EventClaimInGameStakingReward | sender | {sender} | -| cosmichorizon.coho.game.EventClaimInGameStakingReward | amount | {amount} | -| cosmichorizon.coho.game.EventClaimInGameStakingReward | reward_claim_time | {reward_claim_time} | -| cosmichorizon.coho.game.EventStakeInGameToken | sender | {sender} | -| cosmichorizon.coho.game.EventStakeInGameToken | amount | {amount} | +| Type | Attribute Key | Attribute Value | +| ------------------------------------------------------ | ----------------- | --------------------------------------------- | +| message | action | /cosmichorizon.qwoyn.game.MsgStakeInGameToken | +| cosmichorizon.qwoyn.game.EventClaimInGameStakingReward | sender | {sender} | +| cosmichorizon.qwoyn.game.EventClaimInGameStakingReward | amount | {amount} | +| cosmichorizon.qwoyn.game.EventClaimInGameStakingReward | reward_claim_time | {reward_claim_time} | +| cosmichorizon.qwoyn.game.EventStakeInGameToken | sender | {sender} | +| cosmichorizon.qwoyn.game.EventStakeInGameToken | amount | {amount} | ### MsgBeginUnstakeInGameToken -| Type | Attribute Key | Attribute Value | -| ----------------------------------------------------- | ----------------- | --------------------------------------------------- | -| message | action | /cosmichorizon.coho.game.MsgBeginUnstakeInGameToken | -| cosmichorizon.coho.game.EventClaimInGameStakingReward | sender | {sender} | -| cosmichorizon.coho.game.EventClaimInGameStakingReward | amount | {amount} | -| cosmichorizon.coho.game.EventClaimInGameStakingReward | reward_claim_time | {reward_claim_time} | -| cosmichorizon.coho.game.EventBeginUnstakeInGameToken | sender | {sender} | -| cosmichorizon.coho.game.EventBeginUnstakeInGameToken | amount | {amount} | -| cosmichorizon.coho.game.EventBeginUnstakeInGameToken | completion_time | {completion_time} | +| Type | Attribute Key | Attribute Value | +| ------------------------------------------------------ | ----------------- | ---------------------------------------------------- | +| message | action | /cosmichorizon.qwoyn.game.MsgBeginUnstakeInGameToken | +| cosmichorizon.qwoyn.game.EventClaimInGameStakingReward | sender | {sender} | +| cosmichorizon.qwoyn.game.EventClaimInGameStakingReward | amount | {amount} | +| cosmichorizon.qwoyn.game.EventClaimInGameStakingReward | reward_claim_time | {reward_claim_time} | +| cosmichorizon.qwoyn.game.EventBeginUnstakeInGameToken | sender | {sender} | +| cosmichorizon.qwoyn.game.EventBeginUnstakeInGameToken | amount | {amount} | +| cosmichorizon.qwoyn.game.EventBeginUnstakeInGameToken | completion_time | {completion_time} | ### MsgClaimInGameStakingReward -| Type | Attribute Key | Attribute Value | -| ----------------------------------------------------- | ----------------- | ---------------------------------------------------- | -| message | action | /cosmichorizon.coho.game.MsgClaimInGameStakingReward | -| cosmichorizon.coho.game.EventClaimInGameStakingReward | sender | {sender} | -| cosmichorizon.coho.game.EventClaimInGameStakingReward | amount | {amount} | -| cosmichorizon.coho.game.EventClaimInGameStakingReward | reward_claim_time | {reward_claim_time} | +| Type | Attribute Key | Attribute Value | +| ------------------------------------------------------ | ----------------- | ----------------------------------------------------- | +| message | action | /cosmichorizon.qwoyn.game.MsgClaimInGameStakingReward | +| cosmichorizon.qwoyn.game.EventClaimInGameStakingReward | sender | {sender} | +| cosmichorizon.qwoyn.game.EventClaimInGameStakingReward | amount | {amount} | +| cosmichorizon.qwoyn.game.EventClaimInGameStakingReward | reward_claim_time | {reward_claim_time} | ### MsgAddLiquidity -| Type | Attribute Key | Attribute Value | -| ----------------------------------------- | ------------- | ---------------------------------------- | -| message | action | /cosmichorizon.coho.game.MsgAddLiquidity | -| message | sender | {sender} | -| cosmichorizon.coho.game.EventAddLiquidity | sender | {sender} | -| cosmichorizon.coho.game.EventAddLiquidity | amount | {amount} | -| coin_spent | spender | {spender} | -| coin_spent | amount | {amount} | -| coin_received | receiver | {receiver} | -| coin_received | amount | {amount} | -| transfer | recipient | {recipient} | -| transfer | sender | {sender} | -| transfer | amount | {amount} | +| Type | Attribute Key | Attribute Value | +| ------------------------------------------ | ------------- | ----------------------------------------- | +| message | action | /cosmichorizon.qwoyn.game.MsgAddLiquidity | +| message | sender | {sender} | +| cosmichorizon.qwoyn.game.EventAddLiquidity | sender | {sender} | +| cosmichorizon.qwoyn.game.EventAddLiquidity | amount | {amount} | +| coin_spent | spender | {spender} | +| coin_spent | amount | {amount} | +| coin_received | receiver | {receiver} | +| coin_received | amount | {amount} | +| transfer | recipient | {recipient} | +| transfer | sender | {sender} | +| transfer | amount | {amount} | ### MsgRemoveLiquidity -| Type | Attribute Key | Attribute Value | -| -------------------------------------------- | ------------- | ------------------------------------------- | -| message | action | /cosmichorizon.coho.game.MsgRemoveLiquidity | -| message | sender | {sender} | -| cosmichorizon.coho.game.EventRemoveLiquidity | sender | {sender} | -| cosmichorizon.coho.game.EventRemoveLiquidity | amount | {amount} | -| coin_spent | spender | {spender} | -| coin_spent | amount | {amount} | -| coin_received | receiver | {receiver} | -| coin_received | amount | {amount} | -| transfer | recipient | {recipient} | -| transfer | sender | {sender} | -| transfer | amount | {amount} | +| Type | Attribute Key | Attribute Value | +| --------------------------------------------- | ------------- | -------------------------------------------- | +| message | action | /cosmichorizon.qwoyn.game.MsgRemoveLiquidity | +| message | sender | {sender} | +| cosmichorizon.qwoyn.game.EventRemoveLiquidity | sender | {sender} | +| cosmichorizon.qwoyn.game.EventRemoveLiquidity | amount | {amount} | +| coin_spent | spender | {spender} | +| coin_spent | amount | {amount} | +| coin_received | receiver | {receiver} | +| coin_received | amount | {amount} | +| transfer | recipient | {recipient} | +| transfer | sender | {sender} | +| transfer | amount | {amount} | ### MsgSwap -| Type | Attribute Key | Attribute Value | -| --------------------------------- | ------------- | -------------------------------- | -| message | action | /cosmichorizon.coho.game.MsgSwap | -| message | sender | {sender} | -| cosmichorizon.coho.game.EventSwap | sender | {sender} | -| cosmichorizon.coho.game.EventSwap | in_amount | {in_amount} | -| cosmichorizon.coho.game.EventSwap | out_amount | {out_amount} | -| []coin_spent | spender | {spender} | -| []coin_spent | amount | {amount} | -| []coin_received | receiver | {receiver} | -| []coin_received | amount | {amount} | -| []transfer | recipient | {recipient} | -| []transfer | sender | {sender} | -| []transfer | amount | {amount} | +| Type | Attribute Key | Attribute Value | +| ---------------------------------- | ------------- | --------------------------------- | +| message | action | /cosmichorizon.qwoyn.game.MsgSwap | +| message | sender | {sender} | +| cosmichorizon.qwoyn.game.EventSwap | sender | {sender} | +| cosmichorizon.qwoyn.game.EventSwap | in_amount | {in_amount} | +| cosmichorizon.qwoyn.game.EventSwap | out_amount | {out_amount} | +| []coin_spent | spender | {spender} | +| []coin_spent | amount | {amount} | +| []coin_received | receiver | {receiver} | +| []coin_received | amount | {amount} | +| []transfer | recipient | {recipient} | +| []transfer | sender | {sender} | +| []transfer | amount | {amount} | diff --git a/x/game/spec/06_client.md b/x/game/spec/06_client.md index b54b251..7130e39 100644 --- a/x/game/spec/06_client.md +++ b/x/game/spec/06_client.md @@ -13,7 +13,7 @@ A user can query and interact with the `game` module using the CLI. The `query` commands allows users to query `game` module state. ```bash -cohod query game --help +qwoynd query game --help ``` #### params @@ -22,10 +22,10 @@ The `params` command allows users to query values set as game module parameters. ```bash # usage -cohod query game params [flags] +qwoynd query game params [flags] # example -cohod query game params +qwoynd query game params ``` Example Output: @@ -46,10 +46,10 @@ Usage: ```bash # usage -cohod query game whitelisted-contracts [flags] +qwoynd query game whitelisted-contracts [flags] # example -cohod query game whitelisted-contracts +qwoynd query game whitelisted-contracts ``` Example Output: @@ -65,10 +65,10 @@ The `all-deposit-balances` command allow users to query all deposits. ```bash # usage -cohod query game all-deposit-balances [flags] +qwoynd query game all-deposit-balances [flags] # example -cohod query game all-deposit-balances +qwoynd query game all-deposit-balances ``` Example Output: @@ -91,10 +91,10 @@ The `deposit-balance` command allow users to query a single deposit. ```bash # usage -cohod query game deposit-balance [address] [flags] +qwoynd query game deposit-balance [address] [flags] # example -cohod query game deposit-balance coho1tpug77hddm558x39gzndx72w94zgfstzk95rdy +qwoynd query game deposit-balance coho1tpug77hddm558x39gzndx72w94zgfstzk95rdy ``` Example Output: @@ -114,9 +114,9 @@ The `all-unbondings` command allow users to query all active unbondings. ```bash # usage -cohod query game all-unbondings [flags] +qwoynd query game all-unbondings [flags] # example -cohod query game all-unbondings +qwoynd query game all-unbondings ``` Example Output: @@ -136,9 +136,9 @@ The `user-unbondings` command allow users to query all active unbondings for an ```bash # usage -cohod query game user-unbondings [address] [flags] +qwoynd query game user-unbondings [address] [flags] # example -cohod query game user-unbondings $(cohod keys show -a validator --keyring-backend=test) +qwoynd query game user-unbondings $(qwoynd keys show -a validator --keyring-backend=test) ``` Example Output: @@ -158,9 +158,9 @@ The `liquidity` command allow users to query total liquidity put for coho and qw ```bash # usage -cohod query game liquidity [flags] +qwoynd query game liquidity [flags] # example -cohod query game liquidity +qwoynd query game liquidity ``` Example Output: @@ -180,9 +180,9 @@ The `estimated-swap-out` command allow users to query estimated out amount on sw ```bash # bash -cohod query game estimated-swap-out [amount] [flags] +qwoynd query game estimated-swap-out [amount] [flags] # example -cohod query game estimated-swap-out 10000ucoho +qwoynd query game estimated-swap-out 10000ucoho ``` Example Output: @@ -199,9 +199,9 @@ The `swap-rate` command allow users to query spot price on current liquidity. ```bash # usage -cohod query game swap-rate [flags] +qwoynd query game swap-rate [flags] # example -cohod query game swap-rate +qwoynd query game swap-rate ``` Example Output: @@ -217,7 +217,7 @@ tar_denom: uqwoyn The `tx` commands allows users to interact with the `game` module. ```bash -cohod tx game --help +qwoynd tx game --help ``` #### MsgTransferModuleOwnership @@ -227,13 +227,13 @@ The command `transfer-module-ownership` allows the module owner to transfer the Usage: ```bash -cohod tx game transfer-module-ownership [newOwner] [flags] +qwoynd tx game transfer-module-ownership [newOwner] [flags] ``` Example: ```bash -cohod tx game transfer-module-ownership coho1tpug77hddm558x39gzndx72w94zgfstzk95rdy \ +qwoynd tx game transfer-module-ownership coho1tpug77hddm558x39gzndx72w94zgfstzk95rdy \ --from=moduleOwner ``` @@ -244,13 +244,13 @@ The command `whitelist-contracts` allows the module owner to whitelist nft contr Usage: ```bash -cohod tx game whitelist-contracts [contracts] [flags] +qwoynd tx game whitelist-contracts [contracts] [flags] ``` Example: ```bash -cohod tx game whitelist-contracts coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc \ +qwoynd tx game whitelist-contracts coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc \ --from=moduleOwner ``` @@ -261,13 +261,13 @@ The command `remove-whitelisted-contracts` allows the module owner to remove whi Usage: ```bash -cohod tx game remove-whitelisted-contracts [contracts] [flags] +qwoynd tx game remove-whitelisted-contracts [contracts] [flags] ``` Example: ```bash -cohod tx game remove-whitelisted-contracts coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc \ +qwoynd tx game remove-whitelisted-contracts coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc \ --from=moduleOwner ``` @@ -278,13 +278,13 @@ The command `deposit-nft` allows a user to deposit a whitelisted nft. Usage: ```bash -cohod tx game deposit-nft [contract] [tokenId] [flags] +qwoynd tx game deposit-nft [contract] [tokenId] [flags] ``` Example: ```bash -cohod tx game deposit-nft coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc 1 \ +qwoynd tx game deposit-nft coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc 1 \ --from=user ``` @@ -295,13 +295,13 @@ The command `sign-withdraw-updated-nft` allows the module owner to generate sign Usage: ```bash -cohod tx game sign-withdraw-updated-nft [contract] [tokenId] [execMsg] [flags] +qwoynd tx game sign-withdraw-updated-nft [contract] [tokenId] [execMsg] [flags] ``` Example: ```bash -cohod tx game sign-withdraw-updated-nft coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc 1 '{"update_nft":{"token_id":"1","extension":{"ship_type":67,"owner":"200"}}}' \ +qwoynd tx game sign-withdraw-updated-nft coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc 1 '{"update_nft":{"token_id":"1","extension":{"ship_type":67,"owner":"200"}}}' \ --from=moduleOwner ``` @@ -312,13 +312,13 @@ The command `withdraw-updated-nft` allows a user to withdraw a deposited nft wit Usage: ```bash -cohod tx game withdraw-updated-nft [contract] [tokenId] [execMsg] [signature] [flags] +qwoynd tx game withdraw-updated-nft [contract] [tokenId] [execMsg] [signature] [flags] ``` Example: ```bash -cohod tx game withdraw-updated-nft '{"update_nft":{"token_id":"1","extension":{"ship_type":67,"owner":"200"}}}' \ +qwoynd tx game withdraw-updated-nft '{"update_nft":{"token_id":"1","extension":{"ship_type":67,"owner":"200"}}}' \ 42d6e9d3b62ffc9b0bc3f6a97cbc0857af1c7a7aa57549571d7bc72415a955d978a1790440ce53c8f9fbfa2ce70d967812eda6094d6f112d7e5736170e48e2a8 \ --from=user ``` @@ -330,13 +330,13 @@ The command `deposit-token` allows a user to deposit game tokens by users. Usage: ```bash -cohod tx game deposit-token deposit-token [coin] [flags] +qwoynd tx game deposit-token deposit-token [coin] [flags] ``` Example: ```bash -cohod tx game deposit-token 1000000stake \ +qwoynd tx game deposit-token 1000000stake \ --from=user ``` @@ -347,13 +347,13 @@ The command `withdraw-token` allows a user to withdraw game tokens by users. Usage: ```bash -cohod tx game withdraw-token [coin] [flags] +qwoynd tx game withdraw-token [coin] [flags] ``` Example: ```bash -cohod tx game withdraw-token 1000000stake \ +qwoynd tx game withdraw-token 1000000stake \ --from=user ``` @@ -364,13 +364,13 @@ The command `stake-ingame-token` allows a user to stake deposited game tokens by Usage: ```bash -cohod tx game stake-ingame-token [coin] [flags] +qwoynd tx game stake-ingame-token [coin] [flags] ``` Example: ```bash -cohod tx game stake-ingame-token 1000000stake \ +qwoynd tx game stake-ingame-token 1000000stake \ --from=user ``` @@ -381,13 +381,13 @@ The command `begin-unstake-ingame-token` allows a user to begin unstake of stake Usage: ```bash -cohod tx game begin-unstake-ingame-token [coin] [flags] +qwoynd tx game begin-unstake-ingame-token [coin] [flags] ``` Example: ```bash -cohod tx game begin-unstake-ingame-token 1000000stake \ +qwoynd tx game begin-unstake-ingame-token 1000000stake \ --from=user ``` @@ -398,13 +398,13 @@ The command `claim-ingame-staking-reward` allows a user to claim rewards from st Usage: ```bash -cohod tx game claim-ingame-staking-reward [flags] +qwoynd tx game claim-ingame-staking-reward [flags] ``` Example: ```bash -cohod tx game claim-ingame-staking-reward \ +qwoynd tx game claim-ingame-staking-reward \ --from=user ``` @@ -415,13 +415,13 @@ The command `add-liquidity` allows the module owner to put liquidity for game to Usage: ```bash -cohod tx game add-liquidity [coins] [flags] +qwoynd tx game add-liquidity [coins] [flags] ``` Example: ```bash -cohod tx game add-liquidity 10000ucoho,10000uqwoyn \ +qwoynd tx game add-liquidity 10000ucoho,10000uqwoyn \ --from=user ``` @@ -432,13 +432,13 @@ The command `remove-liquidity` allows the module owner to remove liquidity. Usage: ```bash -cohod tx game remove-liquidity [coins] [flags] +qwoynd tx game remove-liquidity [coins] [flags] ``` Example: ```bash -cohod tx game remove-liquidity 10000ucoho,10000uqwoyn \ +qwoynd tx game remove-liquidity 10000ucoho,10000uqwoyn \ --from=user ``` @@ -449,12 +449,12 @@ The command `swap` allows a user to to swap on liquidity. Usage: ```bash -cohod tx game swap [coin] [flags] +qwoynd tx game swap [coin] [flags] ``` Example: ```bash -cohod tx game swap 10000ucoho \ +qwoynd tx game swap 10000ucoho \ --from=user ``` diff --git a/x/game/spec/07_cli_examples.md b/x/game/spec/07_cli_examples.md index f1d6f4d..84e2774 100644 --- a/x/game/spec/07_cli_examples.md +++ b/x/game/spec/07_cli_examples.md @@ -1,80 +1,80 @@ ```sh -cohod query game params -cohod query game whitelisted-contracts -cohod query game all-deposit-balances -cohod query game deposit-balance $(cohod keys show -a validator --keyring-backend=test) -cohod query game all-unbondings -cohod query game user-unbondings $(cohod keys show -a validator --keyring-backend=test) +qwoynd query game params +qwoynd query game whitelisted-contracts +qwoynd query game all-deposit-balances +qwoynd query game deposit-balance $(qwoynd keys show -a validator --keyring-backend=test) +qwoynd query game all-unbondings +qwoynd query game user-unbondings $(qwoynd keys show -a validator --keyring-backend=test) # query liquidity & swap rate -cohod query game liquidity -cohod query game estimated-swap-out 10000ucoho -cohod query game estimated-swap-out 10000uqwoyn -cohod query game swap-rate +qwoynd query game liquidity +qwoynd query game estimated-swap-out 10000ucoho +qwoynd query game estimated-swap-out 10000uqwoyn +qwoynd query game swap-rate # deposit tokens -cohod tx game deposit-token 1000000stake --from=validator --chain-id=qwoyn-1 --keyring-backend=test --home=$HOME/.cohod/ -y --broadcast-mode=block +qwoynd tx game deposit-token 1000000stake --from=validator --chain-id=qwoyn-1 --keyring-backend=test --home=$HOME/.qwoynd/ -y --broadcast-mode=block # withdraw tokens -cohod tx game withdraw-token 500000stake --from=validator --chain-id=qwoyn-1 --keyring-backend=test --home=$HOME/.cohod/ -y --broadcast-mode=block +qwoynd tx game withdraw-token 500000stake --from=validator --chain-id=qwoyn-1 --keyring-backend=test --home=$HOME/.qwoynd/ -y --broadcast-mode=block # stake ingame token -cohod tx game stake-ingame-token 500000stake --from=validator --chain-id=qwoyn-1 --keyring-backend=test --home=$HOME/.cohod/ -y --broadcast-mode=block +qwoynd tx game stake-ingame-token 500000stake --from=validator --chain-id=qwoyn-1 --keyring-backend=test --home=$HOME/.qwoynd/ -y --broadcast-mode=block # begin unstake of ingame token -cohod tx game begin-unstake-ingame-token 100000stake --from=validator --chain-id=qwoyn-1 --keyring-backend=test --home=$HOME/.cohod/ -y --broadcast-mode=block +qwoynd tx game begin-unstake-ingame-token 100000stake --from=validator --chain-id=qwoyn-1 --keyring-backend=test --home=$HOME/.qwoynd/ -y --broadcast-mode=block # claim staking reward -cohod tx game claim-ingame-staking-reward --from=validator --chain-id=qwoyn-1 --keyring-backend=test --home=$HOME/.cohod/ -y --broadcast-mode=block +qwoynd tx game claim-ingame-staking-reward --from=validator --chain-id=qwoyn-1 --keyring-backend=test --home=$HOME/.qwoynd/ -y --broadcast-mode=block # whitelist contract -cohod tx game whitelist-contracts coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc --from=signer --chain-id=qwoyn-1 --keyring-backend=test --home=$HOME/.cohod/ -y --broadcast-mode=block +qwoynd tx game whitelist-contracts coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc --from=signer --chain-id=qwoyn-1 --keyring-backend=test --home=$HOME/.qwoynd/ -y --broadcast-mode=block # remove whitelisted contract -cohod tx game remove-whitelisted-contracts coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc --from=signer --chain-id=qwoyn-1 --keyring-backend=test --home=$HOME/.cohod/ -y --broadcast-mode=block +qwoynd tx game remove-whitelisted-contracts coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc --from=signer --chain-id=qwoyn-1 --keyring-backend=test --home=$HOME/.qwoynd/ -y --broadcast-mode=block # deposit nft from end wallet to game -cohod tx game deposit-nft coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc 1 --from=signer --chain-id=qwoyn-1 --keyring-backend=test --home=$HOME/.cohod/ -y --broadcast-mode=block +qwoynd tx game deposit-nft coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc 1 --from=signer --chain-id=qwoyn-1 --keyring-backend=test --home=$HOME/.qwoynd/ -y --broadcast-mode=block # query owner of nft -cohod query wasm contract-state smart coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc '{"owner_of":{"token_id":"1"}}' +qwoynd query wasm contract-state smart coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc '{"owner_of":{"token_id":"1"}}' # game module address # coho1djju4dm7wqk8s76vzjea80exht2rmfsxjx47wk # add signer -cohod keys add signer --keyring-backend=test --home=$HOME/.cohod --recover +qwoynd keys add signer --keyring-backend=test --home=$HOME/.qwoynd --recover # pipe woman clutch absorb lonely cost credit math antique better thumb cook pave clarify hungry east garbage absent warfare song helmet anchor drift purity -cohod tx bank send validator $(cohod keys show -a signer --keyring-backend=test --home=$HOME/.cohod) 1000000stake --keyring-backend=test --home=$HOME/.cohod --broadcast-mode=block -y --chain-id=qwoyn-1 +qwoynd tx bank send validator $(qwoynd keys show -a signer --keyring-backend=test --home=$HOME/.qwoynd) 1000000stake --keyring-backend=test --home=$HOME/.qwoynd --broadcast-mode=block -y --chain-id=qwoyn-1 # upload wasm -cohod tx wasm store ./artifacts/ship_nft.wasm --from validator --chain-id qwoyn-1 --gas auto --gas-adjustment 1.3 -b block --keyring-backend=test --home=$HOME/.cohod/ -y +qwoynd tx wasm store ./artifacts/ship_nft.wasm --from validator --chain-id qwoyn-1 --gas auto --gas-adjustment 1.3 -b block --keyring-backend=test --home=$HOME/.qwoynd/ -y # instantiate ship nft with module account owned -cohod tx wasm instantiate 1 '{"name":"Ship NFT","symbol":"SHIP","minter":"coho1djju4dm7wqk8s76vzjea80exht2rmfsxjx47wk","owner":"coho1djju4dm7wqk8s76vzjea80exht2rmfsxjx47wk"}' --from validator --label "Ship-NFT" --chain-id qwoyn-1 --gas auto --gas-adjustment 1.3 -b block --keyring-backend=test --home=$HOME/.cohod/ --no-admin -y +qwoynd tx wasm instantiate 1 '{"name":"Ship NFT","symbol":"SHIP","minter":"coho1djju4dm7wqk8s76vzjea80exht2rmfsxjx47wk","owner":"coho1djju4dm7wqk8s76vzjea80exht2rmfsxjx47wk"}' --from validator --label "Ship-NFT" --chain-id qwoyn-1 --gas auto --gas-adjustment 1.3 -b block --keyring-backend=test --home=$HOME/.qwoynd/ --no-admin -y # transfer nft update ownership to module account - when owner is set to different account -cohod tx wasm execute coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc '{"transfer_ownership":{"owner":"coho1djju4dm7wqk8s76vzjea80exht2rmfsxjx47wk"}}' --from signer --chain-id qwoyn-1 --gas auto --gas-adjustment 1.3 -b block --keyring-backend=test --home=$HOME/.cohod/ -y +qwoynd tx wasm execute coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc '{"transfer_ownership":{"owner":"coho1djju4dm7wqk8s76vzjea80exht2rmfsxjx47wk"}}' --from signer --chain-id qwoyn-1 --gas auto --gas-adjustment 1.3 -b block --keyring-backend=test --home=$HOME/.qwoynd/ -y -cohod tx game sign-withdraw-updated-nft coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc 1 '{"update_nft":{"token_id":"1","extension":{"ship_type":67,"owner":"200"}}}' --from=signer --chain-id=qwoyn-1 --keyring-backend=test --home=$HOME/.cohod/ +qwoynd tx game sign-withdraw-updated-nft coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc 1 '{"update_nft":{"token_id":"1","extension":{"ship_type":67,"owner":"200"}}}' --from=signer --chain-id=qwoyn-1 --keyring-backend=test --home=$HOME/.qwoynd/ -cohod tx game withdraw-updated-nft coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc 1 '{"update_nft":{"token_id":"1","extension":{"ship_type":67,"owner":"200"}}}' 42d6e9d3b62ffc9b0bc3f6a97cbc0857af1c7a7aa57549571d7bc72415a955d978a1790440ce53c8f9fbfa2ce70d967812eda6094d6f112d7e5736170e48e2a8 --from=signer --chain-id=qwoyn-1 --keyring-backend=test --home=$HOME/.cohod/ -y --broadcast-mode=block --gas=400000 +qwoynd tx game withdraw-updated-nft coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc 1 '{"update_nft":{"token_id":"1","extension":{"ship_type":67,"owner":"200"}}}' 42d6e9d3b62ffc9b0bc3f6a97cbc0857af1c7a7aa57549571d7bc72415a955d978a1790440ce53c8f9fbfa2ce70d967812eda6094d6f112d7e5736170e48e2a8 --from=signer --chain-id=qwoyn-1 --keyring-backend=test --home=$HOME/.qwoynd/ -y --broadcast-mode=block --gas=400000 -cohod tx game withdraw-updated-nft coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc 2 '{"mint":{"token_id":"2","owner":"coho1djju4dm7wqk8s76vzjea80exht2rmfsxjx47wk","extension":{"ship_type":12,"owner":"300"}}}' 6a859feb353f0c49b9316cf871738f6d21a14320edb4817cdbfbcab7c6434cb10ab1b8debd61109c3726872d19b8090c7e3ae3c2cf87fe69de3533fe92127251 --from=signer --chain-id=qwoyn-1 --keyring-backend=test --home=$HOME/.cohod/ -y --broadcast-mode=block --gas=300000 +qwoynd tx game withdraw-updated-nft coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc 2 '{"mint":{"token_id":"2","owner":"coho1djju4dm7wqk8s76vzjea80exht2rmfsxjx47wk","extension":{"ship_type":12,"owner":"300"}}}' 6a859feb353f0c49b9316cf871738f6d21a14320edb4817cdbfbcab7c6434cb10ab1b8debd61109c3726872d19b8090c7e3ae3c2cf87fe69de3533fe92127251 --from=signer --chain-id=qwoyn-1 --keyring-backend=test --home=$HOME/.qwoynd/ -y --broadcast-mode=block --gas=300000 -cohod tx game sign-withdraw-updated-nft coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc 2 '{"mint":{"token_id":"2","owner":"coho1djju4dm7wqk8s76vzjea80exht2rmfsxjx47wk","extension":{"ship_type":12,"owner":"300"}}}' --from=signer --chain-id=qwoyn-1 --keyring-backend=test --home=$HOME/.cohod/ -y --broadcast-mode=block +qwoynd tx game sign-withdraw-updated-nft coho14hj2tavq8fpesdwxxcu44rty3hh90vhujrvcmstl4zr3txmfvw9snm4thc 2 '{"mint":{"token_id":"2","owner":"coho1djju4dm7wqk8s76vzjea80exht2rmfsxjx47wk","extension":{"ship_type":12,"owner":"300"}}}' --from=signer --chain-id=qwoyn-1 --keyring-backend=test --home=$HOME/.qwoynd/ -y --broadcast-mode=block # send tokens to admin to add liquidity -cohod tx bank send validator $(cohod keys show -a signer --keyring-backend=test) 1000000ucoho,1000000uqwoyn --from=validator --chain-id=qwoyn-1 --keyring-backend=test --home=$HOME/.cohod/ -y --broadcast-mode=block +qwoynd tx bank send validator $(qwoynd keys show -a signer --keyring-backend=test) 1000000ucoho,1000000uqwoyn --from=validator --chain-id=qwoyn-1 --keyring-backend=test --home=$HOME/.qwoynd/ -y --broadcast-mode=block # add liquidity -cohod tx game add-liquidity 1000000ucoho,1000000uqwoyn --from=signer --chain-id=qwoyn-1 --keyring-backend=test --home=$HOME/.cohod/ -y --broadcast-mode=block +qwoynd tx game add-liquidity 1000000ucoho,1000000uqwoyn --from=signer --chain-id=qwoyn-1 --keyring-backend=test --home=$HOME/.qwoynd/ -y --broadcast-mode=block # remove liquidity -cohod tx game remove-liquidity 10000ucoho,10000uqwoyn --from=signer --chain-id=qwoyn-1 --keyring-backend=test --home=$HOME/.cohod/ -y --broadcast-mode=block +qwoynd tx game remove-liquidity 10000ucoho,10000uqwoyn --from=signer --chain-id=qwoyn-1 --keyring-backend=test --home=$HOME/.qwoynd/ -y --broadcast-mode=block -cohod tx game swap 10000ucoho --from=validator --chain-id=qwoyn-1 --keyring-backend=test --home=$HOME/.cohod/ -y --broadcast-mode=block +qwoynd tx game swap 10000ucoho --from=validator --chain-id=qwoyn-1 --keyring-backend=test --home=$HOME/.qwoynd/ -y --broadcast-mode=block # transfer module ownership -cohod tx game transfer-module-ownership $(cohod keys show -a signer --keyring-backend=test) --from=signer --chain-id=qwoyn-1 --keyring-backend=test --home=$HOME/.cohod/ -y --broadcast-mode=block +qwoynd tx game transfer-module-ownership $(qwoynd keys show -a signer --keyring-backend=test) --from=signer --chain-id=qwoyn-1 --keyring-backend=test --home=$HOME/.qwoynd/ -y --broadcast-mode=block ``` diff --git a/x/game/types/game.pb.go b/x/game/types/game.pb.go index a1a4a5d..b7082a6 100644 --- a/x/game/types/game.pb.go +++ b/x/game/types/game.pb.go @@ -155,42 +155,42 @@ func (m *Unbonding) GetCompletionTime() time.Time { } func init() { - proto.RegisterType((*Deposit)(nil), "cosmichorizon.coho.game.Deposit") - proto.RegisterType((*Unbonding)(nil), "cosmichorizon.coho.game.Unbonding") + proto.RegisterType((*Deposit)(nil), "cosmichorizon.qwoyn.game.Deposit") + proto.RegisterType((*Unbonding)(nil), "cosmichorizon.qwoyn.game.Unbonding") } func init() { proto.RegisterFile("game/game.proto", fileDescriptor_2a9278d664c0c01e) } var fileDescriptor_2a9278d664c0c01e = []byte{ - // 445 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x93, 0xcd, 0x6e, 0xd4, 0x30, - 0x14, 0x85, 0x27, 0xe9, 0xb4, 0xc3, 0x18, 0x31, 0x23, 0x22, 0x24, 0xa2, 0x59, 0x64, 0xaa, 0x4a, - 0x40, 0x25, 0x54, 0x5b, 0x85, 0x27, 0x60, 0xf8, 0x51, 0x91, 0x40, 0x42, 0x11, 0x6c, 0xd8, 0x8c, - 0x1c, 0xdb, 0x38, 0x56, 0xc7, 0xb9, 0x91, 0xed, 0xf0, 0xb7, 0xe4, 0x09, 0xfa, 0x58, 0x5d, 0x76, - 0x83, 0x84, 0x58, 0x14, 0x34, 0xf3, 0x22, 0xc8, 0x4e, 0x42, 0x51, 0x77, 0xb4, 0x9b, 0xc4, 0xbe, - 0xc7, 0xe7, 0xe4, 0xe6, 0xb3, 0x2e, 0x9a, 0x4a, 0xaa, 0x05, 0xf1, 0x0f, 0x5c, 0x1b, 0x70, 0x90, - 0xdc, 0x65, 0x60, 0xb5, 0x62, 0x25, 0x18, 0xf5, 0x15, 0x2a, 0xcc, 0xa0, 0x04, 0xec, 0xe5, 0x59, - 0xe6, 0x05, 0xb0, 0xa4, 0xa0, 0x56, 0x90, 0x8f, 0x87, 0x85, 0x70, 0xf4, 0x90, 0x30, 0x50, 0x55, - 0x6b, 0x9c, 0x65, 0x12, 0x40, 0xae, 0x04, 0x09, 0xbb, 0xa2, 0xf9, 0x40, 0x78, 0x63, 0xa8, 0x53, - 0xd0, 0xeb, 0xf3, 0xcb, 0xba, 0x53, 0x5a, 0x58, 0x47, 0x75, 0xdd, 0x1d, 0xb8, 0x23, 0x41, 0x42, - 0x58, 0x12, 0xbf, 0x6a, 0xab, 0x7b, 0xdf, 0x63, 0x34, 0x7a, 0x26, 0x6a, 0xb0, 0xca, 0x25, 0x29, - 0x1a, 0x51, 0xce, 0x8d, 0xb0, 0x36, 0x8d, 0x76, 0xa3, 0xfd, 0x71, 0xde, 0x6f, 0x93, 0x17, 0x68, - 0x87, 0x6a, 0x68, 0x2a, 0x97, 0xc6, 0x5e, 0x58, 0xe0, 0xd3, 0xf3, 0xf9, 0xe0, 0xe7, 0xf9, 0xfc, - 0xbe, 0x54, 0xae, 0x6c, 0x0a, 0xcc, 0x40, 0x93, 0xae, 0xff, 0xf6, 0x75, 0x60, 0xf9, 0x31, 0x71, - 0x5f, 0x6a, 0x61, 0xf1, 0xcb, 0xca, 0xe5, 0x9d, 0x3b, 0x39, 0x42, 0x23, 0xeb, 0xe8, 0xb1, 0xaa, - 0x64, 0xba, 0x75, 0xa5, 0xa0, 0xde, 0x9e, 0xbc, 0x42, 0xe3, 0xa6, 0x2a, 0xa0, 0xe2, 0x3e, 0x6b, - 0x78, 0xa5, 0xac, 0x8b, 0x80, 0xe4, 0x0d, 0xba, 0x6d, 0xc4, 0x27, 0x6a, 0xf8, 0x92, 0xad, 0xa8, - 0xd2, 0x4b, 0xcf, 0x2e, 0xdd, 0xde, 0x8d, 0xf6, 0x6f, 0x3e, 0x9a, 0xe1, 0x16, 0x2c, 0xee, 0xc1, - 0xe2, 0xb7, 0x3d, 0xd8, 0xc5, 0x0d, 0xff, 0xc5, 0x93, 0x5f, 0xf3, 0x28, 0x9f, 0xb6, 0xf6, 0xa7, - 0xde, 0xed, 0xf5, 0xbd, 0x6f, 0x31, 0x1a, 0xbf, 0xfb, 0x9b, 0x3f, 0x41, 0xb1, 0xe2, 0x01, 0xea, - 0x30, 0x8f, 0x15, 0x4f, 0xee, 0xa1, 0x89, 0xff, 0x11, 0x61, 0x96, 0x3d, 0xf0, 0xc0, 0x35, 0xbf, - 0xd5, 0x56, 0x9f, 0x74, 0xd8, 0x1f, 0xa0, 0x29, 0x33, 0x22, 0xdc, 0xf2, 0xb2, 0x14, 0x4a, 0x96, - 0x2e, 0x60, 0xdb, 0xca, 0x27, 0x7d, 0xf9, 0x28, 0x54, 0x93, 0xd7, 0x68, 0xca, 0x40, 0xd7, 0x2b, - 0x11, 0x8e, 0x86, 0xee, 0x87, 0xff, 0xd1, 0xfd, 0xe4, 0xc2, 0xec, 0xe5, 0x7f, 0xae, 0x7b, 0xfb, - 0x3a, 0xd7, 0xbd, 0x78, 0x7e, 0xba, 0xce, 0xa2, 0xb3, 0x75, 0x16, 0xfd, 0x5e, 0x67, 0xd1, 0xc9, - 0x26, 0x1b, 0x9c, 0x6d, 0xb2, 0xc1, 0x8f, 0x4d, 0x36, 0x78, 0xff, 0xf0, 0x52, 0x92, 0x62, 0x07, - 0xdd, 0x48, 0x10, 0x3f, 0x12, 0xe4, 0x73, 0x98, 0x99, 0x36, 0xb2, 0xd8, 0x09, 0xcd, 0x3f, 0xfe, - 0x13, 0x00, 0x00, 0xff, 0xff, 0x2c, 0x40, 0xf9, 0xef, 0x4d, 0x03, 0x00, 0x00, + // 446 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x93, 0xc1, 0x6e, 0xd3, 0x30, + 0x18, 0xc7, 0x9b, 0xac, 0x5b, 0xa9, 0x11, 0xad, 0x88, 0x38, 0x44, 0x3d, 0xa4, 0xd3, 0x24, 0x60, + 0x07, 0x66, 0x6b, 0xf0, 0x04, 0x14, 0x34, 0x0d, 0x09, 0x24, 0x14, 0xc1, 0x85, 0x4b, 0xe5, 0xc4, + 0xc6, 0xb5, 0x56, 0xfb, 0x0b, 0xb6, 0xc3, 0x18, 0x47, 0x9e, 0x60, 0x8f, 0xb5, 0xe3, 0x2e, 0x48, + 0x88, 0xc3, 0x40, 0xed, 0x8b, 0x20, 0x3b, 0x09, 0x43, 0xbb, 0xd1, 0x5d, 0x12, 0xfb, 0xfb, 0xfb, + 0xff, 0xcf, 0x97, 0x9f, 0xf5, 0xa1, 0xb1, 0xa0, 0x8a, 0x13, 0xff, 0xc0, 0x95, 0x01, 0x07, 0x49, + 0x5a, 0x82, 0x55, 0xb2, 0x5c, 0x80, 0x91, 0x5f, 0x41, 0xe3, 0x4f, 0xa7, 0x70, 0xa6, 0xb1, 0xd7, + 0x27, 0x99, 0x57, 0xc0, 0x92, 0x82, 0x5a, 0x4e, 0x3e, 0x1f, 0x16, 0xdc, 0xd1, 0x43, 0x52, 0x82, + 0xd4, 0x8d, 0x73, 0x92, 0x09, 0x00, 0xb1, 0xe4, 0x24, 0xec, 0x8a, 0xfa, 0x23, 0x61, 0xb5, 0xa1, + 0x4e, 0x42, 0xa7, 0x4f, 0x6f, 0xea, 0x4e, 0x2a, 0x6e, 0x1d, 0x55, 0x55, 0x7b, 0xe0, 0x81, 0x00, + 0x01, 0x61, 0x49, 0xfc, 0xaa, 0xa9, 0xee, 0x7d, 0x8f, 0xd1, 0xe0, 0x25, 0xaf, 0xc0, 0x4a, 0x97, + 0xa4, 0x68, 0x40, 0x19, 0x33, 0xdc, 0xda, 0x34, 0xda, 0x8d, 0xf6, 0x87, 0x79, 0xb7, 0x4d, 0x8e, + 0xd0, 0x0e, 0x55, 0x50, 0x6b, 0x97, 0xc6, 0x5e, 0x98, 0xe1, 0x8b, 0xab, 0x69, 0xef, 0xe7, 0xd5, + 0xf4, 0x91, 0x90, 0x6e, 0x51, 0x17, 0xb8, 0x04, 0x45, 0xda, 0xfe, 0x9b, 0xd7, 0x81, 0x65, 0x27, + 0xc4, 0x9d, 0x55, 0xdc, 0xe2, 0x57, 0xda, 0xe5, 0xad, 0x3b, 0x39, 0x46, 0x03, 0xeb, 0xe8, 0x89, + 0xd4, 0x22, 0xdd, 0xda, 0x28, 0xa8, 0xb3, 0x27, 0xaf, 0xd1, 0xb0, 0xd6, 0x05, 0x68, 0xe6, 0xb3, + 0xfa, 0x1b, 0x65, 0x5d, 0x07, 0x24, 0x6f, 0xd1, 0x7d, 0xc3, 0x4f, 0xa9, 0x61, 0xf3, 0x72, 0x49, + 0xa5, 0x9a, 0x7b, 0x76, 0xe9, 0xf6, 0x6e, 0xb4, 0x7f, 0xf7, 0xe9, 0x04, 0x37, 0x60, 0x71, 0x07, + 0x16, 0xbf, 0xeb, 0xc0, 0xce, 0xee, 0xf8, 0x2f, 0x9e, 0xff, 0x9a, 0x46, 0xf9, 0xb8, 0xb1, 0xbf, + 0xf0, 0x6e, 0xaf, 0xef, 0x7d, 0x8b, 0xd1, 0xf0, 0xfd, 0xdf, 0xfc, 0x11, 0x8a, 0x25, 0x0b, 0x50, + 0xfb, 0x79, 0x2c, 0x59, 0xf2, 0x10, 0x8d, 0xfc, 0x8f, 0x70, 0x33, 0xef, 0x80, 0x07, 0xae, 0xf9, + 0xbd, 0xa6, 0xfa, 0xbc, 0xc5, 0xfe, 0x18, 0x8d, 0x4b, 0xc3, 0xc3, 0x2d, 0xcf, 0x17, 0x5c, 0x8a, + 0x85, 0x0b, 0xd8, 0xb6, 0xf2, 0x51, 0x57, 0x3e, 0x0e, 0xd5, 0xe4, 0x0d, 0x1a, 0x97, 0xa0, 0xaa, + 0x25, 0x0f, 0x47, 0x43, 0xf7, 0xfd, 0xff, 0xe8, 0x7e, 0x74, 0x6d, 0xf6, 0xf2, 0x3f, 0xd7, 0xbd, + 0x7d, 0x9b, 0xeb, 0x9e, 0x1d, 0x5d, 0xac, 0xb2, 0xe8, 0x72, 0x95, 0x45, 0xbf, 0x57, 0x59, 0x74, + 0xbe, 0xce, 0x7a, 0x97, 0xeb, 0xac, 0xf7, 0x63, 0x9d, 0xf5, 0x3e, 0x3c, 0xb9, 0x91, 0x24, 0xcb, + 0x83, 0x76, 0x26, 0x48, 0x98, 0x09, 0xf2, 0x25, 0x4c, 0x4d, 0x93, 0x59, 0xec, 0x84, 0xee, 0x9f, + 0xfd, 0x09, 0x00, 0x00, 0xff, 0xff, 0x40, 0x4c, 0x79, 0x95, 0x4f, 0x03, 0x00, 0x00, } func (m *Deposit) Marshal() (dAtA []byte, err error) { diff --git a/x/game/types/genesis.pb.go b/x/game/types/genesis.pb.go index cae0e70..99a7332 100644 --- a/x/game/types/genesis.pb.go +++ b/x/game/types/genesis.pb.go @@ -111,38 +111,38 @@ func (m *GenesisState) GetLiquidity() Liquidity { } func init() { - proto.RegisterType((*GenesisState)(nil), "cosmichorizon.coho.game.GenesisState") + proto.RegisterType((*GenesisState)(nil), "cosmichorizon.qwoyn.game.GenesisState") } func init() { proto.RegisterFile("game/genesis.proto", fileDescriptor_06c25d2b62eeb762) } var fileDescriptor_06c25d2b62eeb762 = []byte{ - // 387 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x74, 0x91, 0xbf, 0xaa, 0xdb, 0x30, - 0x18, 0xc5, 0xed, 0x3a, 0x0d, 0x8d, 0x52, 0x08, 0x11, 0x29, 0x35, 0x19, 0x1c, 0x93, 0xc9, 0xb4, - 0xd4, 0x82, 0x64, 0xee, 0x92, 0xfe, 0x87, 0x0e, 0x25, 0xa5, 0x4b, 0x97, 0x20, 0xdb, 0xaa, 0x2c, - 0xb0, 0xfd, 0xb9, 0x96, 0x4c, 0x9b, 0xce, 0x7d, 0x80, 0x3e, 0x56, 0xc6, 0x8c, 0x9d, 0x2e, 0x97, - 0xe4, 0x45, 0x2e, 0x96, 0x15, 0xdf, 0x70, 0xc1, 0x9b, 0xfd, 0x9d, 0xdf, 0x39, 0xe7, 0x93, 0x84, - 0x30, 0xa7, 0x39, 0x23, 0x9c, 0x15, 0x4c, 0x0a, 0x19, 0x96, 0x15, 0x28, 0xc0, 0xcf, 0x63, 0x90, - 0xb9, 0x88, 0x53, 0xa8, 0xc4, 0x1f, 0x28, 0xc2, 0x18, 0x52, 0x08, 0x1b, 0x6c, 0x3e, 0xe3, 0xc0, - 0x41, 0x33, 0xa4, 0xf9, 0x6a, 0xf1, 0xb9, 0xc7, 0x01, 0x78, 0xc6, 0x88, 0xfe, 0x8b, 0xea, 0x1f, - 0x24, 0xa9, 0x2b, 0xaa, 0x04, 0x14, 0x46, 0x5f, 0x3c, 0xd4, 0x95, 0xc8, 0x99, 0x54, 0x34, 0x2f, - 0x0d, 0x30, 0xd5, 0x3b, 0x94, 0xb4, 0xa2, 0xb9, 0x59, 0x61, 0x3e, 0x69, 0xd7, 0xa2, 0x39, 0x33, - 0x83, 0x99, 0x1e, 0x64, 0xe2, 0x67, 0x2d, 0x12, 0xa1, 0xf6, 0xed, 0x74, 0xf9, 0xd7, 0x41, 0x4f, - 0x3f, 0xb4, 0xbb, 0x7f, 0x55, 0x54, 0x31, 0xfc, 0x1a, 0x0d, 0xdb, 0x1c, 0xd7, 0xf6, 0xed, 0x60, - 0xbc, 0x5a, 0x84, 0x3d, 0x67, 0x09, 0xbf, 0x68, 0x6c, 0x33, 0x38, 0xdc, 0x2c, 0xac, 0xad, 0x31, - 0xe1, 0x0d, 0x7a, 0x92, 0xb0, 0x12, 0xa4, 0x50, 0xd2, 0x7d, 0xe4, 0x3b, 0xc1, 0x78, 0xe5, 0xf7, - 0x06, 0xbc, 0x6d, 0x41, 0x93, 0xd0, 0xf9, 0xf0, 0x1a, 0x3d, 0xfb, 0x95, 0x0a, 0xc5, 0x32, 0x21, - 0x15, 0x4b, 0x76, 0x31, 0x14, 0xaa, 0xa2, 0xb1, 0x92, 0xae, 0xe3, 0x3b, 0xc1, 0x68, 0x3b, 0xbb, - 0x12, 0xdf, 0x5c, 0x34, 0xfc, 0x11, 0xa1, 0xba, 0x88, 0xa0, 0x48, 0x44, 0xc1, 0xa5, 0x3b, 0xd0, - 0xd5, 0xcb, 0xde, 0xea, 0x6f, 0x17, 0xd4, 0x94, 0x5f, 0x79, 0xf1, 0x0b, 0x34, 0xcd, 0xa8, 0x54, - 0xbb, 0x6e, 0xb4, 0x13, 0x89, 0xfb, 0xd8, 0xb7, 0x83, 0xc1, 0x76, 0xd2, 0x08, 0x9d, 0xf7, 0x53, - 0x82, 0xdf, 0xa3, 0x51, 0x77, 0xa3, 0xee, 0x50, 0x5f, 0x58, 0x7f, 0xe9, 0xe7, 0x0b, 0x69, 0x4a, - 0xef, 0xad, 0x9b, 0x77, 0x87, 0x93, 0x67, 0x1f, 0x4f, 0x9e, 0x7d, 0x7b, 0xf2, 0xec, 0x7f, 0x67, - 0xcf, 0x3a, 0x9e, 0x3d, 0xeb, 0xff, 0xd9, 0xb3, 0xbe, 0xbf, 0xe4, 0x42, 0xa5, 0x75, 0x14, 0xc6, - 0x90, 0x93, 0x36, 0xf8, 0x95, 0x49, 0x26, 0x4d, 0x32, 0xf9, 0xad, 0xdf, 0x98, 0xa8, 0x7d, 0xc9, - 0x64, 0x34, 0xd4, 0x8f, 0xba, 0xbe, 0x0b, 0x00, 0x00, 0xff, 0xff, 0x19, 0x53, 0xeb, 0xab, 0x94, - 0x02, 0x00, 0x00, + // 390 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x91, 0x41, 0x6f, 0xda, 0x30, + 0x1c, 0xc5, 0x93, 0x85, 0xa1, 0x61, 0x26, 0x21, 0x2c, 0x26, 0x45, 0x1c, 0x42, 0xb6, 0x5d, 0xa2, + 0x69, 0x8b, 0x25, 0xb8, 0xef, 0x00, 0xd3, 0x10, 0xd2, 0x0e, 0x13, 0xd3, 0x2e, 0xbd, 0x20, 0x27, + 0x71, 0x8d, 0xa5, 0xc4, 0x0e, 0xb1, 0x23, 0x4a, 0x3f, 0x41, 0x8f, 0xfd, 0x58, 0x1c, 0x39, 0xf6, + 0x54, 0x55, 0xf0, 0x45, 0x2a, 0x1c, 0x93, 0xa2, 0x4a, 0xf4, 0x96, 0xfc, 0xdf, 0xef, 0xbd, 0xf7, + 0xb7, 0x0d, 0x20, 0xc5, 0x19, 0x41, 0x94, 0x70, 0x22, 0x99, 0x0c, 0xf3, 0x42, 0x28, 0x01, 0xdd, + 0x58, 0xc8, 0x8c, 0xc5, 0x4b, 0x51, 0xb0, 0x5b, 0xc1, 0xc3, 0xd5, 0x5a, 0x6c, 0x78, 0x78, 0xe4, + 0xfa, 0x3d, 0x2a, 0xa8, 0xd0, 0x10, 0x3a, 0x7e, 0x55, 0x7c, 0xdf, 0xa3, 0x42, 0xd0, 0x94, 0x20, + 0xfd, 0x17, 0x95, 0xd7, 0x28, 0x29, 0x0b, 0xac, 0x98, 0xe0, 0x46, 0x1f, 0xbc, 0xd6, 0x15, 0xcb, + 0x88, 0x54, 0x38, 0xcb, 0x0d, 0xd0, 0xd5, 0x4b, 0xe4, 0xb8, 0xc0, 0x99, 0xd9, 0xa1, 0xdf, 0xa9, + 0xf6, 0xc2, 0x19, 0x31, 0x83, 0x9e, 0x1e, 0xa4, 0x6c, 0x55, 0xb2, 0x84, 0xa9, 0x4d, 0x35, 0xfd, + 0x72, 0xe7, 0x80, 0x8f, 0xd3, 0x6a, 0xf9, 0x7f, 0x0a, 0x2b, 0x02, 0x7f, 0x82, 0x66, 0x95, 0xe3, + 0xda, 0xbe, 0x1d, 0xb4, 0x87, 0x7e, 0x78, 0xe9, 0x30, 0xe1, 0x5f, 0xcd, 0x8d, 0x1b, 0xdb, 0xc7, + 0x81, 0x35, 0x37, 0x2e, 0x38, 0x01, 0x1f, 0x12, 0x92, 0x0b, 0xc9, 0x94, 0x74, 0xdf, 0xf9, 0x4e, + 0xd0, 0x1e, 0x7e, 0xbe, 0x9c, 0xf0, 0xab, 0x22, 0x4d, 0x44, 0x6d, 0x84, 0x23, 0xf0, 0x69, 0xbd, + 0x64, 0x8a, 0xa4, 0x4c, 0x2a, 0x92, 0x2c, 0x62, 0xc1, 0x55, 0x81, 0x63, 0x25, 0x5d, 0xc7, 0x77, + 0x82, 0xd6, 0xbc, 0x77, 0x26, 0x4e, 0x4e, 0x1a, 0x9c, 0x01, 0x50, 0xf2, 0x48, 0xf0, 0x84, 0x71, + 0x2a, 0xdd, 0x86, 0xee, 0xfe, 0x7a, 0xb9, 0xfb, 0xff, 0x89, 0x35, 0xed, 0x67, 0x66, 0xf8, 0x0d, + 0x74, 0x53, 0x2c, 0xd5, 0xa2, 0x1e, 0x2d, 0x58, 0xe2, 0xbe, 0xf7, 0xed, 0xa0, 0x31, 0xef, 0x1c, + 0x85, 0xda, 0x3b, 0x4b, 0xe0, 0x14, 0xb4, 0xea, 0x4b, 0x75, 0x9b, 0xfa, 0xce, 0xde, 0x68, 0xfd, + 0x73, 0x42, 0x4d, 0xeb, 0x8b, 0x77, 0xfc, 0x7b, 0xbb, 0xf7, 0xec, 0xdd, 0xde, 0xb3, 0x9f, 0xf6, + 0x9e, 0x7d, 0x7f, 0xf0, 0xac, 0xdd, 0xc1, 0xb3, 0x1e, 0x0e, 0x9e, 0x75, 0xf5, 0x9d, 0x32, 0xb5, + 0x2c, 0xa3, 0x30, 0x16, 0x19, 0xaa, 0x92, 0x7f, 0x98, 0x68, 0xa4, 0xa3, 0xd1, 0x8d, 0x7e, 0x68, + 0xa4, 0x36, 0x39, 0x91, 0x51, 0x53, 0xbf, 0xec, 0xe8, 0x39, 0x00, 0x00, 0xff, 0xff, 0xe7, 0x8e, + 0xfd, 0x8c, 0x9a, 0x02, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/game/types/liquidity.pb.go b/x/game/types/liquidity.pb.go index 6206975..6721632 100644 --- a/x/game/types/liquidity.pb.go +++ b/x/game/types/liquidity.pb.go @@ -71,29 +71,29 @@ func (m *Liquidity) GetAmounts() []types.Coin { } func init() { - proto.RegisterType((*Liquidity)(nil), "cosmichorizon.coho.game.Liquidity") + proto.RegisterType((*Liquidity)(nil), "cosmichorizon.qwoyn.game.Liquidity") } func init() { proto.RegisterFile("game/liquidity.proto", fileDescriptor_4a7089c3c555ee8c) } var fileDescriptor_4a7089c3c555ee8c = []byte{ - // 253 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x90, 0x3f, 0x4f, 0xc3, 0x30, - 0x10, 0xc5, 0x13, 0x81, 0x40, 0x84, 0xad, 0xaa, 0x04, 0x74, 0x70, 0x11, 0x13, 0x12, 0xc2, 0xa7, - 0xc2, 0xc4, 0x5a, 0x04, 0x13, 0x13, 0x23, 0x9b, 0xe3, 0x1a, 0xe7, 0xa4, 0x3a, 0x17, 0xe2, 0x33, - 0xa2, 0x7c, 0x0a, 0x3e, 0x56, 0xc7, 0x8e, 0x4c, 0x08, 0x25, 0x5f, 0x04, 0x39, 0x7f, 0x16, 0xb6, - 0x77, 0xf7, 0xde, 0x49, 0xbf, 0x77, 0xd9, 0xd4, 0x2a, 0x67, 0x60, 0x8d, 0x6f, 0x01, 0x57, 0xc8, - 0x1b, 0x59, 0xd5, 0xc4, 0x34, 0x39, 0xd1, 0xe4, 0x1d, 0xea, 0x82, 0x6a, 0xfc, 0xa4, 0x52, 0x6a, - 0x2a, 0x48, 0xc6, 0xe0, 0x4c, 0x44, 0x83, 0x3c, 0xe4, 0xca, 0x1b, 0x78, 0x5f, 0xe4, 0x86, 0xd5, - 0x02, 0x34, 0x61, 0xd9, 0x1f, 0xce, 0x84, 0x25, 0xb2, 0x6b, 0x03, 0xdd, 0x94, 0x87, 0x57, 0x58, - 0x85, 0x5a, 0x31, 0xd2, 0xe8, 0xcf, 0xff, 0xfb, 0x8c, 0xce, 0x78, 0x56, 0xae, 0x1a, 0x02, 0x53, - 0x4b, 0x96, 0x3a, 0x09, 0x51, 0xf5, 0xdb, 0x8b, 0xc7, 0xec, 0xe8, 0x69, 0x44, 0x9c, 0xdc, 0x65, - 0x87, 0xca, 0x51, 0x28, 0xd9, 0x9f, 0xa6, 0xe7, 0x7b, 0x97, 0xc7, 0x37, 0x67, 0xb2, 0xa7, 0x92, - 0x91, 0x4a, 0x0e, 0x54, 0xf2, 0x9e, 0xb0, 0x5c, 0xee, 0x6f, 0x7f, 0xe6, 0xc9, 0xf3, 0x98, 0x5f, - 0x3e, 0x6c, 0x1b, 0x91, 0xee, 0x1a, 0x91, 0xfe, 0x36, 0x22, 0xfd, 0x6a, 0x45, 0xb2, 0x6b, 0x45, - 0xf2, 0xdd, 0x8a, 0xe4, 0xe5, 0xca, 0x22, 0x17, 0x21, 0x97, 0x9a, 0x1c, 0xf4, 0xe5, 0xaf, 0x87, - 0xf6, 0x10, 0xdb, 0xc3, 0x07, 0x74, 0x8f, 0xe2, 0x4d, 0x65, 0x7c, 0x7e, 0xd0, 0x51, 0xdd, 0xfe, - 0x05, 0x00, 0x00, 0xff, 0xff, 0x1c, 0xce, 0xba, 0x7f, 0x3d, 0x01, 0x00, 0x00, + // 254 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x90, 0x31, 0x4f, 0xc3, 0x30, + 0x10, 0x85, 0x13, 0x81, 0x40, 0x84, 0xad, 0xea, 0x50, 0x3a, 0xb8, 0x88, 0x89, 0x01, 0x7c, 0x2a, + 0x4c, 0xac, 0x45, 0xea, 0xc4, 0xc4, 0xc8, 0x66, 0xa7, 0xc6, 0x3d, 0xa9, 0xf6, 0xa5, 0xb1, 0x0d, + 0x84, 0x5f, 0xc1, 0xcf, 0xea, 0x98, 0x91, 0x09, 0xa1, 0xe4, 0x8f, 0xa0, 0x38, 0xc9, 0xc2, 0xf6, + 0xee, 0xde, 0x3b, 0xe9, 0x7b, 0x97, 0x4d, 0xb5, 0x30, 0x0a, 0x76, 0xb8, 0x0f, 0xb8, 0x41, 0x5f, + 0xf1, 0xa2, 0x24, 0x4f, 0x93, 0x59, 0x4e, 0xce, 0x60, 0xbe, 0xa5, 0x12, 0x3f, 0xc9, 0xf2, 0xfd, + 0x3b, 0x55, 0x96, 0x77, 0xc9, 0x39, 0xeb, 0x1c, 0x72, 0x20, 0x85, 0x53, 0xf0, 0xb6, 0x94, 0xca, + 0x8b, 0x25, 0xe4, 0x84, 0xb6, 0xbf, 0x9c, 0x33, 0x4d, 0xa4, 0x77, 0x0a, 0xe2, 0x24, 0xc3, 0x2b, + 0x6c, 0x42, 0x29, 0x3c, 0xd2, 0xe8, 0x2f, 0xfe, 0xfb, 0x1e, 0x8d, 0x72, 0x5e, 0x98, 0x62, 0x08, + 0x4c, 0x35, 0x69, 0x8a, 0x12, 0x3a, 0xd5, 0x6f, 0xaf, 0xd6, 0xd9, 0xd9, 0xd3, 0xc8, 0x38, 0x79, + 0xc8, 0x4e, 0x85, 0xa1, 0x60, 0xbd, 0x9b, 0xa5, 0x97, 0x47, 0xd7, 0xe7, 0x77, 0x17, 0xbc, 0xa7, + 0xe2, 0x1d, 0x15, 0x1f, 0xa8, 0xf8, 0x23, 0xa1, 0x5d, 0x1d, 0x1f, 0x7e, 0x16, 0xc9, 0xf3, 0x98, + 0x5f, 0xad, 0x0f, 0x0d, 0x4b, 0xeb, 0x86, 0xa5, 0xbf, 0x0d, 0x4b, 0xbf, 0x5a, 0x96, 0xd4, 0x2d, + 0x4b, 0xbe, 0x5b, 0x96, 0xbc, 0xdc, 0x68, 0xf4, 0xdb, 0x20, 0x79, 0x4e, 0x06, 0xfa, 0xf6, 0xb7, + 0x43, 0x7d, 0x88, 0xf5, 0xe1, 0x03, 0xe2, 0xab, 0x7c, 0x55, 0x28, 0x27, 0x4f, 0x22, 0xd6, 0xfd, + 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x0f, 0x7f, 0xfc, 0x12, 0x3f, 0x01, 0x00, 0x00, } func (m *Liquidity) Marshal() (dAtA []byte, err error) { diff --git a/x/game/types/params.pb.go b/x/game/types/params.pb.go index 8efb1b4..238d859 100644 --- a/x/game/types/params.pb.go +++ b/x/game/types/params.pb.go @@ -97,33 +97,33 @@ func (m *Params) GetUnstakingTime() time.Duration { } func init() { - proto.RegisterType((*Params)(nil), "cosmichorizon.coho.game.Params") + proto.RegisterType((*Params)(nil), "cosmichorizon.qwoyn.game.Params") } func init() { proto.RegisterFile("game/params.proto", fileDescriptor_4fd39677cdca32c4) } var fileDescriptor_4fd39677cdca32c4 = []byte{ // 316 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x91, 0xbd, 0x4e, 0xc3, 0x30, - 0x14, 0x85, 0x63, 0x28, 0x15, 0x04, 0x8a, 0x68, 0x54, 0x89, 0xd0, 0xc1, 0xa9, 0x60, 0xa9, 0x54, - 0x61, 0x4b, 0xb0, 0x31, 0x56, 0x65, 0x80, 0x09, 0x55, 0x4c, 0x2c, 0x95, 0x9b, 0xba, 0xae, 0x45, - 0xed, 0x1b, 0xc5, 0x8e, 0xf8, 0x79, 0x0a, 0xc6, 0x8e, 0x3c, 0x0b, 0x53, 0xc7, 0x8e, 0x4c, 0x80, - 0xda, 0x17, 0x41, 0x71, 0x12, 0x06, 0x36, 0xdf, 0x73, 0x8e, 0xe5, 0xcf, 0xe7, 0xfa, 0x4d, 0xc1, - 0x14, 0xa7, 0x09, 0x4b, 0x99, 0x32, 0x24, 0x49, 0xc1, 0x42, 0x70, 0x1c, 0x83, 0x51, 0x32, 0x9e, - 0x41, 0x2a, 0x5f, 0x41, 0x93, 0x18, 0x66, 0x40, 0xf2, 0x54, 0xbb, 0x25, 0x40, 0x80, 0xcb, 0xd0, - 0xfc, 0x54, 0xc4, 0xdb, 0x58, 0x00, 0x88, 0x39, 0xa7, 0x6e, 0x1a, 0x67, 0x53, 0x3a, 0xc9, 0x52, - 0x66, 0x25, 0xe8, 0xd2, 0x8f, 0xfe, 0xfb, 0x56, 0x2a, 0x6e, 0x2c, 0x53, 0x49, 0x11, 0x38, 0xfd, - 0x40, 0x7e, 0xfd, 0xce, 0x01, 0x04, 0x2d, 0x7f, 0x07, 0x9e, 0x34, 0x4f, 0x43, 0xd4, 0x41, 0xdd, - 0xbd, 0x61, 0x31, 0x04, 0x67, 0x7e, 0x63, 0xc2, 0x13, 0x30, 0xd2, 0x8e, 0x26, 0x5c, 0x83, 0x0a, - 0xb7, 0x9c, 0x7b, 0x50, 0x8a, 0x83, 0x5c, 0x0b, 0x7a, 0x7e, 0xd3, 0x58, 0xf6, 0x28, 0xb5, 0x18, - 0x49, 0x3d, 0x9d, 0x3b, 0x82, 0x70, 0xbb, 0x83, 0xba, 0xb5, 0xe1, 0x51, 0x69, 0xdc, 0x54, 0x7a, - 0x70, 0xeb, 0x1f, 0x66, 0xba, 0x8a, 0xe7, 0x3c, 0x61, 0xad, 0x83, 0xba, 0xfb, 0x17, 0x27, 0xa4, - 0x80, 0x25, 0x15, 0x2c, 0x19, 0x94, 0x9f, 0xe9, 0xef, 0x2e, 0xbf, 0x22, 0x6f, 0xf1, 0x1d, 0xa1, - 0x61, 0xe3, 0xef, 0xea, 0xbd, 0x54, 0xfc, 0xaa, 0xb6, 0x78, 0x8f, 0xbc, 0xfe, 0xf5, 0x72, 0x8d, - 0xd1, 0x6a, 0x8d, 0xd1, 0xcf, 0x1a, 0xa3, 0xb7, 0x0d, 0xf6, 0x56, 0x1b, 0xec, 0x7d, 0x6e, 0xb0, - 0xf7, 0xd0, 0x13, 0xd2, 0xce, 0xb2, 0x31, 0x89, 0x41, 0xd1, 0xa2, 0xd9, 0xf3, 0xb2, 0x5a, 0x9a, - 0x57, 0x4b, 0x9f, 0xa9, 0x5b, 0x81, 0x7d, 0x49, 0xb8, 0x19, 0xd7, 0xdd, 0xc3, 0x97, 0xbf, 0x01, - 0x00, 0x00, 0xff, 0xff, 0x4b, 0xb1, 0xea, 0xf2, 0x97, 0x01, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x5c, 0x91, 0x31, 0x4f, 0x02, 0x31, + 0x1c, 0xc5, 0xaf, 0x8a, 0x44, 0x4f, 0x31, 0x72, 0x61, 0x38, 0x19, 0x7a, 0x44, 0x17, 0x12, 0xb5, + 0x4d, 0x74, 0x73, 0x24, 0xc4, 0x44, 0x27, 0x43, 0x9c, 0x5c, 0x48, 0x81, 0x52, 0x1a, 0x69, 0xff, + 0xe7, 0xb5, 0x17, 0xc4, 0x4f, 0xe1, 0xc8, 0xe8, 0x67, 0x71, 0x62, 0x64, 0x74, 0x52, 0x03, 0x5f, + 0xc4, 0x5c, 0xef, 0xce, 0xc1, 0xad, 0xff, 0xf7, 0x5e, 0xd3, 0x5f, 0xdf, 0xdf, 0xaf, 0x0b, 0xa6, + 0x38, 0x8d, 0x59, 0xc2, 0x94, 0x21, 0x71, 0x02, 0x16, 0x82, 0x70, 0x08, 0x46, 0xc9, 0xe1, 0x04, + 0x12, 0xf9, 0x0a, 0x9a, 0x3c, 0xcf, 0x60, 0xae, 0x49, 0x16, 0x6b, 0x36, 0x04, 0x08, 0x70, 0x21, + 0x9a, 0x9d, 0xf2, 0x7c, 0x13, 0x0b, 0x00, 0x31, 0xe5, 0xd4, 0x4d, 0x83, 0x74, 0x4c, 0x47, 0x69, + 0xc2, 0xac, 0x04, 0x5d, 0xf8, 0xd1, 0x7f, 0xdf, 0x4a, 0xc5, 0x8d, 0x65, 0x2a, 0xce, 0x03, 0x27, + 0x1f, 0xc8, 0xaf, 0xde, 0x3b, 0x82, 0xa0, 0xe1, 0xef, 0xc0, 0x4c, 0xf3, 0x24, 0x44, 0x2d, 0xd4, + 0xde, 0xeb, 0xe5, 0x43, 0x70, 0xea, 0xd7, 0x46, 0x3c, 0x06, 0x23, 0x6d, 0x7f, 0xc4, 0x35, 0xa8, + 0x70, 0xcb, 0xb9, 0x07, 0x85, 0xd8, 0xcd, 0xb4, 0xe0, 0xcc, 0xaf, 0x1b, 0xcb, 0x9e, 0xa4, 0x16, + 0x7d, 0xa9, 0xc7, 0x53, 0x47, 0x10, 0x6e, 0xb7, 0x50, 0xbb, 0xd2, 0x3b, 0x2a, 0x8c, 0xdb, 0x52, + 0x0f, 0xee, 0xfc, 0xc3, 0x54, 0x97, 0xf1, 0x8c, 0x27, 0xac, 0xb4, 0x50, 0x7b, 0xff, 0xf2, 0x98, + 0xe4, 0xb0, 0xa4, 0x84, 0x25, 0xdd, 0xe2, 0x33, 0x9d, 0xdd, 0xe5, 0x57, 0xe4, 0x2d, 0xbe, 0x23, + 0xd4, 0xab, 0xfd, 0x5d, 0x7d, 0x90, 0x8a, 0x5f, 0x57, 0x16, 0xef, 0x91, 0xd7, 0xb9, 0x59, 0xae, + 0x31, 0x5a, 0xad, 0x31, 0xfa, 0x59, 0x63, 0xf4, 0xb6, 0xc1, 0xde, 0x6a, 0x83, 0xbd, 0xcf, 0x0d, + 0xf6, 0x1e, 0xcf, 0x85, 0xb4, 0x93, 0x74, 0x40, 0x86, 0xa0, 0x68, 0x5e, 0xed, 0x45, 0xd1, 0x2d, + 0x75, 0xdd, 0xd2, 0x17, 0xea, 0x96, 0x60, 0xe7, 0x31, 0x37, 0x83, 0xaa, 0x7b, 0xf9, 0xea, 0x37, + 0x00, 0x00, 0xff, 0xff, 0x35, 0x82, 0x9c, 0x95, 0x99, 0x01, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/game/types/query.pb.go b/x/game/types/query.pb.go index d897ad8..7984be7 100644 --- a/x/game/types/query.pb.go +++ b/x/game/types/query.pb.go @@ -885,100 +885,101 @@ func (m *QuerySwapRateResponse) GetTarDenom() string { } func init() { - proto.RegisterType((*QueryParamsRequest)(nil), "cosmichorizon.coho.game.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "cosmichorizon.coho.game.QueryParamsResponse") - proto.RegisterType((*QueryWhitelistedContractsRequest)(nil), "cosmichorizon.coho.game.QueryWhitelistedContractsRequest") - proto.RegisterType((*QueryWhitelistedContractsResponse)(nil), "cosmichorizon.coho.game.QueryWhitelistedContractsResponse") - proto.RegisterType((*QueryInGameNftsRequest)(nil), "cosmichorizon.coho.game.QueryInGameNftsRequest") - proto.RegisterType((*QueryInGameNftsResponse)(nil), "cosmichorizon.coho.game.QueryInGameNftsResponse") - proto.RegisterType((*QueryDepositBalanceRequest)(nil), "cosmichorizon.coho.game.QueryDepositBalanceRequest") - proto.RegisterType((*QueryDepositBalanceResponse)(nil), "cosmichorizon.coho.game.QueryDepositBalanceResponse") - proto.RegisterType((*QueryAllDepositBalancesRequest)(nil), "cosmichorizon.coho.game.QueryAllDepositBalancesRequest") - proto.RegisterType((*QueryAllDepositBalanceResponse)(nil), "cosmichorizon.coho.game.QueryAllDepositBalanceResponse") - proto.RegisterType((*QueryAllUnbondingsRequest)(nil), "cosmichorizon.coho.game.QueryAllUnbondingsRequest") - proto.RegisterType((*QueryAllUnbondingsResponse)(nil), "cosmichorizon.coho.game.QueryAllUnbondingsResponse") - proto.RegisterType((*QueryUserUnbondingsRequest)(nil), "cosmichorizon.coho.game.QueryUserUnbondingsRequest") - proto.RegisterType((*QueryUserUnbondingsResponse)(nil), "cosmichorizon.coho.game.QueryUserUnbondingsResponse") - proto.RegisterType((*QueryLiquidityRequest)(nil), "cosmichorizon.coho.game.QueryLiquidityRequest") - proto.RegisterType((*QueryLiquidityResponse)(nil), "cosmichorizon.coho.game.QueryLiquidityResponse") - proto.RegisterType((*QueryEstimatedSwapOutRequest)(nil), "cosmichorizon.coho.game.QueryEstimatedSwapOutRequest") - proto.RegisterType((*QueryEstimatedSwapOutResponse)(nil), "cosmichorizon.coho.game.QueryEstimatedSwapOutResponse") - proto.RegisterType((*QuerySwapRateRequest)(nil), "cosmichorizon.coho.game.QuerySwapRateRequest") - proto.RegisterType((*QuerySwapRateResponse)(nil), "cosmichorizon.coho.game.QuerySwapRateResponse") + proto.RegisterType((*QueryParamsRequest)(nil), "cosmichorizon.qwoyn.game.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "cosmichorizon.qwoyn.game.QueryParamsResponse") + proto.RegisterType((*QueryWhitelistedContractsRequest)(nil), "cosmichorizon.qwoyn.game.QueryWhitelistedContractsRequest") + proto.RegisterType((*QueryWhitelistedContractsResponse)(nil), "cosmichorizon.qwoyn.game.QueryWhitelistedContractsResponse") + proto.RegisterType((*QueryInGameNftsRequest)(nil), "cosmichorizon.qwoyn.game.QueryInGameNftsRequest") + proto.RegisterType((*QueryInGameNftsResponse)(nil), "cosmichorizon.qwoyn.game.QueryInGameNftsResponse") + proto.RegisterType((*QueryDepositBalanceRequest)(nil), "cosmichorizon.qwoyn.game.QueryDepositBalanceRequest") + proto.RegisterType((*QueryDepositBalanceResponse)(nil), "cosmichorizon.qwoyn.game.QueryDepositBalanceResponse") + proto.RegisterType((*QueryAllDepositBalancesRequest)(nil), "cosmichorizon.qwoyn.game.QueryAllDepositBalancesRequest") + proto.RegisterType((*QueryAllDepositBalanceResponse)(nil), "cosmichorizon.qwoyn.game.QueryAllDepositBalanceResponse") + proto.RegisterType((*QueryAllUnbondingsRequest)(nil), "cosmichorizon.qwoyn.game.QueryAllUnbondingsRequest") + proto.RegisterType((*QueryAllUnbondingsResponse)(nil), "cosmichorizon.qwoyn.game.QueryAllUnbondingsResponse") + proto.RegisterType((*QueryUserUnbondingsRequest)(nil), "cosmichorizon.qwoyn.game.QueryUserUnbondingsRequest") + proto.RegisterType((*QueryUserUnbondingsResponse)(nil), "cosmichorizon.qwoyn.game.QueryUserUnbondingsResponse") + proto.RegisterType((*QueryLiquidityRequest)(nil), "cosmichorizon.qwoyn.game.QueryLiquidityRequest") + proto.RegisterType((*QueryLiquidityResponse)(nil), "cosmichorizon.qwoyn.game.QueryLiquidityResponse") + proto.RegisterType((*QueryEstimatedSwapOutRequest)(nil), "cosmichorizon.qwoyn.game.QueryEstimatedSwapOutRequest") + proto.RegisterType((*QueryEstimatedSwapOutResponse)(nil), "cosmichorizon.qwoyn.game.QueryEstimatedSwapOutResponse") + proto.RegisterType((*QuerySwapRateRequest)(nil), "cosmichorizon.qwoyn.game.QuerySwapRateRequest") + proto.RegisterType((*QuerySwapRateResponse)(nil), "cosmichorizon.qwoyn.game.QuerySwapRateResponse") } func init() { proto.RegisterFile("game/query.proto", fileDescriptor_ba210adeee9ee5e5) } var fileDescriptor_ba210adeee9ee5e5 = []byte{ - // 1085 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0xcf, 0x6f, 0x1b, 0x45, - 0x14, 0xce, 0xb6, 0x21, 0xb5, 0x5f, 0x55, 0x68, 0x07, 0x93, 0xa4, 0x9b, 0x60, 0xbb, 0x2b, 0x44, - 0x4b, 0x4b, 0x76, 0x52, 0x27, 0x75, 0x20, 0xa2, 0x12, 0x75, 0x53, 0xa0, 0x12, 0x02, 0x6a, 0xa8, - 0x40, 0x5c, 0x96, 0xf1, 0xee, 0xc4, 0x19, 0xd5, 0xde, 0x71, 0x76, 0xc6, 0x84, 0x10, 0xe5, 0xc2, - 0x99, 0x03, 0x12, 0x42, 0xe2, 0xc2, 0x8d, 0x0b, 0x7f, 0x01, 0x17, 0x24, 0x4e, 0x48, 0x3d, 0x46, - 0xe2, 0x82, 0x38, 0x44, 0x28, 0xe1, 0x2f, 0xe0, 0x2f, 0x40, 0x3b, 0x3b, 0xbb, 0xfe, 0xb9, 0x1b, - 0x1b, 0x71, 0xc9, 0x66, 0x67, 0xde, 0xf7, 0xbe, 0x6f, 0xde, 0xbc, 0x7d, 0x9f, 0x0c, 0x97, 0x9b, - 0xa4, 0x4d, 0xf1, 0x6e, 0x97, 0x06, 0xfb, 0x76, 0x27, 0xe0, 0x92, 0xa3, 0x05, 0x97, 0x8b, 0x36, - 0x73, 0x77, 0x78, 0xc0, 0xbe, 0xe4, 0xbe, 0xed, 0xf2, 0x1d, 0x6e, 0x87, 0x41, 0x66, 0xa1, 0xc9, - 0x9b, 0x5c, 0xc5, 0xe0, 0xf0, 0xbf, 0x28, 0xdc, 0x5c, 0x6e, 0x72, 0xde, 0x6c, 0x51, 0x4c, 0x3a, - 0x0c, 0x13, 0xdf, 0xe7, 0x92, 0x48, 0xc6, 0x7d, 0xa1, 0x77, 0x6f, 0x86, 0xc9, 0xb8, 0xc0, 0x0d, - 0x22, 0x34, 0x0b, 0xfe, 0xfc, 0x76, 0x83, 0x4a, 0x72, 0x1b, 0x77, 0x48, 0x93, 0xf9, 0x2a, 0x58, - 0xc7, 0x5e, 0x51, 0x52, 0x3a, 0x24, 0x20, 0xed, 0x18, 0xfe, 0x9c, 0x5a, 0x0a, 0xff, 0xe8, 0x85, - 0x82, 0x5a, 0x68, 0xb1, 0xdd, 0x2e, 0xf3, 0x98, 0xd4, 0x92, 0xcd, 0x62, 0x3f, 0x4b, 0x9c, 0xdf, - 0xe5, 0x4c, 0x67, 0xb6, 0x0a, 0x80, 0x1e, 0x85, 0xdc, 0x1f, 0xa8, 0xdc, 0x75, 0xba, 0xdb, 0xa5, - 0x42, 0x5a, 0x1f, 0xc1, 0xf3, 0x03, 0xab, 0xa2, 0xc3, 0x7d, 0x41, 0xd1, 0x5d, 0x98, 0x8b, 0x34, - 0x2c, 0x1a, 0x65, 0xe3, 0xc6, 0xc5, 0x4a, 0xc9, 0x4e, 0x29, 0x88, 0x1d, 0x01, 0x6b, 0xb3, 0x4f, - 0x8f, 0x4b, 0x33, 0x75, 0x0d, 0xb2, 0x2c, 0x28, 0xab, 0xac, 0x1f, 0xef, 0x30, 0x49, 0x5b, 0x4c, - 0x48, 0xea, 0xdd, 0xe7, 0xbe, 0x0c, 0x88, 0x2b, 0x13, 0xe6, 0x7b, 0x70, 0x2d, 0x23, 0x46, 0xeb, - 0x58, 0x86, 0xbc, 0x1b, 0x2f, 0x2e, 0x1a, 0xe5, 0xf3, 0x37, 0xf2, 0xf5, 0xde, 0x82, 0xb5, 0x0e, - 0xf3, 0x2a, 0xc5, 0x43, 0xff, 0x6d, 0xd2, 0xa6, 0xef, 0x6d, 0x27, 0xc9, 0x91, 0x09, 0xb9, 0x38, - 0x4c, 0x9d, 0x20, 0x5f, 0x4f, 0xde, 0xad, 0x2a, 0x2c, 0x8c, 0xa0, 0x34, 0xdd, 0x12, 0xe4, 0x25, - 0x7f, 0x42, 0x7d, 0x87, 0x79, 0x11, 0xdd, 0x6c, 0x3d, 0xa7, 0x16, 0x1e, 0x7a, 0xc2, 0xaa, 0x82, - 0xa9, 0x70, 0x5b, 0xb4, 0xc3, 0x05, 0x93, 0x35, 0xd2, 0x22, 0xbe, 0x4b, 0x63, 0xc6, 0x45, 0xb8, - 0x40, 0x3c, 0x2f, 0xa0, 0x42, 0x68, 0xc2, 0xf8, 0xd5, 0x72, 0x60, 0x69, 0x2c, 0x4e, 0x73, 0xbe, - 0x09, 0x17, 0xbc, 0x68, 0x47, 0xd7, 0xba, 0x9c, 0x5a, 0xeb, 0x38, 0x43, 0x54, 0xec, 0x18, 0x66, - 0x95, 0xa1, 0xa8, 0x08, 0xee, 0xb5, 0x5a, 0x83, 0x1c, 0x49, 0xad, 0x7f, 0x30, 0xd2, 0x42, 0x12, - 0x19, 0x35, 0xc8, 0xe9, 0x7c, 0xd1, 0xc9, 0x27, 0xd7, 0x91, 0xe0, 0xd0, 0x06, 0xcc, 0x91, 0x36, - 0xef, 0xfa, 0x72, 0xf1, 0x9c, 0x3a, 0xc9, 0x55, 0x3b, 0xea, 0x49, 0x3b, 0xec, 0x49, 0x5b, 0xf7, - 0xa4, 0x7d, 0x9f, 0x33, 0x3f, 0xee, 0x97, 0x28, 0xdc, 0x5a, 0x82, 0xab, 0xb1, 0xbc, 0xc7, 0x7e, - 0x83, 0xfb, 0x1e, 0xf3, 0x9b, 0x89, 0xf8, 0x6d, 0x5d, 0xf7, 0xa1, 0x4d, 0xad, 0xfb, 0x1d, 0x80, - 0x6e, 0xb2, 0xaa, 0x95, 0x5b, 0xa9, 0xca, 0x93, 0x04, 0x5a, 0x40, 0x1f, 0x36, 0xb9, 0xdf, 0xc7, - 0x82, 0x06, 0x23, 0x2a, 0x32, 0xee, 0xb7, 0xa9, 0xef, 0x77, 0x18, 0xf7, 0xbf, 0x0b, 0x5c, 0x80, - 0x17, 0x14, 0xd1, 0xbb, 0xf1, 0x97, 0x1f, 0x57, 0xe8, 0x33, 0xfd, 0x1d, 0xf4, 0x6d, 0x68, 0xf2, - 0xb7, 0x20, 0x9f, 0xcc, 0x09, 0xdd, 0x5e, 0xe9, 0xdc, 0x09, 0x5c, 0x73, 0xf7, 0xa0, 0x56, 0x15, - 0x96, 0x15, 0xc3, 0x03, 0x21, 0x59, 0x9b, 0x48, 0xea, 0x7d, 0xb8, 0x47, 0x3a, 0xef, 0x77, 0x65, - 0x5c, 0x9d, 0xf9, 0xe4, 0xe6, 0xa3, 0xe2, 0xc4, 0x17, 0xfb, 0x09, 0xbc, 0x98, 0x82, 0xd3, 0x02, - 0x37, 0x06, 0x80, 0x53, 0xb4, 0xcc, 0x3c, 0x14, 0x54, 0xe6, 0x30, 0x61, 0x9d, 0xc8, 0xf8, 0x3b, - 0xb4, 0x7e, 0x34, 0x74, 0x95, 0x7a, 0x1b, 0x9a, 0xea, 0x11, 0xcc, 0x06, 0x44, 0xd2, 0x48, 0x61, - 0xed, 0x6e, 0x98, 0xed, 0xcf, 0xe3, 0xd2, 0xcb, 0x4d, 0x26, 0x77, 0xba, 0x0d, 0xdb, 0xe5, 0x6d, - 0xac, 0x27, 0x68, 0xf4, 0x58, 0x11, 0xde, 0x13, 0x2c, 0xf7, 0x3b, 0x54, 0xd8, 0x5b, 0xd4, 0xfd, - 0xe7, 0xb8, 0x74, 0x71, 0x9f, 0xb4, 0x5b, 0x9b, 0x56, 0x98, 0xc3, 0xaa, 0xab, 0x54, 0xe1, 0xbc, - 0x10, 0x81, 0xeb, 0x78, 0xd4, 0xe7, 0x6d, 0xd5, 0xf3, 0xf9, 0x7a, 0x4e, 0x04, 0xee, 0x56, 0xf8, - 0xae, 0x86, 0x09, 0x09, 0xf4, 0xe6, 0xf9, 0x68, 0x53, 0x92, 0x40, 0x6d, 0x56, 0x8e, 0x2f, 0xc1, - 0x33, 0x4a, 0x26, 0xfa, 0xda, 0x80, 0xb9, 0x68, 0x88, 0xa2, 0x5b, 0xa9, 0x57, 0x33, 0x3a, 0xb9, - 0xcd, 0x57, 0x27, 0x0b, 0x8e, 0x0e, 0x6f, 0x5d, 0xff, 0xea, 0xf7, 0xbf, 0xbf, 0x3d, 0x77, 0x0d, - 0x95, 0xf0, 0x00, 0x0a, 0x87, 0x28, 0xdc, 0xe7, 0x39, 0xe8, 0x37, 0x03, 0x0a, 0xe3, 0x46, 0x32, - 0x7a, 0x3d, 0x9b, 0x2f, 0x63, 0xd4, 0x9b, 0x9b, 0xff, 0x05, 0xaa, 0x85, 0x57, 0x95, 0xf0, 0x55, - 0x64, 0xa7, 0x0a, 0xdf, 0xeb, 0xc1, 0x9d, 0xc4, 0x1b, 0xd0, 0x4f, 0x06, 0x40, 0x6f, 0xc2, 0x23, - 0x9c, 0x2d, 0x61, 0xc4, 0x41, 0xcc, 0xd5, 0xc9, 0x01, 0x5a, 0xe9, 0x6b, 0x4a, 0x69, 0x05, 0xad, - 0xa6, 0x2a, 0x65, 0xbe, 0x13, 0x3e, 0x1d, 0x7f, 0x5b, 0x0a, 0x7c, 0x10, 0x6b, 0x3d, 0x44, 0x3f, - 0x1b, 0xf0, 0xec, 0xe0, 0x58, 0x46, 0x6b, 0xd9, 0xf4, 0x63, 0x3d, 0xc8, 0x5c, 0x9f, 0x0e, 0xa4, - 0x75, 0x6f, 0x2a, 0xdd, 0xeb, 0xa8, 0x92, 0xaa, 0x5b, 0x0f, 0x78, 0xa7, 0x11, 0x21, 0xf1, 0x81, - 0x1e, 0x7d, 0x87, 0xe8, 0x17, 0x03, 0xae, 0x8c, 0x78, 0x0a, 0xda, 0xc8, 0xd6, 0x91, 0xea, 0x53, - 0xe6, 0xb4, 0xc0, 0xe4, 0x0c, 0x77, 0xd4, 0x19, 0x30, 0x5a, 0x49, 0x3d, 0x03, 0x69, 0xb5, 0x9c, - 0xa1, 0x73, 0xa8, 0x26, 0xb9, 0x34, 0x60, 0x2b, 0xa8, 0x72, 0xa6, 0x82, 0x11, 0x6b, 0x30, 0xd7, - 0xa6, 0xc2, 0x68, 0xc5, 0x58, 0x29, 0x7e, 0x05, 0x5d, 0xcf, 0x54, 0xdc, 0x9b, 0xfe, 0xaa, 0x49, - 0x06, 0x2d, 0xe6, 0xac, 0x26, 0x19, 0x6b, 0x64, 0x67, 0x35, 0xc9, 0x78, 0x17, 0x9b, 0xa0, 0x49, - 0xba, 0x82, 0x06, 0x7d, 0x7a, 0xfb, 0x9a, 0xe4, 0x7b, 0x03, 0xf2, 0x89, 0xb7, 0x20, 0x3b, 0x9b, - 0x7f, 0xd8, 0xdc, 0x4c, 0x3c, 0x71, 0xbc, 0x96, 0x7a, 0x53, 0x49, 0x7d, 0x09, 0x59, 0xa9, 0x52, - 0x13, 0x5f, 0x43, 0xbf, 0x1a, 0x70, 0x79, 0xd8, 0x9b, 0xd0, 0x9d, 0x6c, 0xc6, 0x14, 0x0f, 0x34, - 0xab, 0xd3, 0xc2, 0xb4, 0xde, 0x37, 0x94, 0xde, 0x2a, 0x5a, 0x4f, 0xd5, 0x4b, 0x63, 0xa8, 0x23, - 0xf6, 0x48, 0xc7, 0xe1, 0x5d, 0x89, 0x0f, 0x22, 0x1b, 0x3c, 0x44, 0xdf, 0x19, 0x90, 0x8b, 0xad, - 0x0e, 0xad, 0x64, 0x4b, 0x18, 0xf2, 0x4a, 0xd3, 0x9e, 0x34, 0x7c, 0xe2, 0xca, 0x2a, 0x7d, 0xa1, - 0x35, 0xd6, 0x1e, 0x3c, 0x3d, 0x29, 0x1a, 0x47, 0x27, 0x45, 0xe3, 0xaf, 0x93, 0xa2, 0xf1, 0xcd, - 0x69, 0x71, 0xe6, 0xe8, 0xb4, 0x38, 0xf3, 0xc7, 0x69, 0x71, 0xe6, 0xd3, 0x5b, 0x43, 0x8e, 0xcb, - 0xdc, 0x95, 0x81, 0x44, 0x5f, 0x44, 0xa9, 0x94, 0xf5, 0x36, 0xe6, 0xd4, 0x8f, 0x97, 0xb5, 0x7f, - 0x03, 0x00, 0x00, 0xff, 0xff, 0x0f, 0x4c, 0xc9, 0x8e, 0xa3, 0x0d, 0x00, 0x00, + // 1091 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x97, 0x4d, 0x6f, 0x1b, 0x45, + 0x18, 0xc7, 0xb3, 0x6d, 0x48, 0xed, 0xa9, 0x0a, 0xed, 0x60, 0x52, 0x77, 0x13, 0x1c, 0x67, 0x41, + 0xb4, 0x54, 0xcd, 0x4e, 0x92, 0xba, 0x4e, 0x15, 0x5e, 0xa4, 0xbc, 0x40, 0x15, 0x09, 0x01, 0x35, + 0x8a, 0x40, 0x5c, 0xcc, 0x78, 0x77, 0x6a, 0x8f, 0x6a, 0xcf, 0x38, 0x3b, 0x63, 0x42, 0x88, 0x72, + 0xe1, 0x03, 0x20, 0x24, 0x0e, 0x48, 0x1c, 0x38, 0x71, 0xe3, 0x13, 0x70, 0x41, 0xe2, 0x44, 0x8f, + 0x95, 0xb8, 0x20, 0x0e, 0x11, 0x4a, 0xf8, 0x04, 0xfd, 0x04, 0x68, 0x67, 0x67, 0xd6, 0xaf, 0xeb, + 0xb5, 0x51, 0x2f, 0x75, 0x3d, 0x33, 0xff, 0xe7, 0xf9, 0xcd, 0x33, 0x8f, 0x9f, 0xbf, 0x02, 0xae, + 0xd6, 0x71, 0x8b, 0xa0, 0x83, 0x0e, 0x09, 0x8e, 0xdc, 0x76, 0xc0, 0x25, 0x87, 0x79, 0x8f, 0x8b, + 0x16, 0xf5, 0x1a, 0x3c, 0xa0, 0x5f, 0x73, 0xe6, 0x1e, 0x1c, 0xf2, 0x23, 0xe6, 0x86, 0xa7, 0xec, + 0x5c, 0x9d, 0xd7, 0xb9, 0x3a, 0x84, 0xc2, 0xff, 0x45, 0xe7, 0xed, 0xc5, 0x3a, 0xe7, 0xf5, 0x26, + 0x41, 0xb8, 0x4d, 0x11, 0x66, 0x8c, 0x4b, 0x2c, 0x29, 0x67, 0x42, 0xef, 0xde, 0x0e, 0xa3, 0x71, + 0x81, 0x6a, 0x58, 0xe8, 0x34, 0xe8, 0xcb, 0xb5, 0x1a, 0x91, 0x78, 0x0d, 0xb5, 0x71, 0x9d, 0x32, + 0x75, 0x58, 0x9f, 0xbd, 0xa6, 0x58, 0xda, 0x38, 0xc0, 0x2d, 0x23, 0x7f, 0x49, 0x2d, 0x85, 0xff, + 0xe8, 0x85, 0x9c, 0x5a, 0x68, 0xd2, 0x83, 0x0e, 0xf5, 0xa9, 0xd4, 0xcc, 0x76, 0xa1, 0x37, 0x8b, + 0x89, 0xef, 0x71, 0xaa, 0x23, 0x3b, 0x39, 0x00, 0x1f, 0x86, 0xb9, 0x3f, 0x56, 0xb1, 0x2b, 0xe4, + 0xa0, 0x43, 0x84, 0x74, 0xf6, 0xc1, 0xcb, 0x7d, 0xab, 0xa2, 0xcd, 0x99, 0x20, 0xf0, 0x5d, 0x30, + 0x17, 0x31, 0xe4, 0xad, 0xa2, 0x75, 0xeb, 0xf2, 0x7a, 0xd1, 0x4d, 0xaa, 0x88, 0x1b, 0x29, 0xb7, + 0x67, 0x9f, 0x9c, 0x2e, 0xcd, 0x54, 0xb4, 0xca, 0x71, 0x40, 0x51, 0x85, 0xfd, 0xb4, 0x41, 0x25, + 0x69, 0x52, 0x21, 0x89, 0xbf, 0xc3, 0x99, 0x0c, 0xb0, 0x27, 0xe3, 0xd4, 0x5b, 0x60, 0x79, 0xcc, + 0x19, 0x0d, 0xb2, 0x08, 0xb2, 0x9e, 0x59, 0xcc, 0x5b, 0xc5, 0x8b, 0xb7, 0xb2, 0x95, 0xee, 0x82, + 0x53, 0x02, 0xf3, 0x2a, 0xc4, 0x1e, 0x7b, 0x80, 0x5b, 0xe4, 0xc3, 0x47, 0x71, 0x70, 0x68, 0x83, + 0x8c, 0x39, 0xa6, 0xae, 0x90, 0xad, 0xc4, 0xdf, 0x9d, 0x32, 0xb8, 0x3e, 0xa4, 0xd2, 0xe9, 0x16, + 0x40, 0x56, 0xf2, 0xc7, 0x84, 0x55, 0xa9, 0x1f, 0xa5, 0x9b, 0xad, 0x64, 0xd4, 0xc2, 0x9e, 0x2f, + 0x9c, 0x32, 0xb0, 0x95, 0x6e, 0x97, 0xb4, 0xb9, 0xa0, 0x72, 0x1b, 0x37, 0x31, 0xf3, 0x88, 0xc9, + 0x98, 0x07, 0x97, 0xb0, 0xef, 0x07, 0x44, 0x08, 0x9d, 0xd0, 0x7c, 0x75, 0xbe, 0x00, 0x0b, 0x23, + 0x75, 0x3a, 0xe7, 0x16, 0xb8, 0xe4, 0x47, 0x3b, 0xba, 0xd8, 0xcb, 0xc9, 0xc5, 0x36, 0x21, 0xa2, + 0x6a, 0x1b, 0x9d, 0x53, 0x04, 0x05, 0x95, 0x61, 0xab, 0xd9, 0xec, 0x4f, 0x12, 0x17, 0xfb, 0x27, + 0x2b, 0xe9, 0x48, 0xcc, 0xb1, 0x03, 0x32, 0x3a, 0x5e, 0x74, 0xf5, 0x29, 0x40, 0x62, 0x21, 0xdc, + 0x00, 0x73, 0xb8, 0xc5, 0x3b, 0x4c, 0xe6, 0x2f, 0xa8, 0xbb, 0xdc, 0x70, 0xa3, 0xb6, 0x74, 0xc3, + 0xb6, 0x74, 0x75, 0x5b, 0xba, 0x3b, 0x9c, 0x32, 0xd3, 0x31, 0xd1, 0x71, 0x67, 0x01, 0xdc, 0x30, + 0x7c, 0xfb, 0xac, 0xc6, 0x99, 0x4f, 0x59, 0x3d, 0xa6, 0xaf, 0xeb, 0xca, 0x0f, 0x6c, 0x6a, 0xf0, + 0x3d, 0x00, 0x3a, 0xf1, 0xaa, 0x46, 0x7f, 0x2d, 0x19, 0x3d, 0x8e, 0xa0, 0x09, 0x7a, 0xc4, 0xf1, + 0x13, 0xef, 0x0b, 0x12, 0x0c, 0x61, 0x8c, 0x79, 0xe2, 0x86, 0x7e, 0xe2, 0x41, 0xdd, 0xf3, 0x27, + 0xbc, 0x0e, 0x5e, 0x51, 0x99, 0x3e, 0x30, 0x3f, 0x7f, 0x53, 0x23, 0xac, 0x7f, 0x0b, 0x3d, 0x1b, + 0x3a, 0xfb, 0x03, 0x90, 0x8d, 0x87, 0x85, 0x6e, 0xb1, 0x31, 0xc9, 0x63, 0xbd, 0x4e, 0xde, 0xd5, + 0x3a, 0x65, 0xb0, 0xa8, 0x52, 0xbc, 0x27, 0x24, 0x6d, 0x61, 0x49, 0xfc, 0x4f, 0x0e, 0x71, 0xfb, + 0xa3, 0x8e, 0x34, 0xf5, 0x99, 0x8f, 0x1f, 0x3f, 0x2a, 0x8f, 0x79, 0xdb, 0xcf, 0xc0, 0xab, 0x09, + 0x3a, 0x4d, 0xb8, 0xd1, 0x27, 0x9c, 0xa2, 0x6b, 0xe6, 0x41, 0x4e, 0x45, 0x0e, 0x03, 0x56, 0xb0, + 0x34, 0x3f, 0x46, 0xe7, 0x67, 0x4b, 0x97, 0xa9, 0xbb, 0xa1, 0x53, 0x3d, 0x04, 0xb3, 0x01, 0x96, + 0x24, 0x22, 0xdc, 0x7e, 0x27, 0x8c, 0xf6, 0xf7, 0xe9, 0xd2, 0x1b, 0x75, 0x2a, 0x1b, 0x9d, 0x9a, + 0xeb, 0xf1, 0x16, 0xd2, 0x73, 0x34, 0xfa, 0x58, 0x11, 0xfe, 0x63, 0x24, 0x8f, 0xda, 0x44, 0xb8, + 0xbb, 0xc4, 0x7b, 0x76, 0xba, 0x74, 0xf9, 0x08, 0xb7, 0x9a, 0x9b, 0x4e, 0x18, 0xc3, 0xa9, 0xa8, + 0x50, 0xe1, 0xd0, 0x10, 0x81, 0x57, 0xf5, 0x09, 0xe3, 0x2d, 0xd5, 0xf6, 0xd9, 0x4a, 0x46, 0x04, + 0xde, 0x6e, 0xf8, 0x5d, 0x4d, 0x14, 0x1c, 0xe8, 0xcd, 0x8b, 0xd1, 0xa6, 0xc4, 0x81, 0xda, 0x5c, + 0x7f, 0x76, 0x05, 0xbc, 0xa0, 0x30, 0xe1, 0xb7, 0x16, 0x98, 0x8b, 0x26, 0x29, 0xbc, 0x93, 0xfc, + 0x36, 0xc3, 0x03, 0xdc, 0x5e, 0x99, 0xf0, 0x74, 0x74, 0x7d, 0xe7, 0xe6, 0x37, 0x7f, 0xfe, 0xfb, + 0xfd, 0x85, 0x65, 0xb8, 0x84, 0xfa, 0x64, 0xc8, 0xe3, 0x0d, 0x8e, 0x7a, 0xbc, 0x07, 0xfe, 0x61, + 0x81, 0xdc, 0xa8, 0xc9, 0x0c, 0x37, 0x53, 0x12, 0x8e, 0x19, 0xf9, 0xf6, 0x5b, 0xff, 0x4b, 0xab, + 0xd1, 0xcb, 0x0a, 0x7d, 0x15, 0xba, 0x89, 0xe8, 0x87, 0x5d, 0x79, 0x35, 0x36, 0x09, 0xf8, 0x8b, + 0x05, 0x40, 0x77, 0xd4, 0xc3, 0xd5, 0x14, 0x86, 0x21, 0x2f, 0xb1, 0xd7, 0xa6, 0x50, 0x68, 0xd6, + 0xfb, 0x8a, 0x75, 0x1d, 0xae, 0x26, 0xb2, 0x52, 0x56, 0x0d, 0x3f, 0xab, 0xec, 0x91, 0x14, 0xe8, + 0xd8, 0xd0, 0x9e, 0xc0, 0x5f, 0x2d, 0xf0, 0x62, 0xff, 0x80, 0x86, 0xa5, 0x94, 0xfc, 0x23, 0xfd, + 0xc8, 0xbe, 0x37, 0xa5, 0x4a, 0x93, 0x6f, 0x2a, 0xf2, 0x12, 0x5c, 0x4f, 0x24, 0xd7, 0xb3, 0xbe, + 0x5a, 0x8b, 0x94, 0xe8, 0x58, 0x0f, 0xc1, 0x13, 0xf8, 0x9b, 0x05, 0xae, 0x0d, 0xf9, 0x0b, 0xbc, + 0x9f, 0x02, 0x92, 0x68, 0x5a, 0xf6, 0xd4, 0xca, 0xf8, 0x16, 0xf7, 0xd4, 0x2d, 0x10, 0x5c, 0x49, + 0xbc, 0x05, 0x6e, 0x36, 0xab, 0x03, 0x37, 0x51, 0xad, 0x72, 0xa5, 0xcf, 0x63, 0xe0, 0xdd, 0x74, + 0x84, 0x21, 0x9f, 0xb0, 0x4b, 0xd3, 0x89, 0x34, 0x33, 0x52, 0xcc, 0x6f, 0xc2, 0x9b, 0x63, 0x99, + 0xbb, 0x56, 0xa0, 0x5a, 0xa5, 0xdf, 0x70, 0x52, 0x5b, 0x65, 0xa4, 0xaf, 0xa5, 0xb6, 0xca, 0x68, + 0x57, 0x9b, 0xa0, 0x55, 0x3a, 0x82, 0x04, 0x3d, 0xc4, 0x3d, 0xad, 0xf2, 0xa3, 0x05, 0xb2, 0xb1, + 0xd3, 0x40, 0x94, 0x02, 0x30, 0x68, 0x76, 0xf6, 0xea, 0xe4, 0x02, 0x0d, 0x7b, 0x5b, 0xc1, 0xbe, + 0x0e, 0x9d, 0x44, 0xd8, 0xd8, 0xe7, 0xe0, 0xef, 0x16, 0xb8, 0x3a, 0xe8, 0x55, 0xb0, 0x9c, 0x92, + 0x32, 0xc1, 0x14, 0xed, 0x8d, 0xa9, 0x75, 0x9a, 0xf8, 0x6d, 0x45, 0x5c, 0x86, 0xa5, 0x44, 0x62, + 0x62, 0xa4, 0x55, 0x71, 0x88, 0xdb, 0x55, 0xde, 0x91, 0xe8, 0x38, 0x32, 0xc6, 0x13, 0xf8, 0x83, + 0x05, 0x32, 0xc6, 0xfc, 0xa0, 0x9b, 0xc2, 0x30, 0x60, 0x9f, 0x36, 0x9a, 0xf8, 0xfc, 0xc4, 0xd5, + 0x55, 0x84, 0xa1, 0x5d, 0x6e, 0xbf, 0xff, 0xe4, 0xac, 0x60, 0x3d, 0x3d, 0x2b, 0x58, 0xff, 0x9c, + 0x15, 0xac, 0xef, 0xce, 0x0b, 0x33, 0x4f, 0xcf, 0x0b, 0x33, 0x7f, 0x9d, 0x17, 0x66, 0x3e, 0xbf, + 0x33, 0xe0, 0xc2, 0xd4, 0x5b, 0x31, 0x81, 0x14, 0x01, 0xfa, 0x2a, 0x8a, 0xa5, 0xfc, 0xb8, 0x36, + 0xa7, 0xfe, 0xae, 0xb9, 0xfb, 0x5f, 0x00, 0x00, 0x00, 0xff, 0xff, 0xf3, 0x97, 0x70, 0x05, 0xbf, + 0x0d, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -1016,7 +1017,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { out := new(QueryParamsResponse) - err := c.cc.Invoke(ctx, "/cosmichorizon.coho.game.Query/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmichorizon.qwoyn.game.Query/Params", in, out, opts...) if err != nil { return nil, err } @@ -1025,7 +1026,7 @@ func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts . func (c *queryClient) WhitelistedContracts(ctx context.Context, in *QueryWhitelistedContractsRequest, opts ...grpc.CallOption) (*QueryWhitelistedContractsResponse, error) { out := new(QueryWhitelistedContractsResponse) - err := c.cc.Invoke(ctx, "/cosmichorizon.coho.game.Query/WhitelistedContracts", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmichorizon.qwoyn.game.Query/WhitelistedContracts", in, out, opts...) if err != nil { return nil, err } @@ -1034,7 +1035,7 @@ func (c *queryClient) WhitelistedContracts(ctx context.Context, in *QueryWhiteli func (c *queryClient) InGameNfts(ctx context.Context, in *QueryInGameNftsRequest, opts ...grpc.CallOption) (*QueryInGameNftsResponse, error) { out := new(QueryInGameNftsResponse) - err := c.cc.Invoke(ctx, "/cosmichorizon.coho.game.Query/InGameNfts", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmichorizon.qwoyn.game.Query/InGameNfts", in, out, opts...) if err != nil { return nil, err } @@ -1043,7 +1044,7 @@ func (c *queryClient) InGameNfts(ctx context.Context, in *QueryInGameNftsRequest func (c *queryClient) DepositBalance(ctx context.Context, in *QueryDepositBalanceRequest, opts ...grpc.CallOption) (*QueryDepositBalanceResponse, error) { out := new(QueryDepositBalanceResponse) - err := c.cc.Invoke(ctx, "/cosmichorizon.coho.game.Query/DepositBalance", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmichorizon.qwoyn.game.Query/DepositBalance", in, out, opts...) if err != nil { return nil, err } @@ -1052,7 +1053,7 @@ func (c *queryClient) DepositBalance(ctx context.Context, in *QueryDepositBalanc func (c *queryClient) AllDepositBalance(ctx context.Context, in *QueryAllDepositBalancesRequest, opts ...grpc.CallOption) (*QueryAllDepositBalanceResponse, error) { out := new(QueryAllDepositBalanceResponse) - err := c.cc.Invoke(ctx, "/cosmichorizon.coho.game.Query/AllDepositBalance", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmichorizon.qwoyn.game.Query/AllDepositBalance", in, out, opts...) if err != nil { return nil, err } @@ -1061,7 +1062,7 @@ func (c *queryClient) AllDepositBalance(ctx context.Context, in *QueryAllDeposit func (c *queryClient) AllUnbondings(ctx context.Context, in *QueryAllUnbondingsRequest, opts ...grpc.CallOption) (*QueryAllUnbondingsResponse, error) { out := new(QueryAllUnbondingsResponse) - err := c.cc.Invoke(ctx, "/cosmichorizon.coho.game.Query/AllUnbondings", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmichorizon.qwoyn.game.Query/AllUnbondings", in, out, opts...) if err != nil { return nil, err } @@ -1070,7 +1071,7 @@ func (c *queryClient) AllUnbondings(ctx context.Context, in *QueryAllUnbondingsR func (c *queryClient) UserUnbondings(ctx context.Context, in *QueryUserUnbondingsRequest, opts ...grpc.CallOption) (*QueryUserUnbondingsResponse, error) { out := new(QueryUserUnbondingsResponse) - err := c.cc.Invoke(ctx, "/cosmichorizon.coho.game.Query/UserUnbondings", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmichorizon.qwoyn.game.Query/UserUnbondings", in, out, opts...) if err != nil { return nil, err } @@ -1079,7 +1080,7 @@ func (c *queryClient) UserUnbondings(ctx context.Context, in *QueryUserUnbonding func (c *queryClient) Liquidity(ctx context.Context, in *QueryLiquidityRequest, opts ...grpc.CallOption) (*QueryLiquidityResponse, error) { out := new(QueryLiquidityResponse) - err := c.cc.Invoke(ctx, "/cosmichorizon.coho.game.Query/Liquidity", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmichorizon.qwoyn.game.Query/Liquidity", in, out, opts...) if err != nil { return nil, err } @@ -1088,7 +1089,7 @@ func (c *queryClient) Liquidity(ctx context.Context, in *QueryLiquidityRequest, func (c *queryClient) EstimatedSwapOut(ctx context.Context, in *QueryEstimatedSwapOutRequest, opts ...grpc.CallOption) (*QueryEstimatedSwapOutResponse, error) { out := new(QueryEstimatedSwapOutResponse) - err := c.cc.Invoke(ctx, "/cosmichorizon.coho.game.Query/EstimatedSwapOut", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmichorizon.qwoyn.game.Query/EstimatedSwapOut", in, out, opts...) if err != nil { return nil, err } @@ -1097,7 +1098,7 @@ func (c *queryClient) EstimatedSwapOut(ctx context.Context, in *QueryEstimatedSw func (c *queryClient) SwapRate(ctx context.Context, in *QuerySwapRateRequest, opts ...grpc.CallOption) (*QuerySwapRateResponse, error) { out := new(QuerySwapRateResponse) - err := c.cc.Invoke(ctx, "/cosmichorizon.coho.game.Query/SwapRate", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmichorizon.qwoyn.game.Query/SwapRate", in, out, opts...) if err != nil { return nil, err } @@ -1168,7 +1169,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmichorizon.coho.game.Query/Params", + FullMethod: "/cosmichorizon.qwoyn.game.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) @@ -1186,7 +1187,7 @@ func _Query_WhitelistedContracts_Handler(srv interface{}, ctx context.Context, d } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmichorizon.coho.game.Query/WhitelistedContracts", + FullMethod: "/cosmichorizon.qwoyn.game.Query/WhitelistedContracts", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).WhitelistedContracts(ctx, req.(*QueryWhitelistedContractsRequest)) @@ -1204,7 +1205,7 @@ func _Query_InGameNfts_Handler(srv interface{}, ctx context.Context, dec func(in } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmichorizon.coho.game.Query/InGameNfts", + FullMethod: "/cosmichorizon.qwoyn.game.Query/InGameNfts", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).InGameNfts(ctx, req.(*QueryInGameNftsRequest)) @@ -1222,7 +1223,7 @@ func _Query_DepositBalance_Handler(srv interface{}, ctx context.Context, dec fun } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmichorizon.coho.game.Query/DepositBalance", + FullMethod: "/cosmichorizon.qwoyn.game.Query/DepositBalance", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).DepositBalance(ctx, req.(*QueryDepositBalanceRequest)) @@ -1240,7 +1241,7 @@ func _Query_AllDepositBalance_Handler(srv interface{}, ctx context.Context, dec } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmichorizon.coho.game.Query/AllDepositBalance", + FullMethod: "/cosmichorizon.qwoyn.game.Query/AllDepositBalance", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).AllDepositBalance(ctx, req.(*QueryAllDepositBalancesRequest)) @@ -1258,7 +1259,7 @@ func _Query_AllUnbondings_Handler(srv interface{}, ctx context.Context, dec func } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmichorizon.coho.game.Query/AllUnbondings", + FullMethod: "/cosmichorizon.qwoyn.game.Query/AllUnbondings", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).AllUnbondings(ctx, req.(*QueryAllUnbondingsRequest)) @@ -1276,7 +1277,7 @@ func _Query_UserUnbondings_Handler(srv interface{}, ctx context.Context, dec fun } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmichorizon.coho.game.Query/UserUnbondings", + FullMethod: "/cosmichorizon.qwoyn.game.Query/UserUnbondings", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).UserUnbondings(ctx, req.(*QueryUserUnbondingsRequest)) @@ -1294,7 +1295,7 @@ func _Query_Liquidity_Handler(srv interface{}, ctx context.Context, dec func(int } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmichorizon.coho.game.Query/Liquidity", + FullMethod: "/cosmichorizon.qwoyn.game.Query/Liquidity", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Liquidity(ctx, req.(*QueryLiquidityRequest)) @@ -1312,7 +1313,7 @@ func _Query_EstimatedSwapOut_Handler(srv interface{}, ctx context.Context, dec f } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmichorizon.coho.game.Query/EstimatedSwapOut", + FullMethod: "/cosmichorizon.qwoyn.game.Query/EstimatedSwapOut", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).EstimatedSwapOut(ctx, req.(*QueryEstimatedSwapOutRequest)) @@ -1330,7 +1331,7 @@ func _Query_SwapRate_Handler(srv interface{}, ctx context.Context, dec func(inte } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmichorizon.coho.game.Query/SwapRate", + FullMethod: "/cosmichorizon.qwoyn.game.Query/SwapRate", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).SwapRate(ctx, req.(*QuerySwapRateRequest)) @@ -1339,7 +1340,7 @@ func _Query_SwapRate_Handler(srv interface{}, ctx context.Context, dec func(inte } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "cosmichorizon.coho.game.Query", + ServiceName: "cosmichorizon.qwoyn.game.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ { diff --git a/x/game/types/tx.pb.go b/x/game/types/tx.pb.go index 25509c3..81d081f 100644 --- a/x/game/types/tx.pb.go +++ b/x/game/types/tx.pb.go @@ -2080,127 +2080,127 @@ func (m *EventSwap) GetOutAmount() string { } func init() { - proto.RegisterType((*MsgTransferModuleOwnership)(nil), "cosmichorizon.coho.game.MsgTransferModuleOwnership") - proto.RegisterType((*MsgTransferModuleOwnershipResponse)(nil), "cosmichorizon.coho.game.MsgTransferModuleOwnershipResponse") - proto.RegisterType((*MsgWhitelistNftContracts)(nil), "cosmichorizon.coho.game.MsgWhitelistNftContracts") - proto.RegisterType((*MsgWhitelistNftContractsResponse)(nil), "cosmichorizon.coho.game.MsgWhitelistNftContractsResponse") - proto.RegisterType((*MsgRemoveWhitelistedNftContracts)(nil), "cosmichorizon.coho.game.MsgRemoveWhitelistedNftContracts") - proto.RegisterType((*MsgRemoveWhitelistedNftContractsResponse)(nil), "cosmichorizon.coho.game.MsgRemoveWhitelistedNftContractsResponse") - proto.RegisterType((*MsgDepositNft)(nil), "cosmichorizon.coho.game.MsgDepositNft") - proto.RegisterType((*MsgDepositNftResponse)(nil), "cosmichorizon.coho.game.MsgDepositNftResponse") - proto.RegisterType((*TokenInfoExtension)(nil), "cosmichorizon.coho.game.TokenInfoExtension") - proto.RegisterType((*MsgSignerWithdrawUpdatedNft)(nil), "cosmichorizon.coho.game.MsgSignerWithdrawUpdatedNft") - proto.RegisterType((*MsgWithdrawUpdatedNft)(nil), "cosmichorizon.coho.game.MsgWithdrawUpdatedNft") - proto.RegisterType((*MsgWithdrawUpdatedNftResponse)(nil), "cosmichorizon.coho.game.MsgWithdrawUpdatedNftResponse") - proto.RegisterType((*MsgDepositToken)(nil), "cosmichorizon.coho.game.MsgDepositToken") - proto.RegisterType((*MsgDepositTokenResponse)(nil), "cosmichorizon.coho.game.MsgDepositTokenResponse") - proto.RegisterType((*MsgWithdrawToken)(nil), "cosmichorizon.coho.game.MsgWithdrawToken") - proto.RegisterType((*MsgWithdrawTokenResponse)(nil), "cosmichorizon.coho.game.MsgWithdrawTokenResponse") - proto.RegisterType((*MsgStakeInGameToken)(nil), "cosmichorizon.coho.game.MsgStakeInGameToken") - proto.RegisterType((*MsgStakeInGameTokenResponse)(nil), "cosmichorizon.coho.game.MsgStakeInGameTokenResponse") - proto.RegisterType((*MsgBeginUnstakeInGameToken)(nil), "cosmichorizon.coho.game.MsgBeginUnstakeInGameToken") - proto.RegisterType((*MsgBeginUnstakeInGameTokenResponse)(nil), "cosmichorizon.coho.game.MsgBeginUnstakeInGameTokenResponse") - proto.RegisterType((*MsgClaimInGameStakingReward)(nil), "cosmichorizon.coho.game.MsgClaimInGameStakingReward") - proto.RegisterType((*MsgClaimInGameStakingRewardResponse)(nil), "cosmichorizon.coho.game.MsgClaimInGameStakingRewardResponse") - proto.RegisterType((*MsgAddLiquidity)(nil), "cosmichorizon.coho.game.MsgAddLiquidity") - proto.RegisterType((*MsgAddLiquidityResponse)(nil), "cosmichorizon.coho.game.MsgAddLiquidityResponse") - proto.RegisterType((*MsgRemoveLiquidity)(nil), "cosmichorizon.coho.game.MsgRemoveLiquidity") - proto.RegisterType((*MsgRemoveLiquidityResponse)(nil), "cosmichorizon.coho.game.MsgRemoveLiquidityResponse") - proto.RegisterType((*MsgSwap)(nil), "cosmichorizon.coho.game.MsgSwap") - proto.RegisterType((*MsgSwapResponse)(nil), "cosmichorizon.coho.game.MsgSwapResponse") - proto.RegisterType((*EventTransferModuleOwnership)(nil), "cosmichorizon.coho.game.EventTransferModuleOwnership") - proto.RegisterType((*EventNftContractAddWhitelist)(nil), "cosmichorizon.coho.game.EventNftContractAddWhitelist") - proto.RegisterType((*EventNftContractRemoveWhitelist)(nil), "cosmichorizon.coho.game.EventNftContractRemoveWhitelist") - proto.RegisterType((*EventDepositNft)(nil), "cosmichorizon.coho.game.EventDepositNft") - proto.RegisterType((*EventWithdrawNft)(nil), "cosmichorizon.coho.game.EventWithdrawNft") - proto.RegisterType((*EventDepositToken)(nil), "cosmichorizon.coho.game.EventDepositToken") - proto.RegisterType((*EventWithdrawToken)(nil), "cosmichorizon.coho.game.EventWithdrawToken") - proto.RegisterType((*EventStakeInGameToken)(nil), "cosmichorizon.coho.game.EventStakeInGameToken") - proto.RegisterType((*EventClaimInGameStakingReward)(nil), "cosmichorizon.coho.game.EventClaimInGameStakingReward") - proto.RegisterType((*EventBeginUnstakeInGameToken)(nil), "cosmichorizon.coho.game.EventBeginUnstakeInGameToken") - proto.RegisterType((*EventCompleteUnstakeInGameToken)(nil), "cosmichorizon.coho.game.EventCompleteUnstakeInGameToken") - proto.RegisterType((*EventAddLiquidity)(nil), "cosmichorizon.coho.game.EventAddLiquidity") - proto.RegisterType((*EventRemoveLiquidity)(nil), "cosmichorizon.coho.game.EventRemoveLiquidity") - proto.RegisterType((*EventSwap)(nil), "cosmichorizon.coho.game.EventSwap") + proto.RegisterType((*MsgTransferModuleOwnership)(nil), "cosmichorizon.qwoyn.game.MsgTransferModuleOwnership") + proto.RegisterType((*MsgTransferModuleOwnershipResponse)(nil), "cosmichorizon.qwoyn.game.MsgTransferModuleOwnershipResponse") + proto.RegisterType((*MsgWhitelistNftContracts)(nil), "cosmichorizon.qwoyn.game.MsgWhitelistNftContracts") + proto.RegisterType((*MsgWhitelistNftContractsResponse)(nil), "cosmichorizon.qwoyn.game.MsgWhitelistNftContractsResponse") + proto.RegisterType((*MsgRemoveWhitelistedNftContracts)(nil), "cosmichorizon.qwoyn.game.MsgRemoveWhitelistedNftContracts") + proto.RegisterType((*MsgRemoveWhitelistedNftContractsResponse)(nil), "cosmichorizon.qwoyn.game.MsgRemoveWhitelistedNftContractsResponse") + proto.RegisterType((*MsgDepositNft)(nil), "cosmichorizon.qwoyn.game.MsgDepositNft") + proto.RegisterType((*MsgDepositNftResponse)(nil), "cosmichorizon.qwoyn.game.MsgDepositNftResponse") + proto.RegisterType((*TokenInfoExtension)(nil), "cosmichorizon.qwoyn.game.TokenInfoExtension") + proto.RegisterType((*MsgSignerWithdrawUpdatedNft)(nil), "cosmichorizon.qwoyn.game.MsgSignerWithdrawUpdatedNft") + proto.RegisterType((*MsgWithdrawUpdatedNft)(nil), "cosmichorizon.qwoyn.game.MsgWithdrawUpdatedNft") + proto.RegisterType((*MsgWithdrawUpdatedNftResponse)(nil), "cosmichorizon.qwoyn.game.MsgWithdrawUpdatedNftResponse") + proto.RegisterType((*MsgDepositToken)(nil), "cosmichorizon.qwoyn.game.MsgDepositToken") + proto.RegisterType((*MsgDepositTokenResponse)(nil), "cosmichorizon.qwoyn.game.MsgDepositTokenResponse") + proto.RegisterType((*MsgWithdrawToken)(nil), "cosmichorizon.qwoyn.game.MsgWithdrawToken") + proto.RegisterType((*MsgWithdrawTokenResponse)(nil), "cosmichorizon.qwoyn.game.MsgWithdrawTokenResponse") + proto.RegisterType((*MsgStakeInGameToken)(nil), "cosmichorizon.qwoyn.game.MsgStakeInGameToken") + proto.RegisterType((*MsgStakeInGameTokenResponse)(nil), "cosmichorizon.qwoyn.game.MsgStakeInGameTokenResponse") + proto.RegisterType((*MsgBeginUnstakeInGameToken)(nil), "cosmichorizon.qwoyn.game.MsgBeginUnstakeInGameToken") + proto.RegisterType((*MsgBeginUnstakeInGameTokenResponse)(nil), "cosmichorizon.qwoyn.game.MsgBeginUnstakeInGameTokenResponse") + proto.RegisterType((*MsgClaimInGameStakingReward)(nil), "cosmichorizon.qwoyn.game.MsgClaimInGameStakingReward") + proto.RegisterType((*MsgClaimInGameStakingRewardResponse)(nil), "cosmichorizon.qwoyn.game.MsgClaimInGameStakingRewardResponse") + proto.RegisterType((*MsgAddLiquidity)(nil), "cosmichorizon.qwoyn.game.MsgAddLiquidity") + proto.RegisterType((*MsgAddLiquidityResponse)(nil), "cosmichorizon.qwoyn.game.MsgAddLiquidityResponse") + proto.RegisterType((*MsgRemoveLiquidity)(nil), "cosmichorizon.qwoyn.game.MsgRemoveLiquidity") + proto.RegisterType((*MsgRemoveLiquidityResponse)(nil), "cosmichorizon.qwoyn.game.MsgRemoveLiquidityResponse") + proto.RegisterType((*MsgSwap)(nil), "cosmichorizon.qwoyn.game.MsgSwap") + proto.RegisterType((*MsgSwapResponse)(nil), "cosmichorizon.qwoyn.game.MsgSwapResponse") + proto.RegisterType((*EventTransferModuleOwnership)(nil), "cosmichorizon.qwoyn.game.EventTransferModuleOwnership") + proto.RegisterType((*EventNftContractAddWhitelist)(nil), "cosmichorizon.qwoyn.game.EventNftContractAddWhitelist") + proto.RegisterType((*EventNftContractRemoveWhitelist)(nil), "cosmichorizon.qwoyn.game.EventNftContractRemoveWhitelist") + proto.RegisterType((*EventDepositNft)(nil), "cosmichorizon.qwoyn.game.EventDepositNft") + proto.RegisterType((*EventWithdrawNft)(nil), "cosmichorizon.qwoyn.game.EventWithdrawNft") + proto.RegisterType((*EventDepositToken)(nil), "cosmichorizon.qwoyn.game.EventDepositToken") + proto.RegisterType((*EventWithdrawToken)(nil), "cosmichorizon.qwoyn.game.EventWithdrawToken") + proto.RegisterType((*EventStakeInGameToken)(nil), "cosmichorizon.qwoyn.game.EventStakeInGameToken") + proto.RegisterType((*EventClaimInGameStakingReward)(nil), "cosmichorizon.qwoyn.game.EventClaimInGameStakingReward") + proto.RegisterType((*EventBeginUnstakeInGameToken)(nil), "cosmichorizon.qwoyn.game.EventBeginUnstakeInGameToken") + proto.RegisterType((*EventCompleteUnstakeInGameToken)(nil), "cosmichorizon.qwoyn.game.EventCompleteUnstakeInGameToken") + proto.RegisterType((*EventAddLiquidity)(nil), "cosmichorizon.qwoyn.game.EventAddLiquidity") + proto.RegisterType((*EventRemoveLiquidity)(nil), "cosmichorizon.qwoyn.game.EventRemoveLiquidity") + proto.RegisterType((*EventSwap)(nil), "cosmichorizon.qwoyn.game.EventSwap") } func init() { proto.RegisterFile("game/tx.proto", fileDescriptor_497c523f337df817) } var fileDescriptor_497c523f337df817 = []byte{ // 1167 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x58, 0xcf, 0x73, 0xdb, 0x44, - 0x14, 0x8e, 0x1a, 0xb7, 0x89, 0x5f, 0x12, 0x92, 0x88, 0xa4, 0x71, 0x94, 0xc4, 0x31, 0xe2, 0x97, - 0x69, 0x41, 0x26, 0x0d, 0x3f, 0xa6, 0xfc, 0x38, 0x24, 0x69, 0xa6, 0x64, 0x06, 0x43, 0xc7, 0xa4, - 0x53, 0xa6, 0x87, 0x7a, 0x64, 0x69, 0x23, 0x2f, 0x8d, 0x76, 0x8d, 0x76, 0x1d, 0xa7, 0xd0, 0x2b, - 0xc3, 0x81, 0x19, 0x86, 0x2b, 0x07, 0x86, 0xff, 0x86, 0xe9, 0xb1, 0x47, 0x4e, 0x0c, 0x93, 0xfc, - 0x23, 0x8c, 0x76, 0xa5, 0xb5, 0xec, 0x5a, 0x8a, 0x1d, 0x12, 0xb8, 0x79, 0x77, 0xdf, 0xfb, 0xbe, - 0x6f, 0x57, 0x6f, 0xbf, 0x27, 0x19, 0x66, 0x3c, 0xdb, 0x47, 0x15, 0x7e, 0x6c, 0xb5, 0x02, 0xca, - 0xa9, 0xbe, 0xe4, 0x50, 0xe6, 0x63, 0xa7, 0x49, 0x03, 0xfc, 0x1d, 0x25, 0x96, 0x43, 0x9b, 0xd4, - 0x0a, 0x23, 0x8c, 0x62, 0xb8, 0x40, 0x59, 0xa5, 0x61, 0x33, 0x54, 0x39, 0xda, 0x68, 0x20, 0x6e, - 0x6f, 0x54, 0x1c, 0x8a, 0x89, 0x4c, 0x34, 0x16, 0x3c, 0xea, 0x51, 0xf1, 0xb3, 0x12, 0xfe, 0x92, - 0xb3, 0xe6, 0x3d, 0x30, 0xaa, 0xcc, 0xdb, 0x0f, 0x6c, 0xc2, 0x0e, 0x50, 0x50, 0xa5, 0x6e, 0xfb, - 0x10, 0x7d, 0xd9, 0x21, 0x28, 0x60, 0x4d, 0xdc, 0xd2, 0xaf, 0xc3, 0x35, 0x86, 0x88, 0x8b, 0x82, - 0x82, 0x56, 0xd2, 0xca, 0xf9, 0x5a, 0x34, 0xd2, 0x0d, 0x98, 0x24, 0xa8, 0x23, 0xe2, 0x0a, 0x57, - 0xc4, 0x8a, 0x1a, 0x9b, 0xaf, 0x81, 0x99, 0x8e, 0x58, 0x43, 0xac, 0x45, 0x09, 0x43, 0xe6, 0x3d, - 0x28, 0x54, 0x99, 0xf7, 0xa0, 0x89, 0x39, 0x3a, 0xc4, 0x8c, 0x7f, 0x71, 0xc0, 0x77, 0x28, 0xe1, - 0x81, 0xed, 0x70, 0x96, 0xca, 0xba, 0x0a, 0x79, 0x27, 0x0e, 0x2a, 0x5c, 0x29, 0x8d, 0x97, 0xf3, - 0xb5, 0xee, 0x84, 0x69, 0x42, 0x29, 0x0d, 0x51, 0xb1, 0x7e, 0x2d, 0x62, 0x6a, 0xc8, 0xa7, 0x47, - 0x48, 0x45, 0x22, 0xf7, 0x02, 0xd8, 0x6f, 0x40, 0xf9, 0x2c, 0x64, 0xa5, 0xe2, 0x11, 0xcc, 0x54, - 0x99, 0x77, 0x07, 0xb5, 0x28, 0xc3, 0xa1, 0xce, 0xac, 0x63, 0x8e, 0x19, 0xe2, 0x63, 0x8e, 0xc7, - 0xfa, 0x32, 0x4c, 0x72, 0xfa, 0x18, 0x91, 0x3a, 0x76, 0x0b, 0xe3, 0x25, 0xad, 0x9c, 0xab, 0x4d, - 0x88, 0xf1, 0x9e, 0x6b, 0x2e, 0xc1, 0x62, 0x0f, 0xbe, 0x22, 0x5e, 0x00, 0x7d, 0x5f, 0xc4, 0x90, - 0x03, 0xba, 0x7b, 0xcc, 0x11, 0x61, 0x98, 0x12, 0xf3, 0x47, 0x0d, 0x56, 0xaa, 0xcc, 0xfb, 0x0a, - 0x7b, 0x04, 0x05, 0x0f, 0x30, 0x6f, 0xba, 0x81, 0xdd, 0xb9, 0xdf, 0x72, 0x6d, 0xa9, 0xff, 0x82, - 0xd5, 0x85, 0x4b, 0xe8, 0x18, 0x39, 0x75, 0x9f, 0x79, 0x85, 0x9c, 0x48, 0x9b, 0x08, 0xc7, 0x55, - 0xe6, 0x99, 0xbf, 0x6b, 0x42, 0xf9, 0xff, 0xa9, 0x21, 0x7c, 0xcc, 0x0c, 0x7b, 0xc4, 0xe6, 0xed, - 0x00, 0x15, 0xae, 0x96, 0xb4, 0xf2, 0x74, 0xad, 0x3b, 0x61, 0xae, 0xc3, 0xda, 0x40, 0x81, 0xea, - 0x88, 0x1b, 0x30, 0xdb, 0x3d, 0x7b, 0x71, 0xd8, 0xa9, 0xda, 0x3f, 0x84, 0x6b, 0xb6, 0x4f, 0xdb, - 0x44, 0x2a, 0x9f, 0xba, 0xb5, 0x6c, 0xc9, 0x1b, 0x6c, 0x85, 0x37, 0xd8, 0x8a, 0x6e, 0xb0, 0xb5, - 0x43, 0x31, 0xd9, 0xce, 0x3d, 0xfb, 0x6b, 0x7d, 0xac, 0x16, 0x85, 0x9b, 0xcb, 0xb0, 0xd4, 0xc7, - 0xa1, 0xe8, 0x1d, 0x98, 0x4b, 0xe8, 0xbb, 0x24, 0x7e, 0x43, 0xde, 0xdd, 0x24, 0x89, 0x12, 0x70, - 0x00, 0x2f, 0x87, 0xb5, 0xc4, 0xed, 0xc7, 0x68, 0x8f, 0xdc, 0xb5, 0x7d, 0x74, 0x49, 0x1a, 0xd6, - 0x64, 0xcd, 0xf6, 0xf1, 0x28, 0x19, 0xbe, 0xb0, 0xb5, 0x6d, 0xe4, 0x61, 0x72, 0x9f, 0xb0, 0x4b, - 0x57, 0x23, 0x3d, 0x2f, 0x85, 0x4e, 0x89, 0x7a, 0x5f, 0x68, 0xde, 0x39, 0xb4, 0xb1, 0x2f, 0x97, - 0x43, 0xf9, 0x98, 0x78, 0x35, 0xd4, 0xb1, 0x03, 0x37, 0x4d, 0x95, 0xf9, 0x3a, 0xbc, 0x9a, 0x91, - 0xa6, 0xd0, 0x5d, 0x51, 0x79, 0x5b, 0xae, 0xfb, 0x39, 0xfe, 0xb6, 0x8d, 0x5d, 0xcc, 0x9f, 0xa4, - 0xee, 0xf3, 0x36, 0x4c, 0x48, 0xe1, 0xd2, 0xc8, 0x86, 0xd8, 0x68, 0x1c, 0x1f, 0xd5, 0x5e, 0x92, - 0x45, 0x09, 0xf0, 0x40, 0x57, 0x16, 0x78, 0xa9, 0x1a, 0x56, 0xc5, 0xc3, 0xed, 0x23, 0x52, 0x32, - 0x1e, 0xc2, 0x44, 0x58, 0x19, 0x1d, 0xbb, 0x75, 0xf1, 0xcf, 0x79, 0x5e, 0x9c, 0x71, 0x88, 0x9d, - 0x30, 0xf3, 0xd5, 0xdd, 0x23, 0x44, 0x78, 0x5a, 0x0b, 0x7d, 0x05, 0xa6, 0x69, 0x80, 0x3d, 0x4c, - 0xea, 0x54, 0xb4, 0x4b, 0xa9, 0x64, 0x4a, 0xce, 0x89, 0x30, 0x7d, 0x05, 0xf2, 0x04, 0x75, 0xa2, - 0xf5, 0xfe, 0x76, 0xfa, 0x51, 0x84, 0x9f, 0xe8, 0x24, 0x5b, 0xae, 0xab, 0x5a, 0x4c, 0x8f, 0x03, - 0x6a, 0xbd, 0x0e, 0x68, 0x7e, 0x0a, 0xeb, 0xfd, 0xb9, 0x7d, 0x1d, 0x2a, 0x33, 0xfd, 0x11, 0xcc, - 0x8a, 0xf4, 0x44, 0xa7, 0x5a, 0x80, 0xab, 0xc9, 0x6d, 0xc8, 0xc1, 0x79, 0xfb, 0xd4, 0x53, 0x98, - 0x13, 0xf8, 0xb1, 0x93, 0xfc, 0xb7, 0xcd, 0x66, 0x07, 0xe6, 0x93, 0xbb, 0xcb, 0x76, 0x86, 0xeb, - 0x3d, 0x15, 0x93, 0x57, 0x05, 0x71, 0x07, 0xf4, 0x9e, 0x2d, 0x9c, 0x0f, 0xe5, 0x2e, 0x2c, 0x0a, - 0x94, 0xa1, 0x6d, 0x33, 0x0d, 0xe8, 0x7b, 0x58, 0x13, 0x40, 0xa3, 0x7a, 0x4c, 0x1a, 0xa0, 0x7e, - 0x03, 0xe6, 0x03, 0x91, 0x59, 0x77, 0x42, 0xc8, 0x3a, 0xc7, 0x3e, 0x8a, 0xce, 0x78, 0x56, 0x2e, - 0x08, 0xaa, 0x7d, 0xec, 0x23, 0xb3, 0x13, 0x55, 0xea, 0xa8, 0xae, 0x9b, 0xc6, 0xfd, 0x26, 0xcc, - 0x3a, 0xd4, 0x6f, 0x1d, 0x22, 0x8e, 0x29, 0x49, 0x32, 0xbf, 0xd4, 0x9d, 0x16, 0xc4, 0xbf, 0x6a, - 0x51, 0x9d, 0xef, 0xc8, 0x79, 0x34, 0x80, 0x5c, 0x87, 0x5c, 0x9b, 0x29, 0x6a, 0xf1, 0xfb, 0x5f, - 0x13, 0x87, 0x77, 0xbb, 0x4d, 0x1a, 0x94, 0xb8, 0x98, 0x78, 0x61, 0xf1, 0xe5, 0x44, 0xd4, 0x94, - 0x9a, 0xdb, 0x73, 0xcd, 0xdd, 0xa8, 0xca, 0x86, 0xf2, 0xe5, 0x42, 0xd2, 0x13, 0x45, 0xb1, 0xc6, - 0x96, 0xf7, 0x19, 0x2c, 0x08, 0x98, 0x61, 0xdd, 0x35, 0x1d, 0xa9, 0x0e, 0x79, 0x59, 0x6b, 0x59, - 0x06, 0xb9, 0x02, 0x79, 0x4c, 0xea, 0x3d, 0x87, 0x33, 0x89, 0xc9, 0x96, 0x3c, 0x9e, 0x35, 0x00, - 0xda, 0xe6, 0xf1, 0xea, 0xb8, 0x58, 0xcd, 0xd3, 0x36, 0x97, 0xcb, 0xb7, 0xfe, 0x98, 0x86, 0xf1, - 0xf0, 0x45, 0xea, 0x27, 0x0d, 0x96, 0xd2, 0x4c, 0x71, 0xd3, 0x4a, 0xf9, 0x8a, 0xb1, 0xd2, 0x3f, - 0x1d, 0x8c, 0x8f, 0xcf, 0x91, 0x14, 0xdb, 0xb4, 0xfe, 0x83, 0x06, 0x8b, 0x83, 0xbf, 0x36, 0x36, - 0xb2, 0x60, 0x07, 0xa6, 0x18, 0xb7, 0x47, 0x4e, 0x51, 0x3a, 0x7e, 0xd3, 0x60, 0x2d, 0xfb, 0xfb, - 0x23, 0x13, 0x3c, 0x33, 0xd5, 0xd8, 0x3a, 0x77, 0xaa, 0xd2, 0xe7, 0x02, 0x24, 0xec, 0xfe, 0x8d, - 0x2c, 0xc0, 0x6e, 0x9c, 0x61, 0x0d, 0x17, 0xa7, 0x58, 0x9e, 0x82, 0x3e, 0xe0, 0x25, 0x3f, 0x13, - 0xe5, 0xc5, 0x78, 0xe3, 0x83, 0xd1, 0xe2, 0x15, 0xfb, 0x37, 0x30, 0xdd, 0x63, 0xfa, 0xe5, 0x21, - 0xd4, 0x8b, 0x48, 0xe3, 0xdd, 0x61, 0x23, 0x15, 0x97, 0x0f, 0x33, 0xbd, 0xbd, 0xe1, 0xad, 0x61, - 0x44, 0x4b, 0xb6, 0x8d, 0xa1, 0x43, 0x15, 0xdd, 0x11, 0xcc, 0xbd, 0xd0, 0x44, 0xde, 0xce, 0x82, - 0xe9, 0x8f, 0x36, 0xde, 0x1b, 0x25, 0x5a, 0xf1, 0x86, 0x97, 0x3d, 0xcd, 0xf7, 0x33, 0x2f, 0x7b, - 0x4a, 0x52, 0xf6, 0x65, 0x3f, 0xe3, 0x45, 0x5b, 0xff, 0x59, 0x83, 0x42, 0x6a, 0x0b, 0xcc, 0xdc, - 0x60, 0x5a, 0x96, 0xf1, 0xc9, 0x79, 0xb2, 0x92, 0x15, 0xd7, 0xd3, 0x00, 0x32, 0x2b, 0x2e, 0x19, - 0x99, 0x5d, 0x71, 0x83, 0x5e, 0xc3, 0x75, 0x06, 0xb3, 0xfd, 0x5d, 0xe2, 0xe6, 0xd9, 0xbe, 0xd0, - 0x65, 0xdc, 0x1c, 0x21, 0x58, 0x91, 0xd6, 0x20, 0x27, 0x1a, 0x4a, 0x29, 0xb3, 0x7a, 0x3a, 0x76, - 0xcb, 0x28, 0x9f, 0x15, 0x11, 0x63, 0x6e, 0xef, 0x3e, 0x3b, 0x29, 0x6a, 0xcf, 0x4f, 0x8a, 0xda, - 0xdf, 0x27, 0x45, 0xed, 0x97, 0xd3, 0xe2, 0xd8, 0xf3, 0xd3, 0xe2, 0xd8, 0x9f, 0xa7, 0xc5, 0xb1, - 0x87, 0x37, 0x3d, 0xcc, 0x9b, 0xed, 0x86, 0xe5, 0x50, 0xbf, 0x22, 0xd1, 0xde, 0x89, 0xe0, 0x2a, - 0x21, 0x5c, 0xe5, 0xb8, 0x22, 0xff, 0x33, 0x7b, 0xd2, 0x42, 0xac, 0x71, 0x4d, 0xfc, 0xd1, 0xb5, - 0xf9, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x30, 0xbe, 0xcd, 0x1e, 0x48, 0x13, 0x00, 0x00, + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x58, 0xc1, 0x53, 0xdb, 0xc6, + 0x17, 0x46, 0xc1, 0x01, 0xfc, 0x80, 0x1f, 0xa0, 0x1f, 0x04, 0x23, 0xc0, 0x10, 0xb5, 0x9d, 0x10, + 0x26, 0xb1, 0x07, 0x9a, 0x4c, 0xa6, 0x99, 0xe6, 0x00, 0x84, 0xa6, 0xcc, 0xd4, 0x6d, 0xc6, 0x25, + 0x93, 0x4e, 0x0e, 0xf1, 0xc8, 0xd6, 0x22, 0x76, 0x82, 0x76, 0x1d, 0xed, 0x0a, 0x43, 0xdb, 0xe9, + 0x35, 0xa7, 0xce, 0xe4, 0xda, 0x53, 0xfe, 0x9d, 0x1c, 0x73, 0xec, 0xa9, 0x93, 0x81, 0x7f, 0xa4, + 0xa3, 0x5d, 0x69, 0x2d, 0x3b, 0x96, 0x90, 0x5d, 0x68, 0x6f, 0xde, 0xdd, 0xf7, 0xbe, 0xef, 0xdb, + 0xd5, 0xdb, 0xef, 0x49, 0x86, 0x49, 0xc7, 0x72, 0x51, 0x99, 0x9f, 0x94, 0x9a, 0x1e, 0xe5, 0x54, + 0x2f, 0x34, 0x28, 0x73, 0x71, 0xe3, 0x90, 0x7a, 0xf8, 0x67, 0x4a, 0x4a, 0xaf, 0x5b, 0xf4, 0x94, + 0x94, 0x82, 0x10, 0xa3, 0x18, 0xac, 0x50, 0x56, 0xae, 0x5b, 0x0c, 0x95, 0x8f, 0x37, 0xea, 0x88, + 0x5b, 0x1b, 0xe5, 0x06, 0xc5, 0x44, 0x66, 0x1a, 0xb3, 0x0e, 0x75, 0xa8, 0xf8, 0x59, 0x0e, 0x7e, + 0xc9, 0x59, 0xf3, 0x29, 0x18, 0x15, 0xe6, 0xec, 0x7b, 0x16, 0x61, 0x07, 0xc8, 0xab, 0x50, 0xdb, + 0x3f, 0x42, 0x3f, 0xb4, 0x08, 0xf2, 0xd8, 0x21, 0x6e, 0xea, 0x37, 0x60, 0x84, 0x21, 0x62, 0x23, + 0xaf, 0xa0, 0xad, 0x6a, 0x6b, 0xf9, 0x6a, 0x38, 0xd2, 0x0d, 0x18, 0x23, 0xa8, 0x25, 0xe2, 0x0a, + 0xd7, 0xc4, 0x8a, 0x1a, 0x9b, 0x9f, 0x83, 0x99, 0x8c, 0x58, 0x45, 0xac, 0x49, 0x09, 0x43, 0xe6, + 0x53, 0x28, 0x54, 0x98, 0xf3, 0xfc, 0x10, 0x73, 0x74, 0x84, 0x19, 0xff, 0xfe, 0x80, 0xef, 0x50, + 0xc2, 0x3d, 0xab, 0xc1, 0x59, 0x22, 0xeb, 0x12, 0xe4, 0x1b, 0x51, 0x50, 0xe1, 0xda, 0xea, 0xf0, + 0x5a, 0xbe, 0xda, 0x9e, 0x30, 0x4d, 0x58, 0x4d, 0x42, 0x54, 0xac, 0x3f, 0x89, 0x98, 0x2a, 0x72, + 0xe9, 0x31, 0x52, 0x91, 0xc8, 0xbe, 0x04, 0xf6, 0x75, 0x58, 0xbb, 0x08, 0x59, 0xa9, 0x78, 0x09, + 0x93, 0x15, 0xe6, 0x3c, 0x46, 0x4d, 0xca, 0x70, 0xa0, 0x33, 0xed, 0x98, 0x23, 0x86, 0xe8, 0x98, + 0xa3, 0xb1, 0xbe, 0x00, 0x63, 0x9c, 0xbe, 0x42, 0xa4, 0x86, 0xed, 0xc2, 0xf0, 0xaa, 0xb6, 0x96, + 0xab, 0x8e, 0x8a, 0xf1, 0x9e, 0x6d, 0xce, 0xc3, 0x5c, 0x07, 0xbe, 0x22, 0x9e, 0x05, 0x7d, 0x5f, + 0xc4, 0x90, 0x03, 0xba, 0x7b, 0xc2, 0x11, 0x61, 0x98, 0x12, 0xf3, 0x8d, 0x06, 0x8b, 0x15, 0xe6, + 0xfc, 0x88, 0x1d, 0x82, 0xbc, 0xe7, 0x98, 0x1f, 0xda, 0x9e, 0xd5, 0x7a, 0xd6, 0xb4, 0x2d, 0xa9, + 0xff, 0x92, 0xd5, 0x05, 0x4b, 0xe8, 0x04, 0x35, 0x6a, 0x2e, 0x73, 0x0a, 0x39, 0x91, 0x36, 0x1a, + 0x8c, 0x2b, 0xcc, 0x31, 0xdf, 0x69, 0x42, 0xf9, 0x7f, 0xa9, 0x21, 0x78, 0xcc, 0x0c, 0x3b, 0xc4, + 0xe2, 0xbe, 0x87, 0x0a, 0xd7, 0x57, 0xb5, 0xb5, 0x89, 0x6a, 0x7b, 0xc2, 0x5c, 0x81, 0xe5, 0x9e, + 0x02, 0xd5, 0x11, 0xd7, 0x61, 0xaa, 0x7d, 0xf6, 0xe2, 0xb0, 0x13, 0xb5, 0x3f, 0x80, 0x11, 0xcb, + 0xa5, 0x3e, 0x91, 0xca, 0xc7, 0x37, 0x17, 0x4a, 0xf2, 0x06, 0x97, 0x82, 0x1b, 0x5c, 0x0a, 0x6f, + 0x70, 0x69, 0x87, 0x62, 0xb2, 0x9d, 0x7b, 0xff, 0xd7, 0xca, 0x50, 0x35, 0x0c, 0x37, 0x17, 0x60, + 0xbe, 0x8b, 0x43, 0xd1, 0x37, 0x60, 0x3a, 0xa6, 0xef, 0x8a, 0xf8, 0x0d, 0x79, 0x77, 0xe3, 0x24, + 0x4a, 0xc0, 0x01, 0xfc, 0x3f, 0xa8, 0x25, 0x6e, 0xbd, 0x42, 0x7b, 0xe4, 0x89, 0xe5, 0xa2, 0x2b, + 0xd2, 0xb0, 0x2c, 0x6b, 0xb6, 0x8b, 0x47, 0xc9, 0x70, 0x85, 0xad, 0x6d, 0x23, 0x07, 0x93, 0x67, + 0x84, 0x5d, 0xb9, 0x1a, 0xe9, 0x79, 0x09, 0x74, 0x4a, 0xd4, 0x7d, 0xa1, 0x79, 0xe7, 0xc8, 0xc2, + 0xae, 0x5c, 0x0e, 0xe4, 0x63, 0xe2, 0x54, 0x51, 0xcb, 0xf2, 0xec, 0x24, 0x55, 0xe6, 0x17, 0xf0, + 0x59, 0x4a, 0x9a, 0x42, 0xb7, 0x45, 0xe5, 0x6d, 0xd9, 0xf6, 0x77, 0xf8, 0xb5, 0x8f, 0x6d, 0xcc, + 0x4f, 0x13, 0xf7, 0xf9, 0x15, 0x8c, 0x4a, 0xe1, 0xd2, 0xc8, 0x32, 0x6c, 0x34, 0x8a, 0x0f, 0x6b, + 0x2f, 0xce, 0xa2, 0x04, 0x38, 0xa0, 0x2b, 0x0b, 0xbc, 0x52, 0x0d, 0x4b, 0xe2, 0xe1, 0x76, 0x11, + 0x29, 0x19, 0x2f, 0x60, 0x34, 0xa8, 0x8c, 0x96, 0xd5, 0xbc, 0xfc, 0xe7, 0x3c, 0x23, 0xce, 0x38, + 0xc0, 0x8e, 0x99, 0xf9, 0xd2, 0xee, 0x31, 0x22, 0x3c, 0xa9, 0x85, 0xde, 0x84, 0x09, 0xea, 0x61, + 0x07, 0x93, 0x1a, 0x15, 0xed, 0x52, 0x2a, 0x19, 0x97, 0x73, 0x22, 0x4c, 0x5f, 0x84, 0x3c, 0x41, + 0xad, 0x70, 0xbd, 0xbb, 0x9d, 0x3e, 0x0c, 0xf1, 0x63, 0x9d, 0x64, 0xcb, 0xb6, 0x55, 0x8b, 0xe9, + 0x70, 0x40, 0xad, 0xd3, 0x01, 0xcd, 0x47, 0xb0, 0xd2, 0x9d, 0xdb, 0xd5, 0xa1, 0x52, 0xd3, 0x5f, + 0xc2, 0x94, 0x48, 0x8f, 0x75, 0xaa, 0x59, 0xb8, 0x1e, 0xdf, 0x86, 0x1c, 0x0c, 0xda, 0xa7, 0x7e, + 0x85, 0x69, 0x81, 0x1f, 0x39, 0xc9, 0xbf, 0xdb, 0x6c, 0x76, 0x60, 0x26, 0xbe, 0xbb, 0x74, 0x67, + 0xb8, 0xd1, 0x51, 0x31, 0x79, 0x55, 0x10, 0x8f, 0x41, 0xef, 0xd8, 0xc2, 0x60, 0x28, 0x4f, 0x60, + 0x4e, 0xa0, 0x64, 0xb6, 0xcd, 0x24, 0xa0, 0x5f, 0x60, 0x59, 0x00, 0xf5, 0xeb, 0x31, 0x49, 0x80, + 0xfa, 0x3a, 0xcc, 0x78, 0x22, 0xb3, 0xd6, 0x08, 0x20, 0x6b, 0x1c, 0xbb, 0x28, 0x3c, 0xe3, 0x29, + 0xb9, 0x20, 0xa8, 0xf6, 0xb1, 0x8b, 0xcc, 0x56, 0x58, 0xa9, 0xfd, 0xba, 0x6e, 0x12, 0xf7, 0x2d, + 0x98, 0x6a, 0x50, 0xb7, 0x79, 0x84, 0x38, 0xa6, 0x24, 0xce, 0xfc, 0xbf, 0xf6, 0xb4, 0x20, 0xfe, + 0x43, 0x0b, 0xeb, 0x7c, 0x47, 0xce, 0xa3, 0x1e, 0xe4, 0x3a, 0xe4, 0x7c, 0xa6, 0xa8, 0xc5, 0xef, + 0x7f, 0x4c, 0x1c, 0xdc, 0x6d, 0x9f, 0xd4, 0x29, 0xb1, 0x31, 0x71, 0x82, 0xe2, 0xcb, 0x89, 0xa8, + 0x71, 0x35, 0xb7, 0x67, 0x9b, 0xbb, 0x61, 0x95, 0x65, 0xf2, 0xe5, 0x42, 0xdc, 0x13, 0x45, 0xb1, + 0x46, 0x96, 0xf7, 0x2d, 0xcc, 0x0a, 0x98, 0xac, 0xee, 0x9a, 0x8c, 0x54, 0x83, 0xbc, 0xac, 0xb5, + 0x34, 0x83, 0x5c, 0x84, 0x3c, 0x26, 0xb5, 0x8e, 0xc3, 0x19, 0xc3, 0x64, 0x4b, 0x1e, 0xcf, 0x32, + 0x00, 0xf5, 0x79, 0xb4, 0x3a, 0x2c, 0x56, 0xf3, 0xd4, 0xe7, 0x72, 0x79, 0xf3, 0xe3, 0x04, 0x0c, + 0x07, 0x2f, 0x52, 0xbf, 0x6b, 0x30, 0x9f, 0x64, 0x8a, 0xf7, 0x4a, 0x49, 0x9f, 0x31, 0xa5, 0xe4, + 0x6f, 0x07, 0xe3, 0xeb, 0x41, 0xb2, 0x22, 0xa3, 0xd6, 0xdf, 0x68, 0x30, 0xd7, 0xfb, 0x7b, 0x63, + 0x33, 0x15, 0xb7, 0x67, 0x8e, 0xf1, 0xb0, 0xff, 0x1c, 0xa5, 0xe4, 0x9d, 0x06, 0xcb, 0xe9, 0xdf, + 0x20, 0xe9, 0xe8, 0xa9, 0xb9, 0xc6, 0xf6, 0xe0, 0xb9, 0x4a, 0xe1, 0x01, 0x40, 0xcc, 0xf4, 0x6f, + 0xa5, 0x22, 0xb6, 0x03, 0x8d, 0x72, 0xc6, 0x40, 0xc5, 0xf3, 0x1b, 0xe8, 0x3d, 0x5e, 0xf6, 0xd3, + 0x61, 0x3e, 0x4d, 0x30, 0x1e, 0xf4, 0x99, 0xa0, 0xf8, 0x8f, 0x60, 0xa2, 0xc3, 0xfe, 0x6f, 0x67, + 0xd9, 0x80, 0x08, 0x35, 0x36, 0x32, 0x87, 0x2a, 0x36, 0x0a, 0x93, 0x9d, 0x7d, 0x62, 0x3d, 0x93, + 0x6e, 0xc9, 0xb7, 0x99, 0x3d, 0x56, 0x11, 0x9e, 0xc0, 0xf4, 0x27, 0x2d, 0xe5, 0x6e, 0x2a, 0x4e, + 0x77, 0xb8, 0x71, 0xbf, 0xaf, 0x70, 0xc5, 0x1c, 0x5c, 0xfe, 0xa4, 0x3e, 0x90, 0x7e, 0xf9, 0x13, + 0xb2, 0x2e, 0xb8, 0xfc, 0x17, 0xbc, 0x7a, 0xeb, 0x6f, 0x35, 0x28, 0x24, 0x36, 0xc5, 0xf4, 0x3d, + 0x26, 0xa5, 0x19, 0x8f, 0x06, 0x4a, 0x8b, 0xd7, 0x5e, 0x47, 0x53, 0x48, 0xaf, 0xbd, 0x78, 0xe8, + 0x05, 0xb5, 0xd7, 0xeb, 0xe5, 0x5c, 0xf7, 0x61, 0xaa, 0xbb, 0x77, 0xdc, 0xc9, 0x60, 0x14, 0x6d, + 0xce, 0x7b, 0xfd, 0x44, 0x2b, 0xda, 0x7d, 0xc8, 0x89, 0x46, 0x73, 0x33, 0xbd, 0x8c, 0x5a, 0x56, + 0xd3, 0xb8, 0x7d, 0x61, 0x48, 0x84, 0xba, 0xfd, 0xcd, 0xfb, 0xb3, 0xa2, 0xf6, 0xe1, 0xac, 0xa8, + 0x7d, 0x3c, 0x2b, 0x6a, 0x6f, 0xcf, 0x8b, 0x43, 0x1f, 0xce, 0x8b, 0x43, 0x7f, 0x9e, 0x17, 0x87, + 0x5e, 0xdc, 0x71, 0x30, 0x3f, 0xf4, 0xeb, 0xa5, 0x06, 0x75, 0xcb, 0x12, 0xee, 0x6e, 0x88, 0x57, + 0x16, 0x78, 0xe5, 0x93, 0xb2, 0xfc, 0x3f, 0xed, 0xb4, 0x89, 0x58, 0x7d, 0x44, 0xfc, 0x07, 0xf6, + 0xe5, 0xdf, 0x01, 0x00, 0x00, 0xff, 0xff, 0x79, 0xf7, 0x4e, 0xe4, 0x64, 0x13, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -2240,7 +2240,7 @@ func NewMsgClient(cc grpc1.ClientConn) MsgClient { func (c *msgClient) TransferModuleOwnership(ctx context.Context, in *MsgTransferModuleOwnership, opts ...grpc.CallOption) (*MsgTransferModuleOwnershipResponse, error) { out := new(MsgTransferModuleOwnershipResponse) - err := c.cc.Invoke(ctx, "/cosmichorizon.coho.game.Msg/TransferModuleOwnership", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmichorizon.qwoyn.game.Msg/TransferModuleOwnership", in, out, opts...) if err != nil { return nil, err } @@ -2249,7 +2249,7 @@ func (c *msgClient) TransferModuleOwnership(ctx context.Context, in *MsgTransfer func (c *msgClient) WhitelistNftContracts(ctx context.Context, in *MsgWhitelistNftContracts, opts ...grpc.CallOption) (*MsgWhitelistNftContractsResponse, error) { out := new(MsgWhitelistNftContractsResponse) - err := c.cc.Invoke(ctx, "/cosmichorizon.coho.game.Msg/WhitelistNftContracts", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmichorizon.qwoyn.game.Msg/WhitelistNftContracts", in, out, opts...) if err != nil { return nil, err } @@ -2258,7 +2258,7 @@ func (c *msgClient) WhitelistNftContracts(ctx context.Context, in *MsgWhitelistN func (c *msgClient) RemoveWhitelistedNftContracts(ctx context.Context, in *MsgRemoveWhitelistedNftContracts, opts ...grpc.CallOption) (*MsgRemoveWhitelistedNftContractsResponse, error) { out := new(MsgRemoveWhitelistedNftContractsResponse) - err := c.cc.Invoke(ctx, "/cosmichorizon.coho.game.Msg/RemoveWhitelistedNftContracts", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmichorizon.qwoyn.game.Msg/RemoveWhitelistedNftContracts", in, out, opts...) if err != nil { return nil, err } @@ -2267,7 +2267,7 @@ func (c *msgClient) RemoveWhitelistedNftContracts(ctx context.Context, in *MsgRe func (c *msgClient) DepositNft(ctx context.Context, in *MsgDepositNft, opts ...grpc.CallOption) (*MsgDepositNftResponse, error) { out := new(MsgDepositNftResponse) - err := c.cc.Invoke(ctx, "/cosmichorizon.coho.game.Msg/DepositNft", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmichorizon.qwoyn.game.Msg/DepositNft", in, out, opts...) if err != nil { return nil, err } @@ -2276,7 +2276,7 @@ func (c *msgClient) DepositNft(ctx context.Context, in *MsgDepositNft, opts ...g func (c *msgClient) WithdrawUpdatedNft(ctx context.Context, in *MsgWithdrawUpdatedNft, opts ...grpc.CallOption) (*MsgWithdrawUpdatedNftResponse, error) { out := new(MsgWithdrawUpdatedNftResponse) - err := c.cc.Invoke(ctx, "/cosmichorizon.coho.game.Msg/WithdrawUpdatedNft", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmichorizon.qwoyn.game.Msg/WithdrawUpdatedNft", in, out, opts...) if err != nil { return nil, err } @@ -2285,7 +2285,7 @@ func (c *msgClient) WithdrawUpdatedNft(ctx context.Context, in *MsgWithdrawUpdat func (c *msgClient) DepositToken(ctx context.Context, in *MsgDepositToken, opts ...grpc.CallOption) (*MsgDepositTokenResponse, error) { out := new(MsgDepositTokenResponse) - err := c.cc.Invoke(ctx, "/cosmichorizon.coho.game.Msg/DepositToken", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmichorizon.qwoyn.game.Msg/DepositToken", in, out, opts...) if err != nil { return nil, err } @@ -2294,7 +2294,7 @@ func (c *msgClient) DepositToken(ctx context.Context, in *MsgDepositToken, opts func (c *msgClient) WithdrawToken(ctx context.Context, in *MsgWithdrawToken, opts ...grpc.CallOption) (*MsgWithdrawTokenResponse, error) { out := new(MsgWithdrawTokenResponse) - err := c.cc.Invoke(ctx, "/cosmichorizon.coho.game.Msg/WithdrawToken", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmichorizon.qwoyn.game.Msg/WithdrawToken", in, out, opts...) if err != nil { return nil, err } @@ -2303,7 +2303,7 @@ func (c *msgClient) WithdrawToken(ctx context.Context, in *MsgWithdrawToken, opt func (c *msgClient) StakeInGameToken(ctx context.Context, in *MsgStakeInGameToken, opts ...grpc.CallOption) (*MsgStakeInGameTokenResponse, error) { out := new(MsgStakeInGameTokenResponse) - err := c.cc.Invoke(ctx, "/cosmichorizon.coho.game.Msg/StakeInGameToken", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmichorizon.qwoyn.game.Msg/StakeInGameToken", in, out, opts...) if err != nil { return nil, err } @@ -2312,7 +2312,7 @@ func (c *msgClient) StakeInGameToken(ctx context.Context, in *MsgStakeInGameToke func (c *msgClient) BeginUnstakeInGameToken(ctx context.Context, in *MsgBeginUnstakeInGameToken, opts ...grpc.CallOption) (*MsgBeginUnstakeInGameTokenResponse, error) { out := new(MsgBeginUnstakeInGameTokenResponse) - err := c.cc.Invoke(ctx, "/cosmichorizon.coho.game.Msg/BeginUnstakeInGameToken", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmichorizon.qwoyn.game.Msg/BeginUnstakeInGameToken", in, out, opts...) if err != nil { return nil, err } @@ -2321,7 +2321,7 @@ func (c *msgClient) BeginUnstakeInGameToken(ctx context.Context, in *MsgBeginUns func (c *msgClient) ClaimInGameStakingReward(ctx context.Context, in *MsgClaimInGameStakingReward, opts ...grpc.CallOption) (*MsgClaimInGameStakingRewardResponse, error) { out := new(MsgClaimInGameStakingRewardResponse) - err := c.cc.Invoke(ctx, "/cosmichorizon.coho.game.Msg/ClaimInGameStakingReward", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmichorizon.qwoyn.game.Msg/ClaimInGameStakingReward", in, out, opts...) if err != nil { return nil, err } @@ -2330,7 +2330,7 @@ func (c *msgClient) ClaimInGameStakingReward(ctx context.Context, in *MsgClaimIn func (c *msgClient) AddLiquidity(ctx context.Context, in *MsgAddLiquidity, opts ...grpc.CallOption) (*MsgAddLiquidityResponse, error) { out := new(MsgAddLiquidityResponse) - err := c.cc.Invoke(ctx, "/cosmichorizon.coho.game.Msg/AddLiquidity", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmichorizon.qwoyn.game.Msg/AddLiquidity", in, out, opts...) if err != nil { return nil, err } @@ -2339,7 +2339,7 @@ func (c *msgClient) AddLiquidity(ctx context.Context, in *MsgAddLiquidity, opts func (c *msgClient) RemoveLiquidity(ctx context.Context, in *MsgRemoveLiquidity, opts ...grpc.CallOption) (*MsgRemoveLiquidityResponse, error) { out := new(MsgRemoveLiquidityResponse) - err := c.cc.Invoke(ctx, "/cosmichorizon.coho.game.Msg/RemoveLiquidity", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmichorizon.qwoyn.game.Msg/RemoveLiquidity", in, out, opts...) if err != nil { return nil, err } @@ -2348,7 +2348,7 @@ func (c *msgClient) RemoveLiquidity(ctx context.Context, in *MsgRemoveLiquidity, func (c *msgClient) Swap(ctx context.Context, in *MsgSwap, opts ...grpc.CallOption) (*MsgSwapResponse, error) { out := new(MsgSwapResponse) - err := c.cc.Invoke(ctx, "/cosmichorizon.coho.game.Msg/Swap", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmichorizon.qwoyn.game.Msg/Swap", in, out, opts...) if err != nil { return nil, err } @@ -2430,7 +2430,7 @@ func _Msg_TransferModuleOwnership_Handler(srv interface{}, ctx context.Context, } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmichorizon.coho.game.Msg/TransferModuleOwnership", + FullMethod: "/cosmichorizon.qwoyn.game.Msg/TransferModuleOwnership", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).TransferModuleOwnership(ctx, req.(*MsgTransferModuleOwnership)) @@ -2448,7 +2448,7 @@ func _Msg_WhitelistNftContracts_Handler(srv interface{}, ctx context.Context, de } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmichorizon.coho.game.Msg/WhitelistNftContracts", + FullMethod: "/cosmichorizon.qwoyn.game.Msg/WhitelistNftContracts", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).WhitelistNftContracts(ctx, req.(*MsgWhitelistNftContracts)) @@ -2466,7 +2466,7 @@ func _Msg_RemoveWhitelistedNftContracts_Handler(srv interface{}, ctx context.Con } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmichorizon.coho.game.Msg/RemoveWhitelistedNftContracts", + FullMethod: "/cosmichorizon.qwoyn.game.Msg/RemoveWhitelistedNftContracts", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).RemoveWhitelistedNftContracts(ctx, req.(*MsgRemoveWhitelistedNftContracts)) @@ -2484,7 +2484,7 @@ func _Msg_DepositNft_Handler(srv interface{}, ctx context.Context, dec func(inte } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmichorizon.coho.game.Msg/DepositNft", + FullMethod: "/cosmichorizon.qwoyn.game.Msg/DepositNft", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).DepositNft(ctx, req.(*MsgDepositNft)) @@ -2502,7 +2502,7 @@ func _Msg_WithdrawUpdatedNft_Handler(srv interface{}, ctx context.Context, dec f } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmichorizon.coho.game.Msg/WithdrawUpdatedNft", + FullMethod: "/cosmichorizon.qwoyn.game.Msg/WithdrawUpdatedNft", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).WithdrawUpdatedNft(ctx, req.(*MsgWithdrawUpdatedNft)) @@ -2520,7 +2520,7 @@ func _Msg_DepositToken_Handler(srv interface{}, ctx context.Context, dec func(in } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmichorizon.coho.game.Msg/DepositToken", + FullMethod: "/cosmichorizon.qwoyn.game.Msg/DepositToken", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).DepositToken(ctx, req.(*MsgDepositToken)) @@ -2538,7 +2538,7 @@ func _Msg_WithdrawToken_Handler(srv interface{}, ctx context.Context, dec func(i } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmichorizon.coho.game.Msg/WithdrawToken", + FullMethod: "/cosmichorizon.qwoyn.game.Msg/WithdrawToken", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).WithdrawToken(ctx, req.(*MsgWithdrawToken)) @@ -2556,7 +2556,7 @@ func _Msg_StakeInGameToken_Handler(srv interface{}, ctx context.Context, dec fun } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmichorizon.coho.game.Msg/StakeInGameToken", + FullMethod: "/cosmichorizon.qwoyn.game.Msg/StakeInGameToken", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).StakeInGameToken(ctx, req.(*MsgStakeInGameToken)) @@ -2574,7 +2574,7 @@ func _Msg_BeginUnstakeInGameToken_Handler(srv interface{}, ctx context.Context, } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmichorizon.coho.game.Msg/BeginUnstakeInGameToken", + FullMethod: "/cosmichorizon.qwoyn.game.Msg/BeginUnstakeInGameToken", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).BeginUnstakeInGameToken(ctx, req.(*MsgBeginUnstakeInGameToken)) @@ -2592,7 +2592,7 @@ func _Msg_ClaimInGameStakingReward_Handler(srv interface{}, ctx context.Context, } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmichorizon.coho.game.Msg/ClaimInGameStakingReward", + FullMethod: "/cosmichorizon.qwoyn.game.Msg/ClaimInGameStakingReward", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).ClaimInGameStakingReward(ctx, req.(*MsgClaimInGameStakingReward)) @@ -2610,7 +2610,7 @@ func _Msg_AddLiquidity_Handler(srv interface{}, ctx context.Context, dec func(in } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmichorizon.coho.game.Msg/AddLiquidity", + FullMethod: "/cosmichorizon.qwoyn.game.Msg/AddLiquidity", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).AddLiquidity(ctx, req.(*MsgAddLiquidity)) @@ -2628,7 +2628,7 @@ func _Msg_RemoveLiquidity_Handler(srv interface{}, ctx context.Context, dec func } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmichorizon.coho.game.Msg/RemoveLiquidity", + FullMethod: "/cosmichorizon.qwoyn.game.Msg/RemoveLiquidity", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).RemoveLiquidity(ctx, req.(*MsgRemoveLiquidity)) @@ -2646,7 +2646,7 @@ func _Msg_Swap_Handler(srv interface{}, ctx context.Context, dec func(interface{ } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmichorizon.coho.game.Msg/Swap", + FullMethod: "/cosmichorizon.qwoyn.game.Msg/Swap", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(MsgServer).Swap(ctx, req.(*MsgSwap)) @@ -2655,7 +2655,7 @@ func _Msg_Swap_Handler(srv interface{}, ctx context.Context, dec func(interface{ } var _Msg_serviceDesc = grpc.ServiceDesc{ - ServiceName: "cosmichorizon.coho.game.Msg", + ServiceName: "cosmichorizon.qwoyn.game.Msg", HandlerType: (*MsgServer)(nil), Methods: []grpc.MethodDesc{ { diff --git a/x/mint/client/cli/query.go b/x/mint/client/cli/query.go index e897335..8d21104 100644 --- a/x/mint/client/cli/query.go +++ b/x/mint/client/cli/query.go @@ -5,7 +5,7 @@ import ( "github.com/spf13/cobra" - "github.com/cosmic-horizon/coho/x/mint/types" + "github.com/cosmic-horizon/qwoyn/x/mint/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" ) diff --git a/x/mint/client/rest/grpc_query_test.go b/x/mint/client/rest/grpc_query_test.go index fc809f5..a8596a6 100644 --- a/x/mint/client/rest/grpc_query_test.go +++ b/x/mint/client/rest/grpc_query_test.go @@ -13,7 +13,7 @@ import ( "github.com/gogo/protobuf/proto" "github.com/stretchr/testify/suite" - minttypes "github.com/cosmic-horizon/coho/x/mint/types" + minttypes "github.com/cosmic-horizon/qwoyn/x/mint/types" "github.com/cosmos/cosmos-sdk/testutil/network" ) diff --git a/x/mint/client/rest/query.go b/x/mint/client/rest/query.go index 76e9a7d..262176f 100644 --- a/x/mint/client/rest/query.go +++ b/x/mint/client/rest/query.go @@ -6,7 +6,7 @@ import ( "github.com/gorilla/mux" - "github.com/cosmic-horizon/coho/x/mint/types" + "github.com/cosmic-horizon/qwoyn/x/mint/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/types/rest" ) diff --git a/x/mint/client/testutil/suite.go b/x/mint/client/testutil/suite.go index c54ead4..2acea99 100644 --- a/x/mint/client/testutil/suite.go +++ b/x/mint/client/testutil/suite.go @@ -7,8 +7,8 @@ import ( "github.com/stretchr/testify/suite" tmcli "github.com/tendermint/tendermint/libs/cli" - "github.com/cosmic-horizon/coho/x/mint/client/cli" - minttypes "github.com/cosmic-horizon/coho/x/mint/types" + "github.com/cosmic-horizon/qwoyn/x/mint/client/cli" + minttypes "github.com/cosmic-horizon/qwoyn/x/mint/types" "github.com/cosmos/cosmos-sdk/client/flags" clitestutil "github.com/cosmos/cosmos-sdk/testutil/cli" "github.com/cosmos/cosmos-sdk/testutil/network" diff --git a/x/mint/genesis.go b/x/mint/genesis.go index d115c70..d4b0278 100644 --- a/x/mint/genesis.go +++ b/x/mint/genesis.go @@ -1,8 +1,8 @@ package mint import ( - "github.com/cosmic-horizon/coho/x/mint/keeper" - "github.com/cosmic-horizon/coho/x/mint/types" + "github.com/cosmic-horizon/qwoyn/x/mint/keeper" + "github.com/cosmic-horizon/qwoyn/x/mint/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/mint/keeper/abci.go b/x/mint/keeper/abci.go index 6952d77..c54ea40 100644 --- a/x/mint/keeper/abci.go +++ b/x/mint/keeper/abci.go @@ -3,7 +3,7 @@ package keeper import ( "time" - "github.com/cosmic-horizon/coho/x/mint/types" + "github.com/cosmic-horizon/qwoyn/x/mint/types" "github.com/cosmos/cosmos-sdk/telemetry" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/mint/keeper/grpc_query.go b/x/mint/keeper/grpc_query.go index f6dd12e..4129e5a 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/cosmic-horizon/coho/x/mint/types" + "github.com/cosmic-horizon/qwoyn/x/mint/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/mint/keeper/grpc_query_test.go b/x/mint/keeper/grpc_query_test.go index 8bdaa6b..fc6473d 100644 --- a/x/mint/keeper/grpc_query_test.go +++ b/x/mint/keeper/grpc_query_test.go @@ -7,8 +7,8 @@ import ( "github.com/stretchr/testify/suite" tmproto "github.com/tendermint/tendermint/proto/tendermint/types" - simapp "github.com/cosmic-horizon/coho/app" - "github.com/cosmic-horizon/coho/x/mint/types" + simapp "github.com/cosmic-horizon/qwoyn/app" + "github.com/cosmic-horizon/qwoyn/x/mint/types" "github.com/cosmos/cosmos-sdk/baseapp" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/mint/keeper/integration_test.go b/x/mint/keeper/integration_test.go index db40de1..b1bec47 100644 --- a/x/mint/keeper/integration_test.go +++ b/x/mint/keeper/integration_test.go @@ -3,8 +3,8 @@ package keeper_test import ( tmproto "github.com/tendermint/tendermint/proto/tendermint/types" - simapp "github.com/cosmic-horizon/coho/app" - "github.com/cosmic-horizon/coho/x/mint/types" + simapp "github.com/cosmic-horizon/qwoyn/app" + "github.com/cosmic-horizon/qwoyn/x/mint/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/mint/keeper/keeper.go b/x/mint/keeper/keeper.go index fa7e9e2..adbae2d 100644 --- a/x/mint/keeper/keeper.go +++ b/x/mint/keeper/keeper.go @@ -3,7 +3,7 @@ package keeper import ( "github.com/tendermint/tendermint/libs/log" - "github.com/cosmic-horizon/coho/x/mint/types" + "github.com/cosmic-horizon/qwoyn/x/mint/types" "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" paramtypes "github.com/cosmos/cosmos-sdk/x/params/types" diff --git a/x/mint/keeper/querier.go b/x/mint/keeper/querier.go index 29574d9..449c1bc 100644 --- a/x/mint/keeper/querier.go +++ b/x/mint/keeper/querier.go @@ -3,7 +3,7 @@ package keeper import ( abci "github.com/tendermint/tendermint/abci/types" - "github.com/cosmic-horizon/coho/x/mint/types" + "github.com/cosmic-horizon/qwoyn/x/mint/types" "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" diff --git a/x/mint/keeper/querier_test.go b/x/mint/keeper/querier_test.go index 3477b16..9c8f6c0 100644 --- a/x/mint/keeper/querier_test.go +++ b/x/mint/keeper/querier_test.go @@ -7,8 +7,8 @@ import ( "github.com/stretchr/testify/require" - keep "github.com/cosmic-horizon/coho/x/mint/keeper" - "github.com/cosmic-horizon/coho/x/mint/types" + keep "github.com/cosmic-horizon/qwoyn/x/mint/keeper" + "github.com/cosmic-horizon/qwoyn/x/mint/types" sdk "github.com/cosmos/cosmos-sdk/types" abci "github.com/tendermint/tendermint/abci/types" diff --git a/x/mint/legacy/v040/migrate.go b/x/mint/legacy/v040/migrate.go index bb68852..599f5d2 100644 --- a/x/mint/legacy/v040/migrate.go +++ b/x/mint/legacy/v040/migrate.go @@ -1,8 +1,8 @@ package v040 import ( - v039mint "github.com/cosmic-horizon/coho/x/mint/legacy/v039" - v040mint "github.com/cosmic-horizon/coho/x/mint/types" + v039mint "github.com/cosmic-horizon/qwoyn/x/mint/legacy/v039" + v040mint "github.com/cosmic-horizon/qwoyn/x/mint/types" ) // Migrate accepts exported v0.39 x/mint genesis state and diff --git a/x/mint/module.go b/x/mint/module.go index 9a0f750..1f027e4 100644 --- a/x/mint/module.go +++ b/x/mint/module.go @@ -11,11 +11,11 @@ import ( "github.com/spf13/cobra" abci "github.com/tendermint/tendermint/abci/types" - "github.com/cosmic-horizon/coho/x/mint/client/cli" - "github.com/cosmic-horizon/coho/x/mint/client/rest" - "github.com/cosmic-horizon/coho/x/mint/keeper" - "github.com/cosmic-horizon/coho/x/mint/simulation" - "github.com/cosmic-horizon/coho/x/mint/types" + "github.com/cosmic-horizon/qwoyn/x/mint/client/cli" + "github.com/cosmic-horizon/qwoyn/x/mint/client/rest" + "github.com/cosmic-horizon/qwoyn/x/mint/keeper" + "github.com/cosmic-horizon/qwoyn/x/mint/simulation" + "github.com/cosmic-horizon/qwoyn/x/mint/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/codec" cdctypes "github.com/cosmos/cosmos-sdk/codec/types" diff --git a/x/mint/module_test.go b/x/mint/module_test.go index f27fd8c..a3b40f6 100644 --- a/x/mint/module_test.go +++ b/x/mint/module_test.go @@ -7,8 +7,8 @@ import ( abcitypes "github.com/tendermint/tendermint/abci/types" tmproto "github.com/tendermint/tendermint/proto/tendermint/types" - simapp "github.com/cosmic-horizon/coho/app" - "github.com/cosmic-horizon/coho/x/mint/types" + simapp "github.com/cosmic-horizon/qwoyn/app" + "github.com/cosmic-horizon/qwoyn/x/mint/types" authtypes "github.com/cosmos/cosmos-sdk/x/auth/types" ) diff --git a/x/mint/simulation/decoder.go b/x/mint/simulation/decoder.go index b6ae8a1..efa357f 100644 --- a/x/mint/simulation/decoder.go +++ b/x/mint/simulation/decoder.go @@ -4,7 +4,7 @@ import ( "bytes" "fmt" - "github.com/cosmic-horizon/coho/x/mint/types" + "github.com/cosmic-horizon/qwoyn/x/mint/types" "github.com/cosmos/cosmos-sdk/codec" "github.com/cosmos/cosmos-sdk/types/kv" ) diff --git a/x/mint/simulation/decoder_test.go b/x/mint/simulation/decoder_test.go index 41d8148..06c1768 100644 --- a/x/mint/simulation/decoder_test.go +++ b/x/mint/simulation/decoder_test.go @@ -6,9 +6,9 @@ import ( "github.com/stretchr/testify/require" - simapp "github.com/cosmic-horizon/coho/app" - "github.com/cosmic-horizon/coho/x/mint/simulation" - "github.com/cosmic-horizon/coho/x/mint/types" + simapp "github.com/cosmic-horizon/qwoyn/app" + "github.com/cosmic-horizon/qwoyn/x/mint/simulation" + "github.com/cosmic-horizon/qwoyn/x/mint/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/kv" ) diff --git a/x/mint/simulation/genesis.go b/x/mint/simulation/genesis.go index c6f6a43..4ebeb35 100644 --- a/x/mint/simulation/genesis.go +++ b/x/mint/simulation/genesis.go @@ -7,7 +7,7 @@ import ( "fmt" "math/rand" - "github.com/cosmic-horizon/coho/x/mint/types" + "github.com/cosmic-horizon/qwoyn/x/mint/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" ) diff --git a/x/mint/simulation/genesis_test.go b/x/mint/simulation/genesis_test.go index 7ebf65e..bc451ca 100644 --- a/x/mint/simulation/genesis_test.go +++ b/x/mint/simulation/genesis_test.go @@ -7,8 +7,8 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmic-horizon/coho/x/mint/simulation" - "github.com/cosmic-horizon/coho/x/mint/types" + "github.com/cosmic-horizon/qwoyn/x/mint/simulation" + "github.com/cosmic-horizon/qwoyn/x/mint/types" "github.com/cosmos/cosmos-sdk/codec" codectypes "github.com/cosmos/cosmos-sdk/codec/types" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/mint/simulation/params.go b/x/mint/simulation/params.go index 7699405..9a70f3c 100644 --- a/x/mint/simulation/params.go +++ b/x/mint/simulation/params.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/x/simulation" - "github.com/cosmic-horizon/coho/x/mint/types" + "github.com/cosmic-horizon/qwoyn/x/mint/types" simtypes "github.com/cosmos/cosmos-sdk/types/simulation" ) diff --git a/x/mint/simulation/params_test.go b/x/mint/simulation/params_test.go index 81d4c12..7d569bd 100644 --- a/x/mint/simulation/params_test.go +++ b/x/mint/simulation/params_test.go @@ -6,7 +6,7 @@ import ( "github.com/stretchr/testify/require" - "github.com/cosmic-horizon/coho/x/mint/simulation" + "github.com/cosmic-horizon/qwoyn/x/mint/simulation" ) func TestParamChangest(t *testing.T) { diff --git a/x/mint/types/genesis.pb.go b/x/mint/types/genesis.pb.go index 9f0e32d..b5af43c 100644 --- a/x/mint/types/genesis.pb.go +++ b/x/mint/types/genesis.pb.go @@ -79,27 +79,27 @@ func (m *GenesisState) GetParams() Params { } func init() { - proto.RegisterType((*GenesisState)(nil), "cosmichorizon.coho.mint.GenesisState") + proto.RegisterType((*GenesisState)(nil), "cosmichorizon.qwoyn.mint.GenesisState") } func init() { proto.RegisterFile("mint/genesis.proto", fileDescriptor_50813f2cd53c1776) } var fileDescriptor_50813f2cd53c1776 = []byte{ - // 217 bytes of a gzipped FileDescriptorProto + // 218 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x12, 0xca, 0xcd, 0xcc, 0x2b, - 0xd1, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, - 0x4f, 0xce, 0x2f, 0xce, 0xcd, 0x4c, 0xce, 0xc8, 0x2f, 0xca, 0xac, 0xca, 0xcf, 0xd3, 0x4b, 0xce, - 0xcf, 0xc8, 0xd7, 0x03, 0x29, 0x93, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0xab, 0xd1, 0x07, 0xb1, - 0x20, 0xca, 0xa5, 0xf8, 0xc1, 0x46, 0x80, 0x08, 0x88, 0x80, 0x52, 0x0f, 0x23, 0x17, 0x8f, 0x3b, - 0xc4, 0xc4, 0xe0, 0x92, 0xc4, 0x92, 0x54, 0x21, 0x5b, 0x2e, 0x36, 0x90, 0x74, 0x6a, 0x91, 0x04, - 0xa3, 0x02, 0xa3, 0x06, 0xb7, 0x91, 0xbc, 0x1e, 0x0e, 0x1b, 0xf4, 0x7c, 0xc1, 0xca, 0x9c, 0x58, - 0x4e, 0xdc, 0x93, 0x67, 0x08, 0x82, 0x6a, 0x02, 0x69, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0x96, - 0x60, 0x22, 0xa0, 0x3d, 0x00, 0xac, 0x0c, 0xa6, 0x1d, 0xa2, 0xc9, 0xc9, 0xf5, 0xc4, 0x23, 0x39, - 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, 0x8e, 0xe1, 0xc2, 0x63, - 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0xb4, 0xd3, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, - 0xf3, 0x73, 0xf5, 0x21, 0x46, 0xea, 0x42, 0xcd, 0xd4, 0x07, 0x99, 0xa9, 0x5f, 0x01, 0xf6, 0x95, - 0x7e, 0x49, 0x65, 0x41, 0x6a, 0x71, 0x12, 0x1b, 0xd8, 0x73, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, - 0xff, 0x66, 0x62, 0x9a, 0x92, 0x32, 0x01, 0x00, 0x00, + 0xd1, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x92, + 0x48, 0xce, 0x2f, 0xce, 0xcd, 0x4c, 0xce, 0xc8, 0x2f, 0xca, 0xac, 0xca, 0xcf, 0xd3, 0x2b, 0x2c, + 0xcf, 0xaf, 0xcc, 0xd3, 0x03, 0xa9, 0x93, 0x12, 0x49, 0xcf, 0x4f, 0xcf, 0x07, 0x2b, 0xd2, 0x07, + 0xb1, 0x20, 0xea, 0xa5, 0xf8, 0xc1, 0x66, 0x80, 0x08, 0x88, 0x80, 0x52, 0x1f, 0x23, 0x17, 0x8f, + 0x3b, 0xc4, 0xc8, 0xe0, 0x92, 0xc4, 0x92, 0x54, 0x21, 0x3b, 0x2e, 0x36, 0x90, 0x74, 0x6a, 0x91, + 0x04, 0xa3, 0x02, 0xa3, 0x06, 0xb7, 0x91, 0x82, 0x1e, 0x2e, 0x2b, 0xf4, 0x7c, 0xc1, 0xea, 0x9c, + 0x58, 0x4e, 0xdc, 0x93, 0x67, 0x08, 0x82, 0xea, 0x02, 0xe9, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, + 0x96, 0x60, 0x22, 0xa4, 0x3f, 0x00, 0xac, 0x0e, 0xa6, 0x1f, 0xa2, 0xcb, 0xc9, 0xed, 0xc4, 0x23, + 0x39, 0xc6, 0x0b, 0x8f, 0xe4, 0x18, 0x1f, 0x3c, 0x92, 0x63, 0x9c, 0xf0, 0x58, 0x8e, 0xe1, 0xc2, + 0x63, 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0x74, 0xd2, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, + 0x92, 0xf3, 0x73, 0xf5, 0x21, 0x66, 0xea, 0x42, 0x0d, 0xd5, 0x07, 0x1b, 0xaa, 0x5f, 0x01, 0xf6, + 0x98, 0x7e, 0x49, 0x65, 0x41, 0x6a, 0x71, 0x12, 0x1b, 0xd8, 0x7f, 0xc6, 0x80, 0x00, 0x00, 0x00, + 0xff, 0xff, 0x78, 0x52, 0xc9, 0x00, 0x36, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/mint/types/mint.pb.go b/x/mint/types/mint.pb.go index 6cf0f2f..4526367 100644 --- a/x/mint/types/mint.pb.go +++ b/x/mint/types/mint.pb.go @@ -130,44 +130,44 @@ func (m *Params) GetBlocksPerYear() uint64 { } func init() { - proto.RegisterType((*Minter)(nil), "cosmichorizon.coho.mint.Minter") - proto.RegisterType((*Params)(nil), "cosmichorizon.coho.mint.Params") + proto.RegisterType((*Minter)(nil), "cosmichorizon.qwoyn.mint.Minter") + proto.RegisterType((*Params)(nil), "cosmichorizon.qwoyn.mint.Params") } func init() { proto.RegisterFile("mint/mint.proto", fileDescriptor_e1b9fbb701b2a577) } var fileDescriptor_e1b9fbb701b2a577 = []byte{ - // 477 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x93, 0x31, 0x6f, 0xd3, 0x40, - 0x18, 0x86, 0x63, 0x48, 0x5d, 0xe5, 0xa0, 0x14, 0x8e, 0x02, 0x56, 0x05, 0x76, 0xe5, 0x01, 0x55, - 0x42, 0xb5, 0x07, 0xb6, 0x4e, 0xc8, 0x0d, 0x48, 0x20, 0x8a, 0x22, 0x6f, 0x65, 0xb1, 0xbe, 0x38, - 0x87, 0x73, 0x8a, 0xef, 0x3e, 0xeb, 0xec, 0x82, 0xc3, 0xc8, 0x2f, 0x40, 0x4c, 0x8c, 0xfc, 0x9c, - 0x6e, 0x74, 0x44, 0x0c, 0x16, 0x4a, 0xfe, 0x41, 0x7e, 0x01, 0xb2, 0x2f, 0x4a, 0x20, 0xb0, 0x58, - 0xea, 0x62, 0xfb, 0x7b, 0xfd, 0xdd, 0xfb, 0xbc, 0x37, 0xbc, 0x64, 0x57, 0x70, 0x59, 0xf8, 0xf5, - 0xc3, 0xcb, 0x14, 0x16, 0x48, 0x1f, 0xc4, 0x98, 0x0b, 0x1e, 0x8f, 0x51, 0xf1, 0x8f, 0x28, 0xbd, - 0x18, 0xc7, 0xe8, 0xd5, 0xbf, 0xf7, 0xf7, 0x12, 0x4c, 0xb0, 0xd9, 0xf1, 0xeb, 0x2f, 0xbd, 0xee, - 0x7e, 0x37, 0x88, 0x79, 0xca, 0x65, 0xc1, 0x14, 0x7d, 0x4d, 0x7a, 0x5c, 0xbe, 0x4b, 0xa1, 0xe0, - 0x28, 0x2d, 0xe3, 0xc0, 0x38, 0xec, 0x05, 0xde, 0x45, 0xe5, 0x74, 0x7e, 0x56, 0xce, 0xe3, 0x84, - 0x17, 0xe3, 0xf3, 0xa1, 0x17, 0xa3, 0xf0, 0x6b, 0x7f, 0xcc, 0x97, 0xaf, 0xa3, 0x7c, 0x34, 0xf1, - 0x8b, 0x69, 0xc6, 0x72, 0xaf, 0xcf, 0xe2, 0x70, 0x6d, 0x40, 0x3f, 0x90, 0x3b, 0x20, 0xe5, 0x39, - 0xa4, 0x51, 0xa6, 0xf0, 0x3d, 0xcf, 0x39, 0xca, 0xdc, 0xba, 0xd6, 0xb8, 0xbe, 0x6a, 0xe7, 0xba, - 0xa8, 0x1c, 0x6b, 0x0a, 0x22, 0x3d, 0x76, 0xff, 0x31, 0x74, 0xc3, 0xdb, 0x5a, 0x1b, 0xac, 0xa5, - 0x2f, 0x5b, 0xc4, 0x1c, 0x80, 0x02, 0x91, 0xd3, 0x47, 0x84, 0xd4, 0x57, 0x8f, 0x46, 0x4c, 0xa2, - 0xd0, 0x57, 0x0a, 0x7b, 0xb5, 0xd2, 0xaf, 0x05, 0xfa, 0xc9, 0x20, 0xf7, 0x56, 0x81, 0x23, 0x05, - 0x05, 0x8b, 0xe2, 0x31, 0xc8, 0x84, 0x2d, 0x73, 0xbe, 0x69, 0x9d, 0xf3, 0xa1, 0xce, 0xf9, 0x5f, - 0x53, 0x37, 0xbc, 0xbb, 0xd2, 0x43, 0x28, 0xd8, 0x49, 0xa3, 0xd2, 0x09, 0xd9, 0x59, 0xaf, 0x0b, - 0x28, 0xad, 0xeb, 0x0d, 0xfb, 0x45, 0x6b, 0xf6, 0xde, 0x26, 0x5b, 0x40, 0xe9, 0x86, 0x37, 0x57, - 0xf3, 0x29, 0x94, 0x1b, 0x30, 0x2e, 0xad, 0xee, 0x95, 0xc1, 0xb8, 0xfc, 0x0b, 0xc6, 0x25, 0x65, - 0xe4, 0x46, 0x82, 0x90, 0x46, 0x43, 0x94, 0x23, 0x36, 0xb2, 0xb6, 0x1a, 0x54, 0xbf, 0x35, 0x8a, - 0x6a, 0xd4, 0x1f, 0x56, 0x6e, 0x48, 0xea, 0x29, 0x68, 0x06, 0x1a, 0x90, 0xdd, 0x61, 0x8a, 0xf1, - 0x24, 0x8f, 0x32, 0xa6, 0xa2, 0x29, 0x03, 0x65, 0x99, 0x07, 0xc6, 0x61, 0x37, 0xd8, 0x5f, 0x54, - 0xce, 0x7d, 0x7d, 0x78, 0x63, 0xc1, 0x0d, 0x77, 0xb4, 0x32, 0x60, 0xea, 0x8c, 0x81, 0xa2, 0x67, - 0x64, 0x5b, 0x40, 0x19, 0xc5, 0x90, 0x59, 0xdb, 0x4d, 0xcc, 0x67, 0x2d, 0x62, 0xbe, 0x94, 0xc5, - 0xa2, 0x72, 0x6e, 0x69, 0xd2, 0xd2, 0xc6, 0x0d, 0x4d, 0x01, 0xe5, 0x09, 0x64, 0xc7, 0xdd, 0xaf, - 0xdf, 0x9c, 0x4e, 0xf0, 0xfc, 0x62, 0x66, 0x1b, 0x97, 0x33, 0xdb, 0xf8, 0x35, 0xb3, 0x8d, 0xcf, - 0x73, 0xbb, 0x73, 0x39, 0xb7, 0x3b, 0x3f, 0xe6, 0x76, 0xe7, 0xed, 0x93, 0x0d, 0x02, 0x8f, 0x8f, - 0x96, 0xdd, 0xf5, 0xeb, 0xee, 0xfa, 0x65, 0x53, 0x6e, 0x8d, 0x1a, 0x9a, 0x4d, 0x69, 0x9f, 0xfe, - 0x0e, 0x00, 0x00, 0xff, 0xff, 0xbf, 0x04, 0x32, 0xdd, 0xf6, 0x03, 0x00, 0x00, + // 478 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x93, 0xb1, 0x6e, 0xd3, 0x40, + 0x1c, 0xc6, 0x63, 0x48, 0x5d, 0xe5, 0xa0, 0x14, 0x8e, 0x82, 0xac, 0x0a, 0xec, 0xca, 0x03, 0xea, + 0x40, 0xed, 0x81, 0xad, 0x13, 0x72, 0xa3, 0x4a, 0x20, 0x8a, 0x22, 0x6f, 0x65, 0xb1, 0xfe, 0x71, + 0x0e, 0xe7, 0x14, 0xdf, 0x9d, 0x39, 0x5f, 0xa9, 0xc3, 0xc8, 0x13, 0x20, 0x26, 0x46, 0x1e, 0xa7, + 0x1b, 0x1d, 0x11, 0x83, 0x85, 0x92, 0x37, 0xc8, 0x13, 0x20, 0xdf, 0x45, 0x09, 0x04, 0x16, 0x4b, + 0x2c, 0xb6, 0xff, 0x9f, 0xff, 0xf7, 0xfd, 0xbe, 0x1b, 0x3e, 0xb4, 0xcb, 0x28, 0x57, 0x61, 0xf3, + 0x08, 0x0a, 0x29, 0x94, 0xc0, 0x4e, 0x2a, 0x4a, 0x46, 0xd3, 0xb1, 0x90, 0xf4, 0x83, 0xe0, 0xc1, + 0xbb, 0x4b, 0x31, 0xe5, 0x41, 0xf3, 0x7f, 0x7f, 0x2f, 0x13, 0x99, 0xd0, 0x4b, 0x61, 0xf3, 0x65, + 0xf6, 0xfd, 0x6f, 0x16, 0xb2, 0xcf, 0x28, 0x57, 0x44, 0xe2, 0x57, 0xa8, 0x47, 0xf9, 0xdb, 0x1c, + 0x14, 0x15, 0xdc, 0xb1, 0x0e, 0xac, 0xc3, 0x5e, 0x14, 0x5c, 0xd5, 0x5e, 0xe7, 0x47, 0xed, 0x3d, + 0xc9, 0xa8, 0x1a, 0x5f, 0x0c, 0x83, 0x54, 0xb0, 0xb0, 0x01, 0x88, 0x72, 0xf9, 0x3a, 0x2a, 0x47, + 0x93, 0x50, 0x4d, 0x0b, 0x52, 0x06, 0x7d, 0x92, 0xc6, 0x6b, 0x03, 0x7c, 0x89, 0xee, 0x01, 0xe7, + 0x17, 0x90, 0x27, 0x85, 0x14, 0xef, 0x69, 0x49, 0x05, 0x2f, 0x9d, 0x1b, 0xda, 0xf5, 0x65, 0x3b, + 0xd7, 0x45, 0xed, 0x39, 0x53, 0x60, 0xf9, 0xb1, 0xff, 0x97, 0xa1, 0x1f, 0xdf, 0x35, 0xda, 0x60, + 0x2d, 0x7d, 0xde, 0x42, 0xf6, 0x00, 0x24, 0xb0, 0x12, 0x3f, 0x46, 0xa8, 0xb9, 0x7a, 0x32, 0x22, + 0x5c, 0x30, 0x73, 0xa5, 0xb8, 0xd7, 0x28, 0xfd, 0x46, 0xc0, 0x1f, 0x2d, 0xf4, 0x60, 0x15, 0x38, + 0x91, 0xa0, 0x48, 0x92, 0x8e, 0x81, 0x67, 0x64, 0x99, 0xf3, 0x75, 0xeb, 0x9c, 0x8f, 0x4c, 0xce, + 0x7f, 0x9a, 0xfa, 0xf1, 0xfd, 0x95, 0x1e, 0x83, 0x22, 0x27, 0x5a, 0xc5, 0x13, 0xb4, 0xb3, 0x5e, + 0x67, 0x50, 0x39, 0x37, 0x35, 0xfb, 0xb4, 0x35, 0x7b, 0x6f, 0x93, 0xcd, 0xa0, 0xf2, 0xe3, 0xdb, + 0xab, 0xf9, 0x0c, 0xaa, 0x0d, 0x18, 0xe5, 0x4e, 0xf7, 0xbf, 0xc1, 0x28, 0xff, 0x03, 0x46, 0x39, + 0x26, 0xe8, 0x56, 0x26, 0x20, 0x4f, 0x86, 0x82, 0x8f, 0xc8, 0xc8, 0xd9, 0xd2, 0xa8, 0x7e, 0x6b, + 0x14, 0x36, 0xa8, 0xdf, 0xac, 0xfc, 0x18, 0x35, 0x53, 0xa4, 0x07, 0x1c, 0xa1, 0xdd, 0x61, 0x2e, + 0xd2, 0x49, 0x99, 0x14, 0x44, 0x26, 0x53, 0x02, 0xd2, 0xb1, 0x0f, 0xac, 0xc3, 0x6e, 0xb4, 0xbf, + 0xa8, 0xbd, 0x87, 0xe6, 0xf0, 0xc6, 0x82, 0x1f, 0xef, 0x18, 0x65, 0x40, 0xe4, 0x39, 0x01, 0x89, + 0xcf, 0xd1, 0x36, 0x83, 0x2a, 0x49, 0xa1, 0x70, 0xb6, 0x75, 0xcc, 0xe7, 0x2d, 0x62, 0xbe, 0xe0, + 0x6a, 0x51, 0x7b, 0x77, 0x0c, 0x69, 0x69, 0xe3, 0xc7, 0x36, 0x83, 0xea, 0x04, 0x8a, 0xe3, 0xee, + 0x97, 0xaf, 0x5e, 0x27, 0x3a, 0xbd, 0x9a, 0xb9, 0xd6, 0xf5, 0xcc, 0xb5, 0x7e, 0xce, 0x5c, 0xeb, + 0xd3, 0xdc, 0xed, 0x5c, 0xcf, 0xdd, 0xce, 0xf7, 0xb9, 0xdb, 0x79, 0xf3, 0x74, 0x83, 0x40, 0xd3, + 0xa3, 0x65, 0x79, 0x43, 0x5d, 0xde, 0xb0, 0xd2, 0xf5, 0x36, 0xac, 0xa1, 0xad, 0x5b, 0xfb, 0xec, + 0x57, 0x00, 0x00, 0x00, 0xff, 0xff, 0xc4, 0x55, 0x4e, 0x9a, 0xf8, 0x03, 0x00, 0x00, } func (m *Minter) Marshal() (dAtA []byte, err error) { diff --git a/x/mint/types/query.pb.go b/x/mint/types/query.pb.go index 7829b29..9bca1f5 100644 --- a/x/mint/types/query.pb.go +++ b/x/mint/types/query.pb.go @@ -269,47 +269,47 @@ func (m *QueryAnnualProvisionsResponse) XXX_DiscardUnknown() { var xxx_messageInfo_QueryAnnualProvisionsResponse proto.InternalMessageInfo func init() { - proto.RegisterType((*QueryParamsRequest)(nil), "cosmichorizon.coho.mint.QueryParamsRequest") - proto.RegisterType((*QueryParamsResponse)(nil), "cosmichorizon.coho.mint.QueryParamsResponse") - proto.RegisterType((*QueryInflationRequest)(nil), "cosmichorizon.coho.mint.QueryInflationRequest") - proto.RegisterType((*QueryInflationResponse)(nil), "cosmichorizon.coho.mint.QueryInflationResponse") - proto.RegisterType((*QueryAnnualProvisionsRequest)(nil), "cosmichorizon.coho.mint.QueryAnnualProvisionsRequest") - proto.RegisterType((*QueryAnnualProvisionsResponse)(nil), "cosmichorizon.coho.mint.QueryAnnualProvisionsResponse") + proto.RegisterType((*QueryParamsRequest)(nil), "cosmichorizon.qwoyn.mint.QueryParamsRequest") + proto.RegisterType((*QueryParamsResponse)(nil), "cosmichorizon.qwoyn.mint.QueryParamsResponse") + proto.RegisterType((*QueryInflationRequest)(nil), "cosmichorizon.qwoyn.mint.QueryInflationRequest") + proto.RegisterType((*QueryInflationResponse)(nil), "cosmichorizon.qwoyn.mint.QueryInflationResponse") + proto.RegisterType((*QueryAnnualProvisionsRequest)(nil), "cosmichorizon.qwoyn.mint.QueryAnnualProvisionsRequest") + proto.RegisterType((*QueryAnnualProvisionsResponse)(nil), "cosmichorizon.qwoyn.mint.QueryAnnualProvisionsResponse") } func init() { proto.RegisterFile("mint/query.proto", fileDescriptor_3082aecef156f565) } var fileDescriptor_3082aecef156f565 = []byte{ - // 462 bytes of a gzipped FileDescriptorProto + // 464 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x93, 0x4d, 0x6b, 0x13, 0x41, - 0x18, 0xc7, 0x33, 0xbe, 0x04, 0x3a, 0x0a, 0xc6, 0xb1, 0x5a, 0x59, 0xdb, 0x49, 0x59, 0x21, 0x14, - 0x6a, 0x67, 0x68, 0x45, 0x6f, 0x1e, 0x0c, 0x7a, 0x10, 0x3c, 0xd4, 0xe0, 0x49, 0x0f, 0x32, 0x59, - 0xa7, 0x9b, 0xc1, 0x64, 0x9e, 0xed, 0xce, 0xa4, 0x58, 0xf1, 0xe4, 0xc9, 0xa3, 0xa0, 0x5f, 0xc4, - 0x6f, 0xd1, 0x63, 0xc1, 0x8b, 0x08, 0x16, 0x49, 0xfc, 0x20, 0x32, 0xb3, 0xb3, 0x11, 0xb7, 0xdd, - 0x12, 0x7b, 0x49, 0x96, 0xe7, 0xed, 0xff, 0xdb, 0xe7, 0xff, 0x2c, 0x6e, 0x8d, 0x94, 0xb6, 0x7c, - 0x77, 0x2c, 0xf3, 0x7d, 0x96, 0xe5, 0x60, 0x81, 0x2c, 0x25, 0x60, 0x46, 0x2a, 0x19, 0x40, 0xae, - 0xde, 0x81, 0x66, 0x09, 0x0c, 0x80, 0xb9, 0xa2, 0x68, 0x31, 0x85, 0x14, 0x7c, 0x0d, 0x77, 0x4f, - 0x45, 0x79, 0xb4, 0x9c, 0x02, 0xa4, 0x43, 0xc9, 0x45, 0xa6, 0xb8, 0xd0, 0x1a, 0xac, 0xb0, 0x0a, - 0xb4, 0x09, 0xd9, 0x2b, 0x7e, 0xbc, 0xfb, 0x29, 0x02, 0xf1, 0x22, 0x26, 0xcf, 0x9c, 0xd8, 0xb6, - 0xc8, 0xc5, 0xc8, 0xf4, 0xe4, 0xee, 0x58, 0x1a, 0x1b, 0x3f, 0xc7, 0xd7, 0xfe, 0x89, 0x9a, 0x0c, - 0xb4, 0x91, 0xe4, 0x01, 0x6e, 0x66, 0x3e, 0x72, 0x13, 0xad, 0xa2, 0xb5, 0x4b, 0x5b, 0x6d, 0x56, - 0xc3, 0xc6, 0x8a, 0xc6, 0xee, 0x85, 0x83, 0xa3, 0x76, 0xa3, 0x17, 0x9a, 0xe2, 0x25, 0x7c, 0xdd, - 0x4f, 0x7d, 0xa2, 0x77, 0x86, 0x9e, 0xaa, 0x94, 0xdb, 0xc1, 0x37, 0xaa, 0x89, 0xa0, 0xf8, 0x14, - 0x2f, 0xa8, 0x32, 0xe8, 0x45, 0x2f, 0x77, 0x99, 0x9b, 0xf9, 0xe3, 0xa8, 0xdd, 0x49, 0x95, 0x1d, - 0x8c, 0xfb, 0x2c, 0x81, 0x11, 0x77, 0x18, 0x60, 0xc2, 0xdf, 0x86, 0x79, 0xfd, 0x86, 0xdb, 0xfd, - 0x4c, 0x1a, 0xf6, 0x48, 0x26, 0xbd, 0xbf, 0x03, 0x62, 0x8a, 0x97, 0xbd, 0xce, 0x43, 0xad, 0xc7, - 0x62, 0xb8, 0x9d, 0xc3, 0x9e, 0x32, 0x6e, 0x39, 0x25, 0xc7, 0x7b, 0xbc, 0x52, 0x93, 0x0f, 0x38, - 0x2f, 0xf1, 0x55, 0xe1, 0x73, 0xaf, 0xb2, 0x59, 0xf2, 0x8c, 0x58, 0x2d, 0x51, 0x11, 0xd9, 0xfa, - 0x79, 0x1e, 0x5f, 0xf4, 0xf2, 0xe4, 0x23, 0xc2, 0xcd, 0x62, 0x83, 0x64, 0xbd, 0x76, 0xc5, 0xc7, - 0x6d, 0x8b, 0xee, 0xcc, 0x57, 0x5c, 0xbc, 0x4c, 0x7c, 0xfb, 0xc3, 0xb7, 0xdf, 0x9f, 0xcf, 0xad, - 0x90, 0x5b, 0x25, 0xa7, 0xbf, 0x8d, 0xbd, 0xcd, 0xbe, 0xb4, 0x62, 0x93, 0x17, 0x9e, 0x91, 0x2f, - 0x08, 0x2f, 0xcc, 0x6c, 0x21, 0xec, 0x74, 0x81, 0xaa, 0xb1, 0x11, 0x9f, 0xbb, 0x3e, 0x30, 0x75, - 0x3c, 0xd3, 0x2a, 0xa1, 0x27, 0x32, 0xcd, 0x9c, 0x24, 0x5f, 0x11, 0x6e, 0x55, 0x5d, 0x22, 0xf7, - 0x4e, 0x57, 0xab, 0x71, 0x3d, 0xba, 0xff, 0xbf, 0x6d, 0x81, 0x95, 0x79, 0xd6, 0x35, 0xd2, 0x39, - 0x91, 0xf5, 0xd8, 0x9d, 0x74, 0x1f, 0x1f, 0x4c, 0x28, 0x3a, 0x9c, 0x50, 0xf4, 0x6b, 0x42, 0xd1, - 0xa7, 0x29, 0x6d, 0x1c, 0x4e, 0x69, 0xe3, 0xfb, 0x94, 0x36, 0x5e, 0xac, 0x57, 0x6e, 0x46, 0x25, - 0x1b, 0x01, 0x86, 0x3b, 0x18, 0xfe, 0xb6, 0x18, 0xed, 0x8f, 0xa7, 0xdf, 0xf4, 0x1f, 0xee, 0xdd, - 0x3f, 0x01, 0x00, 0x00, 0xff, 0xff, 0xb9, 0x2d, 0x59, 0x4b, 0x2a, 0x04, 0x00, 0x00, + 0x18, 0xc7, 0x33, 0xbe, 0x04, 0x3a, 0x0a, 0xc6, 0xb1, 0x6a, 0x59, 0xdb, 0x69, 0x58, 0x21, 0xf4, + 0xd0, 0xcc, 0xd8, 0x0a, 0x7a, 0x13, 0x0c, 0x22, 0x08, 0x1e, 0x6a, 0xc0, 0x8b, 0x1e, 0x64, 0xb2, + 0x4e, 0xb7, 0x83, 0xc9, 0x3c, 0x9b, 0x9d, 0x49, 0x35, 0xe2, 0xc9, 0xa3, 0x27, 0x41, 0xf0, 0x8b, + 0xf8, 0x25, 0x7a, 0x2c, 0x78, 0x11, 0x0f, 0x45, 0xb2, 0x7e, 0x10, 0xd9, 0xd9, 0xd9, 0x88, 0xdb, + 0x2e, 0x8d, 0xbd, 0x24, 0xcb, 0xf3, 0xf6, 0xff, 0xed, 0xf3, 0x7f, 0x16, 0xb7, 0x46, 0x4a, 0x5b, + 0x3e, 0x9e, 0xc8, 0x74, 0xca, 0x92, 0x14, 0x2c, 0x90, 0x95, 0x08, 0xcc, 0x48, 0x45, 0x7b, 0x90, + 0xaa, 0xf7, 0xa0, 0xd9, 0xf8, 0x2d, 0x4c, 0x35, 0xcb, 0xab, 0x82, 0xe5, 0x18, 0x62, 0x70, 0x45, + 0x3c, 0x7f, 0x2a, 0xea, 0x83, 0xd5, 0x18, 0x20, 0x1e, 0x4a, 0x2e, 0x12, 0xc5, 0x85, 0xd6, 0x60, + 0x85, 0x55, 0xa0, 0x8d, 0xcf, 0x5e, 0x71, 0xf3, 0xf3, 0x9f, 0x22, 0x10, 0x2e, 0x63, 0xf2, 0x2c, + 0x57, 0xdb, 0x11, 0xa9, 0x18, 0x99, 0xbe, 0x1c, 0x4f, 0xa4, 0xb1, 0xe1, 0x73, 0x7c, 0xed, 0x9f, + 0xa8, 0x49, 0x40, 0x1b, 0x49, 0x1e, 0xe0, 0x66, 0xe2, 0x22, 0x2b, 0xa8, 0x8d, 0x36, 0x2e, 0x6d, + 0xb7, 0x59, 0x1d, 0x1c, 0x2b, 0x3a, 0x7b, 0x17, 0x0e, 0x8e, 0xd6, 0x1b, 0x7d, 0xdf, 0x15, 0xde, + 0xc4, 0xd7, 0xdd, 0xd8, 0x27, 0x7a, 0x77, 0xe8, 0xb0, 0x4a, 0xbd, 0x5d, 0x7c, 0xa3, 0x9a, 0xf0, + 0x92, 0x4f, 0xf1, 0x92, 0x2a, 0x83, 0x4e, 0xf5, 0x72, 0x8f, 0xe5, 0x33, 0x7f, 0x1e, 0xad, 0x77, + 0x62, 0x65, 0xf7, 0x26, 0x03, 0x16, 0xc1, 0x88, 0xe7, 0x1c, 0x60, 0xfc, 0x5f, 0xd7, 0xbc, 0x7e, + 0xc3, 0xed, 0x34, 0x91, 0x86, 0x3d, 0x92, 0x51, 0xff, 0xef, 0x80, 0x90, 0xe2, 0x55, 0xa7, 0xf3, + 0x50, 0xeb, 0x89, 0x18, 0xee, 0xa4, 0xb0, 0xaf, 0x4c, 0xbe, 0x9d, 0x92, 0xe3, 0x03, 0x5e, 0xab, + 0xc9, 0x7b, 0x9c, 0x97, 0xf8, 0xaa, 0x70, 0xb9, 0x57, 0xc9, 0x3c, 0x79, 0x46, 0xac, 0x96, 0xa8, + 0x88, 0x6c, 0x67, 0xe7, 0xf1, 0x45, 0x27, 0x4f, 0x3e, 0x21, 0xdc, 0x2c, 0x36, 0x48, 0x36, 0xeb, + 0x77, 0x7c, 0xdc, 0xb8, 0xa0, 0xbb, 0x60, 0x75, 0xf1, 0x3a, 0xe1, 0xed, 0x8f, 0xdf, 0x7f, 0x7f, + 0x39, 0xb7, 0x46, 0x6e, 0x95, 0xa4, 0xee, 0x3c, 0xf6, 0xb7, 0x06, 0xd2, 0x8a, 0x2d, 0x5e, 0xb8, + 0x46, 0xbe, 0x22, 0xbc, 0x34, 0x37, 0x86, 0xf0, 0x53, 0x14, 0xaa, 0xde, 0x06, 0x77, 0x16, 0x6f, + 0xf0, 0x54, 0x1d, 0x47, 0xd5, 0x26, 0xf4, 0x44, 0xaa, 0xb9, 0x9b, 0xe4, 0x1b, 0xc2, 0xad, 0xaa, + 0x53, 0xe4, 0xde, 0x29, 0x72, 0x35, 0xd6, 0x07, 0xf7, 0xff, 0xbb, 0xcf, 0xd3, 0x32, 0x47, 0xbb, + 0x41, 0x3a, 0x27, 0xd2, 0x1e, 0xbb, 0x96, 0xde, 0xe3, 0x83, 0x19, 0x45, 0x87, 0x33, 0x8a, 0x7e, + 0xcd, 0x28, 0xfa, 0x9c, 0xd1, 0xc6, 0x61, 0x46, 0x1b, 0x3f, 0x32, 0xda, 0x78, 0xb1, 0x59, 0xb9, + 0x1c, 0x15, 0x75, 0x3d, 0x0d, 0x77, 0x34, 0xfc, 0x5d, 0x31, 0xdb, 0xdd, 0xd0, 0xa0, 0xe9, 0x3e, + 0xe0, 0xbb, 0x7f, 0x02, 0x00, 0x00, 0xff, 0xff, 0xa2, 0xe0, 0x84, 0x9a, 0x33, 0x04, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -342,7 +342,7 @@ func NewQueryClient(cc grpc1.ClientConn) QueryClient { func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts ...grpc.CallOption) (*QueryParamsResponse, error) { out := new(QueryParamsResponse) - err := c.cc.Invoke(ctx, "/cosmichorizon.coho.mint.Query/Params", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmichorizon.qwoyn.mint.Query/Params", in, out, opts...) if err != nil { return nil, err } @@ -351,7 +351,7 @@ func (c *queryClient) Params(ctx context.Context, in *QueryParamsRequest, opts . func (c *queryClient) Inflation(ctx context.Context, in *QueryInflationRequest, opts ...grpc.CallOption) (*QueryInflationResponse, error) { out := new(QueryInflationResponse) - err := c.cc.Invoke(ctx, "/cosmichorizon.coho.mint.Query/Inflation", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmichorizon.qwoyn.mint.Query/Inflation", in, out, opts...) if err != nil { return nil, err } @@ -360,7 +360,7 @@ func (c *queryClient) Inflation(ctx context.Context, in *QueryInflationRequest, func (c *queryClient) AnnualProvisions(ctx context.Context, in *QueryAnnualProvisionsRequest, opts ...grpc.CallOption) (*QueryAnnualProvisionsResponse, error) { out := new(QueryAnnualProvisionsResponse) - err := c.cc.Invoke(ctx, "/cosmichorizon.coho.mint.Query/AnnualProvisions", in, out, opts...) + err := c.cc.Invoke(ctx, "/cosmichorizon.qwoyn.mint.Query/AnnualProvisions", in, out, opts...) if err != nil { return nil, err } @@ -405,7 +405,7 @@ func _Query_Params_Handler(srv interface{}, ctx context.Context, dec func(interf } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmichorizon.coho.mint.Query/Params", + FullMethod: "/cosmichorizon.qwoyn.mint.Query/Params", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Params(ctx, req.(*QueryParamsRequest)) @@ -423,7 +423,7 @@ func _Query_Inflation_Handler(srv interface{}, ctx context.Context, dec func(int } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmichorizon.coho.mint.Query/Inflation", + FullMethod: "/cosmichorizon.qwoyn.mint.Query/Inflation", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).Inflation(ctx, req.(*QueryInflationRequest)) @@ -441,7 +441,7 @@ func _Query_AnnualProvisions_Handler(srv interface{}, ctx context.Context, dec f } info := &grpc.UnaryServerInfo{ Server: srv, - FullMethod: "/cosmichorizon.coho.mint.Query/AnnualProvisions", + FullMethod: "/cosmichorizon.qwoyn.mint.Query/AnnualProvisions", } handler := func(ctx context.Context, req interface{}) (interface{}, error) { return srv.(QueryServer).AnnualProvisions(ctx, req.(*QueryAnnualProvisionsRequest)) @@ -450,7 +450,7 @@ func _Query_AnnualProvisions_Handler(srv interface{}, ctx context.Context, dec f } var _Query_serviceDesc = grpc.ServiceDesc{ - ServiceName: "cosmichorizon.coho.mint.Query", + ServiceName: "cosmichorizon.qwoyn.mint.Query", HandlerType: (*QueryServer)(nil), Methods: []grpc.MethodDesc{ {