diff --git a/app/app.go b/app/app.go index f8522446c..09d957bdf 100644 --- a/app/app.go +++ b/app/app.go @@ -24,6 +24,33 @@ import ( "github.com/CosmWasm/wasmd/x/wasm" wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" + appkeepers "github.com/babylonlabs-io/babylon/app/keepers" + appparams "github.com/babylonlabs-io/babylon/app/params" + "github.com/babylonlabs-io/babylon/app/upgrades" + "github.com/babylonlabs-io/babylon/client/docs" + bbn "github.com/babylonlabs-io/babylon/types" + "github.com/babylonlabs-io/babylon/x/btccheckpoint" + btccheckpointtypes "github.com/babylonlabs-io/babylon/x/btccheckpoint/types" + "github.com/babylonlabs-io/babylon/x/btclightclient" + btclightclienttypes "github.com/babylonlabs-io/babylon/x/btclightclient/types" + "github.com/babylonlabs-io/babylon/x/btcstaking" + btcstakingtypes "github.com/babylonlabs-io/babylon/x/btcstaking/types" + "github.com/babylonlabs-io/babylon/x/btcstkconsumer" + bsctypes "github.com/babylonlabs-io/babylon/x/btcstkconsumer/types" + "github.com/babylonlabs-io/babylon/x/checkpointing" + checkpointingtypes "github.com/babylonlabs-io/babylon/x/checkpointing/types" + "github.com/babylonlabs-io/babylon/x/epoching" + epochingkeeper "github.com/babylonlabs-io/babylon/x/epoching/keeper" + epochingtypes "github.com/babylonlabs-io/babylon/x/epoching/types" + "github.com/babylonlabs-io/babylon/x/finality" + finalitytypes "github.com/babylonlabs-io/babylon/x/finality/types" + "github.com/babylonlabs-io/babylon/x/incentive" + incentivetypes "github.com/babylonlabs-io/babylon/x/incentive/types" + "github.com/babylonlabs-io/babylon/x/monitor" + monitortypes "github.com/babylonlabs-io/babylon/x/monitor/types" + "github.com/babylonlabs-io/babylon/x/zoneconcierge" + zckeeper "github.com/babylonlabs-io/babylon/x/zoneconcierge/keeper" + zctypes "github.com/babylonlabs-io/babylon/x/zoneconcierge/types" abci "github.com/cometbft/cometbft/abci/types" cmtos "github.com/cometbft/cometbft/libs/os" cmtproto "github.com/cometbft/cometbft/proto/tendermint/types" @@ -92,33 +119,6 @@ import ( ibcexported "github.com/cosmos/ibc-go/v8/modules/core/exported" ibctm "github.com/cosmos/ibc-go/v8/modules/light-clients/07-tendermint" "github.com/spf13/cast" - - "github.com/babylonlabs-io/babylon/app/upgrades" - bbn "github.com/babylonlabs-io/babylon/types" - - appkeepers "github.com/babylonlabs-io/babylon/app/keepers" - appparams "github.com/babylonlabs-io/babylon/app/params" - "github.com/babylonlabs-io/babylon/client/docs" - "github.com/babylonlabs-io/babylon/x/btccheckpoint" - btccheckpointtypes "github.com/babylonlabs-io/babylon/x/btccheckpoint/types" - "github.com/babylonlabs-io/babylon/x/btclightclient" - btclightclienttypes "github.com/babylonlabs-io/babylon/x/btclightclient/types" - "github.com/babylonlabs-io/babylon/x/btcstaking" - btcstakingtypes "github.com/babylonlabs-io/babylon/x/btcstaking/types" - "github.com/babylonlabs-io/babylon/x/checkpointing" - checkpointingtypes "github.com/babylonlabs-io/babylon/x/checkpointing/types" - "github.com/babylonlabs-io/babylon/x/epoching" - epochingkeeper "github.com/babylonlabs-io/babylon/x/epoching/keeper" - epochingtypes "github.com/babylonlabs-io/babylon/x/epoching/types" - "github.com/babylonlabs-io/babylon/x/finality" - finalitytypes "github.com/babylonlabs-io/babylon/x/finality/types" - "github.com/babylonlabs-io/babylon/x/incentive" - incentivetypes "github.com/babylonlabs-io/babylon/x/incentive/types" - "github.com/babylonlabs-io/babylon/x/monitor" - monitortypes "github.com/babylonlabs-io/babylon/x/monitor/types" - "github.com/babylonlabs-io/babylon/x/zoneconcierge" - zckeeper "github.com/babylonlabs-io/babylon/x/zoneconcierge/keeper" - zctypes "github.com/babylonlabs-io/babylon/x/zoneconcierge/types" ) const ( @@ -576,7 +576,7 @@ func NewBabylonApp( // At startup, after all modules have been registered, check that all proto // annotations are correct. - // FIXME (https://github.com/babylonchain/babylon-private/issues/266): This is a temporary fix + // FIXME (https://github.com/babylonlabs-io/babylon-private/issues/266): This is a temporary fix protoFiles, _ := proto.MergedRegistry() // if err != nil { // panic(err) diff --git a/app/keepers/keepers.go b/app/keepers/keepers.go index 74174a608..6630cc28b 100644 --- a/app/keepers/keepers.go +++ b/app/keepers/keepers.go @@ -70,6 +70,8 @@ import ( btclightclienttypes "github.com/babylonlabs-io/babylon/x/btclightclient/types" btcstakingkeeper "github.com/babylonlabs-io/babylon/x/btcstaking/keeper" btcstakingtypes "github.com/babylonlabs-io/babylon/x/btcstaking/types" + bsckeeper "github.com/babylonlabs-io/babylon/x/btcstkconsumer/keeper" + bsctypes "github.com/babylonlabs-io/babylon/x/btcstkconsumer/types" checkpointingkeeper "github.com/babylonlabs-io/babylon/x/checkpointing/keeper" checkpointingtypes "github.com/babylonlabs-io/babylon/x/checkpointing/types" epochingkeeper "github.com/babylonlabs-io/babylon/x/epoching/keeper" @@ -129,11 +131,14 @@ type AppKeepers struct { MonitorKeeper monitorkeeper.Keeper // IBC-related modules - IBCKeeper *ibckeeper.Keeper // IBC Keeper must be a pointer in the app, so we can SetRouter on it correctly - IBCFeeKeeper ibcfeekeeper.Keeper // for relayer incentivization - https://github.com/cosmos/ibc/tree/main/spec/app/ics-029-fee-payment - TransferKeeper ibctransferkeeper.Keeper // for cross-chain fungible token transfers - IBCWasmKeeper ibcwasmkeeper.Keeper // for IBC wasm light clients - ZoneConciergeKeeper zckeeper.Keeper // for cross-chain fungible token transfers + IBCKeeper *ibckeeper.Keeper // IBC Keeper must be a pointer in the app, so we can SetRouter on it correctly + IBCFeeKeeper ibcfeekeeper.Keeper // for relayer incentivization - https://github.com/cosmos/ibc/tree/main/spec/app/ics-029-fee-payment + TransferKeeper ibctransferkeeper.Keeper // for cross-chain fungible token transfers + IBCWasmKeeper ibcwasmkeeper.Keeper // for IBC wasm light clients + + // Integration-related modules + BTCStkConsumerKeeper bsckeeper.Keeper + ZoneConciergeKeeper zckeeper.Keeper // BTC staking related modules BTCStakingKeeper btcstakingkeeper.Keeper @@ -463,25 +468,6 @@ func (ak *AppKeepers) InitKeepers( ak.IBCKeeper.PortKeeper, ak.AccountKeeper, ak.BankKeeper, ) - zcKeeper := zckeeper.NewKeeper( - appCodec, - runtime.NewKVStoreService(keys[zctypes.StoreKey]), - ak.IBCFeeKeeper, - ak.IBCKeeper.ClientKeeper, - ak.IBCKeeper.ChannelKeeper, - ak.IBCKeeper.PortKeeper, - ak.AccountKeeper, - ak.BankKeeper, - &btclightclientKeeper, - &checkpointingKeeper, - &btcCheckpointKeeper, - epochingKeeper, - storeQuerier, - scopedZoneConciergeKeeper, - authtypes.NewModuleAddress(govtypes.ModuleName).String(), - ) - ak.ZoneConciergeKeeper = *zcKeeper - // Create Transfer Keepers ak.TransferKeeper = ibctransferkeeper.NewKeeper( appCodec, @@ -518,6 +504,14 @@ func (ak *AppKeepers) InitKeepers( btclightclienttypes.NewMultiBTCLightClientHooks(ak.BtcCheckpointKeeper.Hooks()), ) + ak.BTCStkConsumerKeeper = bsckeeper.NewKeeper( + appCodec, + runtime.NewKVStoreService(keys[bsctypes.StoreKey]), + ak.AccountKeeper, + ak.BankKeeper, + authtypes.NewModuleAddress(govtypes.ModuleName).String(), + ) + // set up BTC staking keeper ak.BTCStakingKeeper = btcstakingkeeper.NewKeeper( appCodec, @@ -525,6 +519,7 @@ func (ak *AppKeepers) InitKeepers( &btclightclientKeeper, &btcCheckpointKeeper, &checkpointingKeeper, + &ak.BTCStkConsumerKeeper, btcNetParams, authtypes.NewModuleAddress(govtypes.ModuleName).String(), ) @@ -540,6 +535,26 @@ func (ak *AppKeepers) InitKeepers( ak.BTCStakingKeeper = *ak.BTCStakingKeeper.SetHooks(btcstakingtypes.NewMultiBtcStakingHooks(ak.FinalityKeeper.Hooks())) ak.FinalityKeeper = *ak.FinalityKeeper.SetHooks(finalitytypes.NewMultiFinalityHooks(ak.BTCStakingKeeper.Hooks())) + zcKeeper := zckeeper.NewKeeper( + appCodec, + runtime.NewKVStoreService(keys[zctypes.StoreKey]), + ak.IBCFeeKeeper, + ak.IBCKeeper.ClientKeeper, + ak.IBCKeeper.ChannelKeeper, + ak.IBCKeeper.PortKeeper, + ak.AccountKeeper, + ak.BankKeeper, + &btclightclientKeeper, + &checkpointingKeeper, + &btcCheckpointKeeper, + epochingKeeper, + storeQuerier, + &ak.BTCStakingKeeper, + scopedZoneConciergeKeeper, + authtypes.NewModuleAddress(govtypes.ModuleName).String(), + ) + ak.ZoneConciergeKeeper = *zcKeeper + // create evidence keeper with router evidenceKeeper := evidencekeeper.NewKeeper( appCodec, diff --git a/client/query/btcstkconsumer.go b/client/query/btcstkconsumer.go index 8601e9791..20a363bbe 100644 --- a/client/query/btcstkconsumer.go +++ b/client/query/btcstkconsumer.go @@ -3,7 +3,7 @@ package query import ( "context" - bsctypes "github.com/babylonchain/babylon/x/btcstkconsumer/types" + bsctypes "github.com/babylonlabs-io/babylon/x/btcstkconsumer/types" "github.com/cosmos/cosmos-sdk/client" sdkquerytypes "github.com/cosmos/cosmos-sdk/types/query" ) diff --git a/go.mod b/go.mod index 57f9595cd..6be04f2a7 100644 --- a/go.mod +++ b/go.mod @@ -146,7 +146,6 @@ require ( cloud.google.com/go/compute/metadata v0.3.0 // indirect cloud.google.com/go/iam v1.1.6 // indirect cloud.google.com/go/storage v1.38.0 // indirect - cosmossdk.io/collections v0.4.0 // indirect cosmossdk.io/x/nft v0.1.0 // indirect github.com/99designs/go-keychain v0.0.0-20191008050251-8e49817e8af4 // indirect github.com/Azure/go-ansiterm v0.0.0-20230124172434-306776ec8161 // indirect @@ -157,7 +156,6 @@ require ( github.com/aead/siphash v1.0.1 // indirect github.com/aws/aws-sdk-go v1.44.312 // indirect github.com/bgentry/go-netrc v0.0.0-20140422174119-9fd32a8b3d3d // indirect - github.com/bits-and-blooms/bitset v1.10.0 // indirect github.com/bufbuild/connect-go v1.5.2 // indirect github.com/bufbuild/protocompile v0.6.0 // indirect github.com/cenkalti/backoff/v4 v4.2.0 // indirect diff --git a/proto/babylon/btcstaking/v1/packet.proto b/proto/babylon/btcstaking/v1/packet.proto index 5507d130b..286c1dbc3 100644 --- a/proto/babylon/btcstaking/v1/packet.proto +++ b/proto/babylon/btcstaking/v1/packet.proto @@ -5,7 +5,7 @@ import "cosmos/staking/v1beta1/staking.proto"; import "babylon/btcstaking/v1/pop.proto"; import "babylon/btcstaking/v1/btcstaking.proto"; -option go_package = "github.com/babylonchain/babylon/x/btcstaking/types"; +option go_package = "github.com/babylonlabs-io/babylon/x/btcstaking/types"; // ConsumerIBCPacket is an IBC packet sent from consumer to Babylon // upon a finality provider being slashed on the consumer diff --git a/proto/babylon/btcstkconsumer/v1/btcstkconsumer.proto b/proto/babylon/btcstkconsumer/v1/btcstkconsumer.proto index ff42713af..1ab95801c 100644 --- a/proto/babylon/btcstkconsumer/v1/btcstkconsumer.proto +++ b/proto/babylon/btcstkconsumer/v1/btcstkconsumer.proto @@ -1,7 +1,7 @@ syntax = "proto3"; package babylon.btcstkconsumer.v1; -option go_package = "github.com/babylonchain/babylon/x/btcstkconsumer/types"; +option go_package = "github.com/babylonlabs-io/babylon/x/btcstkconsumer/types"; // ConsumerRegister is the registration information of a consumer message ConsumerRegister { diff --git a/proto/babylon/btcstkconsumer/v1/genesis.proto b/proto/babylon/btcstkconsumer/v1/genesis.proto index 5da464486..29fd226e2 100644 --- a/proto/babylon/btcstkconsumer/v1/genesis.proto +++ b/proto/babylon/btcstkconsumer/v1/genesis.proto @@ -5,7 +5,7 @@ import "amino/amino.proto"; import "gogoproto/gogo.proto"; import "babylon/btcstkconsumer/v1/params.proto"; -option go_package = "github.com/babylonchain/babylon/x/btcstkconsumer/types"; +option go_package = "github.com/babylonlabs-io/babylon/x/btcstkconsumer/types"; // GenesisState defines the btcstkconsumer module's genesis state. message GenesisState { diff --git a/proto/babylon/btcstkconsumer/v1/params.proto b/proto/babylon/btcstkconsumer/v1/params.proto index da07f79ee..2bc7218c6 100644 --- a/proto/babylon/btcstkconsumer/v1/params.proto +++ b/proto/babylon/btcstkconsumer/v1/params.proto @@ -4,7 +4,7 @@ package babylon.btcstkconsumer.v1; import "amino/amino.proto"; import "gogoproto/gogo.proto"; -option go_package = "github.com/babylonchain/babylon/x/btcstkconsumer/types"; +option go_package = "github.com/babylonlabs-io/babylon/x/btcstkconsumer/types"; // Params defines the parameters for the module. message Params { diff --git a/proto/babylon/btcstkconsumer/v1/query.proto b/proto/babylon/btcstkconsumer/v1/query.proto index 1639d9b5e..3ababf823 100644 --- a/proto/babylon/btcstkconsumer/v1/query.proto +++ b/proto/babylon/btcstkconsumer/v1/query.proto @@ -12,7 +12,7 @@ import "babylon/btcstaking/v1/pop.proto"; import "babylon/btcstkconsumer/v1/btcstkconsumer.proto"; import "babylon/btcstkconsumer/v1/params.proto"; -option go_package = "github.com/babylonchain/babylon/x/btcstkconsumer/types"; +option go_package = "github.com/babylonlabs-io/babylon/x/btcstkconsumer/types"; // Query defines the gRPC querier service. service Query { @@ -124,7 +124,7 @@ message FinalityProviderResponse { string addr = 3 [(cosmos_proto.scalar) = "cosmos.AddressString"]; // btc_pk is the Bitcoin secp256k1 PK of this finality provider // the PK follows encoding in BIP-340 spec - bytes btc_pk = 4 [ (gogoproto.customtype) = "github.com/babylonchain/babylon/types.BIP340PubKey" ]; + bytes btc_pk = 4 [ (gogoproto.customtype) = "github.com/babylonlabs-io/babylon/types.BIP340PubKey" ]; // pop is the proof of possession of babylon_pk and btc_pk btcstaking.v1.ProofOfPossessionBTC pop = 5; // slashed_babylon_height indicates the Babylon height when diff --git a/proto/babylon/btcstkconsumer/v1/tx.proto b/proto/babylon/btcstkconsumer/v1/tx.proto index bb3c0f1d0..e544d24ad 100644 --- a/proto/babylon/btcstkconsumer/v1/tx.proto +++ b/proto/babylon/btcstkconsumer/v1/tx.proto @@ -7,7 +7,7 @@ import "cosmos_proto/cosmos.proto"; import "gogoproto/gogo.proto"; import "babylon/btcstkconsumer/v1/params.proto"; -option go_package = "github.com/babylonchain/babylon/x/btcstkconsumer/types"; +option go_package = "github.com/babylonlabs-io/babylon/x/btcstkconsumer/types"; // Msg defines the Msg service. service Msg { diff --git a/proto/buf.lock b/proto/buf.lock index 850ba5bf8..96e6f0d73 100644 --- a/proto/buf.lock +++ b/proto/buf.lock @@ -19,8 +19,8 @@ deps: - remote: buf.build owner: cosmos repository: ibc - commit: 6b221c7d310545198c1dafe70287d254 - digest: shake256:c5ea4d89af1c47f4d02057892eacdcb863359178079d9599f30d853b374fe9e9bfb3d9ca6720361c3439999a885a4f87fff4cd41c6c26b1f1142d60c386f8323 + commit: ef1dd1634b6c429bb2b52d983a683ce3 + digest: shake256:8325b0de8e8a2e027a8d33e0585a13273ce34b510cbedf7b785882a785baa62d42405ab2a836ea42fb1ddf098580f5cfc2414b1851dfcdd0b7c84851e96afeb9 - remote: buf.build owner: cosmos repository: ics23 diff --git a/test/e2e/btc_staking_e2e_test.go b/test/e2e/btc_staking_e2e_test.go index 4823db92f..f3e837e65 100644 --- a/test/e2e/btc_staking_e2e_test.go +++ b/test/e2e/btc_staking_e2e_test.go @@ -9,7 +9,6 @@ import ( sdkmath "cosmossdk.io/math" feegrantcli "cosmossdk.io/x/feegrant/client/cli" - "github.com/babylonlabs-io/babylon/app/params" "github.com/babylonlabs-io/babylon/crypto/eots" "github.com/babylonlabs-io/babylon/test/e2e/configurer" @@ -21,6 +20,12 @@ import ( bstypes "github.com/babylonlabs-io/babylon/x/btcstaking/types" ftypes "github.com/babylonlabs-io/babylon/x/finality/types" itypes "github.com/babylonlabs-io/babylon/x/incentive/types" + "github.com/btcsuite/btcd/btcec/v2" + "github.com/btcsuite/btcd/btcutil" + "github.com/btcsuite/btcd/chaincfg" + "github.com/btcsuite/btcd/wire" + sdk "github.com/cosmos/cosmos-sdk/types" + "github.com/stretchr/testify/suite" ) var ( @@ -704,8 +709,9 @@ func (s *BTCStakingTestSuite) Test8BTCDelegationFeeGrantTyped() { // s.Require().Contains(output, feegrant.ErrFeeLimitExceeded.Error()) // submit the message to create BTC delegation using the fee grant at the max of spend limit + btcPKs := []bbn.BIP340PubKey{*bbn.NewBIP340PubKeyFromBTCPK(delBTCPK)} node.CreateBTCDelegation( - delBTCPKs, + btcPKs, pop, stakingTxInfo, []*bbn.BIP340PubKey{cacheFP.BtcPk}, diff --git a/test/e2e/btc_staking_integration_e2e_test.go b/test/e2e/btc_staking_integration_e2e_test.go index 1abc2afc2..f7ff1a6ee 100644 --- a/test/e2e/btc_staking_integration_e2e_test.go +++ b/test/e2e/btc_staking_integration_e2e_test.go @@ -7,14 +7,14 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/babylonchain/babylon/test/e2e/configurer" - "github.com/babylonchain/babylon/test/e2e/configurer/chain" - "github.com/babylonchain/babylon/test/e2e/initialization" - "github.com/babylonchain/babylon/testutil/datagen" - bbn "github.com/babylonchain/babylon/types" - btcctypes "github.com/babylonchain/babylon/x/btccheckpoint/types" - bstypes "github.com/babylonchain/babylon/x/btcstaking/types" - bsctypes "github.com/babylonchain/babylon/x/btcstkconsumer/types" + "github.com/babylonlabs-io/babylon/test/e2e/configurer" + "github.com/babylonlabs-io/babylon/test/e2e/configurer/chain" + "github.com/babylonlabs-io/babylon/test/e2e/initialization" + "github.com/babylonlabs-io/babylon/testutil/datagen" + bbn "github.com/babylonlabs-io/babylon/types" + btcctypes "github.com/babylonlabs-io/babylon/x/btccheckpoint/types" + bstypes "github.com/babylonlabs-io/babylon/x/btcstaking/types" + bsctypes "github.com/babylonlabs-io/babylon/x/btcstkconsumer/types" "github.com/btcsuite/btcd/btcec/v2" "github.com/btcsuite/btcd/btcutil" "github.com/btcsuite/btcd/wire" diff --git a/test/e2e/btc_timestamping_e2e_test.go b/test/e2e/btc_timestamping_e2e_test.go index d6f7268bd..93c504403 100644 --- a/test/e2e/btc_timestamping_e2e_test.go +++ b/test/e2e/btc_timestamping_e2e_test.go @@ -9,6 +9,7 @@ import ( "strconv" "time" + wasmtypes "github.com/CosmWasm/wasmd/x/wasm/types" "github.com/babylonlabs-io/babylon/test/e2e/configurer" "github.com/babylonlabs-io/babylon/test/e2e/initialization" bbn "github.com/babylonlabs-io/babylon/types" diff --git a/test/e2e/configurer/chain/commands_btcstaking_integration.go b/test/e2e/configurer/chain/commands_btcstaking_integration.go index 94145a337..d8ef9e2b5 100644 --- a/test/e2e/configurer/chain/commands_btcstaking_integration.go +++ b/test/e2e/configurer/chain/commands_btcstaking_integration.go @@ -1,10 +1,11 @@ package chain import ( - sdkmath "cosmossdk.io/math" "fmt" - bbn "github.com/babylonchain/babylon/types" - bstypes "github.com/babylonchain/babylon/x/btcstaking/types" + + sdkmath "cosmossdk.io/math" + bbn "github.com/babylonlabs-io/babylon/types" + bstypes "github.com/babylonlabs-io/babylon/x/btcstaking/types" "github.com/stretchr/testify/require" ) diff --git a/test/e2e/configurer/chain/queries_btcstaking_contract.go b/test/e2e/configurer/chain/queries_btcstaking_contract.go index 60c834226..b451283f5 100644 --- a/test/e2e/configurer/chain/queries_btcstaking_contract.go +++ b/test/e2e/configurer/chain/queries_btcstaking_contract.go @@ -15,8 +15,8 @@ type ConsumerFpsResponse struct { // ConsumerFpResponse represents the finality provider data returned by the contract query. // For more details, refer to the following links: -// https://github.com/babylonchain/babylon-contract/blob/v0.7.0/contracts/btc-staking/src/msg.rs -// https://github.com/babylonchain/babylon-contract/blob/v0.7.0/contracts/btc-staking/schema/btc-staking.json +// https://github.com/babylonlabs-io/babylon-contract/blob/v0.7.0/contracts/btc-staking/src/msg.rs +// https://github.com/babylonlabs-io/babylon-contract/blob/v0.7.0/contracts/btc-staking/schema/btc-staking.json type ConsumerFpResponse struct { BtcPkHex string `json:"btc_pk_hex"` SlashedHeight uint64 `json:"slashed_height"` diff --git a/test/e2e/configurer/chain/queries_btcstaking_integration.go b/test/e2e/configurer/chain/queries_btcstaking_integration.go index 54efd7daa..7f237779d 100644 --- a/test/e2e/configurer/chain/queries_btcstaking_integration.go +++ b/test/e2e/configurer/chain/queries_btcstaking_integration.go @@ -6,8 +6,8 @@ import ( "net/url" "strconv" - "github.com/babylonchain/babylon/test/e2e/util" - bsctypes "github.com/babylonchain/babylon/x/btcstkconsumer/types" + "github.com/babylonlabs-io/babylon/test/e2e/util" + bsctypes "github.com/babylonlabs-io/babylon/x/btcstkconsumer/types" "github.com/cosmos/cosmos-sdk/types/query" "github.com/stretchr/testify/require" ) diff --git a/testutil/datagen/btcstkconsumer.go b/testutil/datagen/btcstkconsumer.go index 38f66e940..18c7e28f3 100644 --- a/testutil/datagen/btcstkconsumer.go +++ b/testutil/datagen/btcstkconsumer.go @@ -3,7 +3,7 @@ package datagen import ( "math/rand" - bsctypes "github.com/babylonchain/babylon/x/btcstkconsumer/types" + bsctypes "github.com/babylonlabs-io/babylon/x/btcstkconsumer/types" ) func GenRandomConsumerRegister(r *rand.Rand) *bsctypes.ConsumerRegister { diff --git a/testutil/keeper/btcstkconsumer.go b/testutil/keeper/btcstkconsumer.go index 3da4dd9a9..9c761b58a 100644 --- a/testutil/keeper/btcstkconsumer.go +++ b/testutil/keeper/btcstkconsumer.go @@ -17,8 +17,8 @@ import ( govtypes "github.com/cosmos/cosmos-sdk/x/gov/types" "github.com/stretchr/testify/require" - "github.com/babylonchain/babylon/x/btcstkconsumer/keeper" - "github.com/babylonchain/babylon/x/btcstkconsumer/types" + "github.com/babylonlabs-io/babylon/x/btcstkconsumer/keeper" + "github.com/babylonlabs-io/babylon/x/btcstkconsumer/types" ) func BTCStkConsumerKeeper(t testing.TB) (keeper.Keeper, sdk.Context) { diff --git a/wasmbinding/grpc_whitelist.go b/wasmbinding/grpc_whitelist.go index 9f38ef44b..3c409b560 100644 --- a/wasmbinding/grpc_whitelist.go +++ b/wasmbinding/grpc_whitelist.go @@ -2,9 +2,9 @@ package wasmbinding import ( wasmkeeper "github.com/CosmWasm/wasmd/x/wasm/keeper" - bsttypes "github.com/babylonchain/babylon/x/btcstaking/types" - bsctypes "github.com/babylonchain/babylon/x/btcstkconsumer/types" - epochtypes "github.com/babylonchain/babylon/x/epoching/types" + bsttypes "github.com/babylonlabs-io/babylon/x/btcstaking/types" + bsctypes "github.com/babylonlabs-io/babylon/x/btcstkconsumer/types" + epochtypes "github.com/babylonlabs-io/babylon/x/epoching/types" ) // WhitelistedGrpcQuery returns the whitelisted Grpc queries diff --git a/wasmbinding/test/grpc_query_test.go b/wasmbinding/test/grpc_query_test.go index 6f6aaae0b..b57780104 100644 --- a/wasmbinding/test/grpc_query_test.go +++ b/wasmbinding/test/grpc_query_test.go @@ -5,8 +5,8 @@ import ( "testing" "github.com/CosmWasm/wasmd/x/wasm/keeper" - "github.com/babylonchain/babylon/app" - epochingtypes "github.com/babylonchain/babylon/x/epoching/types" + "github.com/babylonlabs-io/babylon/app" + epochingtypes "github.com/babylonlabs-io/babylon/x/epoching/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" ) diff --git a/wasmbinding/test/testutils.go b/wasmbinding/test/testutils.go index 6f707daf1..5dda26103 100644 --- a/wasmbinding/test/testutils.go +++ b/wasmbinding/test/testutils.go @@ -8,7 +8,7 @@ import ( "cosmossdk.io/math" "github.com/CosmWasm/wasmd/x/wasm/keeper" - "github.com/babylonchain/babylon/app" + "github.com/babylonlabs-io/babylon/app" "github.com/cometbft/cometbft/crypto" "github.com/cometbft/cometbft/crypto/ed25519" cmtproto "github.com/cometbft/cometbft/proto/tendermint/types" diff --git a/x/btcstaking/keeper/btc_consumer_delegations.go b/x/btcstaking/keeper/btc_consumer_delegations.go index dfe23c3b1..2fc80d7df 100644 --- a/x/btcstaking/keeper/btc_consumer_delegations.go +++ b/x/btcstaking/keeper/btc_consumer_delegations.go @@ -4,8 +4,8 @@ import ( "context" "cosmossdk.io/store/prefix" - bbn "github.com/babylonchain/babylon/types" - bstypes "github.com/babylonchain/babylon/x/btcstaking/types" + bbn "github.com/babylonlabs-io/babylon/types" + bstypes "github.com/babylonlabs-io/babylon/x/btcstaking/types" "github.com/btcsuite/btcd/chaincfg/chainhash" "github.com/cosmos/cosmos-sdk/runtime" sdk "github.com/cosmos/cosmos-sdk/types" diff --git a/x/btcstaking/keeper/btc_staking_consumer_events.go b/x/btcstaking/keeper/btc_staking_consumer_events.go index 3bbcd2a5a..a87871fc8 100644 --- a/x/btcstaking/keeper/btc_staking_consumer_events.go +++ b/x/btcstaking/keeper/btc_staking_consumer_events.go @@ -5,7 +5,7 @@ import ( "fmt" "cosmossdk.io/store/prefix" - "github.com/babylonchain/babylon/x/btcstaking/types" + "github.com/babylonlabs-io/babylon/x/btcstaking/types" "github.com/cosmos/cosmos-sdk/runtime" ) diff --git a/x/btcstaking/keeper/btc_staking_consumer_events_test.go b/x/btcstaking/keeper/btc_staking_consumer_events_test.go index 983067e2d..4be39c03f 100644 --- a/x/btcstaking/keeper/btc_staking_consumer_events_test.go +++ b/x/btcstaking/keeper/btc_staking_consumer_events_test.go @@ -4,10 +4,10 @@ import ( "math/rand" "testing" - "github.com/babylonchain/babylon/testutil/datagen" - bbn "github.com/babylonchain/babylon/types" - "github.com/babylonchain/babylon/x/btcstaking/types" - bsctypes "github.com/babylonchain/babylon/x/btcstkconsumer/types" + "github.com/babylonlabs-io/babylon/testutil/datagen" + bbn "github.com/babylonlabs-io/babylon/types" + "github.com/babylonlabs-io/babylon/x/btcstaking/types" + bsctypes "github.com/babylonlabs-io/babylon/x/btcstkconsumer/types" "github.com/btcsuite/btcd/btcec/v2" "github.com/golang/mock/gomock" "github.com/stretchr/testify/require" diff --git a/x/btcstaking/keeper/restaking_test.go b/x/btcstaking/keeper/restaking_test.go index ffe07d12a..2e151aaa9 100644 --- a/x/btcstaking/keeper/restaking_test.go +++ b/x/btcstaking/keeper/restaking_test.go @@ -5,9 +5,9 @@ import ( "math/rand" "testing" - "github.com/babylonchain/babylon/testutil/datagen" - bbn "github.com/babylonchain/babylon/types" - "github.com/babylonchain/babylon/x/btcstaking/types" + "github.com/babylonlabs-io/babylon/testutil/datagen" + bbn "github.com/babylonlabs-io/babylon/types" + "github.com/babylonlabs-io/babylon/x/btcstaking/types" "github.com/btcsuite/btcd/btcec/v2" "github.com/golang/mock/gomock" "github.com/stretchr/testify/require" diff --git a/x/btcstaking/types/packet.pb.go b/x/btcstaking/types/packet.pb.go index 4a69d0ccd..53c2797b5 100644 --- a/x/btcstaking/types/packet.pb.go +++ b/x/btcstaking/types/packet.pb.go @@ -818,72 +818,72 @@ func init() { } var fileDescriptor_3ed0d17ad14d6c0e = []byte{ - // 1037 bytes of a gzipped FileDescriptorProto + // 1039 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x9c, 0x56, 0x4f, 0x73, 0xda, 0x46, - 0x14, 0x47, 0x18, 0x3b, 0xe1, 0x01, 0x8e, 0xb3, 0xb6, 0x63, 0x4d, 0xd2, 0x12, 0x97, 0xa4, 0x19, - 0xa6, 0x4d, 0x45, 0xed, 0x76, 0x7a, 0xeb, 0xc1, 0xe0, 0x78, 0xf0, 0xd4, 0x8d, 0xa9, 0xc0, 0xed, - 0x4c, 0x2f, 0x9a, 0x95, 0xb4, 0xc0, 0x0e, 0xb0, 0xab, 0xd1, 0x2e, 0x18, 0x7f, 0x89, 0x4e, 0x0f, - 0xfd, 0x44, 0x3d, 0xf5, 0x98, 0x5b, 0x7b, 0xec, 0xd8, 0xdf, 0xa2, 0xa7, 0x8e, 0x56, 0x12, 0x12, - 0x18, 0x3c, 0xa5, 0x37, 0x78, 0xef, 0xf7, 0xfe, 0xff, 0xde, 0x3e, 0x41, 0xc5, 0xc6, 0xf6, 0xcd, - 0x90, 0xb3, 0x9a, 0x2d, 0x1d, 0x21, 0xf1, 0x80, 0xb2, 0x5e, 0x6d, 0x72, 0x54, 0xf3, 0xb0, 0x33, - 0x20, 0xd2, 0xf0, 0x7c, 0x2e, 0x39, 0xda, 0x8f, 0x30, 0x46, 0x82, 0x31, 0x26, 0x47, 0xcf, 0x5f, - 0x3b, 0x5c, 0x8c, 0xb8, 0xa8, 0x25, 0x66, 0x36, 0x91, 0xf8, 0x28, 0xfe, 0x1f, 0x1a, 0x3f, 0x7f, - 0xb9, 0x22, 0x00, 0xf7, 0x22, 0xc0, 0x9b, 0xe5, 0x80, 0x54, 0x2c, 0x85, 0xab, 0xd8, 0xf0, 0xb4, - 0xc1, 0x99, 0x18, 0x8f, 0x88, 0x7f, 0x5e, 0x6f, 0xb4, 0x54, 0x82, 0xe8, 0x7b, 0x00, 0x31, 0xc4, - 0xa2, 0x4f, 0x5c, 0xab, 0xeb, 0xe9, 0xda, 0xe1, 0x46, 0xb5, 0x70, 0x6c, 0x18, 0x4b, 0xf3, 0x35, - 0xda, 0x21, 0xf0, 0x8c, 0x32, 0x3c, 0xa4, 0xf2, 0xa6, 0xe5, 0xf3, 0x09, 0x75, 0x89, 0x6f, 0xe6, - 0x23, 0x0f, 0x67, 0x5e, 0xa5, 0x0b, 0x07, 0x2b, 0x50, 0xe8, 0x23, 0x00, 0x5b, 0x3a, 0x96, 0x37, - 0xb0, 0xfa, 0x64, 0xaa, 0x6b, 0x87, 0x5a, 0x35, 0x6f, 0x3e, 0xb6, 0xa5, 0xd3, 0x1a, 0x34, 0xc9, - 0x14, 0x7d, 0x01, 0xbb, 0x3e, 0x71, 0xf8, 0x84, 0xf8, 0x2a, 0x13, 0x2b, 0x80, 0x8a, 0x81, 0x9e, - 0x55, 0xb0, 0x9d, 0x99, 0xea, 0xcc, 0xab, 0x4b, 0xa7, 0x3d, 0xa8, 0xfc, 0x9e, 0x85, 0xdd, 0x7a, - 0xa7, 0xd1, 0x0e, 0x93, 0x4b, 0xca, 0x39, 0x81, 0x2d, 0x46, 0xae, 0x93, 0x52, 0x3e, 0x5b, 0x51, - 0xca, 0x7b, 0x72, 0x7d, 0xaf, 0x8c, 0x4d, 0x46, 0xae, 0xcf, 0x3c, 0x74, 0x0e, 0x80, 0x1d, 0x49, - 0x27, 0xc4, 0x72, 0xc9, 0x50, 0xcf, 0x3e, 0xe8, 0xe6, 0x44, 0x01, 0xeb, 0x9d, 0xc6, 0x29, 0x19, - 0x92, 0x1e, 0x96, 0x94, 0x33, 0x33, 0x1f, 0x5a, 0x9f, 0x92, 0x21, 0xba, 0x80, 0x42, 0xdc, 0xdc, - 0xc0, 0xd7, 0x86, 0xf2, 0xf5, 0xf9, 0xc3, 0xdd, 0x9d, 0x77, 0x16, 0x0f, 0x27, 0xf0, 0x76, 0x09, - 0xc5, 0x31, 0xb3, 0x39, 0x73, 0x23, 0x77, 0x39, 0xe5, 0xee, 0xed, 0x0a, 0x77, 0x57, 0x11, 0x74, - 0xde, 0x5f, 0x21, 0xf6, 0x70, 0x4a, 0x86, 0x95, 0x5f, 0xb2, 0xb0, 0xbb, 0xa4, 0x11, 0xe8, 0x1d, - 0x14, 0x5c, 0x22, 0x1c, 0x9f, 0x7a, 0x81, 0x8d, 0x1a, 0x55, 0xe1, 0xf8, 0x95, 0x11, 0xb2, 0xd5, - 0x48, 0x62, 0x28, 0xb6, 0x1a, 0xa7, 0x09, 0xd4, 0x4c, 0xdb, 0xa1, 0x32, 0x80, 0xc3, 0x47, 0x23, - 0x2a, 0x44, 0xe0, 0x25, 0x9c, 0x64, 0x4a, 0x82, 0x10, 0xe4, 0xb0, 0xeb, 0xfa, 0xfa, 0x86, 0xd2, - 0xa8, 0xdf, 0x0b, 0x24, 0xc9, 0x2d, 0x90, 0xe4, 0x5b, 0xd8, 0xf0, 0xb8, 0xa7, 0x6f, 0xaa, 0x84, - 0x56, 0xf5, 0xb1, 0xe5, 0x73, 0xde, 0xbd, 0xec, 0xb6, 0xb8, 0x10, 0x44, 0x05, 0xaa, 0x77, 0x1a, - 0x66, 0x60, 0x87, 0x5e, 0x42, 0xc1, 0x89, 0x16, 0xc0, 0xa2, 0xae, 0xfe, 0x38, 0xce, 0x28, 0xda, - 0x09, 0xb7, 0xf2, 0x4f, 0x0e, 0x76, 0x97, 0x8c, 0x34, 0x30, 0x0c, 0x02, 0x10, 0xdf, 0x52, 0x09, - 0x17, 0x42, 0xc3, 0x50, 0x74, 0x72, 0x3f, 0xed, 0x45, 0x6e, 0xbf, 0x82, 0xed, 0x88, 0xd1, 0xde, - 0xc0, 0x1a, 0x52, 0x21, 0x15, 0xab, 0xf2, 0x66, 0xa1, 0x1b, 0xb0, 0xb9, 0x35, 0xb8, 0xa0, 0x42, - 0xa2, 0x4f, 0xa0, 0x28, 0x24, 0xf6, 0xa5, 0xd5, 0x27, 0xb4, 0xd7, 0x97, 0xaa, 0x2b, 0x39, 0xb3, - 0xa0, 0x64, 0x4d, 0x25, 0x42, 0x1f, 0x03, 0x10, 0xe6, 0xc6, 0x80, 0x9c, 0x02, 0xe4, 0x09, 0x73, - 0x23, 0xf5, 0x0b, 0xc8, 0x4b, 0x2e, 0xf1, 0xd0, 0x12, 0x58, 0xaa, 0x1e, 0xe5, 0xcc, 0xc7, 0x4a, - 0xd0, 0xc6, 0xca, 0x36, 0xea, 0x91, 0x25, 0xa7, 0xfa, 0xd6, 0xa1, 0x56, 0x2d, 0x9a, 0xf9, 0x48, - 0xd2, 0x99, 0xaa, 0x0a, 0x03, 0xa6, 0x45, 0xfa, 0x47, 0x4a, 0x0f, 0xb1, 0xa8, 0x33, 0x45, 0x5f, - 0xc3, 0x33, 0x37, 0x6c, 0x08, 0xf7, 0xad, 0x19, 0x54, 0xd0, 0x9e, 0x6a, 0x63, 0xd1, 0xdc, 0x9b, - 0x69, 0xdb, 0x91, 0xb2, 0x4d, 0x7b, 0xe8, 0x0a, 0x4a, 0xc1, 0xe2, 0x32, 0xcc, 0x64, 0x80, 0x15, - 0x7a, 0x5e, 0x71, 0xf6, 0xcb, 0x15, 0xa3, 0x6b, 0x44, 0xd8, 0x13, 0x17, 0x7b, 0x81, 0x27, 0xda, - 0x63, 0x58, 0x8e, 0x7d, 0x22, 0xcc, 0x62, 0xec, 0xa6, 0x4d, 0x7b, 0x02, 0xbd, 0x05, 0x14, 0x17, - 0xc3, 0xc7, 0xd2, 0x1b, 0x4b, 0x8b, 0xba, 0x53, 0x1d, 0x0e, 0xb5, 0x6a, 0xc9, 0xdc, 0x89, 0x34, - 0x97, 0x4a, 0x71, 0xee, 0x4e, 0xd1, 0xa7, 0xb0, 0x1d, 0xb2, 0x5e, 0x15, 0x47, 0x47, 0x44, 0x2f, - 0x29, 0x64, 0x69, 0x26, 0xed, 0xd0, 0x11, 0x41, 0x3f, 0xc1, 0xd3, 0x31, 0x73, 0x67, 0x43, 0xb7, - 0x28, 0xeb, 0x72, 0x7d, 0x5b, 0x51, 0x6d, 0xd5, 0xfa, 0xd7, 0x3b, 0x8d, 0xab, 0x94, 0xc9, 0x39, - 0xeb, 0x72, 0x73, 0x67, 0xbc, 0x20, 0x09, 0xe2, 0x7b, 0xd8, 0xc7, 0x23, 0x61, 0x4d, 0x88, 0xaf, - 0x76, 0xe1, 0x49, 0x18, 0x3f, 0x94, 0xfe, 0x18, 0x0a, 0x2b, 0xbf, 0x6d, 0xa8, 0x27, 0x6d, 0xd1, - 0x61, 0x40, 0x8c, 0x54, 0xfa, 0x21, 0xbb, 0x8a, 0xf1, 0x22, 0x87, 0xc3, 0xf9, 0x06, 0x0e, 0x92, - 0xe1, 0x24, 0xe0, 0x60, 0x3a, 0x59, 0x85, 0xde, 0x9f, 0xa9, 0xaf, 0x62, 0x6d, 0x30, 0x1e, 0x07, - 0x5e, 0xcc, 0xc6, 0x33, 0x67, 0x16, 0xb2, 0x34, 0x7c, 0xaf, 0x5e, 0xaf, 0x7a, 0xaf, 0xe2, 0xe9, - 0xa8, 0xb2, 0xf5, 0xd8, 0x51, 0x3a, 0x80, 0x22, 0xf6, 0x02, 0xb5, 0x72, 0x6b, 0x50, 0x6b, 0xf3, - 0x01, 0x6a, 0x75, 0xe1, 0x59, 0x42, 0xad, 0x94, 0x91, 0xd0, 0xb7, 0xfe, 0x27, 0xc7, 0xf6, 0x66, - 0x1c, 0x4b, 0xc2, 0x88, 0xca, 0x08, 0xf6, 0x96, 0xbd, 0xcc, 0xe8, 0x0d, 0x3c, 0x49, 0x16, 0xca, - 0xea, 0x63, 0xd1, 0x8f, 0xf6, 0xbe, 0x34, 0xdb, 0xaa, 0x26, 0x16, 0xfd, 0x75, 0x0f, 0x1b, 0x85, - 0xfd, 0xa5, 0x2f, 0xf7, 0x7f, 0x8e, 0x57, 0x85, 0x9d, 0x34, 0x5d, 0x52, 0x24, 0xd8, 0x4e, 0x51, - 0xa6, 0x4d, 0x7b, 0x95, 0x3f, 0xb3, 0x70, 0x90, 0xdc, 0xd0, 0xf8, 0xd3, 0xe0, 0xdd, 0x84, 0x30, - 0x89, 0x1a, 0xa9, 0x3b, 0xaa, 0xad, 0x77, 0x47, 0x9b, 0x99, 0xf8, 0x92, 0x7e, 0xb7, 0x70, 0x49, - 0xb5, 0xf5, 0x2e, 0x69, 0x33, 0x93, 0xbe, 0xa5, 0xef, 0x17, 0x6f, 0xa9, 0xb6, 0xe6, 0x2d, 0x6d, - 0x66, 0xe6, 0xae, 0xe9, 0x0f, 0xf7, 0xae, 0xa9, 0xb6, 0xee, 0x35, 0x6d, 0x66, 0xe6, 0xee, 0x69, - 0xfd, 0x11, 0x6c, 0x92, 0xa0, 0x7b, 0xf5, 0x8b, 0x3f, 0x6e, 0xcb, 0xda, 0x87, 0xdb, 0xb2, 0xf6, - 0xf7, 0x6d, 0x59, 0xfb, 0xf5, 0xae, 0x9c, 0xf9, 0x70, 0x57, 0xce, 0xfc, 0x75, 0x57, 0xce, 0xfc, - 0x7c, 0xdc, 0xa3, 0xb2, 0x3f, 0xb6, 0x0d, 0x87, 0x8f, 0x6a, 0x51, 0x24, 0xa7, 0x8f, 0x29, 0x8b, - 0xff, 0xd4, 0xa6, 0xe9, 0xaf, 0x38, 0x79, 0xe3, 0x11, 0x61, 0x6f, 0xa9, 0xcf, 0xb7, 0xaf, 0xfe, - 0x0d, 0x00, 0x00, 0xff, 0xff, 0x58, 0x53, 0xb7, 0x34, 0x6a, 0x0a, 0x00, 0x00, + 0x14, 0x47, 0x80, 0x1d, 0xf3, 0x00, 0xc7, 0x59, 0xdb, 0xb1, 0x26, 0x69, 0x89, 0x4b, 0xd2, 0x0c, + 0xd3, 0x26, 0xa2, 0x4e, 0x33, 0xbd, 0xf5, 0x60, 0x70, 0x3c, 0x78, 0x9a, 0xda, 0x54, 0xe0, 0x76, + 0xa6, 0x17, 0xcd, 0x4a, 0x5a, 0x60, 0x07, 0xa1, 0xd5, 0x68, 0x17, 0x8c, 0xbf, 0x44, 0xa7, 0x87, + 0x7e, 0xa2, 0x9e, 0x7a, 0xf4, 0xad, 0x3d, 0x76, 0xec, 0x6f, 0xd1, 0x53, 0x47, 0x2b, 0x09, 0x09, + 0x0c, 0x9e, 0xd2, 0x1b, 0xbc, 0xf7, 0x7b, 0xff, 0x7f, 0x6f, 0x9f, 0xa0, 0x6a, 0x62, 0xf3, 0xda, + 0x61, 0x6e, 0xdd, 0x14, 0x16, 0x17, 0x78, 0x48, 0xdd, 0x7e, 0x7d, 0x72, 0x54, 0xf7, 0xb0, 0x35, + 0x24, 0x42, 0xf3, 0x7c, 0x26, 0x18, 0xda, 0x8f, 0x30, 0x5a, 0x82, 0xd1, 0x26, 0x47, 0xcf, 0x5e, + 0x59, 0x8c, 0x8f, 0x18, 0xaf, 0x27, 0x66, 0x26, 0x11, 0xf8, 0x28, 0xfe, 0x1f, 0x1a, 0x3f, 0x7b, + 0xb1, 0x22, 0x00, 0xf3, 0x22, 0xc0, 0xeb, 0xe5, 0x80, 0x54, 0x2c, 0x89, 0xab, 0x9a, 0xf0, 0xa4, + 0xc9, 0x5c, 0x3e, 0x1e, 0x11, 0xff, 0xac, 0xd1, 0x6c, 0xcb, 0x04, 0xd1, 0xf7, 0x00, 0xdc, 0xc1, + 0x7c, 0x40, 0x6c, 0xa3, 0xe7, 0xa9, 0xca, 0x61, 0xae, 0x56, 0x7c, 0xa7, 0x69, 0x4b, 0xf3, 0xd5, + 0x3a, 0x21, 0xf0, 0x94, 0xba, 0xd8, 0xa1, 0xe2, 0xba, 0xed, 0xb3, 0x09, 0xb5, 0x89, 0xaf, 0x17, + 0x22, 0x0f, 0xa7, 0x5e, 0xb5, 0x07, 0x07, 0x2b, 0x50, 0xe8, 0x13, 0x00, 0x53, 0x58, 0x86, 0x37, + 0x34, 0x06, 0x64, 0xaa, 0x2a, 0x87, 0x4a, 0xad, 0xa0, 0x6f, 0x99, 0xc2, 0x6a, 0x0f, 0x5b, 0x64, + 0x8a, 0xde, 0xc2, 0xae, 0x4f, 0x2c, 0x36, 0x21, 0xbe, 0xcc, 0xc4, 0x08, 0xa0, 0x7c, 0xa8, 0x66, + 0x25, 0x6c, 0x67, 0xa6, 0x3a, 0xf5, 0x1a, 0xc2, 0xea, 0x0c, 0xab, 0xbf, 0x67, 0x61, 0xb7, 0xd1, + 0x6d, 0x76, 0xc2, 0xe4, 0x92, 0x72, 0x8e, 0x61, 0xd3, 0x25, 0x57, 0x49, 0x29, 0x5f, 0xac, 0x28, + 0xe5, 0x9c, 0x5c, 0xdd, 0x2b, 0x63, 0xc3, 0x25, 0x57, 0xa7, 0x1e, 0x3a, 0x03, 0xc0, 0x96, 0xa0, + 0x13, 0x62, 0xd8, 0xc4, 0x51, 0xb3, 0x0f, 0xba, 0x39, 0x96, 0xc0, 0x46, 0xb7, 0x79, 0x42, 0x1c, + 0xd2, 0xc7, 0x82, 0x32, 0x57, 0x2f, 0x84, 0xd6, 0x27, 0xc4, 0x41, 0x1f, 0xa1, 0x18, 0x37, 0x37, + 0xf0, 0x95, 0x93, 0xbe, 0xbe, 0x7c, 0xb8, 0xbb, 0xf3, 0xce, 0xe2, 0xe1, 0x04, 0xde, 0x2e, 0xa0, + 0x34, 0x76, 0x4d, 0xe6, 0xda, 0x91, 0xbb, 0xbc, 0x74, 0xf7, 0x66, 0x85, 0xbb, 0xcb, 0x08, 0x3a, + 0xef, 0xaf, 0x18, 0x7b, 0x38, 0x21, 0x4e, 0xf5, 0x97, 0x2c, 0xec, 0x2e, 0x69, 0x04, 0xfa, 0x00, + 0x45, 0x9b, 0x70, 0xcb, 0xa7, 0x5e, 0x60, 0x23, 0x47, 0x55, 0x7c, 0xf7, 0x52, 0x0b, 0xd9, 0xaa, + 0x25, 0x31, 0x24, 0x5b, 0xb5, 0x93, 0x04, 0xaa, 0xa7, 0xed, 0x50, 0x05, 0xc0, 0x62, 0xa3, 0x11, + 0xe5, 0x3c, 0xf0, 0x12, 0x4e, 0x32, 0x25, 0x41, 0x08, 0xf2, 0xd8, 0xb6, 0x7d, 0x35, 0x27, 0x35, + 0xf2, 0xf7, 0x02, 0x49, 0xf2, 0x0b, 0x24, 0xf9, 0x16, 0x72, 0x1e, 0xf3, 0xd4, 0x0d, 0x99, 0xd0, + 0xaa, 0x3e, 0xb6, 0x7d, 0xc6, 0x7a, 0x17, 0xbd, 0x36, 0xe3, 0x9c, 0xc8, 0x40, 0x8d, 0x6e, 0x53, + 0x0f, 0xec, 0xd0, 0x0b, 0x28, 0x5a, 0xd1, 0x02, 0x18, 0xd4, 0x56, 0xb7, 0xe2, 0x8c, 0xa2, 0x9d, + 0xb0, 0xab, 0xff, 0xe4, 0x61, 0x77, 0xc9, 0x48, 0x03, 0xc3, 0x20, 0x00, 0xf1, 0x0d, 0x99, 0x70, + 0x31, 0x34, 0x0c, 0x45, 0xc7, 0xf7, 0xd3, 0x5e, 0xe4, 0xf6, 0x4b, 0xd8, 0x8e, 0x18, 0xed, 0x0d, + 0x0d, 0x87, 0x72, 0x21, 0x59, 0x55, 0xd0, 0x8b, 0xbd, 0x80, 0xcd, 0xed, 0xe1, 0x47, 0xca, 0x05, + 0xfa, 0x0c, 0x4a, 0x5c, 0x60, 0x5f, 0x18, 0x03, 0x42, 0xfb, 0x03, 0x21, 0xbb, 0x92, 0xd7, 0x8b, + 0x52, 0xd6, 0x92, 0x22, 0xf4, 0x29, 0x00, 0x71, 0xed, 0x18, 0x90, 0x97, 0x80, 0x02, 0x71, 0xed, + 0x48, 0xfd, 0x1c, 0x0a, 0x82, 0x09, 0xec, 0x18, 0x1c, 0x0b, 0xd9, 0xa3, 0xbc, 0xbe, 0x25, 0x05, + 0x1d, 0x2c, 0x6d, 0xa3, 0x1e, 0x19, 0x62, 0xaa, 0x6e, 0x1e, 0x2a, 0xb5, 0x92, 0x5e, 0x88, 0x24, + 0xdd, 0xa9, 0xac, 0x30, 0x60, 0x5a, 0xa4, 0x7f, 0x24, 0xf5, 0x10, 0x8b, 0xba, 0x53, 0xf4, 0x1e, + 0x9e, 0xda, 0x61, 0x43, 0x98, 0x6f, 0xcc, 0xa0, 0x9c, 0xf6, 0x65, 0x1b, 0x4b, 0xfa, 0xde, 0x4c, + 0xdb, 0x89, 0x94, 0x1d, 0xda, 0x47, 0x97, 0x50, 0x0e, 0x16, 0xd7, 0xc5, 0xae, 0x08, 0xb0, 0x5c, + 0x2d, 0x48, 0xce, 0x7e, 0xb5, 0x62, 0x74, 0xcd, 0x08, 0x7b, 0x6c, 0x63, 0x2f, 0xf0, 0x44, 0xfb, + 0x2e, 0x16, 0x63, 0x9f, 0x70, 0xbd, 0x14, 0xbb, 0xe9, 0xd0, 0x3e, 0x47, 0x6f, 0x00, 0xc5, 0xc5, + 0xb0, 0xb1, 0xf0, 0xc6, 0xc2, 0xa0, 0xf6, 0x54, 0x85, 0x43, 0xa5, 0x56, 0xd6, 0x77, 0x22, 0xcd, + 0x85, 0x54, 0x9c, 0xd9, 0x53, 0xf4, 0x39, 0x6c, 0x87, 0xac, 0x97, 0xc5, 0xd1, 0x11, 0x51, 0xcb, + 0x12, 0x59, 0x9e, 0x49, 0xbb, 0x74, 0x44, 0xd0, 0x4f, 0xf0, 0x64, 0xec, 0xda, 0xb3, 0xa1, 0x1b, + 0xd4, 0xed, 0x31, 0x75, 0x5b, 0x52, 0x6d, 0xd5, 0xfa, 0x37, 0xba, 0xcd, 0xcb, 0x94, 0xc9, 0x99, + 0xdb, 0x63, 0xfa, 0xce, 0x78, 0x41, 0x12, 0xc4, 0xf7, 0xb0, 0x8f, 0x47, 0xdc, 0x98, 0x10, 0x5f, + 0xee, 0xc2, 0xe3, 0x30, 0x7e, 0x28, 0xfd, 0x31, 0x14, 0x56, 0x7f, 0xcb, 0xc9, 0x27, 0x6d, 0xd1, + 0x61, 0x40, 0x8c, 0x54, 0xfa, 0x21, 0xbb, 0x4a, 0xf1, 0x22, 0x87, 0xc3, 0xf9, 0x06, 0x0e, 0x92, + 0xe1, 0x24, 0xe0, 0x60, 0x3a, 0x59, 0x89, 0xde, 0x9f, 0xa9, 0x2f, 0x63, 0x6d, 0x30, 0x1e, 0x0b, + 0x9e, 0xcf, 0xc6, 0x33, 0x67, 0x16, 0xb2, 0x34, 0x7c, 0xaf, 0x5e, 0xad, 0x7a, 0xaf, 0xe2, 0xe9, + 0xc8, 0xb2, 0xd5, 0xd8, 0x51, 0x3a, 0x80, 0x24, 0xf6, 0x02, 0xb5, 0xf2, 0x6b, 0x50, 0x6b, 0xe3, + 0x01, 0x6a, 0xf5, 0xe0, 0x69, 0x42, 0xad, 0x94, 0x11, 0x57, 0x37, 0xff, 0x27, 0xc7, 0xf6, 0x66, + 0x1c, 0x4b, 0xc2, 0xf0, 0xea, 0x08, 0xf6, 0x96, 0xbd, 0xcc, 0xe8, 0x35, 0x3c, 0x4e, 0x16, 0xca, + 0x18, 0x60, 0x3e, 0x88, 0xf6, 0xbe, 0x3c, 0xdb, 0xaa, 0x16, 0xe6, 0x83, 0x75, 0x0f, 0x1b, 0x85, + 0xfd, 0xa5, 0x2f, 0xf7, 0x7f, 0x8e, 0x57, 0x83, 0x9d, 0x34, 0x5d, 0x52, 0x24, 0xd8, 0x4e, 0x51, + 0xa6, 0x43, 0xfb, 0xd5, 0x3f, 0xb3, 0x70, 0x90, 0xdc, 0xd0, 0xf8, 0xd3, 0xe0, 0xc3, 0x84, 0xb8, + 0x02, 0x35, 0x53, 0x77, 0x54, 0x59, 0xef, 0x8e, 0xb6, 0x32, 0xf1, 0x25, 0xfd, 0x6e, 0xe1, 0x92, + 0x2a, 0xeb, 0x5d, 0xd2, 0x56, 0x26, 0x7d, 0x4b, 0xcf, 0x17, 0x6f, 0xa9, 0xb2, 0xe6, 0x2d, 0x6d, + 0x65, 0xe6, 0xae, 0xe9, 0x0f, 0xf7, 0xae, 0xa9, 0xb2, 0xee, 0x35, 0x6d, 0x65, 0xe6, 0xee, 0x69, + 0xe3, 0x11, 0x6c, 0x90, 0xa0, 0x7b, 0x8d, 0xf3, 0x3f, 0x6e, 0x2b, 0xca, 0xcd, 0x6d, 0x45, 0xf9, + 0xfb, 0xb6, 0xa2, 0xfc, 0x7a, 0x57, 0xc9, 0xdc, 0xdc, 0x55, 0x32, 0x7f, 0xdd, 0x55, 0x32, 0x3f, + 0xbf, 0xef, 0x53, 0x31, 0x18, 0x9b, 0x9a, 0xc5, 0x46, 0xf5, 0x28, 0x92, 0x83, 0x4d, 0xfe, 0x96, + 0xb2, 0xf8, 0x6f, 0x7d, 0x9a, 0xfe, 0x8e, 0x13, 0xd7, 0x1e, 0xe1, 0xe6, 0xa6, 0xfc, 0x80, 0xfb, + 0xfa, 0xdf, 0x00, 0x00, 0x00, 0xff, 0xff, 0x6d, 0xdf, 0x64, 0x3a, 0x6c, 0x0a, 0x00, 0x00, } func (m *ConsumerIBCPacket) Marshal() (dAtA []byte, err error) { diff --git a/x/btcstkconsumer/abci.go b/x/btcstkconsumer/abci.go index e86643c03..31e75c3f1 100644 --- a/x/btcstkconsumer/abci.go +++ b/x/btcstkconsumer/abci.go @@ -4,8 +4,8 @@ import ( "context" "time" - "github.com/babylonchain/babylon/x/btcstkconsumer/keeper" - "github.com/babylonchain/babylon/x/btcstkconsumer/types" + "github.com/babylonlabs-io/babylon/x/btcstkconsumer/keeper" + "github.com/babylonlabs-io/babylon/x/btcstkconsumer/types" abci "github.com/cometbft/cometbft/abci/types" "github.com/cosmos/cosmos-sdk/telemetry" ) diff --git a/x/btcstkconsumer/client/cli/query.go b/x/btcstkconsumer/client/cli/query.go index c7eab5e24..b91612da8 100644 --- a/x/btcstkconsumer/client/cli/query.go +++ b/x/btcstkconsumer/client/cli/query.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/client" "github.com/cosmos/cosmos-sdk/client/flags" - "github.com/babylonchain/babylon/x/btcstkconsumer/types" + "github.com/babylonlabs-io/babylon/x/btcstkconsumer/types" ) // GetQueryCmd returns the cli query commands for this module diff --git a/x/btcstkconsumer/client/cli/query_params.go b/x/btcstkconsumer/client/cli/query_params.go index ed02f3752..6410444ee 100644 --- a/x/btcstkconsumer/client/cli/query_params.go +++ b/x/btcstkconsumer/client/cli/query_params.go @@ -5,7 +5,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/flags" "github.com/spf13/cobra" - "github.com/babylonchain/babylon/x/btcstkconsumer/types" + "github.com/babylonlabs-io/babylon/x/btcstkconsumer/types" ) func CmdQueryParams() *cobra.Command { diff --git a/x/btcstkconsumer/client/cli/tx.go b/x/btcstkconsumer/client/cli/tx.go index 7757c6927..89114187a 100644 --- a/x/btcstkconsumer/client/cli/tx.go +++ b/x/btcstkconsumer/client/cli/tx.go @@ -10,7 +10,7 @@ import ( "github.com/cosmos/cosmos-sdk/client/tx" "github.com/spf13/cobra" - "github.com/babylonchain/babylon/x/btcstkconsumer/types" + "github.com/babylonlabs-io/babylon/x/btcstkconsumer/types" ) // GetTxCmd returns the transaction commands for this module diff --git a/x/btcstkconsumer/genesis.go b/x/btcstkconsumer/genesis.go index 76d1b3118..a41539329 100644 --- a/x/btcstkconsumer/genesis.go +++ b/x/btcstkconsumer/genesis.go @@ -3,8 +3,8 @@ package btcstkconsumer import ( sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/babylonchain/babylon/x/btcstkconsumer/keeper" - "github.com/babylonchain/babylon/x/btcstkconsumer/types" + "github.com/babylonlabs-io/babylon/x/btcstkconsumer/keeper" + "github.com/babylonlabs-io/babylon/x/btcstkconsumer/types" ) // InitGenesis initializes the module's state from a provided genesis state. diff --git a/x/btcstkconsumer/keeper/consumer_registry.go b/x/btcstkconsumer/keeper/consumer_registry.go index 8267eacfa..0064ad150 100644 --- a/x/btcstkconsumer/keeper/consumer_registry.go +++ b/x/btcstkconsumer/keeper/consumer_registry.go @@ -6,7 +6,7 @@ import ( "github.com/cosmos/cosmos-sdk/runtime" "cosmossdk.io/store/prefix" - "github.com/babylonchain/babylon/x/btcstkconsumer/types" + "github.com/babylonlabs-io/babylon/x/btcstkconsumer/types" ) func (k Keeper) SetConsumerRegister(ctx context.Context, consumerRegister *types.ConsumerRegister) { diff --git a/x/btcstkconsumer/keeper/consumer_registry_test.go b/x/btcstkconsumer/keeper/consumer_registry_test.go index a7f1b6417..8b9afa2ff 100644 --- a/x/btcstkconsumer/keeper/consumer_registry_test.go +++ b/x/btcstkconsumer/keeper/consumer_registry_test.go @@ -4,8 +4,8 @@ import ( "math/rand" "testing" - "github.com/babylonchain/babylon/app" - "github.com/babylonchain/babylon/testutil/datagen" + "github.com/babylonlabs-io/babylon/app" + "github.com/babylonlabs-io/babylon/testutil/datagen" "github.com/stretchr/testify/require" ) diff --git a/x/btcstkconsumer/keeper/finality_provider_registry.go b/x/btcstkconsumer/keeper/finality_provider_registry.go index 6f1302d30..7cb343f8c 100644 --- a/x/btcstkconsumer/keeper/finality_provider_registry.go +++ b/x/btcstkconsumer/keeper/finality_provider_registry.go @@ -8,9 +8,9 @@ import ( errorsmod "cosmossdk.io/errors" "cosmossdk.io/store/prefix" - bbn "github.com/babylonchain/babylon/types" - btcstaking "github.com/babylonchain/babylon/x/btcstaking/types" - btcstktypes "github.com/babylonchain/babylon/x/btcstkconsumer/types" + bbn "github.com/babylonlabs-io/babylon/types" + btcstaking "github.com/babylonlabs-io/babylon/x/btcstaking/types" + btcstktypes "github.com/babylonlabs-io/babylon/x/btcstkconsumer/types" ) // SetConsumerFinalityProvider adds the given finality provider to CZ chains KVStore diff --git a/x/btcstkconsumer/keeper/finality_provider_registry_test.go b/x/btcstkconsumer/keeper/finality_provider_registry_test.go index cf6136a3b..60d392d87 100644 --- a/x/btcstkconsumer/keeper/finality_provider_registry_test.go +++ b/x/btcstkconsumer/keeper/finality_provider_registry_test.go @@ -4,11 +4,11 @@ import ( "math/rand" "testing" - btcstaking "github.com/babylonchain/babylon/x/btcstaking/types" - "github.com/babylonchain/babylon/x/btcstkconsumer/types" + btcstaking "github.com/babylonlabs-io/babylon/x/btcstaking/types" + "github.com/babylonlabs-io/babylon/x/btcstkconsumer/types" - "github.com/babylonchain/babylon/app" - "github.com/babylonchain/babylon/testutil/datagen" + "github.com/babylonlabs-io/babylon/app" + "github.com/babylonlabs-io/babylon/testutil/datagen" "github.com/stretchr/testify/require" ) diff --git a/x/btcstkconsumer/keeper/grpc_query.go b/x/btcstkconsumer/keeper/grpc_query.go index b2e31ba0b..81aa1b8df 100644 --- a/x/btcstkconsumer/keeper/grpc_query.go +++ b/x/btcstkconsumer/keeper/grpc_query.go @@ -4,11 +4,11 @@ import ( "context" errorsmod "cosmossdk.io/errors" - btcstaking "github.com/babylonchain/babylon/x/btcstaking/types" + btcstaking "github.com/babylonlabs-io/babylon/x/btcstaking/types" sdkerrors "github.com/cosmos/cosmos-sdk/types/errors" - bbn "github.com/babylonchain/babylon/types" - "github.com/babylonchain/babylon/x/btcstkconsumer/types" + bbn "github.com/babylonlabs-io/babylon/types" + "github.com/babylonlabs-io/babylon/x/btcstkconsumer/types" sdk "github.com/cosmos/cosmos-sdk/types" "github.com/cosmos/cosmos-sdk/types/query" "google.golang.org/grpc/codes" diff --git a/x/btcstkconsumer/keeper/grpc_query_test.go b/x/btcstkconsumer/keeper/grpc_query_test.go index ee50fba47..b4c81da6f 100644 --- a/x/btcstkconsumer/keeper/grpc_query_test.go +++ b/x/btcstkconsumer/keeper/grpc_query_test.go @@ -9,11 +9,11 @@ import ( "github.com/stretchr/testify/require" - "github.com/babylonchain/babylon/app" - "github.com/babylonchain/babylon/testutil/datagen" - "github.com/babylonchain/babylon/x/btcstkconsumer/types" + "github.com/babylonlabs-io/babylon/app" + "github.com/babylonlabs-io/babylon/testutil/datagen" + "github.com/babylonlabs-io/babylon/x/btcstkconsumer/types" - btcstaking "github.com/babylonchain/babylon/x/btcstaking/types" + btcstaking "github.com/babylonlabs-io/babylon/x/btcstaking/types" ) type consumerRegister struct { diff --git a/x/btcstkconsumer/keeper/keeper.go b/x/btcstkconsumer/keeper/keeper.go index 03c82f845..f0cba5e49 100644 --- a/x/btcstkconsumer/keeper/keeper.go +++ b/x/btcstkconsumer/keeper/keeper.go @@ -8,7 +8,7 @@ import ( "github.com/cosmos/cosmos-sdk/codec" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/babylonchain/babylon/x/btcstkconsumer/types" + "github.com/babylonlabs-io/babylon/x/btcstkconsumer/types" ) type Keeper struct { diff --git a/x/btcstkconsumer/keeper/msg_server.go b/x/btcstkconsumer/keeper/msg_server.go index f8b5c615a..7e2f55f4f 100644 --- a/x/btcstkconsumer/keeper/msg_server.go +++ b/x/btcstkconsumer/keeper/msg_server.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "github.com/babylonchain/babylon/x/btcstkconsumer/types" + "github.com/babylonlabs-io/babylon/x/btcstkconsumer/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/btcstkconsumer/keeper/msg_server_test.go b/x/btcstkconsumer/keeper/msg_server_test.go index da6a5a1f6..322f1d318 100644 --- a/x/btcstkconsumer/keeper/msg_server_test.go +++ b/x/btcstkconsumer/keeper/msg_server_test.go @@ -6,9 +6,9 @@ import ( "github.com/stretchr/testify/require" - keepertest "github.com/babylonchain/babylon/testutil/keeper" - "github.com/babylonchain/babylon/x/btcstkconsumer/keeper" - "github.com/babylonchain/babylon/x/btcstkconsumer/types" + keepertest "github.com/babylonlabs-io/babylon/testutil/keeper" + "github.com/babylonlabs-io/babylon/x/btcstkconsumer/keeper" + "github.com/babylonlabs-io/babylon/x/btcstkconsumer/types" ) func setupMsgServer(t testing.TB) (keeper.Keeper, types.MsgServer, context.Context) { diff --git a/x/btcstkconsumer/keeper/msg_update_params.go b/x/btcstkconsumer/keeper/msg_update_params.go index a5ff343b3..b4fcb97d7 100644 --- a/x/btcstkconsumer/keeper/msg_update_params.go +++ b/x/btcstkconsumer/keeper/msg_update_params.go @@ -6,7 +6,7 @@ import ( errorsmod "cosmossdk.io/errors" sdk "github.com/cosmos/cosmos-sdk/types" - "github.com/babylonchain/babylon/x/btcstkconsumer/types" + "github.com/babylonlabs-io/babylon/x/btcstkconsumer/types" ) func (k msgServer) UpdateParams(goCtx context.Context, req *types.MsgUpdateParams) (*types.MsgUpdateParamsResponse, error) { diff --git a/x/btcstkconsumer/keeper/msg_update_params_test.go b/x/btcstkconsumer/keeper/msg_update_params_test.go index 06b01ff24..6ef3337ab 100644 --- a/x/btcstkconsumer/keeper/msg_update_params_test.go +++ b/x/btcstkconsumer/keeper/msg_update_params_test.go @@ -6,7 +6,7 @@ import ( sdk "github.com/cosmos/cosmos-sdk/types" "github.com/stretchr/testify/require" - "github.com/babylonchain/babylon/x/btcstkconsumer/types" + "github.com/babylonlabs-io/babylon/x/btcstkconsumer/types" ) func TestMsgUpdateParams(t *testing.T) { diff --git a/x/btcstkconsumer/keeper/params.go b/x/btcstkconsumer/keeper/params.go index f666e73ed..c5a4dc7d6 100644 --- a/x/btcstkconsumer/keeper/params.go +++ b/x/btcstkconsumer/keeper/params.go @@ -5,7 +5,7 @@ import ( "github.com/cosmos/cosmos-sdk/runtime" - "github.com/babylonchain/babylon/x/btcstkconsumer/types" + "github.com/babylonlabs-io/babylon/x/btcstkconsumer/types" ) // GetParams get all parameters as types.Params diff --git a/x/btcstkconsumer/keeper/params_test.go b/x/btcstkconsumer/keeper/params_test.go index 2b1a65e9c..f6a02f115 100644 --- a/x/btcstkconsumer/keeper/params_test.go +++ b/x/btcstkconsumer/keeper/params_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - keepertest "github.com/babylonchain/babylon/testutil/keeper" - "github.com/babylonchain/babylon/x/btcstkconsumer/types" + keepertest "github.com/babylonlabs-io/babylon/testutil/keeper" + "github.com/babylonlabs-io/babylon/x/btcstkconsumer/types" ) func TestGetParams(t *testing.T) { diff --git a/x/btcstkconsumer/keeper/query.go b/x/btcstkconsumer/keeper/query.go index 3843e23f2..8f1684a08 100644 --- a/x/btcstkconsumer/keeper/query.go +++ b/x/btcstkconsumer/keeper/query.go @@ -1,7 +1,7 @@ package keeper import ( - "github.com/babylonchain/babylon/x/btcstkconsumer/types" + "github.com/babylonlabs-io/babylon/x/btcstkconsumer/types" ) var _ types.QueryServer = Keeper{} diff --git a/x/btcstkconsumer/keeper/query_params.go b/x/btcstkconsumer/keeper/query_params.go index 8e927bc0e..ae3cd6b78 100644 --- a/x/btcstkconsumer/keeper/query_params.go +++ b/x/btcstkconsumer/keeper/query_params.go @@ -7,7 +7,7 @@ import ( "google.golang.org/grpc/codes" "google.golang.org/grpc/status" - "github.com/babylonchain/babylon/x/btcstkconsumer/types" + "github.com/babylonlabs-io/babylon/x/btcstkconsumer/types" ) func (k Keeper) Params(goCtx context.Context, req *types.QueryParamsRequest) (*types.QueryParamsResponse, error) { diff --git a/x/btcstkconsumer/keeper/query_params_test.go b/x/btcstkconsumer/keeper/query_params_test.go index c2242067b..9eaf1a184 100644 --- a/x/btcstkconsumer/keeper/query_params_test.go +++ b/x/btcstkconsumer/keeper/query_params_test.go @@ -5,8 +5,8 @@ import ( "github.com/stretchr/testify/require" - keepertest "github.com/babylonchain/babylon/testutil/keeper" - "github.com/babylonchain/babylon/x/btcstkconsumer/types" + keepertest "github.com/babylonlabs-io/babylon/testutil/keeper" + "github.com/babylonlabs-io/babylon/x/btcstkconsumer/types" ) func TestParamsQuery(t *testing.T) { diff --git a/x/btcstkconsumer/module.go b/x/btcstkconsumer/module.go index fd0ed6eab..d9239e6d4 100644 --- a/x/btcstkconsumer/module.go +++ b/x/btcstkconsumer/module.go @@ -16,9 +16,9 @@ import ( "github.com/grpc-ecosystem/grpc-gateway/runtime" "github.com/spf13/cobra" - "github.com/babylonchain/babylon/x/btcstkconsumer/client/cli" - "github.com/babylonchain/babylon/x/btcstkconsumer/keeper" - "github.com/babylonchain/babylon/x/btcstkconsumer/types" + "github.com/babylonlabs-io/babylon/x/btcstkconsumer/client/cli" + "github.com/babylonlabs-io/babylon/x/btcstkconsumer/keeper" + "github.com/babylonlabs-io/babylon/x/btcstkconsumer/types" ) var ( diff --git a/x/btcstkconsumer/types/btcstkconsumer.pb.go b/x/btcstkconsumer/types/btcstkconsumer.pb.go index 0d3c6e668..0a4928364 100644 --- a/x/btcstkconsumer/types/btcstkconsumer.pb.go +++ b/x/btcstkconsumer/types/btcstkconsumer.pb.go @@ -96,7 +96,7 @@ func init() { } var fileDescriptor_de3ccd621fe1efd4 = []byte{ - // 217 bytes of a gzipped FileDescriptorProto + // 219 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0xd2, 0x4b, 0x4a, 0x4c, 0xaa, 0xcc, 0xc9, 0xcf, 0xd3, 0x4f, 0x2a, 0x49, 0x2e, 0x2e, 0xc9, 0x4e, 0xce, 0xcf, 0x2b, 0x2e, 0xcd, 0x4d, 0x2d, 0xd2, 0x2f, 0x33, 0x44, 0x13, 0xd1, 0x2b, 0x28, 0xca, 0x2f, 0xc9, 0x17, 0x92, 0x84, @@ -105,12 +105,12 @@ var fileDescriptor_de3ccd621fe1efd4 = []byte{ 0x18, 0x15, 0x18, 0x35, 0x38, 0x83, 0xb8, 0x60, 0x42, 0x9e, 0x29, 0x42, 0xca, 0x5c, 0xbc, 0x70, 0x05, 0x79, 0x89, 0xb9, 0xa9, 0x12, 0x4c, 0x60, 0x25, 0x3c, 0x30, 0x41, 0xbf, 0xc4, 0xdc, 0x54, 0x21, 0x43, 0x2e, 0x11, 0xb8, 0xa2, 0x94, 0xd4, 0xe2, 0xe4, 0xa2, 0xcc, 0x82, 0x92, 0xcc, 0xfc, - 0x3c, 0x09, 0x66, 0xb0, 0x5a, 0x61, 0x98, 0x9c, 0x0b, 0x42, 0xca, 0x29, 0xe0, 0xc4, 0x23, 0x39, + 0x3c, 0x09, 0x66, 0xb0, 0x5a, 0x61, 0x98, 0x9c, 0x0b, 0x42, 0xca, 0x29, 0xe8, 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, 0xcc, 0xd2, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, - 0xf3, 0x73, 0xf5, 0xa1, 0xbe, 0x49, 0xce, 0x48, 0xcc, 0xcc, 0x83, 0x71, 0xf4, 0x2b, 0xd0, 0x03, - 0xa3, 0xa4, 0xb2, 0x20, 0xb5, 0x38, 0x89, 0x0d, 0x1c, 0x02, 0xc6, 0x80, 0x00, 0x00, 0x00, 0xff, - 0xff, 0xda, 0xb7, 0x17, 0xd5, 0x33, 0x01, 0x00, 0x00, + 0x39, 0x86, 0x1b, 0x8f, 0xe5, 0x18, 0xa2, 0x2c, 0xd2, 0x33, 0x4b, 0x32, 0x4a, 0x93, 0xf4, 0x92, + 0xf3, 0x73, 0xf5, 0xa1, 0xbe, 0xc9, 0x49, 0x4c, 0x2a, 0xd6, 0xcd, 0xcc, 0x87, 0x71, 0xf5, 0x2b, + 0xd0, 0x83, 0xa3, 0xa4, 0xb2, 0x20, 0xb5, 0x38, 0x89, 0x0d, 0x1c, 0x06, 0xc6, 0x80, 0x00, 0x00, + 0x00, 0xff, 0xff, 0xa1, 0x3e, 0x58, 0x17, 0x35, 0x01, 0x00, 0x00, } func (m *ConsumerRegister) Marshal() (dAtA []byte, err error) { diff --git a/x/btcstkconsumer/types/genesis.pb.go b/x/btcstkconsumer/types/genesis.pb.go index 41c55bf85..6ccdcb66a 100644 --- a/x/btcstkconsumer/types/genesis.pb.go +++ b/x/btcstkconsumer/types/genesis.pb.go @@ -79,7 +79,7 @@ func init() { } var fileDescriptor_9603f1c9bd7f81d6 = []byte{ - // 222 bytes of a gzipped FileDescriptorProto + // 224 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4f, 0x4a, 0x4c, 0xaa, 0xcc, 0xc9, 0xcf, 0xd3, 0x4f, 0x2a, 0x49, 0x2e, 0x2e, 0xc9, 0x4e, 0xce, 0xcf, 0x2b, 0x2e, 0xcd, 0x4d, 0x2d, 0xd2, 0x2f, 0x33, 0xd4, 0x4f, 0x4f, 0xcd, 0x4b, 0x2d, 0xce, 0x2c, 0xd6, 0x2b, 0x28, @@ -89,11 +89,11 @@ var fileDescriptor_9603f1c9bd7f81d6 = []byte{ 0x4a, 0x21, 0x5c, 0x3c, 0xee, 0x10, 0xcb, 0x83, 0x4b, 0x12, 0x4b, 0x52, 0x85, 0x5c, 0xb8, 0xd8, 0x20, 0xf2, 0x12, 0x8c, 0x0a, 0x8c, 0x1a, 0xdc, 0x46, 0x8a, 0x7a, 0x38, 0x1d, 0xa3, 0x17, 0x00, 0x56, 0xe8, 0xc4, 0x79, 0xe2, 0x9e, 0x3c, 0xc3, 0x8a, 0xe7, 0x1b, 0xb4, 0x18, 0x83, 0xa0, 0x7a, - 0x9d, 0x02, 0x4e, 0x3c, 0x92, 0x63, 0xbc, 0xf0, 0x48, 0x8e, 0xf1, 0xc1, 0x23, 0x39, 0xc6, 0x09, - 0x8f, 0xe5, 0x18, 0x2e, 0x3c, 0x96, 0x63, 0xb8, 0xf1, 0x58, 0x8e, 0x21, 0xca, 0x2c, 0x3d, 0xb3, - 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x57, 0x1f, 0x6a, 0x72, 0x72, 0x46, 0x62, 0x66, 0x1e, - 0x8c, 0xa3, 0x5f, 0x81, 0xee, 0xe2, 0x92, 0xca, 0x82, 0xd4, 0xe2, 0x24, 0x36, 0xb0, 0x73, 0x8d, - 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x7b, 0x60, 0x5c, 0x83, 0x45, 0x01, 0x00, 0x00, + 0x9d, 0x82, 0x4e, 0x3c, 0x92, 0x63, 0xbc, 0xf0, 0x48, 0x8e, 0xf1, 0xc1, 0x23, 0x39, 0xc6, 0x09, + 0x8f, 0xe5, 0x18, 0x2e, 0x3c, 0x96, 0x63, 0xb8, 0xf1, 0x58, 0x8e, 0x21, 0xca, 0x22, 0x3d, 0xb3, + 0x24, 0xa3, 0x34, 0x49, 0x2f, 0x39, 0x3f, 0x57, 0x1f, 0x6a, 0x72, 0x4e, 0x62, 0x52, 0xb1, 0x6e, + 0x66, 0x3e, 0x8c, 0xab, 0x5f, 0x81, 0xee, 0xe6, 0x92, 0xca, 0x82, 0xd4, 0xe2, 0x24, 0x36, 0xb0, + 0x83, 0x8d, 0x01, 0x01, 0x00, 0x00, 0xff, 0xff, 0x35, 0xa2, 0xf3, 0xb8, 0x47, 0x01, 0x00, 0x00, } func (m *GenesisState) Marshal() (dAtA []byte, err error) { diff --git a/x/btcstkconsumer/types/genesis_test.go b/x/btcstkconsumer/types/genesis_test.go index 239a6802d..7c3d913e7 100644 --- a/x/btcstkconsumer/types/genesis_test.go +++ b/x/btcstkconsumer/types/genesis_test.go @@ -3,7 +3,7 @@ package types_test import ( "testing" - "github.com/babylonchain/babylon/x/btcstkconsumer/types" + "github.com/babylonlabs-io/babylon/x/btcstkconsumer/types" "github.com/stretchr/testify/require" ) diff --git a/x/btcstkconsumer/types/params.pb.go b/x/btcstkconsumer/types/params.pb.go index c626819b3..9626cddc2 100644 --- a/x/btcstkconsumer/types/params.pb.go +++ b/x/btcstkconsumer/types/params.pb.go @@ -70,7 +70,7 @@ func init() { } var fileDescriptor_793a25adddb62a3d = []byte{ - // 186 bytes of a gzipped FileDescriptorProto + // 188 bytes of a gzipped FileDescriptorProto 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xe2, 0x52, 0x4b, 0x4a, 0x4c, 0xaa, 0xcc, 0xc9, 0xcf, 0xd3, 0x4f, 0x2a, 0x49, 0x2e, 0x2e, 0xc9, 0x4e, 0xce, 0xcf, 0x2b, 0x2e, 0xcd, 0x4d, 0x2d, 0xd2, 0x2f, 0x33, 0xd4, 0x2f, 0x48, 0x2c, 0x4a, 0xcc, 0x2d, 0xd6, 0x2b, 0x28, 0xca, @@ -78,11 +78,11 @@ var fileDescriptor_793a25adddb62a3d = []byte{ 0x9b, 0x99, 0x97, 0xaf, 0x0f, 0x26, 0x21, 0xaa, 0xa5, 0x44, 0xd2, 0xf3, 0xd3, 0xf3, 0xc1, 0x4c, 0x7d, 0x10, 0x0b, 0x22, 0xaa, 0x64, 0xca, 0xc5, 0x16, 0x00, 0x36, 0xd3, 0x4a, 0xfb, 0xc5, 0x02, 0x79, 0xc6, 0xae, 0xe7, 0x1b, 0xb4, 0x94, 0x60, 0xd6, 0x57, 0x60, 0x71, 0x00, 0x44, 0xb1, 0x53, - 0xc0, 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, 0x99, 0xa5, 0x67, 0x96, 0x64, - 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0x43, 0x0d, 0x4a, 0xce, 0x48, 0xcc, 0xcc, 0xd3, 0xc7, - 0x69, 0x6a, 0x49, 0x65, 0x41, 0x6a, 0x71, 0x12, 0x1b, 0xd8, 0x3d, 0xc6, 0x80, 0x00, 0x00, 0x00, - 0xff, 0xff, 0xf8, 0x5f, 0x6b, 0xaa, 0xfd, 0x00, 0x00, 0x00, + 0xd0, 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, 0x59, 0xa4, 0x67, 0x96, 0x64, + 0x94, 0x26, 0xe9, 0x25, 0xe7, 0xe7, 0xea, 0x43, 0x0d, 0xca, 0x49, 0x4c, 0x2a, 0xd6, 0xcd, 0xcc, + 0xd7, 0xc7, 0x69, 0x6e, 0x49, 0x65, 0x41, 0x6a, 0x71, 0x12, 0x1b, 0xd8, 0x45, 0xc6, 0x80, 0x00, + 0x00, 0x00, 0xff, 0xff, 0xb7, 0x6d, 0x3b, 0x1e, 0xff, 0x00, 0x00, 0x00, } func (this *Params) Equal(that interface{}) bool { diff --git a/x/btcstkconsumer/types/query.go b/x/btcstkconsumer/types/query.go index 8d0d09107..56daf91fa 100644 --- a/x/btcstkconsumer/types/query.go +++ b/x/btcstkconsumer/types/query.go @@ -1,6 +1,6 @@ package types -import btcstaking "github.com/babylonchain/babylon/x/btcstaking/types" +import btcstaking "github.com/babylonlabs-io/babylon/x/btcstaking/types" // NewFinalityProviderResponse creates a new finality provider response for CZ registered FPs. // Note that slashing info, voting power and height are zero, as these FPs are not active here diff --git a/x/btcstkconsumer/types/query.pb.go b/x/btcstkconsumer/types/query.pb.go index 144aa41e1..24687ad6a 100644 --- a/x/btcstkconsumer/types/query.pb.go +++ b/x/btcstkconsumer/types/query.pb.go @@ -7,8 +7,8 @@ import ( context "context" cosmossdk_io_math "cosmossdk.io/math" fmt "fmt" - github_com_babylonchain_babylon_types "github.com/babylonchain/babylon/types" - types1 "github.com/babylonchain/babylon/x/btcstaking/types" + github_com_babylonlabs_io_babylon_types "github.com/babylonlabs-io/babylon/types" + types1 "github.com/babylonlabs-io/babylon/x/btcstaking/types" _ "github.com/cosmos/cosmos-proto" query "github.com/cosmos/cosmos-sdk/types/query" _ "github.com/cosmos/cosmos-sdk/types/tx/amino" @@ -532,7 +532,7 @@ type FinalityProviderResponse struct { Addr string `protobuf:"bytes,3,opt,name=addr,proto3" json:"addr,omitempty"` // btc_pk is the Bitcoin secp256k1 PK of this finality provider // the PK follows encoding in BIP-340 spec - BtcPk *github_com_babylonchain_babylon_types.BIP340PubKey `protobuf:"bytes,4,opt,name=btc_pk,json=btcPk,proto3,customtype=github.com/babylonchain/babylon/types.BIP340PubKey" json:"btc_pk,omitempty"` + BtcPk *github_com_babylonlabs_io_babylon_types.BIP340PubKey `protobuf:"bytes,4,opt,name=btc_pk,json=btcPk,proto3,customtype=github.com/babylonlabs-io/babylon/types.BIP340PubKey" json:"btc_pk,omitempty"` // pop is the proof of possession of babylon_pk and btc_pk Pop *types1.ProofOfPossessionBTC `protobuf:"bytes,5,opt,name=pop,proto3" json:"pop,omitempty"` // slashed_babylon_height indicates the Babylon height when @@ -752,78 +752,78 @@ func init() { } var fileDescriptor_4e6c48e60b6a8bd8 = []byte{ - // 1124 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0x4d, 0x73, 0xdb, 0x44, - 0x18, 0x8e, 0x9a, 0xc4, 0xe0, 0x75, 0x99, 0x89, 0x97, 0x4c, 0xc7, 0x35, 0xc5, 0x89, 0xd5, 0x0f, - 0x42, 0x69, 0x24, 0x9c, 0x74, 0x4a, 0x3b, 0x6d, 0xf9, 0x70, 0xdc, 0x36, 0x81, 0x64, 0x10, 0x82, - 0x53, 0x39, 0x08, 0x7d, 0xac, 0x65, 0x61, 0x5b, 0xab, 0x6a, 0xd7, 0x26, 0x9e, 0x92, 0x03, 0x9c, - 0xb8, 0xc1, 0xc0, 0x9f, 0xe0, 0xc0, 0x81, 0x43, 0x7f, 0x44, 0x0f, 0x94, 0xe9, 0x94, 0x03, 0xd0, - 0x43, 0x86, 0x49, 0x98, 0xe1, 0xc2, 0x8f, 0x60, 0xb4, 0x5a, 0x39, 0x96, 0xfc, 0xa1, 0xc4, 0xc3, - 0x25, 0xe3, 0xdd, 0xf7, 0xeb, 0x79, 0x9e, 0x77, 0x77, 0x5f, 0x05, 0x5c, 0x34, 0x74, 0xa3, 0xd7, - 0xc2, 0xae, 0x6c, 0x50, 0x93, 0xd0, 0xa6, 0x89, 0x5d, 0xd2, 0x69, 0x23, 0x5f, 0xee, 0x56, 0xe4, - 0x07, 0x1d, 0xe4, 0xf7, 0x24, 0xcf, 0xc7, 0x14, 0xc3, 0xb3, 0xdc, 0x4d, 0x8a, 0xbb, 0x49, 0xdd, - 0x4a, 0x31, 0xaf, 0xb7, 0x1d, 0x17, 0xcb, 0xec, 0x6f, 0xe8, 0x5d, 0x5c, 0xb4, 0xb1, 0x8d, 0xd9, - 0x4f, 0x39, 0xf8, 0xc5, 0x77, 0xcf, 0xd9, 0x18, 0xdb, 0x2d, 0x24, 0xeb, 0x9e, 0x23, 0xeb, 0xae, - 0x8b, 0xa9, 0x4e, 0x1d, 0xec, 0x12, 0x6e, 0x3d, 0x6b, 0x62, 0xd2, 0xc6, 0x44, 0x0b, 0xc3, 0xc2, - 0x05, 0x37, 0x5d, 0x08, 0x57, 0x32, 0xa1, 0x7a, 0xd3, 0x71, 0x6d, 0xb9, 0x5b, 0x31, 0x10, 0xd5, - 0x2b, 0xd1, 0x9a, 0x7b, 0x5d, 0xe6, 0x5e, 0x86, 0x4e, 0x50, 0x88, 0xbd, 0xef, 0xe8, 0xe9, 0xb6, - 0xe3, 0xb2, 0x6a, 0xdc, 0xf7, 0x52, 0x8c, 0x75, 0x94, 0x75, 0x60, 0xc5, 0xfd, 0x96, 0x46, 0xfb, - 0x79, 0xd8, 0xe3, 0x0e, 0xd2, 0x78, 0xf9, 0x12, 0x4a, 0x8d, 0x2a, 0x1c, 0xf3, 0xf7, 0x74, 0x5f, - 0x6f, 0x73, 0xca, 0xe2, 0x22, 0x80, 0x1f, 0x05, 0x14, 0x14, 0xb6, 0xa9, 0xa2, 0x07, 0x1d, 0x44, - 0xa8, 0xf8, 0x29, 0x78, 0x39, 0xb6, 0x4b, 0x3c, 0xec, 0x12, 0x04, 0x6b, 0x20, 0x13, 0x06, 0x17, - 0x84, 0x65, 0x61, 0x25, 0xb7, 0x56, 0x96, 0xc6, 0x76, 0x4b, 0x0a, 0x43, 0xab, 0xd9, 0xc7, 0xfb, - 0x4b, 0x33, 0x3f, 0xfe, 0xf3, 0xf3, 0x65, 0x41, 0xe5, 0xb1, 0xe2, 0xe7, 0x60, 0x99, 0x25, 0xdf, - 0xe0, 0xde, 0x2a, 0xb2, 0x1d, 0x42, 0xfd, 0xde, 0xb6, 0x43, 0x28, 0x07, 0x00, 0xef, 0x02, 0x70, - 0xa4, 0x25, 0xaf, 0x76, 0x49, 0xe2, 0xcd, 0x0a, 0x84, 0x97, 0xc2, 0x43, 0xc3, 0x85, 0x97, 0x14, - 0xdd, 0x46, 0x3c, 0x56, 0x1d, 0x88, 0x14, 0xbf, 0x15, 0x40, 0x79, 0x42, 0x31, 0xce, 0xab, 0x0c, - 0x4e, 0x47, 0xd0, 0x35, 0xc7, 0x0a, 0xd8, 0xcd, 0xae, 0x64, 0xd5, 0x5c, 0xb4, 0xb7, 0x65, 0x11, - 0x78, 0x2f, 0x06, 0xe8, 0x14, 0x03, 0xf4, 0x5a, 0x2a, 0xa0, 0x30, 0x7f, 0x0c, 0x51, 0x15, 0xbc, - 0x1a, 0x03, 0x44, 0x22, 0x44, 0x11, 0xf5, 0x74, 0x30, 0xe2, 0x97, 0xa0, 0x34, 0x2e, 0x07, 0x67, - 0x74, 0x1f, 0xc0, 0x28, 0x80, 0x68, 0x3e, 0xb3, 0x22, 0x9f, 0xa5, 0xca, 0xad, 0xbd, 0x31, 0xa1, - 0x6b, 0x71, 0x99, 0x90, 0xaf, 0xe6, 0xcd, 0x78, 0x0d, 0xe4, 0x8b, 0xdf, 0x08, 0x9c, 0xc2, 0x5d, - 0xc7, 0xd5, 0x5b, 0x0e, 0xed, 0x29, 0x3e, 0xee, 0x3a, 0x16, 0x73, 0x09, 0x29, 0x2c, 0x81, 0xdc, - 0x00, 0x05, 0xd6, 0xbe, 0xac, 0x0a, 0x8e, 0x18, 0x24, 0xda, 0x7b, 0x6a, 0xea, 0xf6, 0x3e, 0x11, - 0xb8, 0x12, 0x23, 0xa0, 0x70, 0x25, 0x0c, 0x00, 0xeb, 0xdc, 0x18, 0x5c, 0xf9, 0xd0, 0xca, 0x95, - 0x58, 0x9f, 0xa0, 0x44, 0x32, 0x63, 0xbf, 0x99, 0xf9, 0x7a, 0xb2, 0xd6, 0xff, 0x77, 0x38, 0x0c, - 0x70, 0x6e, 0x24, 0x9d, 0x63, 0x0b, 0x5b, 0x06, 0x2f, 0xd5, 0x3d, 0xcd, 0xa0, 0xa6, 0xe6, 0x35, - 0xb5, 0x06, 0xda, 0x65, 0x60, 0xb2, 0x2a, 0xa8, 0x7b, 0x55, 0x6a, 0x2a, 0xcd, 0x4d, 0xb4, 0x2b, - 0x7e, 0x35, 0xae, 0x7d, 0x7d, 0xc9, 0x3e, 0x03, 0xf9, 0x21, 0xc9, 0xf8, 0x1d, 0x9c, 0x4a, 0xb1, - 0x85, 0xa4, 0x62, 0xe2, 0x4f, 0x73, 0xa0, 0x30, 0xb6, 0xfc, 0x1d, 0x90, 0xb3, 0x10, 0x31, 0x7d, - 0xc7, 0x1b, 0xb8, 0xfc, 0xe7, 0x23, 0x39, 0xa3, 0x77, 0x33, 0xd2, 0xb2, 0x76, 0xe4, 0xaa, 0x0e, - 0xc6, 0xc1, 0x1d, 0x00, 0x4c, 0xdc, 0x6e, 0x3b, 0x84, 0x44, 0x4d, 0xc9, 0x56, 0x57, 0x9f, 0xef, - 0x2f, 0xbd, 0x12, 0x26, 0x22, 0x56, 0x53, 0x72, 0xb0, 0xdc, 0xd6, 0x69, 0x43, 0xda, 0x46, 0xb6, - 0x6e, 0xf6, 0x6a, 0xc8, 0x7c, 0xf6, 0x68, 0x15, 0xf0, 0x3a, 0x35, 0x64, 0xaa, 0x03, 0x09, 0xe0, - 0x15, 0x30, 0xa7, 0x5b, 0x96, 0x5f, 0x98, 0x65, 0x89, 0x0a, 0xcf, 0x1e, 0xad, 0x2e, 0x72, 0xcf, - 0xf7, 0x2c, 0xcb, 0x47, 0x84, 0x7c, 0x4c, 0x7d, 0xc7, 0xb5, 0x55, 0xe6, 0x05, 0x77, 0x40, 0x26, - 0x6c, 0x42, 0x61, 0x6e, 0x59, 0x58, 0x39, 0x5d, 0xbd, 0xf6, 0x7c, 0x7f, 0x69, 0xcd, 0x76, 0x68, - 0xa3, 0x63, 0x48, 0x26, 0x6e, 0xcb, 0x5c, 0x45, 0xb3, 0xa1, 0x3b, 0x6e, 0xb4, 0x90, 0x69, 0xcf, - 0x43, 0x44, 0xaa, 0x6e, 0x29, 0xeb, 0x57, 0xdf, 0x54, 0x3a, 0xc6, 0x07, 0xa8, 0xa7, 0xce, 0x1b, - 0x41, 0xdb, 0xe0, 0x6d, 0x30, 0xeb, 0x61, 0xaf, 0x30, 0xcf, 0xa4, 0x48, 0xdc, 0xdf, 0x48, 0x0e, - 0x49, 0xf1, 0x31, 0xae, 0x7f, 0x58, 0x57, 0x30, 0x21, 0x88, 0x61, 0xae, 0x7e, 0xb2, 0xa1, 0x06, - 0x71, 0xf0, 0x2a, 0x38, 0x43, 0x5a, 0x3a, 0x69, 0x20, 0x4b, 0xe3, 0xa1, 0x5a, 0x03, 0x39, 0x76, - 0x83, 0x16, 0x32, 0xcb, 0xc2, 0xca, 0x9c, 0xba, 0xc8, 0xad, 0xd5, 0xd0, 0xb8, 0xc9, 0x6c, 0xf0, - 0x0a, 0x80, 0xfd, 0x28, 0x6a, 0x46, 0x11, 0x2f, 0xb0, 0x88, 0x85, 0x28, 0x82, 0x9a, 0xdc, 0xfb, - 0x0c, 0xc8, 0x70, 0x8f, 0x17, 0x99, 0x07, 0x5f, 0x05, 0xcf, 0x59, 0x17, 0x53, 0xc7, 0xb5, 0x35, - 0x0f, 0x7f, 0x81, 0xfc, 0x42, 0x96, 0x59, 0x73, 0xe1, 0x9e, 0x12, 0x6c, 0x25, 0x4f, 0x35, 0x48, - 0x9e, 0x6a, 0x71, 0x0b, 0x5c, 0x18, 0x79, 0x62, 0x8f, 0x5e, 0xab, 0xe8, 0xe9, 0x4c, 0x9c, 0x7e, - 0x61, 0xe8, 0xf4, 0x6f, 0x82, 0x8b, 0x29, 0xa9, 0xf8, 0x29, 0x4c, 0xbb, 0x6a, 0x6b, 0xbf, 0x67, - 0xc1, 0x3c, 0x4b, 0x05, 0xbf, 0x17, 0x40, 0x26, 0x1c, 0x77, 0x70, 0x75, 0xc2, 0xfd, 0x18, 0x9e, - 0xb3, 0x45, 0xe9, 0xb8, 0xee, 0x21, 0x28, 0xf1, 0xf5, 0xaf, 0x7f, 0xfb, 0xfb, 0x87, 0x53, 0xe7, - 0x61, 0x59, 0x4e, 0x1b, 0xef, 0xf0, 0x17, 0x01, 0x2c, 0x8e, 0x1a, 0x7a, 0xf0, 0x66, 0x5a, 0xcd, - 0x09, 0x73, 0xb9, 0x78, 0x6b, 0xba, 0x60, 0x0e, 0xff, 0x06, 0x83, 0xbf, 0x0e, 0x2b, 0x13, 0xe0, - 0xf7, 0x45, 0xf7, 0x79, 0x06, 0xad, 0x15, 0xa0, 0xfe, 0x55, 0x00, 0xf9, 0xa1, 0x71, 0x07, 0xaf, - 0x1f, 0x17, 0x4e, 0x72, 0xca, 0x16, 0x6f, 0x4c, 0x11, 0xc9, 0x59, 0xd4, 0x18, 0x8b, 0xb7, 0xe1, - 0xad, 0x63, 0xb0, 0x20, 0x7d, 0x1a, 0xf2, 0xc3, 0xc1, 0xa9, 0xbe, 0x07, 0xff, 0x15, 0x86, 0x9f, - 0xc0, 0xa8, 0x26, 0x7c, 0x27, 0x0d, 0x5d, 0xca, 0x4d, 0x28, 0xbe, 0x3b, 0x7d, 0x02, 0xce, 0x72, - 0x87, 0xb1, 0xbc, 0x07, 0xef, 0x4c, 0x60, 0x39, 0x34, 0x25, 0xb4, 0xbe, 0xf5, 0x61, 0xec, 0x22, - 0xee, 0xc1, 0x27, 0x02, 0xc8, 0x0f, 0x0d, 0xe9, 0xf4, 0xfe, 0x8d, 0xfb, 0xc4, 0x48, 0xef, 0xdf, - 0xd8, 0x2f, 0x02, 0x71, 0x83, 0x31, 0xbb, 0x0d, 0x6f, 0x9e, 0x84, 0x19, 0x89, 0xf5, 0x6f, 0x0f, - 0xfe, 0x29, 0x80, 0x85, 0x64, 0x09, 0xf8, 0xd6, 0x49, 0x41, 0x45, 0x6c, 0xae, 0x9f, 0x3c, 0x90, - 0x93, 0x51, 0x19, 0x99, 0x6d, 0xf8, 0xfe, 0x49, 0xc8, 0xc4, 0xb9, 0x24, 0x7b, 0x55, 0x55, 0x1e, - 0x1f, 0x94, 0x84, 0xa7, 0x07, 0x25, 0xe1, 0xaf, 0x83, 0x92, 0xf0, 0xdd, 0x61, 0x69, 0xe6, 0xe9, - 0x61, 0x69, 0xe6, 0x8f, 0xc3, 0xd2, 0xcc, 0xfd, 0x6b, 0x69, 0x23, 0x6c, 0x37, 0x59, 0x9e, 0xcd, - 0x34, 0x23, 0xc3, 0xfe, 0xd9, 0x58, 0xff, 0x2f, 0x00, 0x00, 0xff, 0xff, 0x7a, 0x04, 0x05, 0x3e, - 0x05, 0x0e, 0x00, 0x00, + // 1125 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0xac, 0x57, 0x4b, 0x6f, 0x1b, 0x45, + 0x1c, 0xcf, 0xe6, 0x61, 0xf0, 0xb8, 0x48, 0xf1, 0x10, 0x55, 0xae, 0x29, 0x4e, 0xbc, 0x7d, 0x10, + 0x4a, 0xbd, 0x8b, 0x93, 0x48, 0xa4, 0x6a, 0xcb, 0xc3, 0x71, 0xdb, 0x04, 0x52, 0xd5, 0x2c, 0x9c, + 0xca, 0x61, 0xd9, 0xc7, 0x78, 0xbd, 0xd8, 0xde, 0xd9, 0xee, 0x8c, 0x4d, 0xac, 0x92, 0x03, 0x9c, + 0xb8, 0x81, 0xe0, 0x4b, 0x70, 0x42, 0x1c, 0xfa, 0x21, 0x7a, 0xa0, 0xa8, 0x2a, 0x07, 0xa0, 0x87, + 0x08, 0x25, 0x48, 0x5c, 0xf8, 0x10, 0x68, 0x67, 0x67, 0x1d, 0xef, 0xfa, 0xb1, 0x89, 0xd5, 0x4b, + 0xe4, 0x99, 0xff, 0xeb, 0xf7, 0xfb, 0xfd, 0x67, 0xe6, 0xbf, 0x01, 0x97, 0x74, 0x4d, 0xef, 0xb5, + 0xb0, 0x23, 0xeb, 0xd4, 0x20, 0xb4, 0x69, 0x60, 0x87, 0x74, 0xda, 0xc8, 0x93, 0xbb, 0x65, 0xf9, + 0x41, 0x07, 0x79, 0x3d, 0xc9, 0xf5, 0x30, 0xc5, 0xf0, 0x1c, 0x77, 0x93, 0xa2, 0x6e, 0x52, 0xb7, + 0x9c, 0xcf, 0x6a, 0x6d, 0xdb, 0xc1, 0x32, 0xfb, 0x1b, 0x78, 0xe7, 0x97, 0x2c, 0x6c, 0x61, 0xf6, + 0x53, 0xf6, 0x7f, 0xf1, 0xdd, 0xf3, 0x16, 0xc6, 0x56, 0x0b, 0xc9, 0x9a, 0x6b, 0xcb, 0x9a, 0xe3, + 0x60, 0xaa, 0x51, 0x1b, 0x3b, 0x84, 0x5b, 0xcf, 0x19, 0x98, 0xb4, 0x31, 0x51, 0x83, 0xb0, 0x60, + 0xc1, 0x4d, 0x17, 0x83, 0x95, 0x4c, 0xa8, 0xd6, 0xb4, 0x1d, 0x4b, 0xee, 0x96, 0x75, 0x44, 0xb5, + 0x72, 0xb8, 0xe6, 0x5e, 0x57, 0xb8, 0x97, 0xae, 0x11, 0x14, 0x60, 0xef, 0x3b, 0xba, 0x9a, 0x65, + 0x3b, 0xac, 0x1a, 0xf7, 0xbd, 0x1c, 0x61, 0x1d, 0x66, 0x1d, 0x58, 0x71, 0xbf, 0xe5, 0xd1, 0x7e, + 0x2e, 0x76, 0xb9, 0x83, 0x34, 0x5e, 0xbe, 0x98, 0x52, 0xa3, 0x0a, 0x47, 0xfc, 0x5d, 0xcd, 0xd3, + 0xda, 0x9c, 0xb2, 0xb8, 0x04, 0xe0, 0xc7, 0x3e, 0x85, 0x1a, 0xdb, 0x54, 0xd0, 0x83, 0x0e, 0x22, + 0x54, 0xfc, 0x0c, 0xbc, 0x1a, 0xd9, 0x25, 0x2e, 0x76, 0x08, 0x82, 0x55, 0x90, 0x0a, 0x82, 0x73, + 0xc2, 0x8a, 0xb0, 0x9a, 0x59, 0x2b, 0x4a, 0x63, 0xbb, 0x25, 0x05, 0xa1, 0x95, 0xf4, 0xe3, 0x83, + 0xe5, 0x99, 0x9f, 0xfe, 0xfd, 0xe5, 0x8a, 0xa0, 0xf0, 0x58, 0xf1, 0x0b, 0xb0, 0xc2, 0x92, 0x6f, + 0x71, 0x6f, 0x05, 0x59, 0x36, 0xa1, 0x5e, 0x6f, 0xd7, 0x26, 0x94, 0x03, 0x80, 0xb7, 0x01, 0x38, + 0xd6, 0x92, 0x57, 0xbb, 0x2c, 0xf1, 0x66, 0xf9, 0xc2, 0x4b, 0xc1, 0xa1, 0xe1, 0xc2, 0x4b, 0x35, + 0xcd, 0x42, 0x3c, 0x56, 0x19, 0x88, 0x14, 0xbf, 0x13, 0x40, 0x71, 0x42, 0x31, 0xce, 0xab, 0x08, + 0xce, 0x84, 0xd0, 0x55, 0xdb, 0xf4, 0xd9, 0xcd, 0xad, 0xa6, 0x95, 0x4c, 0xb8, 0xb7, 0x63, 0x12, + 0x78, 0x27, 0x02, 0x68, 0x96, 0x01, 0x7a, 0x23, 0x11, 0x50, 0x90, 0x3f, 0x82, 0xa8, 0x02, 0x5e, + 0x8f, 0x00, 0x22, 0x21, 0xa2, 0x90, 0x7a, 0x32, 0x18, 0xf1, 0x2b, 0x50, 0x18, 0x97, 0x83, 0x33, + 0xba, 0x0f, 0x60, 0x18, 0x40, 0x54, 0x8f, 0x59, 0x91, 0xc7, 0x52, 0x65, 0xd6, 0xde, 0x9a, 0xd0, + 0xb5, 0xa8, 0x4c, 0xc8, 0x53, 0xb2, 0x46, 0xb4, 0x06, 0xf2, 0xc4, 0x6f, 0x05, 0x4e, 0xe1, 0xb6, + 0xed, 0x68, 0x2d, 0x9b, 0xf6, 0x6a, 0x1e, 0xee, 0xda, 0x26, 0x73, 0x09, 0x28, 0x2c, 0x83, 0xcc, + 0x00, 0x05, 0xd6, 0xbe, 0xb4, 0x02, 0x8e, 0x19, 0xc4, 0xda, 0x3b, 0x3b, 0x75, 0x7b, 0x9f, 0x08, + 0x5c, 0x89, 0x11, 0x50, 0xb8, 0x12, 0x3a, 0x80, 0x75, 0x6e, 0xf4, 0xaf, 0x7c, 0x60, 0xe5, 0x4a, + 0xac, 0x4f, 0x50, 0x22, 0x9e, 0xb1, 0xdf, 0xcc, 0x6c, 0x3d, 0x5e, 0xeb, 0xc5, 0x1d, 0x0e, 0x1d, + 0x9c, 0x1f, 0x49, 0xe7, 0xc4, 0xc2, 0x16, 0xc1, 0x2b, 0x75, 0x57, 0xd5, 0xa9, 0xa1, 0xba, 0x4d, + 0xb5, 0x81, 0xf6, 0x18, 0x98, 0xb4, 0x02, 0xea, 0x6e, 0x85, 0x1a, 0xb5, 0xe6, 0x36, 0xda, 0x13, + 0xbf, 0x1e, 0xd7, 0xbe, 0xbe, 0x64, 0x9f, 0x83, 0xec, 0x90, 0x64, 0xfc, 0x0e, 0x4e, 0xa5, 0xd8, + 0x62, 0x5c, 0x31, 0xf1, 0xe7, 0x79, 0x90, 0x1b, 0x5b, 0xfe, 0x16, 0xc8, 0x98, 0x88, 0x18, 0x9e, + 0xed, 0x0e, 0x5c, 0xfe, 0x0b, 0xa1, 0x9c, 0xe1, 0xbb, 0x19, 0x6a, 0x59, 0x3d, 0x76, 0x55, 0x06, + 0xe3, 0xe0, 0x5d, 0x00, 0x0c, 0xdc, 0x6e, 0xdb, 0x84, 0x84, 0x4d, 0x49, 0x57, 0x4a, 0xcf, 0x0f, + 0x96, 0x5f, 0x0b, 0x12, 0x11, 0xb3, 0x29, 0xd9, 0x58, 0x6e, 0x6b, 0xb4, 0x21, 0xed, 0x22, 0x4b, + 0x33, 0x7a, 0x55, 0x64, 0x3c, 0x7b, 0x54, 0x02, 0xbc, 0x4e, 0x15, 0x19, 0xca, 0x40, 0x02, 0x78, + 0x15, 0xcc, 0x6b, 0xa6, 0xe9, 0xe5, 0xe6, 0x58, 0xa2, 0xdc, 0xb3, 0x47, 0xa5, 0x25, 0xee, 0xf9, + 0x81, 0x69, 0x7a, 0x88, 0x90, 0x4f, 0xa8, 0x67, 0x3b, 0x96, 0xc2, 0xbc, 0xe0, 0x3d, 0x90, 0x0a, + 0x9a, 0x90, 0x9b, 0x5f, 0x11, 0x56, 0xcf, 0x54, 0x36, 0x9f, 0x1f, 0x2c, 0x6f, 0x58, 0x36, 0x6d, + 0x74, 0x74, 0xc9, 0xc0, 0x6d, 0x99, 0xab, 0xd8, 0xd2, 0x74, 0x52, 0xb2, 0x71, 0xb8, 0x94, 0x69, + 0xcf, 0x45, 0x44, 0xaa, 0xec, 0xd4, 0xd6, 0x37, 0xde, 0xae, 0x75, 0xf4, 0x8f, 0x50, 0x4f, 0x59, + 0xd0, 0xfd, 0xc6, 0xc1, 0x9b, 0x60, 0xce, 0xc5, 0x6e, 0x6e, 0x81, 0x89, 0x11, 0xbb, 0xc1, 0xa1, + 0x20, 0x52, 0xcd, 0xc3, 0xb8, 0x7e, 0xaf, 0x5e, 0xc3, 0x84, 0x20, 0x86, 0xba, 0xf2, 0xe9, 0x96, + 0xe2, 0xc7, 0xc1, 0x0d, 0x70, 0x96, 0xb4, 0x34, 0xd2, 0x40, 0xa6, 0xca, 0x43, 0xd5, 0x06, 0xb2, + 0xad, 0x06, 0xcd, 0xa5, 0x56, 0x84, 0xd5, 0x79, 0x65, 0x89, 0x5b, 0x2b, 0x81, 0x71, 0x9b, 0xd9, + 0xe0, 0x55, 0x00, 0xfb, 0x51, 0xd4, 0x08, 0x23, 0x5e, 0x62, 0x11, 0x8b, 0x61, 0x04, 0x35, 0xb8, + 0xf7, 0x59, 0x90, 0xe2, 0x1e, 0x2f, 0x33, 0x0f, 0xbe, 0xf2, 0x1f, 0xb4, 0x2e, 0xa6, 0xb6, 0x63, + 0xa9, 0x2e, 0xfe, 0x12, 0x79, 0xb9, 0x34, 0xb3, 0x66, 0x82, 0xbd, 0x9a, 0xbf, 0x15, 0x3f, 0xd7, + 0x20, 0x7e, 0xae, 0xc5, 0x1d, 0x70, 0x71, 0xe4, 0x99, 0x3d, 0x7e, 0xaf, 0xc2, 0xc7, 0x33, 0x76, + 0xfe, 0x85, 0xa1, 0xf3, 0xbf, 0x0d, 0x2e, 0x25, 0xa4, 0xe2, 0xe7, 0x30, 0xe9, 0xb2, 0xad, 0xfd, + 0x91, 0x06, 0x0b, 0x2c, 0x15, 0xfc, 0x41, 0x00, 0xa9, 0x60, 0xe0, 0xc1, 0xd2, 0x84, 0x1b, 0x32, + 0x3c, 0x69, 0xf3, 0xd2, 0x49, 0xdd, 0x03, 0x50, 0xe2, 0x9b, 0xdf, 0xfc, 0xfe, 0xcf, 0x8f, 0xb3, + 0x17, 0x60, 0x51, 0x4e, 0x1a, 0xf0, 0xf0, 0x57, 0x01, 0x2c, 0x8d, 0x1a, 0x7b, 0xf0, 0x7a, 0x52, + 0xcd, 0x09, 0x93, 0x39, 0x7f, 0x63, 0xba, 0x60, 0x0e, 0xff, 0x1a, 0x83, 0xbf, 0x0e, 0xcb, 0x13, + 0xe0, 0xf7, 0x45, 0xf7, 0x78, 0x06, 0xb5, 0xe5, 0xa3, 0xfe, 0x4d, 0x00, 0xd9, 0xa1, 0x81, 0x07, + 0x37, 0x4f, 0x0a, 0x27, 0x3e, 0x67, 0xf3, 0xd7, 0xa6, 0x88, 0xe4, 0x2c, 0xaa, 0x8c, 0xc5, 0xbb, + 0xf0, 0xc6, 0x09, 0x58, 0x90, 0x3e, 0x0d, 0xf9, 0xe1, 0xe0, 0x5c, 0xdf, 0x87, 0xff, 0x09, 0xc3, + 0x8f, 0x60, 0x58, 0x13, 0xbe, 0x97, 0x84, 0x2e, 0xe1, 0x26, 0xe4, 0xdf, 0x9f, 0x3e, 0x01, 0x67, + 0x79, 0x97, 0xb1, 0xbc, 0x03, 0x6f, 0x4d, 0x60, 0x39, 0x34, 0x27, 0xd4, 0xbe, 0xf5, 0x61, 0xe4, + 0x22, 0xee, 0xc3, 0x27, 0x02, 0xc8, 0x0e, 0x8d, 0xe9, 0xe4, 0xfe, 0x8d, 0xfb, 0xc8, 0x48, 0xee, + 0xdf, 0xd8, 0x6f, 0x02, 0x71, 0x8b, 0x31, 0xbb, 0x09, 0xaf, 0x9f, 0x86, 0x19, 0x89, 0xf4, 0x6f, + 0x1f, 0xfe, 0x25, 0x80, 0xc5, 0x78, 0x09, 0xf8, 0xce, 0x69, 0x41, 0x85, 0x6c, 0x36, 0x4f, 0x1f, + 0xc8, 0xc9, 0x28, 0x8c, 0xcc, 0x2e, 0xfc, 0xf0, 0x34, 0x64, 0xa2, 0x5c, 0xe2, 0xbd, 0xaa, 0x28, + 0x8f, 0x0f, 0x0b, 0xc2, 0xd3, 0xc3, 0x82, 0xf0, 0xf7, 0x61, 0x41, 0xf8, 0xfe, 0xa8, 0x30, 0xf3, + 0xf4, 0xa8, 0x30, 0xf3, 0xe7, 0x51, 0x61, 0xe6, 0xfe, 0x66, 0xf2, 0x10, 0xdb, 0x8b, 0x03, 0x60, + 0x53, 0x4d, 0x4f, 0xb1, 0x7f, 0x38, 0xd6, 0xff, 0x0f, 0x00, 0x00, 0xff, 0xff, 0xce, 0xa2, 0x03, + 0xda, 0x09, 0x0e, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. @@ -2969,7 +2969,7 @@ func (m *FinalityProviderResponse) Unmarshal(dAtA []byte) error { if postIndex > l { return io.ErrUnexpectedEOF } - var v github_com_babylonchain_babylon_types.BIP340PubKey + var v github_com_babylonlabs_io_babylon_types.BIP340PubKey m.BtcPk = &v if err := m.BtcPk.Unmarshal(dAtA[iNdEx:postIndex]); err != nil { return err diff --git a/x/btcstkconsumer/types/tx.pb.go b/x/btcstkconsumer/types/tx.pb.go index cf0d4141c..01acf954c 100644 --- a/x/btcstkconsumer/types/tx.pb.go +++ b/x/btcstkconsumer/types/tx.pb.go @@ -247,38 +247,38 @@ func init() { } var fileDescriptor_12cd7e02078b20ee = []byte{ - // 487 bytes of a gzipped FileDescriptorProto - 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x93, 0x31, 0x6f, 0xd3, 0x40, - 0x14, 0xc7, 0x73, 0x14, 0x22, 0xe5, 0x52, 0x04, 0x5c, 0x23, 0xea, 0x18, 0xe1, 0x16, 0x23, 0xa1, - 0x2a, 0x08, 0x5b, 0x09, 0x52, 0x86, 0x0e, 0x48, 0x84, 0x2e, 0x0c, 0x41, 0x95, 0x11, 0x0b, 0x4b, - 0x75, 0xb6, 0x4f, 0x97, 0x13, 0xdc, 0x9d, 0x75, 0x77, 0xa9, 0x1a, 0x26, 0xc4, 0xc8, 0xc4, 0xc7, - 0x60, 0x8c, 0x04, 0x1f, 0xa2, 0x1b, 0x15, 0x13, 0x13, 0x42, 0xc9, 0x90, 0xaf, 0xc0, 0x88, 0x62, - 0x9f, 0x1b, 0x35, 0x34, 0x11, 0x2c, 0x96, 0xdf, 0x7b, 0xbf, 0x7b, 0xff, 0xf7, 0x7f, 0x3e, 0x43, - 0x3f, 0xc6, 0xf1, 0xe8, 0xad, 0x14, 0x61, 0x6c, 0x12, 0x6d, 0xde, 0x24, 0x52, 0xe8, 0x21, 0x27, - 0x2a, 0x3c, 0x6e, 0x87, 0xe6, 0x24, 0xc8, 0x94, 0x34, 0x12, 0x35, 0x2d, 0x13, 0x5c, 0x64, 0x82, - 0xe3, 0xb6, 0x7b, 0x0b, 0x73, 0x26, 0x64, 0x98, 0x3f, 0x0b, 0xda, 0xdd, 0x4e, 0xa4, 0xe6, 0x52, - 0x87, 0x5c, 0xd3, 0x79, 0x17, 0xae, 0xa9, 0x2d, 0x34, 0x8b, 0xc2, 0x51, 0x1e, 0x85, 0x45, 0x60, - 0x4b, 0x0d, 0x2a, 0xa9, 0x2c, 0xf2, 0xf3, 0x37, 0x9b, 0x7d, 0xb0, 0x7a, 0xb6, 0x0c, 0x2b, 0xcc, - 0xed, 0x69, 0xff, 0x1b, 0x80, 0x37, 0xfa, 0x9a, 0xbe, 0xca, 0x52, 0x6c, 0xc8, 0x61, 0x5e, 0x41, - 0x5d, 0x58, 0xc3, 0x43, 0x33, 0x90, 0x8a, 0x99, 0x91, 0x03, 0x76, 0xc1, 0x5e, 0xad, 0xe7, 0x7c, - 0xff, 0xfa, 0xa8, 0x61, 0x65, 0x9f, 0xa6, 0xa9, 0x22, 0x5a, 0xbf, 0x34, 0x8a, 0x09, 0x1a, 0x2d, - 0x50, 0x74, 0x00, 0xab, 0x45, 0x6f, 0xe7, 0xca, 0x2e, 0xd8, 0xab, 0x77, 0xee, 0x05, 0x2b, 0xcd, - 0x07, 0x85, 0x54, 0xaf, 0x76, 0xfa, 0x73, 0xa7, 0xf2, 0x79, 0x36, 0x6e, 0x81, 0xc8, 0x9e, 0xdd, - 0x7f, 0xf2, 0x61, 0x36, 0x6e, 0x2d, 0xba, 0x7e, 0x9c, 0x8d, 0x5b, 0x0f, 0x4b, 0x33, 0x27, 0x97, - 0xd8, 0x59, 0x9a, 0xde, 0x6f, 0xc2, 0xed, 0xa5, 0x54, 0x44, 0x74, 0x26, 0x85, 0x26, 0xfe, 0x17, - 0x00, 0xb7, 0xfa, 0x9a, 0x46, 0x84, 0x32, 0x6d, 0x88, 0x7a, 0x66, 0xbb, 0xa0, 0xdb, 0xb0, 0xaa, - 0x19, 0x15, 0x44, 0x15, 0x6e, 0x23, 0x1b, 0xa1, 0x1d, 0x58, 0x2f, 0x95, 0x8e, 0x58, 0x9a, 0xbb, - 0xaa, 0x45, 0xb0, 0x4c, 0x3d, 0x4f, 0xd1, 0x7d, 0x78, 0xfd, 0x1c, 0x10, 0x98, 0x13, 0x67, 0x23, - 0x47, 0x36, 0xcb, 0xe4, 0x0b, 0xcc, 0x09, 0x6a, 0xc3, 0xc6, 0x39, 0x94, 0x12, 0x9d, 0x28, 0x96, - 0x19, 0x26, 0x85, 0x73, 0x35, 0x67, 0xb7, 0xca, 0xda, 0xc1, 0xa2, 0xb4, 0x5f, 0x9f, 0xef, 0xc0, - 0x4e, 0xe1, 0xdf, 0x85, 0x77, 0x2e, 0x19, 0xba, 0x34, 0xd5, 0xf9, 0x0d, 0xe0, 0x46, 0x5f, 0x53, - 0x24, 0xe0, 0xe6, 0x85, 0xaf, 0xd8, 0x5a, 0xb3, 0xfd, 0xa5, 0x05, 0xb9, 0x9d, 0x7f, 0x67, 0x4b, - 0x5d, 0xf4, 0x0e, 0xde, 0xfc, 0x6b, 0x91, 0xc1, 0xfa, 0x3e, 0xcb, 0xbc, 0xdb, 0xfd, 0x3f, 0xbe, - 0xd4, 0x76, 0xaf, 0xbd, 0x9f, 0x5f, 0x99, 0xde, 0xe1, 0xe9, 0xc4, 0x03, 0x67, 0x13, 0x0f, 0xfc, - 0x9a, 0x78, 0xe0, 0xd3, 0xd4, 0xab, 0x9c, 0x4d, 0xbd, 0xca, 0x8f, 0xa9, 0x57, 0x79, 0xdd, 0xa5, - 0xcc, 0x0c, 0x86, 0x71, 0x90, 0x48, 0x1e, 0x5a, 0x89, 0x64, 0x80, 0x99, 0x08, 0x57, 0xde, 0x24, - 0x33, 0xca, 0x88, 0x8e, 0xab, 0xf9, 0x5f, 0xf1, 0xf8, 0x4f, 0x00, 0x00, 0x00, 0xff, 0xff, 0x7b, - 0xeb, 0x67, 0x7e, 0xdb, 0x03, 0x00, 0x00, + // 489 bytes of a gzipped FileDescriptorProto + 0x1f, 0x8b, 0x08, 0x00, 0x00, 0x00, 0x00, 0x00, 0x02, 0xff, 0x94, 0x93, 0x41, 0x6b, 0x13, 0x41, + 0x14, 0xc7, 0x33, 0x56, 0x03, 0x99, 0x54, 0xd4, 0x6d, 0xb0, 0xc9, 0x8a, 0xdb, 0xba, 0x82, 0x94, + 0x48, 0x77, 0x49, 0x84, 0x22, 0x3d, 0x08, 0xc6, 0x5e, 0x3c, 0x44, 0x64, 0xc5, 0x8b, 0x97, 0x32, + 0xbb, 0x3b, 0x4c, 0x07, 0x3b, 0x33, 0xcb, 0xbc, 0x49, 0x69, 0x3c, 0x89, 0x47, 0x4f, 0x7e, 0x0c, + 0x8f, 0x01, 0xfd, 0x10, 0xbd, 0x59, 0x3c, 0x79, 0x12, 0x49, 0x0e, 0xf9, 0x0a, 0x1e, 0x25, 0xbb, + 0xb3, 0x0d, 0x8d, 0x4d, 0xd1, 0xcb, 0xb2, 0xef, 0xbd, 0xdf, 0xbc, 0xff, 0xfb, 0xbf, 0x9d, 0xc5, + 0x7e, 0x4c, 0xe2, 0xe1, 0xa1, 0x92, 0x61, 0x6c, 0x12, 0x30, 0x6f, 0x13, 0x25, 0x61, 0x20, 0xa8, + 0x0e, 0x8f, 0x3a, 0xa1, 0x39, 0x0e, 0x32, 0xad, 0x8c, 0x72, 0x5a, 0x96, 0x09, 0xce, 0x33, 0xc1, + 0x51, 0xc7, 0xbd, 0x45, 0x04, 0x97, 0x2a, 0xcc, 0x9f, 0x05, 0xed, 0xae, 0x27, 0x0a, 0x84, 0x82, + 0x50, 0x00, 0x9b, 0x75, 0x11, 0xc0, 0x6c, 0xa1, 0x55, 0x14, 0xf6, 0xf3, 0x28, 0x2c, 0x02, 0x5b, + 0x6a, 0x30, 0xc5, 0x54, 0x91, 0x9f, 0xbd, 0xd9, 0xec, 0x83, 0xe5, 0xb3, 0x65, 0x44, 0x13, 0x61, + 0x4f, 0xfb, 0xdf, 0x10, 0xbe, 0xd1, 0x07, 0xf6, 0x3a, 0x4b, 0x89, 0xa1, 0x2f, 0xf3, 0x8a, 0xb3, + 0x83, 0x6b, 0x64, 0x60, 0x0e, 0x94, 0xe6, 0x66, 0xd8, 0x44, 0x9b, 0x68, 0xab, 0xd6, 0x6b, 0x7e, + 0xff, 0xba, 0xdd, 0xb0, 0xb2, 0x4f, 0xd3, 0x54, 0x53, 0x80, 0x57, 0x46, 0x73, 0xc9, 0xa2, 0x39, + 0xea, 0xec, 0xe1, 0x6a, 0xd1, 0xbb, 0x79, 0x65, 0x13, 0x6d, 0xd5, 0xbb, 0xf7, 0x82, 0xa5, 0xe6, + 0x83, 0x42, 0xaa, 0x57, 0x3b, 0xf9, 0xb9, 0x51, 0xf9, 0x3c, 0x1d, 0xb5, 0x51, 0x64, 0xcf, 0xee, + 0x3e, 0xf9, 0x30, 0x1d, 0xb5, 0xe7, 0x5d, 0x3f, 0x4e, 0x47, 0xed, 0x87, 0xa5, 0x99, 0xe3, 0x0b, + 0xec, 0x2c, 0x4c, 0xef, 0xb7, 0xf0, 0xfa, 0x42, 0x2a, 0xa2, 0x90, 0x29, 0x09, 0xd4, 0xff, 0x82, + 0xf0, 0x5a, 0x1f, 0x58, 0x44, 0x19, 0x07, 0x43, 0xf5, 0x33, 0xdb, 0xc5, 0xb9, 0x8d, 0xab, 0xc0, + 0x99, 0xa4, 0xba, 0x70, 0x1b, 0xd9, 0xc8, 0xd9, 0xc0, 0xf5, 0x52, 0x69, 0x9f, 0xa7, 0xb9, 0xab, + 0x5a, 0x84, 0xcb, 0xd4, 0xf3, 0xd4, 0xb9, 0x8f, 0xaf, 0x9f, 0x01, 0x92, 0x08, 0xda, 0x5c, 0xc9, + 0x91, 0xd5, 0x32, 0xf9, 0x82, 0x08, 0xea, 0x74, 0x70, 0xe3, 0x0c, 0x4a, 0x29, 0x24, 0x9a, 0x67, + 0x86, 0x2b, 0xd9, 0xbc, 0x9a, 0xb3, 0x6b, 0x65, 0x6d, 0x6f, 0x5e, 0xda, 0xad, 0xcf, 0x76, 0x60, + 0xa7, 0xf0, 0xef, 0xe2, 0x3b, 0x17, 0x0c, 0x5d, 0x9a, 0xea, 0xfe, 0x46, 0x78, 0xa5, 0x0f, 0xcc, + 0x91, 0x78, 0xf5, 0xdc, 0x57, 0x6c, 0x5f, 0xb2, 0xfd, 0x85, 0x05, 0xb9, 0xdd, 0x7f, 0x67, 0x4b, + 0x5d, 0xe7, 0x1d, 0xbe, 0xf9, 0xd7, 0x22, 0x83, 0xcb, 0xfb, 0x2c, 0xf2, 0xee, 0xce, 0xff, 0xf1, + 0xa5, 0xb6, 0x7b, 0xed, 0xfd, 0xec, 0xca, 0xf4, 0xa2, 0x93, 0xb1, 0x87, 0x4e, 0xc7, 0x1e, 0xfa, + 0x35, 0xf6, 0xd0, 0xa7, 0x89, 0x57, 0x39, 0x9d, 0x78, 0x95, 0x1f, 0x13, 0xaf, 0xf2, 0xe6, 0x31, + 0xe3, 0xe6, 0x60, 0x10, 0x07, 0x89, 0x12, 0xa1, 0x95, 0x38, 0x24, 0x31, 0x6c, 0x73, 0x15, 0x2e, + 0xbd, 0x4b, 0x66, 0x98, 0x51, 0x88, 0xab, 0xf9, 0x7f, 0xf1, 0xe8, 0x4f, 0x00, 0x00, 0x00, 0xff, + 0xff, 0xa6, 0x05, 0x99, 0xc2, 0xdd, 0x03, 0x00, 0x00, } // Reference imports to suppress errors if they are not otherwise used. diff --git a/x/zoneconcierge/keeper/ibc_packet_btc_staking_consumer_event.go b/x/zoneconcierge/keeper/ibc_packet_btc_staking_consumer_event.go index 1a9a12714..cb9a5dcfc 100644 --- a/x/zoneconcierge/keeper/ibc_packet_btc_staking_consumer_event.go +++ b/x/zoneconcierge/keeper/ibc_packet_btc_staking_consumer_event.go @@ -3,7 +3,7 @@ package keeper import ( "context" - "github.com/babylonchain/babylon/x/zoneconcierge/types" + "github.com/babylonlabs-io/babylon/x/zoneconcierge/types" sdk "github.com/cosmos/cosmos-sdk/types" ) diff --git a/x/zoneconcierge/types/packet.pb.go b/x/zoneconcierge/types/packet.pb.go index 84b48d351..8ce60a37f 100644 --- a/x/zoneconcierge/types/packet.pb.go +++ b/x/zoneconcierge/types/packet.pb.go @@ -5,9 +5,9 @@ package types import ( fmt "fmt" - types "github.com/babylonchain/babylon/x/btcstaking/types" types4 "github.com/babylonlabs-io/babylon/x/btccheckpoint/types" types1 "github.com/babylonlabs-io/babylon/x/btclightclient/types" + types "github.com/babylonlabs-io/babylon/x/btcstaking/types" types3 "github.com/babylonlabs-io/babylon/x/checkpointing/types" types2 "github.com/babylonlabs-io/babylon/x/epoching/types" proto "github.com/cosmos/gogoproto/proto"