diff --git a/app/ante.go b/app/ante.go index 26da4a2..0441d66 100644 --- a/app/ante.go +++ b/app/ante.go @@ -13,8 +13,8 @@ import ( "github.com/cosmos/cosmos-sdk/x/auth/ante" stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" - globalfeeante "github.com/reecepbcups/globalfee/x/globalfee/ante" - globalfeekeeper "github.com/reecepbcups/globalfee/x/globalfee/keeper" + globalfeeante "github.com/strangelove-ventures/globalfee/x/globalfee/ante" + globalfeekeeper "github.com/strangelove-ventures/globalfee/x/globalfee/keeper" ) const maxBypassMinFeeMsgGasUsage = 2_000_000 diff --git a/app/app.go b/app/app.go index b41c6ac..4cb3c7a 100644 --- a/app/app.go +++ b/app/app.go @@ -132,9 +132,9 @@ import ( ibcclienttypes "github.com/cosmos/ibc-go/v8/modules/core/02-client/types" ibcchanneltypes "github.com/cosmos/ibc-go/v8/modules/core/04-channel/types" - globalfee "github.com/reecepbcups/globalfee/x/globalfee" - globalfeekeeper "github.com/reecepbcups/globalfee/x/globalfee/keeper" - globalfeetypes "github.com/reecepbcups/globalfee/x/globalfee/types" + globalfee "github.com/strangelove-ventures/globalfee/x/globalfee" + globalfeekeeper "github.com/strangelove-ventures/globalfee/x/globalfee/keeper" + globalfeetypes "github.com/strangelove-ventures/globalfee/x/globalfee/types" ) // We pull these out so we can set them with LDFLAGS in the Makefile diff --git a/app/apptesting/test_suite.go b/app/apptesting/test_suite.go index ba1061a..c0284c0 100644 --- a/app/apptesting/test_suite.go +++ b/app/apptesting/test_suite.go @@ -4,8 +4,8 @@ import ( "fmt" "time" - "github.com/reecepbcups/globalfee/app" - appparams "github.com/reecepbcups/globalfee/app/params" + "github.com/strangelove-ventures/globalfee/app" + appparams "github.com/strangelove-ventures/globalfee/app/params" "github.com/stretchr/testify/suite" "github.com/cometbft/cometbft/crypto/ed25519" diff --git a/app/encoding.go b/app/encoding.go index 53ceb3a..76bc1d1 100644 --- a/app/encoding.go +++ b/app/encoding.go @@ -3,7 +3,7 @@ package app import ( "testing" - "github.com/reecepbcups/globalfee/app/params" + "github.com/strangelove-ventures/globalfee/app/params" dbm "github.com/cosmos/cosmos-db" diff --git a/app/test_helpers.go b/app/test_helpers.go index f2d7d40..3fc87a7 100644 --- a/app/test_helpers.go +++ b/app/test_helpers.go @@ -8,8 +8,8 @@ import ( "testing" "time" - apphelpers "github.com/reecepbcups/globalfee/app/helpers" - appparams "github.com/reecepbcups/globalfee/app/params" + apphelpers "github.com/strangelove-ventures/globalfee/app/helpers" + appparams "github.com/strangelove-ventures/globalfee/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 4783857..041eeb6 100644 --- a/app/upgrades.go +++ b/app/upgrades.go @@ -3,8 +3,8 @@ package app import ( "fmt" - "github.com/reecepbcups/globalfee/app/upgrades" - "github.com/reecepbcups/globalfee/app/upgrades/noop" + "github.com/strangelove-ventures/globalfee/app/upgrades" + "github.com/strangelove-ventures/globalfee/app/upgrades/noop" upgradetypes "cosmossdk.io/x/upgrade/types" ) diff --git a/app/upgrades/noop/upgrades.go b/app/upgrades/noop/upgrades.go index 31b9a43..a5b62fd 100644 --- a/app/upgrades/noop/upgrades.go +++ b/app/upgrades/noop/upgrades.go @@ -3,7 +3,7 @@ package noop import ( "context" - "github.com/reecepbcups/globalfee/app/upgrades" + "github.com/strangelove-ventures/globalfee/app/upgrades" storetypes "cosmossdk.io/store/types" upgradetypes "cosmossdk.io/x/upgrade/types" diff --git a/cmd/globald/cmd/commands.go b/cmd/globald/cmd/commands.go index b321e84..bc0665d 100644 --- a/cmd/globald/cmd/commands.go +++ b/cmd/globald/cmd/commands.go @@ -5,9 +5,9 @@ import ( "io" "os" - "github.com/reecepbcups/globalfee/app" "github.com/spf13/cobra" "github.com/spf13/viper" + "github.com/strangelove-ventures/globalfee/app" cmtcfg "github.com/cometbft/cometbft/config" diff --git a/cmd/globald/cmd/root.go b/cmd/globald/cmd/root.go index d9a8003..b494ab7 100644 --- a/cmd/globald/cmd/root.go +++ b/cmd/globald/cmd/root.go @@ -4,9 +4,9 @@ import ( "fmt" "os" - "github.com/reecepbcups/globalfee/app" - "github.com/reecepbcups/globalfee/app/params" "github.com/spf13/cobra" + "github.com/strangelove-ventures/globalfee/app" + "github.com/strangelove-ventures/globalfee/app/params" dbm "github.com/cosmos/cosmos-db" diff --git a/cmd/globald/cmd/testnet.go b/cmd/globald/cmd/testnet.go index e07e282..067ce69 100644 --- a/cmd/globald/cmd/testnet.go +++ b/cmd/globald/cmd/testnet.go @@ -9,9 +9,9 @@ import ( "path/filepath" "time" - "github.com/reecepbcups/globalfee/app" "github.com/spf13/cobra" "github.com/spf13/pflag" + "github.com/strangelove-ventures/globalfee/app" cmtconfig "github.com/cometbft/cometbft/config" cmttime "github.com/cometbft/cometbft/types/time" diff --git a/cmd/globald/main.go b/cmd/globald/main.go index 832f4e6..cefe489 100644 --- a/cmd/globald/main.go +++ b/cmd/globald/main.go @@ -4,8 +4,8 @@ import ( "fmt" "os" - "github.com/reecepbcups/globalfee/app" - "github.com/reecepbcups/globalfee/cmd/globald/cmd" + "github.com/strangelove-ventures/globalfee/app" + "github.com/strangelove-ventures/globalfee/cmd/globald/cmd" svrcmd "github.com/cosmos/cosmos-sdk/server/cmd" ) diff --git a/go.mod b/go.mod index fb03c0d..e2f52fc 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/reecepbcups/globalfee +module github.com/strangelove-ventures/globalfee go 1.21 diff --git a/interchaintest/go.mod b/interchaintest/go.mod index 0c062a7..46ad419 100644 --- a/interchaintest/go.mod +++ b/interchaintest/go.mod @@ -1,4 +1,4 @@ -module github.com/reecepbcups/globalfee/interchaintest +module github.com/strangelove-ventures/globalfee/interchaintest go 1.21.1 @@ -8,13 +8,13 @@ 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/globalfee => ../ + github.com/strangelove-ventures/globalfee => ../ ) require ( cosmossdk.io/math v1.2.0 github.com/cosmos/cosmos-sdk v0.50.3 - github.com/reecepbcups/globalfee v0.0.0-00000000000000-000000000000 + github.com/strangelove-ventures/globalfee v0.0.0-00000000000000-000000000000 github.com/strangelove-ventures/interchaintest/v8 v8.0.1-0.20240124225619-c55143141632 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 dac51d8..5127e3a 100644 --- a/interchaintest/setup.go +++ b/interchaintest/setup.go @@ -4,7 +4,7 @@ import ( sdkmath "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - globalfee "github.com/reecepbcups/globalfee/x/globalfee/types" + globalfee "github.com/strangelove-ventures/globalfee/x/globalfee/types" "github.com/strangelove-ventures/interchaintest/v8" "github.com/strangelove-ventures/interchaintest/v8/chain/cosmos" "github.com/strangelove-ventures/interchaintest/v8/ibc" diff --git a/proto/buf.gen.pulsar.yaml b/proto/buf.gen.pulsar.yaml index 488f6c2..e299638 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/globalfee/api + default: github.com/strangelove-ventures/globalfee/api except: - buf.build/googleapis/googleapis - buf.build/cosmos/gogo-proto diff --git a/proto/gaia/globalfee/v1beta1/genesis.proto b/proto/gaia/globalfee/v1beta1/genesis.proto index aebb85c..52cb842 100644 --- a/proto/gaia/globalfee/v1beta1/genesis.proto +++ b/proto/gaia/globalfee/v1beta1/genesis.proto @@ -4,7 +4,7 @@ package gaia.globalfee.v1beta1; import "gogoproto/gogo.proto"; import "cosmos/base/v1beta1/coin.proto"; -option go_package = "github.com/reecepbcups/globalfee/x/globalfee/types"; +option go_package = "github.com/strangelove-ventures/globalfee/x/globalfee/types"; // GenesisState - initial state of module message GenesisState { diff --git a/proto/gaia/globalfee/v1beta1/query.proto b/proto/gaia/globalfee/v1beta1/query.proto index a8414f7..efe82ed 100644 --- a/proto/gaia/globalfee/v1beta1/query.proto +++ b/proto/gaia/globalfee/v1beta1/query.proto @@ -5,7 +5,7 @@ import "gogoproto/gogo.proto"; import "google/api/annotations.proto"; import "cosmos/base/v1beta1/coin.proto"; -option go_package = "github.com/reecepbcups/globalfee/x/globalfee/types"; +option go_package = "github.com/strangelove-ventures/globalfee/x/globalfee/types"; // Query defines the gRPC querier service. service Query { diff --git a/proto/gaia/globalfee/v1beta1/tx.proto b/proto/gaia/globalfee/v1beta1/tx.proto index d5b6f8e..10ed841 100644 --- a/proto/gaia/globalfee/v1beta1/tx.proto +++ b/proto/gaia/globalfee/v1beta1/tx.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package gaia.globalfee.v1beta1; -option go_package = "github.com/reecepbcups/globalfee/x/globalfee/types"; +option go_package = "github.com/strangelove-ventures/globalfee/x/globalfee/types"; import "cosmos/msg/v1/msg.proto"; import "gaia/globalfee/v1beta1/genesis.proto"; diff --git a/scripts/protocgen.sh b/scripts/protocgen.sh index caa7e0e..a01ab4f 100644 --- a/scripts/protocgen.sh +++ b/scripts/protocgen.sh @@ -10,7 +10,7 @@ buf generate --template buf.gen.gogo.yaml $file cd .. # move proto files to the right places -cp -r ./github.com/reecepbcups/globalfee/x/* x/ +cp -r ./github.com/strangelove-ventures/globalfee/x/* x/ rm -rf ./github.com go mod tidy \ No newline at end of file diff --git a/x/globalfee/alias.go b/x/globalfee/alias.go index b0905c3..b44878a 100644 --- a/x/globalfee/alias.go +++ b/x/globalfee/alias.go @@ -1,7 +1,7 @@ package globalfee import ( - "github.com/reecepbcups/globalfee/x/globalfee/types" + "github.com/strangelove-ventures/globalfee/x/globalfee/types" ) const ( diff --git a/x/globalfee/ante/fee.go b/x/globalfee/ante/fee.go index 8204c93..df21f09 100644 --- a/x/globalfee/ante/fee.go +++ b/x/globalfee/ante/fee.go @@ -12,7 +12,7 @@ import ( sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" stakingkeeper "github.com/cosmos/cosmos-sdk/x/staking/keeper" - globalfeekeeper "github.com/reecepbcups/globalfee/x/globalfee/keeper" + globalfeekeeper "github.com/strangelove-ventures/globalfee/x/globalfee/keeper" ) // FeeWithBypassDecorator checks if the transaction's fee is at least as large diff --git a/x/globalfee/client/cli/query.go b/x/globalfee/client/cli/query.go index 9a0c20f..3d0090e 100644 --- a/x/globalfee/client/cli/query.go +++ b/x/globalfee/client/cli/query.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" - "github.com/reecepbcups/globalfee/x/globalfee/types" + "github.com/strangelove-ventures/globalfee/x/globalfee/types" ) func GetQueryCmd() *cobra.Command { diff --git a/x/globalfee/genesis_test.go b/x/globalfee/genesis_test.go index a112086..904e14d 100644 --- a/x/globalfee/genesis_test.go +++ b/x/globalfee/genesis_test.go @@ -17,9 +17,9 @@ import ( storetypes "cosmossdk.io/store/types" sdk "github.com/cosmos/cosmos-sdk/types" - appparams "github.com/reecepbcups/globalfee/app/params" - globalfeekeeper "github.com/reecepbcups/globalfee/x/globalfee/keeper" - "github.com/reecepbcups/globalfee/x/globalfee/types" + appparams "github.com/strangelove-ventures/globalfee/app/params" + globalfeekeeper "github.com/strangelove-ventures/globalfee/x/globalfee/keeper" + "github.com/strangelove-ventures/globalfee/x/globalfee/types" ) func TestDefaultGenesis(t *testing.T) { diff --git a/x/globalfee/keeper/keeper.go b/x/globalfee/keeper/keeper.go index d2795d0..11630fe 100644 --- a/x/globalfee/keeper/keeper.go +++ b/x/globalfee/keeper/keeper.go @@ -5,7 +5,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/reecepbcups/globalfee/x/globalfee/types" + "github.com/strangelove-ventures/globalfee/x/globalfee/types" ) // Keeper of the globalfee store diff --git a/x/globalfee/keeper/migrator.go b/x/globalfee/keeper/migrator.go index 9eac041..14c7ab3 100644 --- a/x/globalfee/keeper/migrator.go +++ b/x/globalfee/keeper/migrator.go @@ -3,7 +3,7 @@ package keeper import ( sdk "github.com/cosmos/cosmos-sdk/types" - v2 "github.com/reecepbcups/globalfee/x/globalfee/migrations/v2" + v2 "github.com/strangelove-ventures/globalfee/x/globalfee/migrations/v2" ) // Migrator is a struct for handling in-place state migrations. diff --git a/x/globalfee/keeper/msg_server.go b/x/globalfee/keeper/msg_server.go index 646ee47..9fb9adc 100644 --- a/x/globalfee/keeper/msg_server.go +++ b/x/globalfee/keeper/msg_server.go @@ -8,7 +8,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" - "github.com/reecepbcups/globalfee/x/globalfee/types" + "github.com/strangelove-ventures/globalfee/x/globalfee/types" ) var _ types.MsgServer = msgServer{} diff --git a/x/globalfee/migrations/v2/migrate.go b/x/globalfee/migrations/v2/migrate.go index 41eacda..9426bb3 100644 --- a/x/globalfee/migrations/v2/migrate.go +++ b/x/globalfee/migrations/v2/migrate.go @@ -9,7 +9,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/reecepbcups/globalfee/x/globalfee/types" + "github.com/strangelove-ventures/globalfee/x/globalfee/types" ) const ( diff --git a/x/globalfee/migrations/v2/migrator_test.go b/x/globalfee/migrations/v2/migrator_test.go index 06da2e1..cdf308a 100644 --- a/x/globalfee/migrations/v2/migrator_test.go +++ b/x/globalfee/migrations/v2/migrator_test.go @@ -12,9 +12,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" moduletestutil "github.com/cosmos/cosmos-sdk/types/module/testutil" - "github.com/reecepbcups/globalfee/x/globalfee" - v2 "github.com/reecepbcups/globalfee/x/globalfee/migrations/v2" - "github.com/reecepbcups/globalfee/x/globalfee/types" + "github.com/strangelove-ventures/globalfee/x/globalfee" + v2 "github.com/strangelove-ventures/globalfee/x/globalfee/migrations/v2" + "github.com/strangelove-ventures/globalfee/x/globalfee/types" ) func TestMigrateMainnet(t *testing.T) { diff --git a/x/globalfee/module.go b/x/globalfee/module.go index 47931f1..ef0fcad 100644 --- a/x/globalfee/module.go +++ b/x/globalfee/module.go @@ -19,9 +19,9 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/module" - "github.com/reecepbcups/globalfee/x/globalfee/client/cli" - "github.com/reecepbcups/globalfee/x/globalfee/keeper" - "github.com/reecepbcups/globalfee/x/globalfee/types" + "github.com/strangelove-ventures/globalfee/x/globalfee/client/cli" + "github.com/strangelove-ventures/globalfee/x/globalfee/keeper" + "github.com/strangelove-ventures/globalfee/x/globalfee/types" ) var ( diff --git a/x/globalfee/querier.go b/x/globalfee/querier.go index 50af5b8..e6b0abb 100644 --- a/x/globalfee/querier.go +++ b/x/globalfee/querier.go @@ -5,8 +5,8 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/reecepbcups/globalfee/x/globalfee/keeper" - "github.com/reecepbcups/globalfee/x/globalfee/types" + "github.com/strangelove-ventures/globalfee/x/globalfee/keeper" + "github.com/strangelove-ventures/globalfee/x/globalfee/types" ) var _ types.QueryServer = &GrpcQuerier{} diff --git a/x/globalfee/querier_test.go b/x/globalfee/querier_test.go index 1daaad9..5a0b978 100644 --- a/x/globalfee/querier_test.go +++ b/x/globalfee/querier_test.go @@ -9,8 +9,8 @@ import ( sdkmath "cosmossdk.io/math" sdk "github.com/cosmos/cosmos-sdk/types" - globalfeekeeper "github.com/reecepbcups/globalfee/x/globalfee/keeper" - "github.com/reecepbcups/globalfee/x/globalfee/types" + globalfeekeeper "github.com/strangelove-ventures/globalfee/x/globalfee/keeper" + "github.com/strangelove-ventures/globalfee/x/globalfee/types" ) func TestQueryMinimumGasPrices(t *testing.T) { diff --git a/x/globalfee/types/genesis.pb.go b/x/globalfee/types/genesis.pb.go index 498fe03..d671ed6 100644 --- a/x/globalfee/types/genesis.pb.go +++ b/x/globalfee/types/genesis.pb.go @@ -131,28 +131,29 @@ func init() { } var fileDescriptor_015b3e8b7a7c65c5 = []byte{ - // 333 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x91, 0x31, 0x4b, 0x03, 0x31, - 0x14, 0xc7, 0xef, 0x10, 0x3a, 0x5c, 0x1d, 0xca, 0x21, 0x52, 0x4b, 0xc9, 0xc9, 0xe1, 0x50, 0x50, - 0x13, 0x5a, 0x37, 0xc7, 0x2a, 0x74, 0x71, 0x28, 0x75, 0x73, 0xa9, 0xb9, 0xf8, 0x8c, 0xc1, 0xe6, - 0x12, 0x2e, 0xa9, 0xd8, 0x6f, 0xe1, 0xe7, 0xf0, 0x33, 0xb8, 0xdb, 0xb1, 0xa3, 0x53, 0x95, 0x76, - 0x73, 0xf4, 0x13, 0xc8, 0x5d, 0xce, 0xb6, 0x50, 0xa7, 0x3c, 0xc8, 0xef, 0xfd, 0x7f, 0x8f, 0xf7, - 0x82, 0x23, 0x4e, 0x05, 0x25, 0x7c, 0xa4, 0x12, 0x3a, 0xba, 0x07, 0x20, 0x4f, 0xed, 0x04, 0x2c, - 0x6d, 0x13, 0x0e, 0x29, 0x18, 0x61, 0xb0, 0xce, 0x94, 0x55, 0xe1, 0x7e, 0x4e, 0xe1, 0x15, 0x85, - 0x4b, 0xaa, 0xb1, 0xc7, 0x15, 0x57, 0x05, 0x42, 0xf2, 0xca, 0xd1, 0x0d, 0xc4, 0x94, 0x91, 0xca, - 0x90, 0x84, 0x9a, 0x75, 0x20, 0x53, 0x22, 0x75, 0xff, 0xf1, 0x6d, 0xb0, 0xdb, 0x73, 0xf1, 0xd7, - 0x96, 0x5a, 0x08, 0xfb, 0x41, 0x45, 0xd3, 0x8c, 0x4a, 0x53, 0xf7, 0x0f, 0xfd, 0x56, 0xb5, 0x83, - 0xf0, 0xff, 0x3a, 0xdc, 0x2f, 0xa8, 0x6e, 0x7d, 0x3a, 0x8f, 0xbc, 0xef, 0x79, 0x54, 0x73, 0x5d, - 0x27, 0x4a, 0x0a, 0x0b, 0x52, 0xdb, 0xc9, 0xa0, 0xcc, 0x89, 0xdf, 0xfd, 0xa0, 0xe2, 0xe0, 0xf0, - 0xcd, 0x0f, 0x42, 0x29, 0x52, 0x21, 0xc7, 0x72, 0xc8, 0xa9, 0x19, 0xea, 0x4c, 0x30, 0xc8, 0x4d, - 0x3b, 0xad, 0x6a, 0xa7, 0x89, 0xdd, 0xa8, 0x38, 0x1f, 0x75, 0xa5, 0xb9, 0x04, 0x76, 0xa1, 0x44, - 0xda, 0xd5, 0xa5, 0xa7, 0xb9, 0xdd, 0xbf, 0x76, 0xfe, 0xcc, 0xa3, 0x83, 0x09, 0x95, 0xa3, 0xf3, - 0x78, 0x9b, 0x8a, 0x5f, 0x3f, 0xa3, 0x63, 0x2e, 0xec, 0xc3, 0x38, 0xc1, 0x4c, 0x49, 0x52, 0xee, - 0xc5, 0x3d, 0xa7, 0xe6, 0xee, 0x91, 0xd8, 0x89, 0x06, 0xf3, 0x27, 0x34, 0x83, 0x5a, 0x99, 0xd1, - 0xa3, 0xa6, 0x5f, 0x24, 0x74, 0xaf, 0xa6, 0x0b, 0xe4, 0xcf, 0x16, 0xc8, 0xff, 0x5a, 0x20, 0xff, - 0x65, 0x89, 0xbc, 0xd9, 0x12, 0x79, 0x1f, 0x4b, 0xe4, 0xdd, 0x74, 0x36, 0x82, 0x33, 0x00, 0x06, - 0x3a, 0x61, 0x63, 0x6d, 0x36, 0x6e, 0xf9, 0xbc, 0x51, 0x17, 0xa2, 0xa4, 0x52, 0x1c, 0xe0, 0xec, - 0x37, 0x00, 0x00, 0xff, 0xff, 0xea, 0xda, 0x6e, 0x33, 0xf6, 0x01, 0x00, 0x00, + // 342 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x6c, 0x91, 0xb1, 0x4a, 0x33, 0x41, + 0x10, 0xc7, 0x6f, 0xf9, 0x20, 0xc5, 0xe5, 0x2b, 0xc2, 0x21, 0x12, 0x43, 0xd8, 0x93, 0xc3, 0x22, + 0xa0, 0xd9, 0x25, 0xb1, 0xd3, 0x2e, 0x0a, 0x69, 0x43, 0xc4, 0xc6, 0x26, 0xee, 0x9d, 0xe3, 0xba, + 0x78, 0x7b, 0x7b, 0xdc, 0x6e, 0x82, 0x79, 0x0b, 0x9f, 0xc3, 0x67, 0xb0, 0x37, 0x65, 0x4a, 0xab, + 0x28, 0x49, 0x67, 0xe9, 0x13, 0xc8, 0xdd, 0x9e, 0x49, 0x20, 0x56, 0x3b, 0xb0, 0xbf, 0xf9, 0xff, + 0x86, 0x19, 0xf7, 0x88, 0x33, 0xc1, 0x28, 0x8f, 0x55, 0xc8, 0xe2, 0x7b, 0x00, 0x3a, 0xe9, 0x84, + 0x60, 0x58, 0x87, 0x72, 0x48, 0x40, 0x0b, 0x4d, 0xd2, 0x4c, 0x19, 0xe5, 0xed, 0xe7, 0x14, 0x59, + 0x53, 0xa4, 0xa4, 0x1a, 0x7b, 0x5c, 0x71, 0x55, 0x20, 0x34, 0xaf, 0x2c, 0xdd, 0xc0, 0x91, 0xd2, + 0x52, 0x69, 0x1a, 0x32, 0xbd, 0x09, 0x8c, 0x94, 0x48, 0xec, 0x7f, 0x70, 0xeb, 0xfe, 0xef, 0xdb, + 0xf8, 0x2b, 0xc3, 0x0c, 0x78, 0x03, 0xb7, 0x92, 0xb2, 0x8c, 0x49, 0x5d, 0x47, 0x87, 0xa8, 0x55, + 0xed, 0x62, 0xf2, 0xb7, 0x8e, 0x0c, 0x0a, 0xaa, 0x57, 0x9f, 0x2d, 0x7c, 0xe7, 0x6b, 0xe1, 0xd7, + 0x6c, 0xd7, 0x89, 0x92, 0xc2, 0x80, 0x4c, 0xcd, 0x74, 0x58, 0xe6, 0x04, 0x6f, 0xc8, 0xad, 0x58, + 0xd8, 0x7b, 0x45, 0xae, 0x27, 0x45, 0x22, 0xe4, 0x58, 0x8e, 0x38, 0xd3, 0xa3, 0x34, 0x13, 0x11, + 0xe4, 0xa6, 0x7f, 0xad, 0x6a, 0xb7, 0x49, 0xec, 0xa8, 0x24, 0x1f, 0x75, 0xad, 0xb9, 0x84, 0xe8, + 0x42, 0x89, 0xa4, 0x97, 0x96, 0x9e, 0xe6, 0x6e, 0xff, 0xc6, 0xf9, 0xbd, 0xf0, 0x0f, 0xa6, 0x4c, + 0xc6, 0x67, 0xc1, 0x2e, 0x15, 0xbc, 0x7c, 0xf8, 0xc7, 0x5c, 0x98, 0x87, 0x71, 0x48, 0x22, 0x25, + 0x69, 0xb9, 0x17, 0xfb, 0xb4, 0xf5, 0xdd, 0x23, 0x35, 0xd3, 0x14, 0xf4, 0xaf, 0x50, 0x0f, 0x6b, + 0x65, 0x46, 0x9f, 0xe9, 0x41, 0x91, 0xd0, 0xbb, 0x9e, 0x2d, 0x31, 0x9a, 0x2f, 0x31, 0xfa, 0x5c, + 0x62, 0xf4, 0xbc, 0xc2, 0xce, 0x7c, 0x85, 0x9d, 0xf7, 0x15, 0x76, 0x6e, 0xce, 0xb7, 0x82, 0xb5, + 0xc9, 0x58, 0xc2, 0x21, 0x56, 0x13, 0x68, 0x4f, 0x20, 0x31, 0xe3, 0x0c, 0xf4, 0xd6, 0x51, 0x9f, + 0xb6, 0xea, 0xc2, 0x18, 0x56, 0x8a, 0x4b, 0x9c, 0xfe, 0x04, 0x00, 0x00, 0xff, 0xff, 0x6b, 0xe0, + 0x41, 0xcb, 0xff, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/globalfee/types/query.pb.go b/x/globalfee/types/query.pb.go index ed3cbd5..51afa98 100644 --- a/x/globalfee/types/query.pb.go +++ b/x/globalfee/types/query.pb.go @@ -125,32 +125,32 @@ func init() { } var fileDescriptor_12a736cede25d10a = []byte{ - // 385 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x92, 0xb1, 0x6f, 0xd3, 0x40, - 0x14, 0xc6, 0x7d, 0x20, 0x18, 0xcc, 0x12, 0x59, 0x08, 0x41, 0x64, 0xce, 0xc8, 0x13, 0x82, 0x70, - 0xa7, 0x18, 0x58, 0x18, 0x03, 0x12, 0x0b, 0x48, 0x90, 0x91, 0x25, 0x3a, 0x9b, 0xe3, 0x38, 0xe1, - 0xf3, 0xbb, 0xf8, 0xce, 0x08, 0xaf, 0xfc, 0x05, 0x95, 0xfa, 0x5f, 0x74, 0xed, 0xda, 0xee, 0x19, - 0x23, 0x75, 0xe9, 0xe4, 0x56, 0x49, 0xa7, 0x8e, 0xfd, 0x0b, 0x2a, 0xdb, 0x49, 0x1b, 0x25, 0x4d, - 0xa5, 0x4e, 0x7e, 0xd2, 0xf7, 0x7b, 0xfe, 0xf4, 0x7d, 0xf7, 0xdc, 0x50, 0x30, 0xc9, 0xa8, 0x48, - 0x21, 0x66, 0xe9, 0x2f, 0xce, 0xe9, 0xdf, 0x7e, 0xcc, 0x2d, 0xeb, 0xd3, 0x71, 0xc1, 0xf3, 0x92, - 0xe8, 0x1c, 0x2c, 0x78, 0x4f, 0x6a, 0x86, 0x5c, 0x31, 0x64, 0xc1, 0x74, 0x1f, 0x0b, 0x10, 0xd0, - 0x20, 0xb4, 0x9e, 0x5a, 0xba, 0xeb, 0x0b, 0x00, 0x91, 0x72, 0xca, 0xb4, 0xa4, 0x2c, 0xcb, 0xc0, - 0x32, 0x2b, 0x21, 0x33, 0x0b, 0x15, 0x27, 0x60, 0x14, 0x18, 0x1a, 0x33, 0x73, 0x6d, 0x96, 0x80, - 0xcc, 0x5a, 0x3d, 0xc4, 0xae, 0xff, 0xbd, 0xb6, 0xfe, 0x2a, 0x33, 0xa9, 0x0a, 0xf5, 0x99, 0x99, - 0x6f, 0xb9, 0x4c, 0xb8, 0x19, 0xf2, 0x71, 0xc1, 0x8d, 0x0d, 0x2b, 0xe4, 0x3e, 0xdf, 0x02, 0x18, - 0x0d, 0x99, 0xe1, 0xde, 0x01, 0x72, 0x3d, 0xd5, 0x8a, 0x23, 0xc1, 0xcc, 0x48, 0x37, 0xf2, 0x53, - 0xf4, 0xe2, 0xfe, 0xcb, 0x47, 0x91, 0x4f, 0x5a, 0x7f, 0x52, 0xfb, 0x2f, 0x83, 0x90, 0x4f, 0x3c, - 0xf9, 0x08, 0x32, 0x1b, 0xe8, 0x49, 0x15, 0x38, 0xe7, 0x55, 0xe0, 0x6f, 0xee, 0xf7, 0x40, 0x49, - 0xcb, 0x95, 0xb6, 0xe5, 0x45, 0x15, 0x3c, 0x2b, 0x99, 0x4a, 0x3f, 0x84, 0x9b, 0x54, 0xb8, 0x77, - 0x12, 0xbc, 0x16, 0xd2, 0xfe, 0x2e, 0x62, 0x92, 0x80, 0xa2, 0x8b, 0xb0, 0xed, 0xe7, 0x8d, 0xf9, - 0xf9, 0x87, 0xda, 0x52, 0x73, 0xb3, 0x34, 0x34, 0xc3, 0x8e, 0x5a, 0x8b, 0x11, 0x1d, 0x22, 0xf7, - 0x41, 0x13, 0xd0, 0xdb, 0x47, 0x6e, 0x67, 0x3d, 0xa5, 0xf7, 0x8e, 0xdc, 0xfc, 0x18, 0xe4, 0xb6, - 0xd6, 0xba, 0xef, 0xef, 0xb8, 0xd5, 0x56, 0x19, 0x46, 0xff, 0x8f, 0xce, 0x76, 0xef, 0xf5, 0xbc, - 0x57, 0x74, 0xcb, 0x95, 0x6c, 0x36, 0x30, 0xf8, 0x32, 0x99, 0x61, 0x34, 0x9d, 0x61, 0x74, 0x3a, - 0xc3, 0x68, 0x67, 0x8e, 0x9d, 0xe9, 0x1c, 0x3b, 0xc7, 0x73, 0xec, 0xfc, 0x88, 0x56, 0x8a, 0xc9, - 0x39, 0x4f, 0xb8, 0x8e, 0x93, 0x42, 0x9b, 0x95, 0xdf, 0xfe, 0x5b, 0x99, 0x9b, 0xa2, 0xe2, 0x87, - 0xcd, 0x55, 0xbc, 0xbd, 0x0c, 0x00, 0x00, 0xff, 0xff, 0x4f, 0xbc, 0x13, 0xc7, 0xa7, 0x02, 0x00, - 0x00, + // 387 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x92, 0xb1, 0x0b, 0xd3, 0x40, + 0x14, 0xc6, 0x73, 0x8a, 0x0e, 0x71, 0x29, 0x41, 0x44, 0x4b, 0xbc, 0x48, 0x26, 0xd1, 0xf6, 0x8e, + 0x56, 0x5d, 0x74, 0xab, 0x82, 0x93, 0xa0, 0x05, 0x17, 0x97, 0x72, 0x89, 0xcf, 0xf3, 0x30, 0x77, + 0x2f, 0xcd, 0x5d, 0x8a, 0x59, 0xfd, 0x0b, 0x04, 0xff, 0x0b, 0x57, 0x57, 0xdd, 0x3b, 0x16, 0x5c, + 0x9c, 0xa2, 0xb4, 0x4e, 0x8e, 0xfe, 0x05, 0x92, 0xa4, 0xd5, 0xd2, 0x5a, 0xc1, 0x29, 0x0f, 0xbe, + 0xdf, 0xcb, 0xc7, 0xf7, 0xdd, 0xf3, 0x63, 0x29, 0x94, 0xe0, 0x32, 0xc3, 0x44, 0x64, 0x2f, 0x00, + 0xf8, 0x62, 0x94, 0x80, 0x13, 0x23, 0x3e, 0x2f, 0xa1, 0xa8, 0x58, 0x5e, 0xa0, 0xc3, 0xe0, 0x52, + 0xc3, 0xb0, 0xdf, 0x0c, 0xdb, 0x32, 0xfd, 0x8b, 0x12, 0x25, 0xb6, 0x08, 0x6f, 0xa6, 0x8e, 0xee, + 0x87, 0x12, 0x51, 0x66, 0xc0, 0x45, 0xae, 0xb8, 0x30, 0x06, 0x9d, 0x70, 0x0a, 0x8d, 0xdd, 0xaa, + 0x34, 0x45, 0xab, 0xd1, 0xf2, 0x44, 0xd8, 0x3f, 0x66, 0x29, 0x2a, 0xd3, 0xe9, 0x31, 0xf5, 0xc3, + 0x27, 0x8d, 0xf5, 0x23, 0x65, 0x94, 0x2e, 0xf5, 0x43, 0x61, 0x1f, 0x17, 0x2a, 0x05, 0x3b, 0x85, + 0x79, 0x09, 0xd6, 0xc5, 0x35, 0xf1, 0xaf, 0x9e, 0x00, 0x6c, 0x8e, 0xc6, 0x42, 0xf0, 0x91, 0xf8, + 0x81, 0xee, 0xc4, 0x99, 0x14, 0x76, 0x96, 0xb7, 0xf2, 0x65, 0x72, 0xed, 0xec, 0xf5, 0x0b, 0xe3, + 0x90, 0x75, 0xfe, 0xac, 0xf1, 0xdf, 0x05, 0x61, 0x0f, 0x20, 0xbd, 0x8f, 0xca, 0x4c, 0xf2, 0x65, + 0x1d, 0x79, 0x3f, 0xea, 0x28, 0x3c, 0xde, 0x1f, 0xa0, 0x56, 0x0e, 0x74, 0xee, 0xaa, 0x9f, 0x75, + 0x74, 0xa5, 0x12, 0x3a, 0xbb, 0x1b, 0x1f, 0x53, 0xf1, 0xfb, 0xaf, 0xd1, 0x4d, 0xa9, 0xdc, 0xcb, + 0x32, 0x61, 0x29, 0x6a, 0xbe, 0x0d, 0xdb, 0x7d, 0x86, 0xf6, 0xf9, 0x2b, 0xee, 0xaa, 0x1c, 0xec, + 0xce, 0xd0, 0x4e, 0x7b, 0xfa, 0x20, 0xc6, 0xf8, 0x13, 0xf1, 0xcf, 0xb5, 0x01, 0x83, 0x0f, 0xc4, + 0xef, 0x1d, 0xa6, 0x0c, 0x6e, 0xb3, 0xbf, 0x3f, 0x06, 0xfb, 0x57, 0x6b, 0xfd, 0x3b, 0xff, 0xb9, + 0xd5, 0x55, 0x19, 0x8f, 0xdf, 0x7c, 0xfe, 0xfe, 0xee, 0xcc, 0x20, 0xb8, 0xc1, 0x4f, 0x5c, 0xc9, + 0x71, 0x03, 0x93, 0xa7, 0xcb, 0x35, 0x25, 0xab, 0x35, 0x25, 0xdf, 0xd6, 0x94, 0xbc, 0xdd, 0x50, + 0x6f, 0xb5, 0xa1, 0xde, 0x97, 0x0d, 0xf5, 0x9e, 0xdd, 0xdb, 0x2b, 0xc6, 0xba, 0x42, 0x18, 0x09, + 0x19, 0x2e, 0x60, 0xb8, 0x00, 0xe3, 0xca, 0x02, 0xec, 0xde, 0xff, 0x5f, 0xef, 0xcd, 0x6d, 0x63, + 0xc9, 0xf9, 0xf6, 0x3c, 0x6e, 0xfd, 0x0a, 0x00, 0x00, 0xff, 0xff, 0x10, 0x64, 0x4a, 0x70, 0xb0, + 0x02, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/globalfee/types/tx.pb.go b/x/globalfee/types/tx.pb.go index c937052..84eac22 100644 --- a/x/globalfee/types/tx.pb.go +++ b/x/globalfee/types/tx.pb.go @@ -137,7 +137,7 @@ func init() { func init() { proto.RegisterFile("gaia/globalfee/v1beta1/tx.proto", fileDescriptor_1b7ff262ac5784d9) } var fileDescriptor_1b7ff262ac5784d9 = []byte{ - // 337 bytes of a gzipped FileDescriptorProto + // 346 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x92, 0x4f, 0x4f, 0xcc, 0x4c, 0xd4, 0x4f, 0xcf, 0xc9, 0x4f, 0x4a, 0xcc, 0x49, 0x4b, 0x4d, 0xd5, 0x2f, 0x33, 0x4c, 0x4a, 0x2d, 0x49, 0x34, 0xd4, 0x2f, 0xa9, 0xd0, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x12, 0x03, 0x29, 0xd0, @@ -154,12 +154,12 @@ var fileDescriptor_1b7ff262ac5784d9 = []byte{ 0xd3, 0x94, 0x24, 0xb9, 0xc4, 0xd1, 0x1c, 0x16, 0x94, 0x5a, 0x5c, 0x90, 0x9f, 0x57, 0x9c, 0x6a, 0x54, 0xc6, 0xc5, 0xec, 0x5b, 0x9c, 0x2e, 0x94, 0xc1, 0xc5, 0x83, 0xe2, 0x6e, 0x75, 0x5c, 0xf6, 0xa1, 0x99, 0x23, 0xa5, 0x4f, 0xa4, 0x42, 0x98, 0x85, 0x52, 0xac, 0x0d, 0xcf, 0x37, 0x68, 0x31, - 0x3a, 0xf9, 0x9c, 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, 0x51, 0x7a, 0x66, - 0x49, 0x46, 0x69, 0x92, 0x5e, 0x72, 0x7e, 0xae, 0x7e, 0x51, 0x6a, 0x6a, 0x72, 0x6a, 0x41, 0x52, - 0x72, 0x69, 0x41, 0x31, 0x52, 0x7c, 0x55, 0x20, 0xb1, 0x4b, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, - 0xc0, 0x31, 0x60, 0x0c, 0x08, 0x00, 0x00, 0xff, 0xff, 0x1d, 0xad, 0x2d, 0xc2, 0x2c, 0x02, 0x00, - 0x00, + 0x3a, 0x85, 0x9e, 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, 0x75, 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, 0x6a, 0x31, 0x52, 0xc4, 0x55, + 0x20, 0xb1, 0x4b, 0x2a, 0x0b, 0x52, 0x8b, 0x93, 0xd8, 0xc0, 0x51, 0x61, 0x0c, 0x08, 0x00, 0x00, + 0xff, 0xff, 0xe9, 0x73, 0x6e, 0x34, 0x35, 0x02, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used.