diff --git a/Makefile b/Makefile index 9c98aa6..6be9fb3 100644 --- a/Makefile +++ b/Makefile @@ -46,7 +46,7 @@ empty = $(whitespace) $(whitespace) comma := , build_tags_comma_sep := $(subst $(empty),$(comma),$(build_tags)) -# -X github.com/reecepbcups/tokenfactory/app.Bech32Prefix=tokenfactory +# -X github.com/strangelove-ventures/tokenfactory/app.Bech32Prefix=tokenfactory ldflags = -X github.com/cosmos/cosmos-sdk/version.Name=tokenfactory \ -X github.com/cosmos/cosmos-sdk/version.AppName=tokend \ -X github.com/cosmos/cosmos-sdk/version.Version=$(VERSION) \ diff --git a/app/app.go b/app/app.go index 56d7e3f..825ef37 100644 --- a/app/app.go +++ b/app/app.go @@ -13,11 +13,11 @@ import ( "github.com/CosmWasm/wasmd/x/wasm" wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" - "github.com/reecepbcups/tokenfactory/x/tokenfactory" - "github.com/reecepbcups/tokenfactory/x/tokenfactory/bindings" - tokenfactorykeeper "github.com/reecepbcups/tokenfactory/x/tokenfactory/keeper" - tokenfactorytypes "github.com/reecepbcups/tokenfactory/x/tokenfactory/types" "github.com/spf13/cast" + "github.com/strangelove-ventures/tokenfactory/x/tokenfactory" + "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/bindings" + tokenfactorykeeper "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/keeper" + tokenfactorytypes "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/types" abci "github.com/cometbft/cometbft/abci/types" tmproto "github.com/cometbft/cometbft/proto/tendermint/types" diff --git a/app/apptesting/test_suite.go b/app/apptesting/test_suite.go index a0ae3b6..62d246d 100644 --- a/app/apptesting/test_suite.go +++ b/app/apptesting/test_suite.go @@ -4,8 +4,8 @@ import ( "fmt" "time" - "github.com/reecepbcups/tokenfactory/app" - appparams "github.com/reecepbcups/tokenfactory/app/params" + "github.com/strangelove-ventures/tokenfactory/app" + appparams "github.com/strangelove-ventures/tokenfactory/app/params" "github.com/stretchr/testify/suite" "github.com/cometbft/cometbft/crypto/ed25519" diff --git a/app/encoding.go b/app/encoding.go index 372b3bb..938873b 100644 --- a/app/encoding.go +++ b/app/encoding.go @@ -4,7 +4,7 @@ import ( "testing" wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" - "github.com/reecepbcups/tokenfactory/app/params" + "github.com/strangelove-ventures/tokenfactory/app/params" dbm "github.com/cosmos/cosmos-db" diff --git a/app/test_helpers.go b/app/test_helpers.go index b35e3fd..ec7d096 100644 --- a/app/test_helpers.go +++ b/app/test_helpers.go @@ -10,8 +10,8 @@ import ( "github.com/CosmWasm/wasmd/x/wasm" wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" - apphelpers "github.com/reecepbcups/tokenfactory/app/helpers" - appparams "github.com/reecepbcups/tokenfactory/app/params" + apphelpers "github.com/strangelove-ventures/tokenfactory/app/helpers" + appparams "github.com/strangelove-ventures/tokenfactory/app/params" "github.com/stretchr/testify/require" abci "github.com/cometbft/cometbft/abci/types" diff --git a/app/upgrades.go b/app/upgrades.go index 405e655..19d7f9f 100644 --- a/app/upgrades.go +++ b/app/upgrades.go @@ -3,8 +3,8 @@ package app import ( "fmt" - "github.com/reecepbcups/tokenfactory/app/upgrades" - "github.com/reecepbcups/tokenfactory/app/upgrades/noop" + "github.com/strangelove-ventures/tokenfactory/app/upgrades" + "github.com/strangelove-ventures/tokenfactory/app/upgrades/noop" upgradetypes "cosmossdk.io/x/upgrade/types" ) diff --git a/app/upgrades/noop/upgrades.go b/app/upgrades/noop/upgrades.go index f38de2d..cdd77c4 100644 --- a/app/upgrades/noop/upgrades.go +++ b/app/upgrades/noop/upgrades.go @@ -3,7 +3,7 @@ package noop import ( "context" - "github.com/reecepbcups/tokenfactory/app/upgrades" + "github.com/strangelove-ventures/tokenfactory/app/upgrades" storetypes "cosmossdk.io/store/types" upgradetypes "cosmossdk.io/x/upgrade/types" diff --git a/cmd/tokend/cmd/commands.go b/cmd/tokend/cmd/commands.go index 2f32c2f..8438ded 100644 --- a/cmd/tokend/cmd/commands.go +++ b/cmd/tokend/cmd/commands.go @@ -9,10 +9,10 @@ import ( wasmcli "github.com/CosmWasm/wasmd/x/wasm/client/cli" wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" "github.com/prometheus/client_golang/prometheus" - "github.com/reecepbcups/tokenfactory/app" "github.com/spf13/cast" "github.com/spf13/cobra" "github.com/spf13/viper" + "github.com/strangelove-ventures/tokenfactory/app" cmtcfg "github.com/cometbft/cometbft/config" diff --git a/cmd/tokend/cmd/root.go b/cmd/tokend/cmd/root.go index fe4b0b2..ffceb61 100644 --- a/cmd/tokend/cmd/root.go +++ b/cmd/tokend/cmd/root.go @@ -6,9 +6,9 @@ import ( wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" - "github.com/reecepbcups/tokenfactory/app" - "github.com/reecepbcups/tokenfactory/app/params" "github.com/spf13/cobra" + "github.com/strangelove-ventures/tokenfactory/app" + "github.com/strangelove-ventures/tokenfactory/app/params" dbm "github.com/cosmos/cosmos-db" diff --git a/cmd/tokend/cmd/testnet.go b/cmd/tokend/cmd/testnet.go index fc06dff..db4ff65 100644 --- a/cmd/tokend/cmd/testnet.go +++ b/cmd/tokend/cmd/testnet.go @@ -9,9 +9,9 @@ import ( "path/filepath" "time" - "github.com/reecepbcups/tokenfactory/app" "github.com/spf13/cobra" "github.com/spf13/pflag" + "github.com/strangelove-ventures/tokenfactory/app" cmtconfig "github.com/cometbft/cometbft/config" cmttime "github.com/cometbft/cometbft/types/time" diff --git a/cmd/tokend/main.go b/cmd/tokend/main.go index 6f8da78..ec2a41c 100644 --- a/cmd/tokend/main.go +++ b/cmd/tokend/main.go @@ -4,8 +4,8 @@ import ( "fmt" "os" - "github.com/reecepbcups/tokenfactory/app" - "github.com/reecepbcups/tokenfactory/cmd/tokend/cmd" + "github.com/strangelove-ventures/tokenfactory/app" + "github.com/strangelove-ventures/tokenfactory/cmd/tokend/cmd" svrcmd "github.com/cosmos/cosmos-sdk/server/cmd" ) diff --git a/go.mod b/go.mod index 71b88e3..41f4818 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/reecepbcups/tokenfactory +module github.com/strangelove-ventures/tokenfactory go 1.21 @@ -38,7 +38,6 @@ require ( github.com/cosmos/cosmos-sdk v0.50.3 github.com/cosmos/gogoproto v1.4.11 github.com/cosmos/ibc-go/modules/capability v1.0.0 - github.com/cosmos/ibc-go/v8 v8.0.0 github.com/golang/protobuf v1.5.3 github.com/grpc-ecosystem/grpc-gateway v1.16.0 github.com/prometheus/client_golang v1.17.0 @@ -85,7 +84,6 @@ require ( github.com/cosmos/btcutil v1.0.5 // indirect github.com/cosmos/go-bip39 v1.0.0 // indirect github.com/cosmos/gogogateway v1.2.0 // indirect - github.com/cosmos/iavl v1.0.0 // indirect github.com/cosmos/ics23/go v0.10.0 // indirect github.com/cosmos/ledger-cosmos-go v0.13.3 // indirect github.com/creachadair/atomicfile v0.3.1 // indirect @@ -214,6 +212,8 @@ require ( ) require ( + github.com/cosmos/iavl v1.0.1 // indirect + github.com/cosmos/ibc-go/v8 v8.1.0 github.com/opencontainers/image-spec v1.1.0-rc5 // indirect github.com/opencontainers/runc v1.1.5 // indirect github.com/sirupsen/logrus v1.9.3 // indirect diff --git a/go.sum b/go.sum index e852099..70746a5 100644 --- a/go.sum +++ b/go.sum @@ -971,12 +971,12 @@ github.com/cosmos/gogogateway v1.2.0/go.mod h1:iQpLkGWxYcnCdz5iAdLcRBSw3h7NXeOkZ github.com/cosmos/gogoproto v1.4.2/go.mod h1:cLxOsn1ljAHSV527CHOtaIP91kK6cCrZETRBrkzItWU= github.com/cosmos/gogoproto v1.4.11 h1:LZcMHrx4FjUgrqQSWeaGC1v/TeuVFqSLa43CC6aWR2g= github.com/cosmos/gogoproto v1.4.11/go.mod h1:/g39Mh8m17X8Q/GDEs5zYTSNaNnInBSohtaxzQnYq1Y= -github.com/cosmos/iavl v1.0.0 h1:bw6t0Mv/mVCJvlMTOPHWLs5uUE3BRBfVWCRelOzl+so= -github.com/cosmos/iavl v1.0.0/go.mod h1:CmTGqMnRnucjxbjduneZXT+0vPgNElYvdefjX2q9tYc= +github.com/cosmos/iavl v1.0.1 h1:D+mYbcRO2wptYzOM1Hxl9cpmmHU1ZEt9T2Wv5nZTeUw= +github.com/cosmos/iavl v1.0.1/go.mod h1:8xIUkgVvwvVrBu81scdPty+/Dx9GqwHnAvXz4cwF7RY= github.com/cosmos/ibc-go/modules/capability v1.0.0 h1:r/l++byFtn7jHYa09zlAdSeevo8ci1mVZNO9+V0xsLE= github.com/cosmos/ibc-go/modules/capability v1.0.0/go.mod h1:D81ZxzjZAe0ZO5ambnvn1qedsFQ8lOwtqicG6liLBco= -github.com/cosmos/ibc-go/v8 v8.0.0 h1:QKipnr/NGwc+9L7NZipURvmSIu+nw9jOIWTJuDBqOhg= -github.com/cosmos/ibc-go/v8 v8.0.0/go.mod h1:C6IiJom0F3cIQCD5fKwVPDrDK9j/xTu563AWuOmXois= +github.com/cosmos/ibc-go/v8 v8.1.0 h1:pf1106wl0Cf+p1+FjXzV6odlS9DnqVunPVWCH1Uz+lQ= +github.com/cosmos/ibc-go/v8 v8.1.0/go.mod h1:o1ipS95xpdjqNcB8Drq0eI3Sn4FRLigjll42ec1ECuU= github.com/cosmos/ics23/go v0.10.0 h1:iXqLLgp2Lp+EdpIuwXTYIQU+AiHj9mOC2X9ab++bZDM= github.com/cosmos/ics23/go v0.10.0/go.mod h1:ZfJSmng/TBNTBkFemHHHj5YY7VAU/MBU980F4VU1NG0= github.com/cosmos/ledger-cosmos-go v0.13.3 h1:7ehuBGuyIytsXbd4MP43mLeoN2LTOEnk5nvue4rK+yM= diff --git a/interchaintest/go.mod b/interchaintest/go.mod index b0ef095..862af2f 100644 --- a/interchaintest/go.mod +++ b/interchaintest/go.mod @@ -1,4 +1,4 @@ -module github.com/reecepbcups/tokenfactory/interchaintest +module github.com/strangelove-ventures/tokenfactory/interchaintest go 1.21.1 @@ -8,14 +8,14 @@ replace ( github.com/ChainSafe/go-schnorrkel => github.com/ChainSafe/go-schnorrkel v0.0.0-20200405005733-88cbf1b4c40d github.com/ChainSafe/go-schnorrkel/1 => github.com/ChainSafe/go-schnorrkel v1.0.0 github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1 - github.com/reecepbcups/tokenfactory => ../ + github.com/strangelove-ventures/tokenfactory => ../ ) require ( cosmossdk.io/math v1.2.0 github.com/cosmos/cosmos-sdk v0.50.3 - github.com/reecepbcups/tokenfactory v0.0.0-00000000000000-000000000000 github.com/strangelove-ventures/interchaintest/v8 v8.0.1-0.20240124225619-c55143141632 + github.com/strangelove-ventures/tokenfactory v0.0.0-00000000000000-000000000000 github.com/stretchr/testify v1.8.4 go.uber.org/zap v1.26.0 ) diff --git a/interchaintest/setup.go b/interchaintest/setup.go index 6004991..28c7dd3 100644 --- a/interchaintest/setup.go +++ b/interchaintest/setup.go @@ -1,7 +1,7 @@ package interchaintest import ( - tokenfactorytypes "github.com/reecepbcups/tokenfactory/x/tokenfactory/types" + tokenfactorytypes "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/types" sdkmath "cosmossdk.io/math" "github.com/strangelove-ventures/interchaintest/v8/chain/cosmos" diff --git a/proto/buf.gen.pulsar.yaml b/proto/buf.gen.pulsar.yaml index ab0476d..200ff13 100644 --- a/proto/buf.gen.pulsar.yaml +++ b/proto/buf.gen.pulsar.yaml @@ -2,7 +2,7 @@ version: v1 managed: enabled: true go_package_prefix: - default: github.com/reecepbcups/tokenfactory/api + default: github.com/strangelove-ventures/tokenfactory/api except: - buf.build/googleapis/googleapis - buf.build/cosmos/gogo-proto diff --git a/proto/osmosis/tokenfactory/v1beta1/authorityMetadata.proto b/proto/osmosis/tokenfactory/v1beta1/authorityMetadata.proto index a736a86..79264a4 100755 --- a/proto/osmosis/tokenfactory/v1beta1/authorityMetadata.proto +++ b/proto/osmosis/tokenfactory/v1beta1/authorityMetadata.proto @@ -4,7 +4,7 @@ package osmosis.tokenfactory.v1beta1; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; -option go_package = "github.com/reecepbcups/tokenfactory/x/tokenfactory/types"; +option go_package = "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/types"; // DenomAuthorityMetadata specifies metadata for addresses that have specific // capabilities over a token factory denom. Right now there is only one Admin diff --git a/proto/osmosis/tokenfactory/v1beta1/genesis.proto b/proto/osmosis/tokenfactory/v1beta1/genesis.proto index 65fba66..83d0cff 100755 --- a/proto/osmosis/tokenfactory/v1beta1/genesis.proto +++ b/proto/osmosis/tokenfactory/v1beta1/genesis.proto @@ -5,7 +5,7 @@ import "gogoproto/gogo.proto"; import "osmosis/tokenfactory/v1beta1/authorityMetadata.proto"; import "osmosis/tokenfactory/v1beta1/params.proto"; -option go_package = "github.com/reecepbcups/tokenfactory/x/tokenfactory/types"; +option go_package = "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/types"; // GenesisState defines the tokenfactory module's genesis state. message GenesisState { diff --git a/proto/osmosis/tokenfactory/v1beta1/params.proto b/proto/osmosis/tokenfactory/v1beta1/params.proto index 28a360c..004794f 100755 --- a/proto/osmosis/tokenfactory/v1beta1/params.proto +++ b/proto/osmosis/tokenfactory/v1beta1/params.proto @@ -6,7 +6,7 @@ import "osmosis/tokenfactory/v1beta1/authorityMetadata.proto"; import "cosmos_proto/cosmos.proto"; import "cosmos/base/v1beta1/coin.proto"; -option go_package = "github.com/reecepbcups/tokenfactory/x/tokenfactory/types"; +option go_package = "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/types"; // Params defines the parameters for the tokenfactory module. message Params { diff --git a/proto/osmosis/tokenfactory/v1beta1/query.proto b/proto/osmosis/tokenfactory/v1beta1/query.proto index 6c46d1b..86d983c 100755 --- a/proto/osmosis/tokenfactory/v1beta1/query.proto +++ b/proto/osmosis/tokenfactory/v1beta1/query.proto @@ -7,7 +7,7 @@ import "cosmos/base/query/v1beta1/pagination.proto"; import "osmosis/tokenfactory/v1beta1/authorityMetadata.proto"; import "osmosis/tokenfactory/v1beta1/params.proto"; -option go_package = "github.com/reecepbcups/tokenfactory/x/tokenfactory/types"; +option go_package = "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/osmosis/tokenfactory/v1beta1/tx.proto b/proto/osmosis/tokenfactory/v1beta1/tx.proto index 2519cd8..a7575dd 100755 --- a/proto/osmosis/tokenfactory/v1beta1/tx.proto +++ b/proto/osmosis/tokenfactory/v1beta1/tx.proto @@ -8,7 +8,7 @@ import "osmosis/tokenfactory/v1beta1/params.proto"; import "cosmos/msg/v1/msg.proto"; import "cosmos_proto/cosmos.proto"; -option go_package = "github.com/reecepbcups/tokenfactory/x/tokenfactory/types"; +option go_package = "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/types"; // Msg defines the tokefactory module's gRPC message service. service Msg { diff --git a/scripts/protocgen.sh b/scripts/protocgen.sh index 113066d..8d9a815 100644 --- a/scripts/protocgen.sh +++ b/scripts/protocgen.sh @@ -9,8 +9,13 @@ buf generate --template buf.gen.gogo.yaml $file cd .. + + # move proto files to the right places -cp -r ./github.com/reecepbcups/tokenfactory/x/* x/ +cp -r ./github.com/strangelove-ventures/tokenfactory/x/* x/ rm -rf ./github.com +# replace incorrect namespace +find ./x -type f -name '*.pb.go' -exec sed -i -e 's|cosmossdk.io/x/bank/types|github.com/cosmos/cosmos-sdk/x/bank/types|g' {} \; + go mod tidy \ No newline at end of file diff --git a/x/tokenfactory/bindings/custom_msg_test.go b/x/tokenfactory/bindings/custom_msg_test.go index f90daf4..4ce7da1 100644 --- a/x/tokenfactory/bindings/custom_msg_test.go +++ b/x/tokenfactory/bindings/custom_msg_test.go @@ -7,9 +7,9 @@ import ( "github.com/CosmWasm/wasmd/x/wasm/keeper" wasmvmtypes "github.com/CosmWasm/wasmvm/types" - "github.com/reecepbcups/tokenfactory/app" - bindings "github.com/reecepbcups/tokenfactory/x/tokenfactory/bindings/types" - "github.com/reecepbcups/tokenfactory/x/tokenfactory/types" + "github.com/strangelove-ventures/tokenfactory/app" + bindings "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/bindings/types" + "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/types" "github.com/stretchr/testify/require" sdkmath "cosmossdk.io/math" diff --git a/x/tokenfactory/bindings/custom_query_test.go b/x/tokenfactory/bindings/custom_query_test.go index 9080a6e..75410f6 100644 --- a/x/tokenfactory/bindings/custom_query_test.go +++ b/x/tokenfactory/bindings/custom_query_test.go @@ -6,8 +6,8 @@ import ( "testing" wasmvmtypes "github.com/CosmWasm/wasmvm/types" - "github.com/reecepbcups/tokenfactory/app" - bindings "github.com/reecepbcups/tokenfactory/x/tokenfactory/bindings/types" + "github.com/strangelove-ventures/tokenfactory/app" + bindings "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/bindings/types" "github.com/stretchr/testify/require" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/tokenfactory/bindings/helpers_test.go b/x/tokenfactory/bindings/helpers_test.go index f7f9c01..ad197be 100644 --- a/x/tokenfactory/bindings/helpers_test.go +++ b/x/tokenfactory/bindings/helpers_test.go @@ -5,7 +5,7 @@ import ( "testing" "github.com/CosmWasm/wasmd/x/wasm/keeper" - "github.com/reecepbcups/tokenfactory/app" + "github.com/strangelove-ventures/tokenfactory/app" "github.com/stretchr/testify/require" "github.com/cometbft/cometbft/crypto" diff --git a/x/tokenfactory/bindings/message_plugin.go b/x/tokenfactory/bindings/message_plugin.go index b425917..8931553 100644 --- a/x/tokenfactory/bindings/message_plugin.go +++ b/x/tokenfactory/bindings/message_plugin.go @@ -5,9 +5,9 @@ import ( wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" wasmvmtypes "github.com/CosmWasm/wasmvm/types" - bindingstypes "github.com/reecepbcups/tokenfactory/x/tokenfactory/bindings/types" - tokenfactorykeeper "github.com/reecepbcups/tokenfactory/x/tokenfactory/keeper" - tokenfactorytypes "github.com/reecepbcups/tokenfactory/x/tokenfactory/types" + bindingstypes "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/bindings/types" + tokenfactorykeeper "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/keeper" + tokenfactorytypes "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/types" errorsmod "cosmossdk.io/errors" diff --git a/x/tokenfactory/bindings/queries.go b/x/tokenfactory/bindings/queries.go index f439ec9..29bf3d0 100644 --- a/x/tokenfactory/bindings/queries.go +++ b/x/tokenfactory/bindings/queries.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - bindingstypes "github.com/reecepbcups/tokenfactory/x/tokenfactory/bindings/types" - tokenfactorykeeper "github.com/reecepbcups/tokenfactory/x/tokenfactory/keeper" + bindingstypes "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/bindings/types" + tokenfactorykeeper "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/keeper" sdk "github.com/cosmos/cosmos-sdk/types" bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" diff --git a/x/tokenfactory/bindings/query_plugin.go b/x/tokenfactory/bindings/query_plugin.go index 8d4106b..cf45901 100644 --- a/x/tokenfactory/bindings/query_plugin.go +++ b/x/tokenfactory/bindings/query_plugin.go @@ -5,7 +5,7 @@ import ( "fmt" wasmvmtypes "github.com/CosmWasm/wasmvm/types" - bindingstypes "github.com/reecepbcups/tokenfactory/x/tokenfactory/bindings/types" + bindingstypes "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/bindings/types" errorsmod "cosmossdk.io/errors" diff --git a/x/tokenfactory/bindings/validate_msg_test.go b/x/tokenfactory/bindings/validate_msg_test.go index 327ac31..b27c8b4 100644 --- a/x/tokenfactory/bindings/validate_msg_test.go +++ b/x/tokenfactory/bindings/validate_msg_test.go @@ -4,9 +4,9 @@ import ( "fmt" "testing" - wasmbinding "github.com/reecepbcups/tokenfactory/x/tokenfactory/bindings" - bindings "github.com/reecepbcups/tokenfactory/x/tokenfactory/bindings/types" - "github.com/reecepbcups/tokenfactory/x/tokenfactory/types" + wasmbinding "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/bindings" + bindings "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/bindings/types" + "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/types" "github.com/stretchr/testify/require" sdkmath "cosmossdk.io/math" diff --git a/x/tokenfactory/bindings/validate_queries_test.go b/x/tokenfactory/bindings/validate_queries_test.go index 402aa8c..6b7abe8 100644 --- a/x/tokenfactory/bindings/validate_queries_test.go +++ b/x/tokenfactory/bindings/validate_queries_test.go @@ -4,7 +4,7 @@ import ( "fmt" "testing" - wasmbinding "github.com/reecepbcups/tokenfactory/x/tokenfactory/bindings" + wasmbinding "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/bindings" "github.com/stretchr/testify/assert" "github.com/stretchr/testify/require" diff --git a/x/tokenfactory/bindings/wasm.go b/x/tokenfactory/bindings/wasm.go index e825c75..16477f4 100644 --- a/x/tokenfactory/bindings/wasm.go +++ b/x/tokenfactory/bindings/wasm.go @@ -2,7 +2,7 @@ package bindings import ( wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" - tokenfactorykeeper "github.com/reecepbcups/tokenfactory/x/tokenfactory/keeper" + tokenfactorykeeper "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/keeper" bankkeeper "github.com/cosmos/cosmos-sdk/x/bank/keeper" ) diff --git a/x/tokenfactory/client/cli/query.go b/x/tokenfactory/client/cli/query.go index 9a75f9a..45bfb62 100644 --- a/x/tokenfactory/client/cli/query.go +++ b/x/tokenfactory/client/cli/query.go @@ -3,8 +3,8 @@ package cli import ( "fmt" - "github.com/reecepbcups/tokenfactory/x/tokenfactory/types" "github.com/spf13/cobra" + "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" diff --git a/x/tokenfactory/client/cli/tx.go b/x/tokenfactory/client/cli/tx.go index 5b8852b..cddad47 100644 --- a/x/tokenfactory/client/cli/tx.go +++ b/x/tokenfactory/client/cli/tx.go @@ -5,8 +5,8 @@ import ( "strconv" "strings" - "github.com/reecepbcups/tokenfactory/x/tokenfactory/types" "github.com/spf13/cobra" + "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/types" "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" diff --git a/x/tokenfactory/keeper/admins.go b/x/tokenfactory/keeper/admins.go index 3945674..9b08bc5 100644 --- a/x/tokenfactory/keeper/admins.go +++ b/x/tokenfactory/keeper/admins.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "github.com/reecepbcups/tokenfactory/x/tokenfactory/types" + "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/types" "github.com/cosmos/gogoproto/proto" diff --git a/x/tokenfactory/keeper/admins_test.go b/x/tokenfactory/keeper/admins_test.go index 2606759..679b1dd 100644 --- a/x/tokenfactory/keeper/admins_test.go +++ b/x/tokenfactory/keeper/admins_test.go @@ -3,7 +3,7 @@ package keeper_test import ( "fmt" - "github.com/reecepbcups/tokenfactory/x/tokenfactory/types" + "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/types" sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" diff --git a/x/tokenfactory/keeper/bankactions.go b/x/tokenfactory/keeper/bankactions.go index 7fbc1f9..2b2c76e 100644 --- a/x/tokenfactory/keeper/bankactions.go +++ b/x/tokenfactory/keeper/bankactions.go @@ -3,7 +3,7 @@ package keeper import ( "fmt" - "github.com/reecepbcups/tokenfactory/x/tokenfactory/types" + "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/tokenfactory/keeper/createdenom.go b/x/tokenfactory/keeper/createdenom.go index 417e090..58c8a4a 100644 --- a/x/tokenfactory/keeper/createdenom.go +++ b/x/tokenfactory/keeper/createdenom.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/reecepbcups/tokenfactory/x/tokenfactory/types" + "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/types" sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" diff --git a/x/tokenfactory/keeper/createdenom_test.go b/x/tokenfactory/keeper/createdenom_test.go index f50869c..490b9b6 100644 --- a/x/tokenfactory/keeper/createdenom_test.go +++ b/x/tokenfactory/keeper/createdenom_test.go @@ -3,7 +3,7 @@ package keeper_test import ( "fmt" - "github.com/reecepbcups/tokenfactory/x/tokenfactory/types" + "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/types" sdkmath "cosmossdk.io/math" diff --git a/x/tokenfactory/keeper/genesis.go b/x/tokenfactory/keeper/genesis.go index 05d19eb..b161d07 100644 --- a/x/tokenfactory/keeper/genesis.go +++ b/x/tokenfactory/keeper/genesis.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/reecepbcups/tokenfactory/x/tokenfactory/types" + "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/tokenfactory/keeper/genesis_test.go b/x/tokenfactory/keeper/genesis_test.go index 8208c56..9051ced 100644 --- a/x/tokenfactory/keeper/genesis_test.go +++ b/x/tokenfactory/keeper/genesis_test.go @@ -1,7 +1,7 @@ package keeper_test import ( - "github.com/reecepbcups/tokenfactory/x/tokenfactory/types" + "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/types" sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" diff --git a/x/tokenfactory/keeper/grpc_query.go b/x/tokenfactory/keeper/grpc_query.go index 00c7050..7f6cc10 100644 --- a/x/tokenfactory/keeper/grpc_query.go +++ b/x/tokenfactory/keeper/grpc_query.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "github.com/reecepbcups/tokenfactory/x/tokenfactory/types" + "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/tokenfactory/keeper/keeper.go b/x/tokenfactory/keeper/keeper.go index 99954a0..2faccdd 100644 --- a/x/tokenfactory/keeper/keeper.go +++ b/x/tokenfactory/keeper/keeper.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/reecepbcups/tokenfactory/x/tokenfactory/types" + "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/types" "cosmossdk.io/log" "cosmossdk.io/store/prefix" diff --git a/x/tokenfactory/keeper/keeper_test.go b/x/tokenfactory/keeper/keeper_test.go index a8f0a75..f895a1e 100644 --- a/x/tokenfactory/keeper/keeper_test.go +++ b/x/tokenfactory/keeper/keeper_test.go @@ -3,9 +3,9 @@ package keeper_test import ( "testing" - "github.com/reecepbcups/tokenfactory/app/apptesting" - "github.com/reecepbcups/tokenfactory/x/tokenfactory/keeper" - "github.com/reecepbcups/tokenfactory/x/tokenfactory/types" + "github.com/strangelove-ventures/tokenfactory/app/apptesting" + "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/keeper" + "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/types" "github.com/stretchr/testify/suite" sdkmath "cosmossdk.io/math" diff --git a/x/tokenfactory/keeper/migrator.go b/x/tokenfactory/keeper/migrator.go index fe10157..8b29de0 100644 --- a/x/tokenfactory/keeper/migrator.go +++ b/x/tokenfactory/keeper/migrator.go @@ -3,8 +3,8 @@ package keeper import ( "fmt" - "github.com/reecepbcups/tokenfactory/x/tokenfactory/exported" - v2 "github.com/reecepbcups/tokenfactory/x/tokenfactory/migrations/v2" + "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/exported" + v2 "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/migrations/v2" sdk "github.com/cosmos/cosmos-sdk/types" banktypes "github.com/cosmos/cosmos-sdk/x/bank/types" diff --git a/x/tokenfactory/keeper/msg_server.go b/x/tokenfactory/keeper/msg_server.go index 0c97760..d85261d 100644 --- a/x/tokenfactory/keeper/msg_server.go +++ b/x/tokenfactory/keeper/msg_server.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "github.com/reecepbcups/tokenfactory/x/tokenfactory/types" + "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/types" "cosmossdk.io/errors" diff --git a/x/tokenfactory/keeper/msg_server_test.go b/x/tokenfactory/keeper/msg_server_test.go index c2bd989..17263f9 100644 --- a/x/tokenfactory/keeper/msg_server_test.go +++ b/x/tokenfactory/keeper/msg_server_test.go @@ -4,7 +4,7 @@ import ( "context" "fmt" - "github.com/reecepbcups/tokenfactory/x/tokenfactory/types" + "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/types" sdkmath "cosmossdk.io/math" diff --git a/x/tokenfactory/keeper/params.go b/x/tokenfactory/keeper/params.go index a355966..eb1819c 100644 --- a/x/tokenfactory/keeper/params.go +++ b/x/tokenfactory/keeper/params.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "github.com/reecepbcups/tokenfactory/x/tokenfactory/types" + "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/tokenfactory/migrations/v2/migrate.go b/x/tokenfactory/migrations/v2/migrate.go index 7c86580..e2e49d2 100644 --- a/x/tokenfactory/migrations/v2/migrate.go +++ b/x/tokenfactory/migrations/v2/migrate.go @@ -1,8 +1,8 @@ package v2 import ( - "github.com/reecepbcups/tokenfactory/x/tokenfactory/exported" - "github.com/reecepbcups/tokenfactory/x/tokenfactory/types" + "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/exported" + "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/types" sdkstore "cosmossdk.io/store/types" diff --git a/x/tokenfactory/migrations/v2/migrate_test.go b/x/tokenfactory/migrations/v2/migrate_test.go index 8ced9af..f91f24d 100644 --- a/x/tokenfactory/migrations/v2/migrate_test.go +++ b/x/tokenfactory/migrations/v2/migrate_test.go @@ -3,10 +3,10 @@ package v2_test import ( "testing" - "github.com/reecepbcups/tokenfactory/x/tokenfactory" - "github.com/reecepbcups/tokenfactory/x/tokenfactory/exported" - v2 "github.com/reecepbcups/tokenfactory/x/tokenfactory/migrations/v2" - "github.com/reecepbcups/tokenfactory/x/tokenfactory/types" + "github.com/strangelove-ventures/tokenfactory/x/tokenfactory" + "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/exported" + v2 "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/migrations/v2" + "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/types" "github.com/stretchr/testify/require" sdkstore "cosmossdk.io/store/types" diff --git a/x/tokenfactory/module.go b/x/tokenfactory/module.go index cc86475..5c0bd8d 100644 --- a/x/tokenfactory/module.go +++ b/x/tokenfactory/module.go @@ -15,12 +15,12 @@ import ( "github.com/gorilla/mux" "github.com/grpc-ecosystem/grpc-gateway/runtime" - "github.com/reecepbcups/tokenfactory/x/tokenfactory/client/cli" - "github.com/reecepbcups/tokenfactory/x/tokenfactory/exported" - "github.com/reecepbcups/tokenfactory/x/tokenfactory/keeper" - simulation "github.com/reecepbcups/tokenfactory/x/tokenfactory/simulation" - "github.com/reecepbcups/tokenfactory/x/tokenfactory/types" "github.com/spf13/cobra" + "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/client/cli" + "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/exported" + "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/keeper" + simulation "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/simulation" + "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/types" abci "github.com/cometbft/cometbft/abci/types" diff --git a/x/tokenfactory/simulation/genesis.go b/x/tokenfactory/simulation/genesis.go index e48cf7a..bccebb4 100644 --- a/x/tokenfactory/simulation/genesis.go +++ b/x/tokenfactory/simulation/genesis.go @@ -3,8 +3,8 @@ package simulation import ( "math/rand" - appparams "github.com/reecepbcups/tokenfactory/app/params" - "github.com/reecepbcups/tokenfactory/x/tokenfactory/types" + appparams "github.com/strangelove-ventures/tokenfactory/app/params" + "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/types" sdkmath "cosmossdk.io/math" diff --git a/x/tokenfactory/simulation/operations.go b/x/tokenfactory/simulation/operations.go index d826411..3bcb060 100644 --- a/x/tokenfactory/simulation/operations.go +++ b/x/tokenfactory/simulation/operations.go @@ -4,8 +4,8 @@ import ( "context" "math/rand" - appparams "github.com/reecepbcups/tokenfactory/app/params" - "github.com/reecepbcups/tokenfactory/x/tokenfactory/types" + appparams "github.com/strangelove-ventures/tokenfactory/app/params" + "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/types" sdkmath "cosmossdk.io/math" sdkstore "cosmossdk.io/store" diff --git a/x/tokenfactory/types/authorityMetadata.pb.go b/x/tokenfactory/types/authorityMetadata.pb.go index 699e01f..ca36be6 100644 --- a/x/tokenfactory/types/authorityMetadata.pb.go +++ b/x/tokenfactory/types/authorityMetadata.pb.go @@ -81,7 +81,7 @@ func init() { } var fileDescriptor_99435de88ae175f7 = []byte{ - // 229 bytes of a gzipped FileDescriptorProto + // 246 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x32, 0xc9, 0x2f, 0xce, 0xcd, 0x2f, 0xce, 0x2c, 0xd6, 0x2f, 0xc9, 0xcf, 0x4e, 0xcd, 0x4b, 0x4b, 0x4c, 0x2e, 0xc9, 0x2f, 0xaa, 0xd4, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, 0x4f, 0x2c, 0x2d, 0xc9, 0xc8, 0x2f, 0xca, @@ -91,12 +91,13 @@ var fileDescriptor_99435de88ae175f7 = []byte{ 0xa7, 0xc2, 0x2d, 0x48, 0xce, 0xcf, 0xcc, 0x83, 0xc8, 0x2b, 0xb9, 0x71, 0x89, 0xb9, 0xa4, 0xe6, 0xe5, 0xe7, 0x3a, 0xa2, 0xdb, 0x29, 0xa4, 0xc6, 0xc5, 0x9a, 0x98, 0x92, 0x9b, 0x99, 0x27, 0xc1, 0xa8, 0xc0, 0xa8, 0xc1, 0xe9, 0x24, 0xf0, 0xe9, 0x9e, 0x3c, 0x4f, 0x65, 0x62, 0x6e, 0x8e, 0x95, - 0x12, 0x58, 0x58, 0x29, 0x08, 0x22, 0x6d, 0xc5, 0xf2, 0x62, 0x81, 0x3c, 0xa3, 0x93, 0xef, 0x89, + 0x12, 0x58, 0x58, 0x29, 0x08, 0x22, 0x6d, 0xc5, 0xf2, 0x62, 0x81, 0x3c, 0xa3, 0x53, 0xf4, 0x89, 0x47, 0x72, 0x8c, 0x17, 0x1e, 0xc9, 0x31, 0x3e, 0x78, 0x24, 0xc7, 0x38, 0xe1, 0xb1, 0x1c, 0xc3, - 0x85, 0xc7, 0x72, 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x44, 0x19, 0xa7, 0x67, 0x96, 0x64, 0x94, 0x26, - 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0x43, 0x1d, 0x83, 0xe2, 0xeb, 0x0a, 0x54, 0x6e, 0x49, 0x65, 0x41, - 0x6a, 0x71, 0x12, 0x1b, 0xd8, 0x75, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, 0xff, 0xef, 0x93, 0xa0, - 0x6b, 0x29, 0x01, 0x00, 0x00, + 0x85, 0xc7, 0x72, 0x0c, 0x37, 0x1e, 0xcb, 0x31, 0x44, 0x39, 0xa6, 0x67, 0x96, 0x64, 0x94, 0x26, + 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0x17, 0x97, 0x14, 0x25, 0xe6, 0xa5, 0xa7, 0xe6, 0xe4, 0x97, 0xa5, + 0xea, 0x96, 0xa5, 0xe6, 0x95, 0x94, 0x16, 0xa5, 0xa2, 0x85, 0x41, 0x05, 0x2a, 0xb7, 0xa4, 0xb2, + 0x20, 0xb5, 0x38, 0x89, 0x0d, 0xec, 0x56, 0x63, 0x40, 0x00, 0x00, 0x00, 0xff, 0xff, 0x19, 0x2c, + 0xcb, 0x18, 0x37, 0x01, 0x00, 0x00, } func (this *DenomAuthorityMetadata) Equal(that interface{}) bool { diff --git a/x/tokenfactory/types/denoms_test.go b/x/tokenfactory/types/denoms_test.go index 56d956d..1e54094 100644 --- a/x/tokenfactory/types/denoms_test.go +++ b/x/tokenfactory/types/denoms_test.go @@ -3,7 +3,7 @@ package types_test import ( "testing" - "github.com/reecepbcups/tokenfactory/x/tokenfactory/types" + "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/types" "github.com/stretchr/testify/require" ) diff --git a/x/tokenfactory/types/genesis.pb.go b/x/tokenfactory/types/genesis.pb.go index a2a2175..26b7374 100644 --- a/x/tokenfactory/types/genesis.pb.go +++ b/x/tokenfactory/types/genesis.pb.go @@ -142,7 +142,7 @@ func init() { } var fileDescriptor_5749c3f71850298b = []byte{ - // 356 bytes of a gzipped FileDescriptorProto + // 372 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0xca, 0x2f, 0xce, 0xcd, 0x2f, 0xce, 0x2c, 0xd6, 0x2f, 0xc9, 0xcf, 0x4e, 0xcd, 0x4b, 0x4b, 0x4c, 0x2e, 0xc9, 0x2f, 0xaa, 0xd4, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, @@ -160,12 +160,13 @@ var fileDescriptor_5749c3f71850298b = []byte{ 0xe0, 0xd3, 0x3d, 0x79, 0x1e, 0x88, 0x49, 0x60, 0x61, 0xa5, 0x20, 0x88, 0xb4, 0x50, 0x1b, 0x23, 0x97, 0x10, 0x3c, 0x18, 0xe3, 0x73, 0xa1, 0xe1, 0x28, 0xc1, 0x04, 0xf6, 0xbb, 0x09, 0x7e, 0xf7, 0x82, 0x6d, 0x72, 0x44, 0x8f, 0x03, 0x27, 0x45, 0xa8, 0xcb, 0x25, 0x21, 0xf6, 0x61, 0x9a, 0xae, - 0x14, 0x24, 0x88, 0x11, 0x73, 0x56, 0x2c, 0x2f, 0x16, 0xc8, 0x33, 0x3a, 0xf9, 0x9e, 0x78, 0x24, + 0x14, 0x24, 0x88, 0x11, 0x73, 0x56, 0x2c, 0x2f, 0x16, 0xc8, 0x33, 0x3a, 0x45, 0x9f, 0x78, 0x24, 0xc7, 0x78, 0xe1, 0x91, 0x1c, 0xe3, 0x83, 0x47, 0x72, 0x8c, 0x13, 0x1e, 0xcb, 0x31, 0x5c, 0x78, - 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x71, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, - 0x72, 0x7e, 0xae, 0x7e, 0x32, 0xd8, 0x59, 0xa8, 0xb1, 0x5b, 0x81, 0xca, 0x2d, 0xa9, 0x2c, 0x48, - 0x2d, 0x4e, 0x62, 0x03, 0x47, 0xb2, 0x31, 0x20, 0x00, 0x00, 0xff, 0xff, 0xfb, 0x7d, 0x5a, 0x33, - 0xa7, 0x02, 0x00, 0x00, + 0x2c, 0xc7, 0x70, 0xe3, 0xb1, 0x1c, 0x43, 0x94, 0x63, 0x7a, 0x66, 0x49, 0x46, 0x69, 0x92, 0x5e, + 0x72, 0x7e, 0xae, 0x7e, 0x71, 0x49, 0x51, 0x62, 0x5e, 0x7a, 0x6a, 0x4e, 0x7e, 0x59, 0xaa, 0x6e, + 0x59, 0x6a, 0x5e, 0x49, 0x69, 0x51, 0x2a, 0x5a, 0x5c, 0x57, 0xa0, 0x72, 0x4b, 0x2a, 0x0b, 0x52, + 0x8b, 0x93, 0xd8, 0xc0, 0x51, 0x6e, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x83, 0x56, 0x6d, 0x5f, + 0xb5, 0x02, 0x00, 0x00, } func (this *GenesisDenom) Equal(that interface{}) bool { diff --git a/x/tokenfactory/types/genesis_test.go b/x/tokenfactory/types/genesis_test.go index 4344f08..b5cb8de 100644 --- a/x/tokenfactory/types/genesis_test.go +++ b/x/tokenfactory/types/genesis_test.go @@ -3,7 +3,7 @@ package types_test import ( "testing" - "github.com/reecepbcups/tokenfactory/x/tokenfactory/types" + "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/types" "github.com/stretchr/testify/require" ) diff --git a/x/tokenfactory/types/msgs_test.go b/x/tokenfactory/types/msgs_test.go index 18c1faf..7582f79 100644 --- a/x/tokenfactory/types/msgs_test.go +++ b/x/tokenfactory/types/msgs_test.go @@ -4,8 +4,8 @@ import ( fmt "fmt" "testing" - "github.com/reecepbcups/tokenfactory/x/tokenfactory/testhelpers" - "github.com/reecepbcups/tokenfactory/x/tokenfactory/types" + "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/testhelpers" + "github.com/strangelove-ventures/tokenfactory/x/tokenfactory/types" "github.com/stretchr/testify/require" "github.com/cometbft/cometbft/crypto/ed25519" diff --git a/x/tokenfactory/types/params.pb.go b/x/tokenfactory/types/params.pb.go index 4f36c31..06530bc 100644 --- a/x/tokenfactory/types/params.pb.go +++ b/x/tokenfactory/types/params.pb.go @@ -91,29 +91,30 @@ func init() { } var fileDescriptor_cc8299d306f3ff47 = []byte{ - // 341 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x91, 0xb1, 0x4e, 0xc2, 0x40, - 0x18, 0xc7, 0x7b, 0x68, 0x18, 0xea, 0x62, 0x1a, 0x13, 0x81, 0x98, 0x2b, 0x76, 0x82, 0xc1, 0x36, - 0x88, 0x93, 0x23, 0x24, 0x3a, 0x91, 0x18, 0x46, 0x97, 0xe6, 0x6b, 0x39, 0x4a, 0x83, 0xed, 0x47, - 0x7a, 0x87, 0xb1, 0x8f, 0xe0, 0xe6, 0xe4, 0x43, 0xf8, 0x24, 0x8c, 0x8c, 0x4e, 0xd5, 0xc0, 0x1b, - 0xf0, 0x04, 0x86, 0xbb, 0xd3, 0x50, 0x31, 0x4e, 0xed, 0x97, 0xff, 0xff, 0xff, 0xbb, 0xff, 0x77, - 0x67, 0xb6, 0x91, 0x27, 0xc8, 0x63, 0xee, 0x09, 0x9c, 0xb2, 0x74, 0x0c, 0xa1, 0xc0, 0x2c, 0xf7, - 0x1e, 0x3b, 0x01, 0x13, 0xd0, 0xf1, 0x66, 0x90, 0x41, 0xc2, 0xdd, 0x59, 0x86, 0x02, 0xad, 0x33, - 0x6d, 0x75, 0x77, 0xad, 0xae, 0xb6, 0x36, 0x4e, 0x22, 0x8c, 0x50, 0x1a, 0xbd, 0xed, 0x9f, 0xca, - 0x34, 0xae, 0xfe, 0xc5, 0xc3, 0x5c, 0x4c, 0x30, 0x8b, 0x45, 0x3e, 0x60, 0x02, 0x46, 0x20, 0x40, - 0xa7, 0xea, 0xa1, 0x8c, 0xf9, 0x0a, 0xa7, 0x06, 0x2d, 0x51, 0x35, 0x79, 0x01, 0x70, 0xf6, 0xc3, - 0x09, 0x31, 0x4e, 0x95, 0xee, 0x3c, 0x57, 0xcc, 0xea, 0x9d, 0x6c, 0x6d, 0xbd, 0x12, 0xd3, 0x1a, - 0xb1, 0x14, 0x13, 0x3f, 0xcc, 0x18, 0x88, 0x18, 0x53, 0x7f, 0xcc, 0x58, 0x8d, 0x34, 0x0f, 0x5a, - 0x47, 0x97, 0x75, 0x57, 0x63, 0xb7, 0xa0, 0xef, 0x25, 0xdc, 0x3e, 0xc6, 0x69, 0x6f, 0xb0, 0x28, - 0x6c, 0x63, 0x53, 0xd8, 0xf5, 0x1c, 0x92, 0x87, 0x6b, 0x67, 0x1f, 0xe1, 0xbc, 0x7d, 0xd8, 0xad, - 0x28, 0x16, 0x93, 0x79, 0xe0, 0x86, 0x98, 0xe8, 0x82, 0xfa, 0x73, 0xc1, 0x47, 0x53, 0x4f, 0xe4, - 0x33, 0xc6, 0x25, 0x8d, 0x0f, 0x8f, 0x25, 0xa0, 0xaf, 0xf3, 0x37, 0x8c, 0x59, 0x63, 0xb3, 0xf1, - 0x0b, 0x1a, 0x01, 0xf7, 0x43, 0x4c, 0xf9, 0x3c, 0x61, 0xb5, 0x4a, 0x93, 0xb4, 0x0e, 0x7b, 0xed, - 0x45, 0x61, 0x93, 0x4d, 0x61, 0x9f, 0xff, 0x59, 0x62, 0xc7, 0xef, 0x0c, 0x4f, 0x4b, 0x07, 0xdc, - 0x02, 0xef, 0x2b, 0xa5, 0x37, 0x58, 0xac, 0x28, 0x59, 0xae, 0x28, 0xf9, 0x5c, 0x51, 0xf2, 0xb2, - 0xa6, 0xc6, 0x72, 0x4d, 0x8d, 0xf7, 0x35, 0x35, 0xee, 0xbb, 0xfb, 0xed, 0x4b, 0x0f, 0xf4, 0x54, - 0x1e, 0xe5, 0x3a, 0x41, 0x55, 0xde, 0x70, 0xf7, 0x2b, 0x00, 0x00, 0xff, 0xff, 0x32, 0x2d, 0xe6, - 0xd9, 0x33, 0x02, 0x00, 0x00, + // 355 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x7c, 0x91, 0xb1, 0x4e, 0xc2, 0x50, + 0x14, 0x86, 0x5b, 0x34, 0x0c, 0x75, 0x31, 0x8d, 0x89, 0x40, 0x4c, 0x8b, 0x9d, 0x60, 0xa0, 0x0d, + 0xea, 0xe4, 0x26, 0x24, 0x3a, 0x91, 0x18, 0x46, 0x1d, 0x9a, 0xd3, 0x72, 0x28, 0x0d, 0xf4, 0x1e, + 0xd2, 0x7b, 0x4b, 0xec, 0x23, 0xb8, 0x39, 0xf9, 0x10, 0x3e, 0x09, 0x23, 0xa3, 0x53, 0x35, 0xf0, + 0x06, 0x3c, 0x81, 0xa1, 0xbd, 0x1a, 0x40, 0xe3, 0xd4, 0x9e, 0xfc, 0xff, 0xff, 0xdd, 0xff, 0xdc, + 0xab, 0x35, 0x89, 0x47, 0xc4, 0x43, 0xee, 0x08, 0x1a, 0x23, 0x1b, 0x82, 0x2f, 0x28, 0x4e, 0x9d, + 0x59, 0xdb, 0x43, 0x01, 0x6d, 0x67, 0x0a, 0x31, 0x44, 0xdc, 0x9e, 0xc6, 0x24, 0x48, 0x3f, 0x93, + 0x56, 0x7b, 0xdb, 0x6a, 0x4b, 0x6b, 0xed, 0x24, 0xa0, 0x80, 0x72, 0xa3, 0xb3, 0xf9, 0x2b, 0x32, + 0xb5, 0xab, 0x7f, 0xf1, 0x90, 0x88, 0x11, 0xc5, 0xa1, 0x48, 0x7b, 0x28, 0x60, 0x00, 0x02, 0x64, + 0xaa, 0xea, 0xe7, 0x31, 0xb7, 0xc0, 0x15, 0x83, 0x94, 0x8c, 0x62, 0x72, 0x3c, 0xe0, 0xf8, 0xc3, + 0xf1, 0x29, 0x64, 0x85, 0x6e, 0x3d, 0x97, 0xb4, 0xf2, 0x7d, 0xde, 0x5a, 0x7f, 0x55, 0x35, 0x7d, + 0x80, 0x8c, 0x22, 0xd7, 0x8f, 0x11, 0x44, 0x48, 0xcc, 0x1d, 0x22, 0x56, 0xd4, 0xfa, 0x41, 0xe3, + 0xe8, 0xa2, 0x6a, 0x4b, 0xec, 0x06, 0xf4, 0xbd, 0x84, 0xdd, 0xa5, 0x90, 0x75, 0x7a, 0xf3, 0xcc, + 0x54, 0xd6, 0x99, 0x59, 0x4d, 0x21, 0x9a, 0x5c, 0x5b, 0xbf, 0x11, 0xd6, 0xdb, 0x87, 0xd9, 0x08, + 0x42, 0x31, 0x4a, 0x3c, 0xdb, 0xa7, 0x48, 0x16, 0x94, 0x9f, 0x16, 0x1f, 0x8c, 0x1d, 0x91, 0x4e, + 0x91, 0xe7, 0x34, 0xde, 0x3f, 0xce, 0x01, 0x5d, 0x99, 0xbf, 0x45, 0xd4, 0x87, 0x5a, 0x6d, 0x0f, + 0x1a, 0x00, 0x77, 0x7d, 0x62, 0x3c, 0x89, 0xb0, 0x52, 0xaa, 0xab, 0x8d, 0xc3, 0x4e, 0x73, 0x9e, + 0x99, 0xea, 0x3a, 0x33, 0xcf, 0xff, 0x2c, 0xb1, 0xe5, 0xb7, 0xfa, 0xa7, 0x3b, 0x07, 0xdc, 0x01, + 0xef, 0x16, 0x4a, 0xe7, 0x71, 0xbe, 0x34, 0xd4, 0xc5, 0xd2, 0x50, 0x3f, 0x97, 0x86, 0xfa, 0xb2, + 0x32, 0x94, 0xc5, 0xca, 0x50, 0xde, 0x57, 0x86, 0xf2, 0x70, 0xb3, 0xd5, 0x9e, 0x8b, 0x18, 0x58, + 0x80, 0x13, 0x9a, 0x61, 0x6b, 0x86, 0x4c, 0x24, 0x31, 0xee, 0x3d, 0xd7, 0xd3, 0xee, 0x98, 0x2f, + 0xe7, 0x95, 0xf3, 0xfb, 0xbe, 0xfc, 0x0a, 0x00, 0x00, 0xff, 0xff, 0xe7, 0x69, 0x05, 0x8e, 0x41, + 0x02, 0x00, 0x00, } func (m *Params) Marshal() (dAtA []byte, err error) { diff --git a/x/tokenfactory/types/query.pb.go b/x/tokenfactory/types/query.pb.go index 37daf0a..b29db79 100644 --- a/x/tokenfactory/types/query.pb.go +++ b/x/tokenfactory/types/query.pb.go @@ -311,43 +311,44 @@ func init() { } var fileDescriptor_6f22013ad0f72e3f = []byte{ - // 566 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x54, 0x4d, 0x6f, 0x13, 0x31, - 0x10, 0x8d, 0xa1, 0x0d, 0xaa, 0xf9, 0x10, 0x31, 0x15, 0x82, 0xa8, 0x6c, 0xc0, 0x54, 0x55, 0x8a, - 0xaa, 0x35, 0x69, 0x7b, 0xa2, 0x20, 0xc8, 0x16, 0xc1, 0x01, 0x22, 0xc1, 0xde, 0xe0, 0x12, 0x39, - 0xa9, 0xbb, 0x5d, 0xd1, 0x5d, 0x6f, 0xd7, 0x0e, 0x22, 0xaa, 0x7a, 0xe1, 0xc0, 0x19, 0x89, 0x23, - 0xff, 0x81, 0xdf, 0xd1, 0x63, 0xa5, 0x5e, 0x38, 0x45, 0x28, 0xa9, 0xf8, 0x01, 0xf9, 0x05, 0x28, - 0xf6, 0xb4, 0x34, 0x24, 0xac, 0x02, 0x3d, 0x65, 0x63, 0xbf, 0xf7, 0xe6, 0xbd, 0x99, 0x91, 0x71, - 0x59, 0xaa, 0x48, 0xaa, 0x50, 0x31, 0x2d, 0xdf, 0x89, 0x78, 0x93, 0x37, 0xb5, 0x4c, 0xdb, 0xec, - 0x7d, 0xa5, 0x21, 0x34, 0xaf, 0xb0, 0x9d, 0x96, 0x48, 0xdb, 0x6e, 0x92, 0x4a, 0x2d, 0xc9, 0x1c, - 0x20, 0xdd, 0xd3, 0x48, 0x17, 0x90, 0xc5, 0xd9, 0x40, 0x06, 0xd2, 0x00, 0xd9, 0xe0, 0xcb, 0x72, - 0x8a, 0x73, 0x81, 0x94, 0xc1, 0xb6, 0x60, 0x3c, 0x09, 0x19, 0x8f, 0x63, 0xa9, 0xb9, 0x0e, 0x65, - 0xac, 0xe0, 0xf6, 0x5e, 0xd3, 0x48, 0xb2, 0x06, 0x57, 0xc2, 0x96, 0x3a, 0x29, 0x9c, 0xf0, 0x20, - 0x8c, 0x0d, 0x18, 0xb0, 0xab, 0x99, 0x3e, 0x79, 0x4b, 0x6f, 0xc9, 0x34, 0xd4, 0xed, 0x9a, 0xd0, - 0x7c, 0x83, 0x6b, 0x0e, 0xac, 0xc5, 0x4c, 0x56, 0xc2, 0x53, 0x1e, 0x81, 0x19, 0x3a, 0x8b, 0xc9, - 0xeb, 0x81, 0x85, 0x57, 0xe6, 0xd0, 0x17, 0x3b, 0x2d, 0xa1, 0x34, 0x7d, 0x83, 0xaf, 0x0d, 0x9d, - 0xaa, 0x44, 0xc6, 0x4a, 0x10, 0x0f, 0xe7, 0x2d, 0xf9, 0x06, 0xba, 0x8d, 0xca, 0x17, 0x97, 0xe7, - 0xdd, 0xac, 0xe6, 0xb8, 0x96, 0xed, 0x4d, 0xed, 0x77, 0x4a, 0x39, 0x1f, 0x98, 0xf4, 0x25, 0xa6, - 0x46, 0xfa, 0xa9, 0x88, 0x65, 0x54, 0xfd, 0x33, 0x00, 0x18, 0x20, 0x0b, 0x78, 0x7a, 0x63, 0x00, - 0x30, 0x85, 0x66, 0xbc, 0xab, 0xfd, 0x4e, 0xe9, 0x52, 0x9b, 0x47, 0xdb, 0x0f, 0xa8, 0x39, 0xa6, - 0xbe, 0xbd, 0xa6, 0xdf, 0x10, 0xbe, 0x9b, 0x29, 0x07, 0xce, 0x3f, 0x21, 0x4c, 0x4e, 0xba, 0x55, - 0x8f, 0xe0, 0x1a, 0x62, 0xac, 0x66, 0xc7, 0x18, 0x2f, 0xed, 0xdd, 0x19, 0xc4, 0xea, 0x77, 0x4a, - 0x37, 0xad, 0xaf, 0x51, 0x75, 0xea, 0x17, 0x46, 0x06, 0x44, 0x6b, 0xf8, 0xd6, 0x6f, 0xbf, 0xea, - 0x59, 0x2a, 0xa3, 0xf5, 0x54, 0x70, 0x2d, 0xd3, 0xe3, 0xe4, 0x4b, 0xf8, 0x42, 0xd3, 0x9e, 0x40, - 0x76, 0xd2, 0xef, 0x94, 0xae, 0xd8, 0x1a, 0x70, 0x41, 0xfd, 0x63, 0x08, 0x7d, 0x81, 0x9d, 0xbf, - 0xc9, 0x41, 0xf2, 0x45, 0x9c, 0x37, 0xad, 0x1a, 0xcc, 0xec, 0x7c, 0x79, 0xc6, 0x2b, 0xf4, 0x3b, - 0xa5, 0xcb, 0xa7, 0x5a, 0xa9, 0xa8, 0x0f, 0x80, 0xe5, 0xa3, 0x29, 0x3c, 0x6d, 0xd4, 0xc8, 0x57, - 0x84, 0xf3, 0x76, 0x7a, 0xe4, 0x7e, 0x76, 0x73, 0x46, 0x97, 0xa7, 0x58, 0xf9, 0x07, 0x86, 0x35, - 0x49, 0x97, 0x3e, 0x1e, 0x1e, 0x7d, 0x39, 0xb7, 0x40, 0xe6, 0xd9, 0x04, 0x9b, 0x4b, 0x7e, 0x22, - 0x7c, 0x7d, 0xfc, 0x50, 0xc8, 0x93, 0x09, 0x6a, 0x67, 0x6e, 0x5e, 0xb1, 0x7a, 0x06, 0x05, 0x48, - 0xf3, 0xdc, 0xa4, 0xa9, 0x92, 0xc7, 0xd9, 0x69, 0x6c, 0xd7, 0xd9, 0xae, 0xf9, 0xdd, 0x63, 0xa3, - 0x0b, 0x44, 0x0e, 0x11, 0x2e, 0x8c, 0x4c, 0x96, 0xac, 0x4d, 0xea, 0x70, 0xcc, 0x7a, 0x15, 0x1f, - 0xfe, 0x1f, 0x19, 0x92, 0xad, 0x9b, 0x64, 0x8f, 0xc8, 0xda, 0x24, 0xc9, 0xea, 0x9b, 0xa9, 0x8c, - 0xea, 0xb0, 0xa9, 0x6c, 0x17, 0x3e, 0xf6, 0xbc, 0xda, 0x7e, 0xd7, 0x41, 0x07, 0x5d, 0x07, 0xfd, - 0xe8, 0x3a, 0xe8, 0x73, 0xcf, 0xc9, 0x1d, 0xf4, 0x9c, 0xdc, 0xf7, 0x9e, 0x93, 0x7b, 0xbb, 0x12, - 0x84, 0x7a, 0xab, 0xd5, 0x70, 0x9b, 0x32, 0x62, 0xf0, 0x48, 0x0e, 0xe9, 0x7f, 0x18, 0xfe, 0xab, - 0xdb, 0x89, 0x50, 0x8d, 0xbc, 0x79, 0xc8, 0x56, 0x7e, 0x05, 0x00, 0x00, 0xff, 0xff, 0x82, 0xe2, - 0xad, 0x37, 0xd3, 0x05, 0x00, 0x00, + // 578 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xa4, 0x54, 0xcf, 0x4f, 0x13, 0x41, + 0x14, 0xee, 0x2a, 0xd4, 0x30, 0xfe, 0x88, 0x8c, 0xc4, 0x68, 0x83, 0x5b, 0x1d, 0x09, 0x29, 0x06, + 0x77, 0x2c, 0x72, 0x12, 0x8d, 0x76, 0x31, 0x7a, 0x50, 0x12, 0xdd, 0x9b, 0x7a, 0x68, 0xa6, 0x65, + 0x58, 0x36, 0x76, 0xf7, 0x2d, 0x33, 0xd3, 0xc6, 0x86, 0x70, 0xf1, 0xe0, 0xd9, 0xc4, 0xa3, 0xff, + 0x83, 0x7f, 0x07, 0x47, 0x12, 0x2e, 0x9e, 0x1a, 0xd3, 0x12, 0xff, 0x80, 0xfe, 0x05, 0xa6, 0x33, + 0x03, 0x02, 0xad, 0x9b, 0xaa, 0xa7, 0x4e, 0x67, 0xbe, 0xef, 0x7b, 0xdf, 0xf7, 0xde, 0xcb, 0xa2, + 0x12, 0xc8, 0x18, 0x64, 0x24, 0xa9, 0x82, 0xf7, 0x3c, 0xd9, 0x60, 0x75, 0x05, 0xa2, 0x4d, 0x5b, + 0xe5, 0x1a, 0x57, 0xac, 0x4c, 0xb7, 0x9a, 0x5c, 0xb4, 0xbd, 0x54, 0x80, 0x02, 0x3c, 0x6b, 0x91, + 0xde, 0x71, 0xa4, 0x67, 0x91, 0x85, 0x99, 0x10, 0x42, 0xd0, 0x40, 0x3a, 0x38, 0x19, 0x4e, 0x61, + 0x36, 0x04, 0x08, 0x1b, 0x9c, 0xb2, 0x34, 0xa2, 0x2c, 0x49, 0x40, 0x31, 0x15, 0x41, 0x22, 0xed, + 0xeb, 0x9d, 0xba, 0x96, 0xa4, 0x35, 0x26, 0xb9, 0x29, 0x75, 0x54, 0x38, 0x65, 0x61, 0x94, 0x68, + 0xb0, 0xc5, 0x2e, 0x67, 0xfa, 0x64, 0x4d, 0xb5, 0x09, 0x22, 0x52, 0xed, 0x35, 0xae, 0xd8, 0x3a, + 0x53, 0xcc, 0xb2, 0x16, 0x32, 0x59, 0x29, 0x13, 0x2c, 0xb6, 0x66, 0xc8, 0x0c, 0xc2, 0xaf, 0x07, + 0x16, 0x5e, 0xe9, 0xcb, 0x80, 0x6f, 0x35, 0xb9, 0x54, 0xe4, 0x0d, 0xba, 0x72, 0xe2, 0x56, 0xa6, + 0x90, 0x48, 0x8e, 0x7d, 0x94, 0x37, 0xe4, 0x6b, 0xce, 0x4d, 0xa7, 0x74, 0x7e, 0x69, 0xce, 0xcb, + 0x6a, 0x8e, 0x67, 0xd8, 0xfe, 0xc4, 0x6e, 0xa7, 0x98, 0x0b, 0x2c, 0x93, 0xbc, 0x44, 0x44, 0x4b, + 0x3f, 0xe5, 0x09, 0xc4, 0x95, 0xd3, 0x01, 0xac, 0x01, 0x3c, 0x8f, 0x26, 0xd7, 0x07, 0x00, 0x5d, + 0x68, 0xca, 0xbf, 0xdc, 0xef, 0x14, 0x2f, 0xb4, 0x59, 0xdc, 0x78, 0x40, 0xf4, 0x35, 0x09, 0xcc, + 0x33, 0xf9, 0xe6, 0xa0, 0xdb, 0x99, 0x72, 0xd6, 0xf9, 0x27, 0x07, 0xe1, 0xa3, 0x6e, 0x55, 0x63, + 0xfb, 0x6c, 0x63, 0x2c, 0x67, 0xc7, 0x18, 0x2d, 0xed, 0xdf, 0x1a, 0xc4, 0xea, 0x77, 0x8a, 0xd7, + 0x8d, 0xaf, 0x61, 0x75, 0x12, 0x4c, 0x0f, 0x0d, 0x88, 0xac, 0xa1, 0x1b, 0xbf, 0xfd, 0xca, 0x67, + 0x02, 0xe2, 0x55, 0xc1, 0x99, 0x02, 0x71, 0x98, 0x7c, 0x11, 0x9d, 0xab, 0x9b, 0x1b, 0x9b, 0x1d, + 0xf7, 0x3b, 0xc5, 0x4b, 0xa6, 0x86, 0x7d, 0x20, 0xc1, 0x21, 0x84, 0xbc, 0x40, 0xee, 0x9f, 0xe4, + 0x6c, 0xf2, 0x05, 0x94, 0xd7, 0xad, 0x1a, 0xcc, 0xec, 0x6c, 0x69, 0xca, 0x9f, 0xee, 0x77, 0x8a, + 0x17, 0x8f, 0xb5, 0x52, 0x92, 0xc0, 0x02, 0x96, 0x0e, 0x26, 0xd0, 0xa4, 0x56, 0xc3, 0x5f, 0x1d, + 0x94, 0x37, 0xd3, 0xc3, 0xf7, 0xb2, 0x9b, 0x33, 0xbc, 0x3c, 0x85, 0xf2, 0x5f, 0x30, 0x8c, 0x49, + 0xb2, 0xf8, 0x71, 0xff, 0xe0, 0xcb, 0x99, 0x79, 0x3c, 0x47, 0xc7, 0xd8, 0x5c, 0xfc, 0xd3, 0x41, + 0x57, 0x47, 0x0f, 0x05, 0x3f, 0x19, 0xa3, 0x76, 0xe6, 0xe6, 0x15, 0x2a, 0xff, 0xa1, 0x60, 0xd3, + 0x3c, 0xd7, 0x69, 0x2a, 0xf8, 0x71, 0x76, 0x1a, 0xd3, 0x75, 0xba, 0xad, 0x7f, 0x77, 0xe8, 0xf0, + 0x02, 0xe1, 0x7d, 0x07, 0x4d, 0x0f, 0x4d, 0x16, 0xaf, 0x8c, 0xeb, 0x70, 0xc4, 0x7a, 0x15, 0x1e, + 0xfe, 0x1b, 0xd9, 0x26, 0x5b, 0xd5, 0xc9, 0x1e, 0xe1, 0x95, 0x71, 0x92, 0x55, 0x37, 0x04, 0xc4, + 0x55, 0xbb, 0xa9, 0x74, 0xdb, 0x1e, 0x76, 0xfc, 0x77, 0xbb, 0x5d, 0xd7, 0xd9, 0xeb, 0xba, 0xce, + 0x8f, 0xae, 0xeb, 0x7c, 0xee, 0xb9, 0xb9, 0xbd, 0x9e, 0x9b, 0xfb, 0xde, 0x73, 0x73, 0x6f, 0x2b, + 0x61, 0xa4, 0x36, 0x9b, 0x35, 0xaf, 0x0e, 0x31, 0x95, 0x4a, 0xb0, 0x24, 0xe4, 0x0d, 0x68, 0xf1, + 0xbb, 0x2d, 0x9e, 0xa8, 0xa6, 0xe0, 0xa7, 0xaa, 0x7d, 0x38, 0xf9, 0x57, 0xb5, 0x53, 0x2e, 0x6b, + 0x79, 0xfd, 0x59, 0xbb, 0xff, 0x2b, 0x00, 0x00, 0xff, 0xff, 0x67, 0x38, 0x85, 0xa8, 0xe1, 0x05, + 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/tokenfactory/types/tx.pb.go b/x/tokenfactory/types/tx.pb.go index 2372d3b..c32714b 100644 --- a/x/tokenfactory/types/tx.pb.go +++ b/x/tokenfactory/types/tx.pb.go @@ -753,63 +753,63 @@ func init() { } var fileDescriptor_283b6c9a90a846b4 = []byte{ - // 884 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x56, 0x4d, 0x6e, 0xdb, 0x46, - 0x14, 0x16, 0x13, 0x47, 0xb5, 0xc7, 0x51, 0x24, 0xd3, 0x6e, 0x2c, 0xb3, 0x0e, 0x19, 0x10, 0x4d, - 0xd1, 0x04, 0x0d, 0x05, 0x25, 0x6d, 0x80, 0x7a, 0xd5, 0x30, 0x85, 0xd1, 0x45, 0x09, 0x14, 0x8c, - 0xbb, 0x29, 0x02, 0x08, 0x23, 0x69, 0x4c, 0x13, 0x2e, 0x67, 0x54, 0xce, 0x28, 0x8a, 0x76, 0x41, - 0x4f, 0xd0, 0x0b, 0x14, 0x68, 0xd1, 0x0b, 0x64, 0x51, 0xf4, 0x0c, 0xde, 0x14, 0x30, 0xda, 0x4d, - 0x57, 0x44, 0x61, 0x2f, 0xbc, 0xe7, 0x09, 0x02, 0xce, 0x0c, 0x7f, 0x65, 0x58, 0xd2, 0xca, 0x2b, - 0x89, 0x7c, 0xdf, 0xf7, 0xcd, 0xfb, 0xde, 0xbc, 0x79, 0x43, 0xf0, 0x80, 0xd0, 0x80, 0x50, 0x9f, - 0x76, 0x18, 0x39, 0x46, 0xf8, 0x10, 0x0e, 0x18, 0x09, 0xa7, 0x9d, 0xd7, 0xdd, 0x3e, 0x62, 0xb0, - 0xdb, 0x61, 0x6f, 0xac, 0x51, 0x48, 0x18, 0x51, 0x77, 0x25, 0xcc, 0x2a, 0xc2, 0x2c, 0x09, 0xd3, - 0xb6, 0x3c, 0xe2, 0x11, 0x0e, 0xec, 0x24, 0xff, 0x04, 0x47, 0xd3, 0x07, 0x9c, 0xd4, 0xe9, 0x43, - 0x8a, 0x32, 0xc5, 0x01, 0xf1, 0xf1, 0x4c, 0x1c, 0x1f, 0x67, 0xf1, 0xe4, 0x41, 0xc6, 0x1f, 0x5e, - 0x99, 0xda, 0x08, 0x86, 0x30, 0xa0, 0x12, 0xba, 0x2d, 0xa5, 0x02, 0xea, 0x75, 0x5e, 0x77, 0x93, - 0x1f, 0x19, 0xd8, 0x11, 0x81, 0x9e, 0x48, 0x4e, 0x3c, 0x88, 0x90, 0x39, 0x05, 0x77, 0x1c, 0xea, - 0xbd, 0x08, 0x11, 0x64, 0xe8, 0x6b, 0x84, 0x49, 0xa0, 0x3e, 0x04, 0x75, 0x8a, 0xf0, 0x10, 0x85, - 0x6d, 0xe5, 0xbe, 0xf2, 0xe9, 0x9a, 0xbd, 0x11, 0x47, 0x46, 0x63, 0x0a, 0x83, 0x1f, 0xf7, 0x4c, - 0xf1, 0xde, 0x74, 0x25, 0x40, 0xed, 0x80, 0x55, 0x3a, 0xee, 0x0f, 0x13, 0x5a, 0xfb, 0x06, 0x07, - 0x6f, 0xc6, 0x91, 0xd1, 0x94, 0x60, 0x19, 0x31, 0xdd, 0x0c, 0xb4, 0xb7, 0xfe, 0xf3, 0xc5, 0xbb, - 0x47, 0x92, 0x6d, 0xbe, 0x02, 0x77, 0xcb, 0x4b, 0xbb, 0x88, 0x8e, 0x08, 0xa6, 0x48, 0xb5, 0x41, - 0x13, 0xa3, 0x49, 0x8f, 0x3b, 0xee, 0x09, 0x79, 0x91, 0x8b, 0x16, 0x47, 0xc6, 0x5d, 0x21, 0x5f, - 0x01, 0x98, 0x6e, 0x03, 0xa3, 0xc9, 0x41, 0xf2, 0x82, 0x6b, 0x99, 0x7f, 0x2b, 0xe0, 0x03, 0x87, - 0x7a, 0x8e, 0x8f, 0xd9, 0x32, 0x96, 0xbe, 0x01, 0x75, 0x18, 0x90, 0x31, 0x66, 0xdc, 0xd0, 0xfa, - 0x93, 0x1d, 0x4b, 0x96, 0x2b, 0xd9, 0xbf, 0x74, 0xab, 0xad, 0x17, 0xc4, 0xc7, 0xf6, 0x87, 0x27, - 0x91, 0x51, 0xcb, 0x95, 0x04, 0xcd, 0x74, 0x25, 0x5f, 0xfd, 0x0a, 0x34, 0x02, 0x1f, 0xb3, 0x03, - 0xf2, 0x7c, 0x38, 0x0c, 0x11, 0xa5, 0xed, 0x9b, 0x55, 0x0b, 0x49, 0xb8, 0xc7, 0x48, 0x0f, 0x0a, - 0x80, 0xe9, 0x96, 0x09, 0xe5, 0x6a, 0x6d, 0x80, 0xa6, 0xb4, 0x93, 0x96, 0xc9, 0xfc, 0x57, 0x58, - 0xb4, 0xc7, 0x21, 0xbe, 0x1e, 0x8b, 0xfb, 0xa0, 0xd9, 0x1f, 0x87, 0x78, 0x3f, 0x24, 0x41, 0xd9, - 0xe4, 0x6e, 0x1c, 0x19, 0x6d, 0xc1, 0x49, 0x00, 0xbd, 0xc3, 0x90, 0x04, 0xb9, 0xcd, 0x2a, 0xe9, - 0x32, 0xa3, 0x89, 0xa9, 0xcc, 0xe8, 0x1f, 0x8a, 0xe8, 0xd2, 0x23, 0x88, 0x3d, 0xf4, 0x7c, 0x18, - 0xf8, 0x4b, 0xf9, 0xfd, 0x04, 0xdc, 0x2a, 0xb6, 0x68, 0x2b, 0x8e, 0x8c, 0xdb, 0x02, 0x29, 0x3b, - 0x47, 0x84, 0xd5, 0x2e, 0x58, 0x4b, 0x9a, 0x0a, 0x26, 0xfa, 0xd2, 0xc7, 0x56, 0x1c, 0x19, 0xad, - 0xbc, 0xdf, 0x78, 0xc8, 0x74, 0x57, 0x31, 0x9a, 0xf0, 0x2c, 0xca, 0x89, 0xb7, 0x45, 0x3f, 0xe7, - 0x49, 0x66, 0xf9, 0xff, 0xae, 0x80, 0x4d, 0x87, 0x7a, 0x2f, 0x11, 0xe3, 0xbd, 0xe9, 0x20, 0x06, - 0x87, 0x90, 0xc1, 0x65, 0x4c, 0xb8, 0x60, 0x35, 0x90, 0x34, 0xb9, 0x6d, 0xf7, 0xf2, 0x6d, 0xc3, - 0xc7, 0xd9, 0xb6, 0xa5, 0xda, 0xf6, 0xb6, 0xdc, 0x3a, 0x79, 0x1a, 0x53, 0xb2, 0xe9, 0x66, 0x3a, - 0xe5, 0xec, 0xef, 0x81, 0x8f, 0x2e, 0x49, 0x31, 0xb3, 0xf0, 0xd7, 0x0d, 0xd0, 0x72, 0xa8, 0xb7, - 0x4f, 0xc2, 0x01, 0x3a, 0x08, 0x21, 0xa6, 0x87, 0x28, 0xbc, 0x9e, 0xa6, 0x73, 0xc1, 0x26, 0x93, - 0x09, 0xcc, 0x36, 0xde, 0xfd, 0x38, 0x32, 0x76, 0x05, 0x2f, 0x05, 0x55, 0x9a, 0xef, 0x32, 0xb2, - 0xfa, 0x2d, 0xd8, 0x48, 0x5f, 0xe7, 0xe7, 0x75, 0x85, 0x2b, 0xea, 0x71, 0x64, 0x68, 0x15, 0xc5, - 0xe2, 0x99, 0x9d, 0x25, 0x96, 0xeb, 0xaa, 0x81, 0x76, 0xb5, 0x6e, 0x59, 0x51, 0x7f, 0x55, 0x78, - 0xaf, 0x7f, 0x3f, 0x1a, 0x42, 0x86, 0xbe, 0xe3, 0xa3, 0x5c, 0x7d, 0x06, 0xd6, 0xe0, 0x98, 0x1d, - 0x91, 0xd0, 0x67, 0x53, 0x59, 0xd6, 0xf6, 0x3f, 0x7f, 0x3e, 0xde, 0x92, 0xe5, 0x92, 0x6b, 0xbc, - 0x64, 0xa1, 0x8f, 0x3d, 0x37, 0x87, 0xaa, 0x36, 0xa8, 0x8b, 0xcb, 0x40, 0x16, 0xf8, 0x63, 0xeb, - 0xaa, 0xcb, 0xca, 0x12, 0xab, 0xd9, 0x2b, 0x49, 0xad, 0x5d, 0xc9, 0xdc, 0xbb, 0x93, 0x24, 0x9e, - 0x6b, 0x9a, 0x3b, 0x60, 0xbb, 0x92, 0x5e, 0x9a, 0xfa, 0x93, 0xdf, 0xea, 0xe0, 0xa6, 0x43, 0x3d, - 0xf5, 0x27, 0xb0, 0x5e, 0xbc, 0x3c, 0x3e, 0xbb, 0x7a, 0xd5, 0xf2, 0xbc, 0xd7, 0x3e, 0x5f, 0x06, - 0x9d, 0xdd, 0x0e, 0xaf, 0xc0, 0x0a, 0x9f, 0xea, 0x0f, 0xe6, 0xb2, 0x13, 0x98, 0xf6, 0x78, 0x21, - 0x58, 0x51, 0x9d, 0x0f, 0xd4, 0xf9, 0xea, 0x09, 0x6c, 0x01, 0xf5, 0xe2, 0x24, 0xe3, 0xe5, 0x2a, - 0x4c, 0xb1, 0x05, 0xca, 0x95, 0xa3, 0x17, 0x29, 0xd7, 0xec, 0xf0, 0x51, 0xdf, 0x2a, 0xa0, 0x35, - 0x33, 0x79, 0xba, 0x73, 0xa5, 0xaa, 0x14, 0xed, 0xcb, 0xa5, 0x29, 0x59, 0x0a, 0x13, 0xd0, 0x28, - 0x0f, 0x0e, 0x6b, 0xae, 0x56, 0x09, 0xaf, 0x3d, 0x5b, 0x0e, 0x9f, 0x2d, 0xcc, 0xc0, 0xed, 0xd2, - 0xe1, 0x9a, 0xbf, 0x5b, 0x45, 0xb8, 0xf6, 0xc5, 0x52, 0xf0, 0x74, 0x55, 0xed, 0xd6, 0xdb, 0x8b, - 0x77, 0x8f, 0x14, 0xdb, 0x39, 0x39, 0xd3, 0x95, 0xd3, 0x33, 0x5d, 0xf9, 0xff, 0x4c, 0x57, 0x7e, - 0x39, 0xd7, 0x6b, 0xa7, 0xe7, 0x7a, 0xed, 0xbf, 0x73, 0xbd, 0xf6, 0xc3, 0x53, 0xcf, 0x67, 0x47, - 0xe3, 0xbe, 0x35, 0x20, 0x81, 0xfc, 0x1a, 0x2b, 0x7f, 0xdd, 0xbd, 0x29, 0x3f, 0xb2, 0xe9, 0x08, - 0xd1, 0x7e, 0x9d, 0x7f, 0xb0, 0x3d, 0x7d, 0x1f, 0x00, 0x00, 0xff, 0xff, 0x00, 0xc8, 0x3b, 0xf4, - 0xac, 0x0a, 0x00, 0x00, + // 896 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xc4, 0x56, 0x4d, 0x6f, 0xdc, 0x44, + 0x18, 0x8e, 0xdb, 0x74, 0x49, 0x26, 0x4d, 0x93, 0x38, 0xa1, 0xd9, 0x98, 0x74, 0x5d, 0x59, 0x14, + 0xd1, 0x8a, 0xd8, 0xda, 0x02, 0x95, 0xc8, 0x89, 0xb8, 0x28, 0xe2, 0xc0, 0x4a, 0xc8, 0x0d, 0x17, + 0xa8, 0xb4, 0x9a, 0xdd, 0x9d, 0x38, 0x56, 0xea, 0x99, 0x65, 0x66, 0x36, 0xe9, 0xde, 0x2a, 0x7e, + 0x01, 0x7f, 0x00, 0x09, 0xc4, 0x1f, 0xe8, 0x01, 0xf1, 0x1b, 0x7a, 0x41, 0xaa, 0xe0, 0xc2, 0xc9, + 0x42, 0xc9, 0xa1, 0x77, 0xff, 0x02, 0x34, 0x1f, 0xfe, 0xdc, 0x28, 0x9b, 0x3d, 0xe5, 0xb4, 0x6b, + 0xbf, 0xcf, 0xf3, 0xcc, 0xfb, 0xbc, 0xf3, 0xce, 0x3b, 0x06, 0x0f, 0x08, 0x8b, 0x09, 0x8b, 0x98, + 0xc7, 0xc9, 0x31, 0xc2, 0x87, 0xb0, 0xcf, 0x09, 0x1d, 0x7b, 0x27, 0xed, 0x1e, 0xe2, 0xb0, 0xed, + 0xf1, 0x97, 0xee, 0x90, 0x12, 0x4e, 0xcc, 0x6d, 0x0d, 0x73, 0xcb, 0x30, 0x57, 0xc3, 0xac, 0x8d, + 0x90, 0x84, 0x44, 0x02, 0x3d, 0xf1, 0x4f, 0x71, 0xac, 0x56, 0x5f, 0x92, 0xbc, 0x1e, 0x64, 0x28, + 0x57, 0xec, 0x93, 0x08, 0x4f, 0xc4, 0xf1, 0x71, 0x1e, 0x17, 0x0f, 0x3a, 0xfe, 0xf0, 0xd2, 0xd4, + 0x86, 0x90, 0xc2, 0x98, 0x69, 0xe8, 0xa6, 0x96, 0x8a, 0x59, 0xe8, 0x9d, 0xb4, 0xc5, 0x8f, 0x0e, + 0x6c, 0xa9, 0x40, 0x57, 0x25, 0xa7, 0x1e, 0x54, 0xc8, 0x19, 0x83, 0x3b, 0x1d, 0x16, 0x3e, 0xa5, + 0x08, 0x72, 0xf4, 0x15, 0xc2, 0x24, 0x36, 0x1f, 0x82, 0x06, 0x43, 0x78, 0x80, 0x68, 0xd3, 0xb8, + 0x6f, 0x7c, 0xbc, 0xe8, 0xaf, 0xa5, 0x89, 0xbd, 0x3c, 0x86, 0xf1, 0x8b, 0x5d, 0x47, 0xbd, 0x77, + 0x02, 0x0d, 0x30, 0x3d, 0xb0, 0xc0, 0x46, 0xbd, 0x81, 0xa0, 0x35, 0x6f, 0x48, 0xf0, 0x7a, 0x9a, + 0xd8, 0x2b, 0x1a, 0xac, 0x23, 0x4e, 0x90, 0x83, 0x76, 0x97, 0x7e, 0x7a, 0xf7, 0xfa, 0x91, 0x66, + 0x3b, 0xcf, 0xc1, 0xdd, 0xea, 0xd2, 0x01, 0x62, 0x43, 0x82, 0x19, 0x32, 0x7d, 0xb0, 0x82, 0xd1, + 0x69, 0x57, 0x3a, 0xee, 0x2a, 0x79, 0x95, 0x8b, 0x95, 0x26, 0xf6, 0x5d, 0x25, 0x5f, 0x03, 0x38, + 0xc1, 0x32, 0x46, 0xa7, 0x07, 0xe2, 0x85, 0xd4, 0x72, 0xfe, 0x32, 0xc0, 0x7b, 0x1d, 0x16, 0x76, + 0x22, 0xcc, 0x67, 0xb1, 0xf4, 0x35, 0x68, 0xc0, 0x98, 0x8c, 0x30, 0x97, 0x86, 0x96, 0x1e, 0x6f, + 0xb9, 0xba, 0x5c, 0x62, 0xff, 0xb2, 0xad, 0x76, 0x9f, 0x92, 0x08, 0xfb, 0xef, 0xbf, 0x49, 0xec, + 0xb9, 0x42, 0x49, 0xd1, 0x9c, 0x40, 0xf3, 0xcd, 0x2f, 0xc1, 0x72, 0x1c, 0x61, 0x7e, 0x40, 0xf6, + 0x06, 0x03, 0x8a, 0x18, 0x6b, 0xde, 0xac, 0x5b, 0x10, 0xe1, 0x2e, 0x27, 0x5d, 0xa8, 0x00, 0x4e, + 0x50, 0x25, 0x54, 0xab, 0xb5, 0x06, 0x56, 0xb4, 0x9d, 0xac, 0x4c, 0xce, 0x3f, 0xca, 0xa2, 0x3f, + 0xa2, 0xf8, 0x7a, 0x2c, 0xee, 0x83, 0x95, 0xde, 0x88, 0xe2, 0x7d, 0x4a, 0xe2, 0xaa, 0xc9, 0xed, + 0x34, 0xb1, 0x9b, 0x8a, 0x23, 0x00, 0xdd, 0x43, 0x4a, 0xe2, 0xc2, 0x66, 0x9d, 0x74, 0x91, 0x51, + 0x61, 0x2a, 0x37, 0xfa, 0xbb, 0xa1, 0xba, 0xf4, 0x08, 0xe2, 0x10, 0xed, 0x0d, 0xe2, 0x68, 0x26, + 0xbf, 0x1f, 0x81, 0x5b, 0xe5, 0x16, 0x5d, 0x4d, 0x13, 0xfb, 0xb6, 0x42, 0xea, 0xce, 0x51, 0x61, + 0xb3, 0x0d, 0x16, 0x45, 0x53, 0x41, 0xa1, 0xaf, 0x7d, 0x6c, 0xa4, 0x89, 0xbd, 0x5a, 0xf4, 0x9b, + 0x0c, 0x39, 0xc1, 0x02, 0x46, 0xa7, 0x32, 0x8b, 0x6a, 0xe2, 0x4d, 0xd5, 0xcf, 0x45, 0x92, 0x79, + 0xfe, 0xbf, 0x19, 0x60, 0xbd, 0xc3, 0xc2, 0x67, 0x88, 0xcb, 0xde, 0xec, 0x20, 0x0e, 0x07, 0x90, + 0xc3, 0x59, 0x4c, 0x04, 0x60, 0x21, 0xd6, 0x34, 0xbd, 0x6d, 0xf7, 0x8a, 0x6d, 0xc3, 0xc7, 0xf9, + 0xb6, 0x65, 0xda, 0xfe, 0xa6, 0xde, 0x3a, 0x7d, 0x1a, 0x33, 0xb2, 0x13, 0xe4, 0x3a, 0xd5, 0xec, + 0xef, 0x81, 0x0f, 0x2e, 0x48, 0x31, 0xb7, 0xf0, 0xe7, 0x0d, 0xb0, 0xda, 0x61, 0xe1, 0x3e, 0xa1, + 0x7d, 0x74, 0x40, 0x21, 0x66, 0x87, 0x88, 0x5e, 0x4f, 0xd3, 0x05, 0x60, 0x9d, 0xeb, 0x04, 0x26, + 0x1b, 0xef, 0x7e, 0x9a, 0xd8, 0xdb, 0x8a, 0x97, 0x81, 0x6a, 0xcd, 0x77, 0x11, 0xd9, 0xfc, 0x06, + 0xac, 0x65, 0xaf, 0x8b, 0xf3, 0x3a, 0x2f, 0x15, 0x5b, 0x69, 0x62, 0x5b, 0x35, 0xc5, 0xf2, 0x99, + 0x9d, 0x24, 0x56, 0xeb, 0x6a, 0x81, 0x66, 0xbd, 0x6e, 0x79, 0x51, 0x7f, 0x31, 0x64, 0xaf, 0x7f, + 0x37, 0x1c, 0x40, 0x8e, 0xbe, 0x95, 0xa3, 0xdc, 0x7c, 0x02, 0x16, 0xe1, 0x88, 0x1f, 0x11, 0x1a, + 0xf1, 0xb1, 0x2e, 0x6b, 0xf3, 0xef, 0x3f, 0x76, 0x36, 0x74, 0xb9, 0xf4, 0x1a, 0xcf, 0x38, 0x8d, + 0x70, 0x18, 0x14, 0x50, 0xd3, 0x07, 0x0d, 0x75, 0x19, 0xe8, 0x02, 0x7f, 0xe8, 0x5e, 0x76, 0x59, + 0xb9, 0x6a, 0x35, 0x7f, 0x5e, 0xd4, 0x3a, 0xd0, 0xcc, 0xdd, 0x3b, 0x22, 0xf1, 0x42, 0xd3, 0xd9, + 0x02, 0x9b, 0xb5, 0xf4, 0xb2, 0xd4, 0x1f, 0xff, 0xda, 0x00, 0x37, 0x3b, 0x2c, 0x34, 0x7f, 0x04, + 0x4b, 0xe5, 0xcb, 0xe3, 0x93, 0xcb, 0x57, 0xad, 0xce, 0x7b, 0xeb, 0xb3, 0x59, 0xd0, 0xf9, 0xed, + 0xf0, 0x1c, 0xcc, 0xcb, 0xa9, 0xfe, 0x60, 0x2a, 0x5b, 0xc0, 0xac, 0x9d, 0x2b, 0xc1, 0xca, 0xea, + 0x72, 0xa0, 0x4e, 0x57, 0x17, 0xb0, 0x2b, 0xa8, 0x97, 0x27, 0x99, 0x2c, 0x57, 0x69, 0x8a, 0x5d, + 0xa1, 0x5c, 0x05, 0xfa, 0x2a, 0xe5, 0x9a, 0x1c, 0x3e, 0xe6, 0x2b, 0x03, 0xac, 0x4e, 0x4c, 0x9e, + 0xf6, 0x54, 0xa9, 0x3a, 0xc5, 0xfa, 0x62, 0x66, 0x4a, 0x9e, 0xc2, 0x29, 0x58, 0xae, 0x0e, 0x0e, + 0x77, 0xaa, 0x56, 0x05, 0x6f, 0x3d, 0x99, 0x0d, 0x9f, 0x2f, 0xcc, 0xc1, 0xed, 0xca, 0xe1, 0x9a, + 0xbe, 0x5b, 0x65, 0xb8, 0xf5, 0xf9, 0x4c, 0xf0, 0x6c, 0x55, 0xeb, 0xd6, 0xab, 0x77, 0xaf, 0x1f, + 0x19, 0xfe, 0x0f, 0x6f, 0xce, 0x5a, 0xc6, 0xdb, 0xb3, 0x96, 0xf1, 0xdf, 0x59, 0xcb, 0xf8, 0xf9, + 0xbc, 0x35, 0xf7, 0xf6, 0xbc, 0x35, 0xf7, 0xef, 0x79, 0x6b, 0xee, 0xfb, 0xbd, 0x30, 0xe2, 0x47, + 0xa3, 0x9e, 0xdb, 0x27, 0xb1, 0xc7, 0xc4, 0xfc, 0x08, 0xd1, 0x0b, 0x72, 0x82, 0x76, 0x4e, 0x10, + 0xe6, 0x23, 0x8a, 0x6a, 0xdf, 0x7a, 0x2f, 0xab, 0x8f, 0x7c, 0x3c, 0x44, 0xac, 0xd7, 0x90, 0x9f, + 0x6f, 0x9f, 0xfe, 0x1f, 0x00, 0x00, 0xff, 0xff, 0x76, 0x53, 0x10, 0xf8, 0xba, 0x0a, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used.