From 709d57767a84501e9d2779635dfee5d5c263d675 Mon Sep 17 00:00:00 2001 From: GnaD13 Date: Thu, 22 Feb 2024 11:48:00 +0700 Subject: [PATCH 1/8] add staking app module basics --- app/app.go | 1 + 1 file changed, 1 insertion(+) diff --git a/app/app.go b/app/app.go index 537ff5a1..15c0b677 100644 --- a/app/app.go +++ b/app/app.go @@ -149,6 +149,7 @@ var ( genutil.AppModuleBasic{}, bank.AppModuleBasic{}, capability.AppModuleBasic{}, + staking.AppModuleBasic{}, multistaking.AppModuleBasic{}, mint.AppModuleBasic{}, distr.AppModuleBasic{}, From 77e62f90876d98f85d596c3bd5b06600c0224ea4 Mon Sep 17 00:00:00 2001 From: GnaD13 Date: Thu, 22 Feb 2024 15:12:18 +0700 Subject: [PATCH 2/8] new multi-staking module --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 77123f96..020ba092 100644 --- a/go.mod +++ b/go.mod @@ -205,7 +205,7 @@ replace ( // use cosmos flavored protobufs github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1 - github.com/realio-tech/multi-staking-module => github.com/realiotech/multi-staking v1.0.0-rc2 + github.com/realio-tech/multi-staking-module => github.com/realiotech/multi-staking v1.0.0-rc2.0.20240222081058-ab2a2e271d46 // github.com/realio-tech/multi-staking-module => github.com/GNaD13/multi-staking v0.0.0-20240103093120-70811831ca3b // Informal Tendermint fork diff --git a/go.sum b/go.sum index fd4c72dd..86ae1a76 100644 --- a/go.sum +++ b/go.sum @@ -1032,8 +1032,8 @@ github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 h1:N/ElC8H3+5X github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= github.com/realiotech/ethermint v0.21.0-realio-1 h1:x+RYL/yjTI+QTN0mppmwGR3N8h/DZAVnz8d1wTFtORM= github.com/realiotech/ethermint v0.21.0-realio-1/go.mod h1:0c+GK/UxT/wykI8InX9U1Pmnj1M4wPRMgJtibd/RnqI= -github.com/realiotech/multi-staking v1.0.0-rc2 h1:ExpH5+oR7DikN/ZZ7M+/VTrNwUAumWPUo5K2Q2Vu/uc= -github.com/realiotech/multi-staking v1.0.0-rc2/go.mod h1:GRUwhBGWtVwHX0yByxXdfpCLHm3PgWMG8dnXvhoIfog= +github.com/realiotech/multi-staking v1.0.0-rc2.0.20240222081058-ab2a2e271d46 h1:ssjYy8x+yDOYiZgj14g0CIyD6j/iRrGH4YyJmMwmgkM= +github.com/realiotech/multi-staking v1.0.0-rc2.0.20240222081058-ab2a2e271d46/go.mod h1:GRUwhBGWtVwHX0yByxXdfpCLHm3PgWMG8dnXvhoIfog= github.com/regen-network/cosmos-proto v0.3.1 h1:rV7iM4SSFAagvy8RiyhiACbWEGotmqzywPxOvwMdxcg= github.com/regen-network/cosmos-proto v0.3.1/go.mod h1:jO0sVX6a1B36nmE8C9xBFXpNwWejXC7QqCOnH3O0+YM= github.com/regen-network/protobuf v1.3.3-alpha.regen.1 h1:OHEc+q5iIAXpqiqFKeLpu5NwTIkVXUs48vFMwzqpqY4= From aebb5d8f1e99fe70a9a98e4df133e7d0f20e0473 Mon Sep 17 00:00:00 2001 From: GnaD13 Date: Thu, 22 Feb 2024 16:22:40 +0700 Subject: [PATCH 3/8] go mod: --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 020ba092..e9333831 100644 --- a/go.mod +++ b/go.mod @@ -205,7 +205,7 @@ replace ( // use cosmos flavored protobufs github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1 - github.com/realio-tech/multi-staking-module => github.com/realiotech/multi-staking v1.0.0-rc2.0.20240222081058-ab2a2e271d46 + github.com/realio-tech/multi-staking-module => github.com/realiotech/multi-staking v1.0.0-rc3 // github.com/realio-tech/multi-staking-module => github.com/GNaD13/multi-staking v0.0.0-20240103093120-70811831ca3b // Informal Tendermint fork diff --git a/go.sum b/go.sum index 86ae1a76..0240822f 100644 --- a/go.sum +++ b/go.sum @@ -1032,8 +1032,8 @@ github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 h1:N/ElC8H3+5X github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= github.com/realiotech/ethermint v0.21.0-realio-1 h1:x+RYL/yjTI+QTN0mppmwGR3N8h/DZAVnz8d1wTFtORM= github.com/realiotech/ethermint v0.21.0-realio-1/go.mod h1:0c+GK/UxT/wykI8InX9U1Pmnj1M4wPRMgJtibd/RnqI= -github.com/realiotech/multi-staking v1.0.0-rc2.0.20240222081058-ab2a2e271d46 h1:ssjYy8x+yDOYiZgj14g0CIyD6j/iRrGH4YyJmMwmgkM= -github.com/realiotech/multi-staking v1.0.0-rc2.0.20240222081058-ab2a2e271d46/go.mod h1:GRUwhBGWtVwHX0yByxXdfpCLHm3PgWMG8dnXvhoIfog= +github.com/realiotech/multi-staking v1.0.0-rc3 h1:xZsMUGWf4iaxscIy7jhM4xVLjeTVoSNE3b94pmTE/7w= +github.com/realiotech/multi-staking v1.0.0-rc3/go.mod h1:GRUwhBGWtVwHX0yByxXdfpCLHm3PgWMG8dnXvhoIfog= github.com/regen-network/cosmos-proto v0.3.1 h1:rV7iM4SSFAagvy8RiyhiACbWEGotmqzywPxOvwMdxcg= github.com/regen-network/cosmos-proto v0.3.1/go.mod h1:jO0sVX6a1B36nmE8C9xBFXpNwWejXC7QqCOnH3O0+YM= github.com/regen-network/protobuf v1.3.3-alpha.regen.1 h1:OHEc+q5iIAXpqiqFKeLpu5NwTIkVXUs48vFMwzqpqY4= From 9fc3ec594d5d72c38a2ee52f01779768585b6faf Mon Sep 17 00:00:00 2001 From: GnaD13 Date: Fri, 23 Feb 2024 17:58:08 +0700 Subject: [PATCH 4/8] add proposal --- app/app.go | 5 +++-- go.mod | 2 +- go.sum | 4 ++-- 3 files changed, 6 insertions(+), 5 deletions(-) diff --git a/app/app.go b/app/app.go index 15c0b677..564e511b 100644 --- a/app/app.go +++ b/app/app.go @@ -156,7 +156,7 @@ var ( gov.NewAppModuleBasic( []govclient.ProposalHandler{ paramsclient.ProposalHandler, distrclient.ProposalHandler, upgradeclient.LegacyProposalHandler, upgradeclient.LegacyCancelProposalHandler, - ibcclientclient.UpdateClientProposalHandler, ibcclientclient.UpgradeProposalHandler, + ibcclientclient.UpdateClientProposalHandler, ibcclientclient.UpgradeProposalHandler, multistaking.AddMultiStakingProposalHandler, }, ), params.AppModuleBasic{}, @@ -430,7 +430,8 @@ func New( AddRoute(paramproposal.RouterKey, params.NewParamChangeProposalHandler(app.ParamsKeeper)). AddRoute(distrtypes.RouterKey, distr.NewCommunityPoolSpendProposalHandler(app.DistrKeeper)). AddRoute(upgradetypes.RouterKey, upgrade.NewSoftwareUpgradeProposalHandler(app.UpgradeKeeper)). - AddRoute(ibcclienttypes.RouterKey, ibcclient.NewClientProposalHandler(app.IBCKeeper.ClientKeeper)) + AddRoute(ibcclienttypes.RouterKey, ibcclient.NewClientProposalHandler(app.IBCKeeper.ClientKeeper)). + AddRoute(multistakingtypes.RouterKey, multistaking.NewMultiStakingProposalHandler(&app.MultiStakingKeeper)) govConfig := govtypes.DefaultConfig() /* diff --git a/go.mod b/go.mod index e9333831..88f9dbfc 100644 --- a/go.mod +++ b/go.mod @@ -205,7 +205,7 @@ replace ( // use cosmos flavored protobufs github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1 - github.com/realio-tech/multi-staking-module => github.com/realiotech/multi-staking v1.0.0-rc3 + github.com/realio-tech/multi-staking-module => github.com/realiotech/multi-staking v1.0.0-rc3.0.20240223105447-d6131fd769c7 // github.com/realio-tech/multi-staking-module => github.com/GNaD13/multi-staking v0.0.0-20240103093120-70811831ca3b // Informal Tendermint fork diff --git a/go.sum b/go.sum index 0240822f..b35495de 100644 --- a/go.sum +++ b/go.sum @@ -1032,8 +1032,8 @@ github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 h1:N/ElC8H3+5X github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= github.com/realiotech/ethermint v0.21.0-realio-1 h1:x+RYL/yjTI+QTN0mppmwGR3N8h/DZAVnz8d1wTFtORM= github.com/realiotech/ethermint v0.21.0-realio-1/go.mod h1:0c+GK/UxT/wykI8InX9U1Pmnj1M4wPRMgJtibd/RnqI= -github.com/realiotech/multi-staking v1.0.0-rc3 h1:xZsMUGWf4iaxscIy7jhM4xVLjeTVoSNE3b94pmTE/7w= -github.com/realiotech/multi-staking v1.0.0-rc3/go.mod h1:GRUwhBGWtVwHX0yByxXdfpCLHm3PgWMG8dnXvhoIfog= +github.com/realiotech/multi-staking v1.0.0-rc3.0.20240223105447-d6131fd769c7 h1:1YU5Dljrw5XkdUORmn4N1icv0925Xnbu1PuNO+2NJrE= +github.com/realiotech/multi-staking v1.0.0-rc3.0.20240223105447-d6131fd769c7/go.mod h1:GRUwhBGWtVwHX0yByxXdfpCLHm3PgWMG8dnXvhoIfog= github.com/regen-network/cosmos-proto v0.3.1 h1:rV7iM4SSFAagvy8RiyhiACbWEGotmqzywPxOvwMdxcg= github.com/regen-network/cosmos-proto v0.3.1/go.mod h1:jO0sVX6a1B36nmE8C9xBFXpNwWejXC7QqCOnH3O0+YM= github.com/regen-network/protobuf v1.3.3-alpha.regen.1 h1:OHEc+q5iIAXpqiqFKeLpu5NwTIkVXUs48vFMwzqpqY4= From 8593f879c938c5354adcb5a194c024a3cd353e87 Mon Sep 17 00:00:00 2001 From: GnaD13 Date: Fri, 23 Feb 2024 19:42:28 +0700 Subject: [PATCH 5/8] go mod --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 88f9dbfc..3099afff 100644 --- a/go.mod +++ b/go.mod @@ -205,7 +205,7 @@ replace ( // use cosmos flavored protobufs github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1 - github.com/realio-tech/multi-staking-module => github.com/realiotech/multi-staking v1.0.0-rc3.0.20240223105447-d6131fd769c7 + github.com/realio-tech/multi-staking-module => github.com/realiotech/multi-staking v1.0.0-rc3.0.20240223124101-85250b08166e // github.com/realio-tech/multi-staking-module => github.com/GNaD13/multi-staking v0.0.0-20240103093120-70811831ca3b // Informal Tendermint fork diff --git a/go.sum b/go.sum index b35495de..275547f2 100644 --- a/go.sum +++ b/go.sum @@ -1032,8 +1032,8 @@ github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 h1:N/ElC8H3+5X github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= github.com/realiotech/ethermint v0.21.0-realio-1 h1:x+RYL/yjTI+QTN0mppmwGR3N8h/DZAVnz8d1wTFtORM= github.com/realiotech/ethermint v0.21.0-realio-1/go.mod h1:0c+GK/UxT/wykI8InX9U1Pmnj1M4wPRMgJtibd/RnqI= -github.com/realiotech/multi-staking v1.0.0-rc3.0.20240223105447-d6131fd769c7 h1:1YU5Dljrw5XkdUORmn4N1icv0925Xnbu1PuNO+2NJrE= -github.com/realiotech/multi-staking v1.0.0-rc3.0.20240223105447-d6131fd769c7/go.mod h1:GRUwhBGWtVwHX0yByxXdfpCLHm3PgWMG8dnXvhoIfog= +github.com/realiotech/multi-staking v1.0.0-rc3.0.20240223124101-85250b08166e h1:QE7EEZDiMT4KNEBdSrrAMrVwZ7a6/fPFYgb+XqSkobA= +github.com/realiotech/multi-staking v1.0.0-rc3.0.20240223124101-85250b08166e/go.mod h1:GRUwhBGWtVwHX0yByxXdfpCLHm3PgWMG8dnXvhoIfog= github.com/regen-network/cosmos-proto v0.3.1 h1:rV7iM4SSFAagvy8RiyhiACbWEGotmqzywPxOvwMdxcg= github.com/regen-network/cosmos-proto v0.3.1/go.mod h1:jO0sVX6a1B36nmE8C9xBFXpNwWejXC7QqCOnH3O0+YM= github.com/regen-network/protobuf v1.3.3-alpha.regen.1 h1:OHEc+q5iIAXpqiqFKeLpu5NwTIkVXUs48vFMwzqpqY4= From 54102bb01ff14cf46424ed67fa1f48dc7ab2bf9f Mon Sep 17 00:00:00 2001 From: GnaD13 Date: Fri, 23 Feb 2024 20:04:47 +0700 Subject: [PATCH 6/8] go mod --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index 3099afff..3f8f4bf8 100644 --- a/go.mod +++ b/go.mod @@ -205,7 +205,7 @@ replace ( // use cosmos flavored protobufs github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1 - github.com/realio-tech/multi-staking-module => github.com/realiotech/multi-staking v1.0.0-rc3.0.20240223124101-85250b08166e + github.com/realio-tech/multi-staking-module => github.com/realiotech/multi-staking v1.0.0-rc3.0.20240223130226-b00e67c5b8f5 // github.com/realio-tech/multi-staking-module => github.com/GNaD13/multi-staking v0.0.0-20240103093120-70811831ca3b // Informal Tendermint fork diff --git a/go.sum b/go.sum index 275547f2..96f4a9a8 100644 --- a/go.sum +++ b/go.sum @@ -1032,8 +1032,8 @@ github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 h1:N/ElC8H3+5X github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= github.com/realiotech/ethermint v0.21.0-realio-1 h1:x+RYL/yjTI+QTN0mppmwGR3N8h/DZAVnz8d1wTFtORM= github.com/realiotech/ethermint v0.21.0-realio-1/go.mod h1:0c+GK/UxT/wykI8InX9U1Pmnj1M4wPRMgJtibd/RnqI= -github.com/realiotech/multi-staking v1.0.0-rc3.0.20240223124101-85250b08166e h1:QE7EEZDiMT4KNEBdSrrAMrVwZ7a6/fPFYgb+XqSkobA= -github.com/realiotech/multi-staking v1.0.0-rc3.0.20240223124101-85250b08166e/go.mod h1:GRUwhBGWtVwHX0yByxXdfpCLHm3PgWMG8dnXvhoIfog= +github.com/realiotech/multi-staking v1.0.0-rc3.0.20240223130226-b00e67c5b8f5 h1:fwolvztMwL6v4rEj/86t07yszKkrXostk9Wj+YCENFw= +github.com/realiotech/multi-staking v1.0.0-rc3.0.20240223130226-b00e67c5b8f5/go.mod h1:tpU+cCogSJySk8LMbVyLda2bCkZxIGhMzbdTL4FabfY= github.com/regen-network/cosmos-proto v0.3.1 h1:rV7iM4SSFAagvy8RiyhiACbWEGotmqzywPxOvwMdxcg= github.com/regen-network/cosmos-proto v0.3.1/go.mod h1:jO0sVX6a1B36nmE8C9xBFXpNwWejXC7QqCOnH3O0+YM= github.com/regen-network/protobuf v1.3.3-alpha.regen.1 h1:OHEc+q5iIAXpqiqFKeLpu5NwTIkVXUs48vFMwzqpqY4= From b98b6197a12285ea9d2f8046f906235d866709cb Mon Sep 17 00:00:00 2001 From: GnaD13 Date: Fri, 23 Feb 2024 20:34:48 +0700 Subject: [PATCH 7/8] update bond weight gov cli --- app/app.go | 10 ++++++++-- go.mod | 2 +- go.sum | 4 ++-- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/app/app.go b/app/app.go index 564e511b..a701e587 100644 --- a/app/app.go +++ b/app/app.go @@ -155,8 +155,14 @@ var ( distr.AppModuleBasic{}, gov.NewAppModuleBasic( []govclient.ProposalHandler{ - paramsclient.ProposalHandler, distrclient.ProposalHandler, upgradeclient.LegacyProposalHandler, upgradeclient.LegacyCancelProposalHandler, - ibcclientclient.UpdateClientProposalHandler, ibcclientclient.UpgradeProposalHandler, multistaking.AddMultiStakingProposalHandler, + paramsclient.ProposalHandler, + distrclient.ProposalHandler, + upgradeclient.LegacyProposalHandler, + upgradeclient.LegacyCancelProposalHandler, + ibcclientclient.UpdateClientProposalHandler, + ibcclientclient.UpgradeProposalHandler, + multistaking.AddMultiStakingProposalHandler, + multistaking.UpdateBondWeightProposalHandler, }, ), params.AppModuleBasic{}, diff --git a/go.mod b/go.mod index 3f8f4bf8..fd6d654e 100644 --- a/go.mod +++ b/go.mod @@ -205,7 +205,7 @@ replace ( // use cosmos flavored protobufs github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1 - github.com/realio-tech/multi-staking-module => github.com/realiotech/multi-staking v1.0.0-rc3.0.20240223130226-b00e67c5b8f5 + github.com/realio-tech/multi-staking-module => github.com/realiotech/multi-staking v1.0.0-rc3.0.20240223133247-436524e3e5c0 // github.com/realio-tech/multi-staking-module => github.com/GNaD13/multi-staking v0.0.0-20240103093120-70811831ca3b // Informal Tendermint fork diff --git a/go.sum b/go.sum index 96f4a9a8..e591ac6b 100644 --- a/go.sum +++ b/go.sum @@ -1032,8 +1032,8 @@ github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 h1:N/ElC8H3+5X github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= github.com/realiotech/ethermint v0.21.0-realio-1 h1:x+RYL/yjTI+QTN0mppmwGR3N8h/DZAVnz8d1wTFtORM= github.com/realiotech/ethermint v0.21.0-realio-1/go.mod h1:0c+GK/UxT/wykI8InX9U1Pmnj1M4wPRMgJtibd/RnqI= -github.com/realiotech/multi-staking v1.0.0-rc3.0.20240223130226-b00e67c5b8f5 h1:fwolvztMwL6v4rEj/86t07yszKkrXostk9Wj+YCENFw= -github.com/realiotech/multi-staking v1.0.0-rc3.0.20240223130226-b00e67c5b8f5/go.mod h1:tpU+cCogSJySk8LMbVyLda2bCkZxIGhMzbdTL4FabfY= +github.com/realiotech/multi-staking v1.0.0-rc3.0.20240223133247-436524e3e5c0 h1:Nhsh1AhlWbI37q1moieyA1BO0ScVX3ACXhZypTkKMB8= +github.com/realiotech/multi-staking v1.0.0-rc3.0.20240223133247-436524e3e5c0/go.mod h1:HRpXodvIQKZRxY8uYxF2wGdKcMZGXAlMXaeRUEERveQ= github.com/regen-network/cosmos-proto v0.3.1 h1:rV7iM4SSFAagvy8RiyhiACbWEGotmqzywPxOvwMdxcg= github.com/regen-network/cosmos-proto v0.3.1/go.mod h1:jO0sVX6a1B36nmE8C9xBFXpNwWejXC7QqCOnH3O0+YM= github.com/regen-network/protobuf v1.3.3-alpha.regen.1 h1:OHEc+q5iIAXpqiqFKeLpu5NwTIkVXUs48vFMwzqpqY4= From af1062f37eca63a6d8816096bec1666cdfd7f29d Mon Sep 17 00:00:00 2001 From: GnaD13 Date: Thu, 29 Feb 2024 14:48:47 +0700 Subject: [PATCH 8/8] go mod --- go.mod | 2 +- go.sum | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go.mod b/go.mod index fd6d654e..5e68453a 100644 --- a/go.mod +++ b/go.mod @@ -205,7 +205,7 @@ replace ( // use cosmos flavored protobufs github.com/gogo/protobuf => github.com/regen-network/protobuf v1.3.3-alpha.regen.1 - github.com/realio-tech/multi-staking-module => github.com/realiotech/multi-staking v1.0.0-rc3.0.20240223133247-436524e3e5c0 + github.com/realio-tech/multi-staking-module => github.com/realiotech/multi-staking v1.0.0-rc4 // github.com/realio-tech/multi-staking-module => github.com/GNaD13/multi-staking v0.0.0-20240103093120-70811831ca3b // Informal Tendermint fork diff --git a/go.sum b/go.sum index e591ac6b..5316944b 100644 --- a/go.sum +++ b/go.sum @@ -1032,8 +1032,8 @@ github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475 h1:N/ElC8H3+5X github.com/rcrowley/go-metrics v0.0.0-20201227073835-cf1acfcdf475/go.mod h1:bCqnVzQkZxMG4s8nGwiZ5l3QUCyqpo9Y+/ZMZ9VjZe4= github.com/realiotech/ethermint v0.21.0-realio-1 h1:x+RYL/yjTI+QTN0mppmwGR3N8h/DZAVnz8d1wTFtORM= github.com/realiotech/ethermint v0.21.0-realio-1/go.mod h1:0c+GK/UxT/wykI8InX9U1Pmnj1M4wPRMgJtibd/RnqI= -github.com/realiotech/multi-staking v1.0.0-rc3.0.20240223133247-436524e3e5c0 h1:Nhsh1AhlWbI37q1moieyA1BO0ScVX3ACXhZypTkKMB8= -github.com/realiotech/multi-staking v1.0.0-rc3.0.20240223133247-436524e3e5c0/go.mod h1:HRpXodvIQKZRxY8uYxF2wGdKcMZGXAlMXaeRUEERveQ= +github.com/realiotech/multi-staking v1.0.0-rc4 h1:65d0Vp3YrqQTrBCcPtg3faeHl337szpbgEhlntvmXlo= +github.com/realiotech/multi-staking v1.0.0-rc4/go.mod h1:HRpXodvIQKZRxY8uYxF2wGdKcMZGXAlMXaeRUEERveQ= github.com/regen-network/cosmos-proto v0.3.1 h1:rV7iM4SSFAagvy8RiyhiACbWEGotmqzywPxOvwMdxcg= github.com/regen-network/cosmos-proto v0.3.1/go.mod h1:jO0sVX6a1B36nmE8C9xBFXpNwWejXC7QqCOnH3O0+YM= github.com/regen-network/protobuf v1.3.3-alpha.regen.1 h1:OHEc+q5iIAXpqiqFKeLpu5NwTIkVXUs48vFMwzqpqY4=