2024-07-01 06:05:28 +00:00
|
|
|
package keeper
|
|
|
|
|
|
|
|
import (
|
2024-07-03 11:38:48 +00:00
|
|
|
"encoding/json"
|
2024-07-01 06:05:28 +00:00
|
|
|
"fmt"
|
|
|
|
|
|
|
|
"cosmossdk.io/collections"
|
|
|
|
"cosmossdk.io/core/address"
|
|
|
|
storetypes "cosmossdk.io/core/store"
|
2024-07-03 11:38:48 +00:00
|
|
|
errorsmod "cosmossdk.io/errors"
|
|
|
|
"cosmossdk.io/log"
|
|
|
|
|
2024-07-01 06:05:28 +00:00
|
|
|
"github.com/cosmos/cosmos-sdk/codec"
|
2024-07-03 11:38:48 +00:00
|
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
|
|
sdkerrors "github.com/cosmos/cosmos-sdk/types/errors"
|
2024-07-01 06:05:28 +00:00
|
|
|
|
2024-07-03 11:38:48 +00:00
|
|
|
"git.vdb.to/cerc-io/laconicd/utils"
|
2024-07-04 05:23:26 +00:00
|
|
|
onboardingTypes "git.vdb.to/cerc-io/laconicd/x/onboarding"
|
2024-07-01 06:05:28 +00:00
|
|
|
)
|
|
|
|
|
|
|
|
type Keeper struct {
|
|
|
|
cdc codec.BinaryCodec
|
|
|
|
addressCodec address.Codec
|
|
|
|
|
|
|
|
// authority is the address capable of executing a MsgUpdateParams and other authority-gated message.
|
|
|
|
// typically, this should be the x/gov module account.
|
|
|
|
authority string
|
|
|
|
|
|
|
|
// state management
|
2024-07-03 11:38:48 +00:00
|
|
|
Schema collections.Schema
|
2024-07-04 05:23:26 +00:00
|
|
|
Params collections.Item[onboardingTypes.Params]
|
|
|
|
Participants collections.Map[string, onboardingTypes.Participant]
|
2024-07-01 06:05:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// NewKeeper creates a new Keeper instance
|
|
|
|
func NewKeeper(cdc codec.BinaryCodec, addressCodec address.Codec, storeService storetypes.KVStoreService, authority string) *Keeper {
|
|
|
|
if _, err := addressCodec.StringToBytes(authority); err != nil {
|
|
|
|
panic(fmt.Errorf("invalid authority address: %w", err))
|
|
|
|
}
|
|
|
|
|
|
|
|
sb := collections.NewSchemaBuilder(storeService)
|
|
|
|
k := Keeper{
|
|
|
|
cdc: cdc,
|
|
|
|
addressCodec: addressCodec,
|
|
|
|
authority: authority,
|
2024-07-04 05:23:26 +00:00
|
|
|
Params: collections.NewItem(sb, onboardingTypes.ParamsPrefix, "params", codec.CollValue[onboardingTypes.Params](cdc)),
|
|
|
|
Participants: collections.NewMap(sb, onboardingTypes.ParticipantsPrefix, "participants", collections.StringKey, codec.CollValue[onboardingTypes.Participant](cdc)),
|
2024-07-01 06:05:28 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
schema, err := sb.Build()
|
|
|
|
if err != nil {
|
|
|
|
panic(err)
|
|
|
|
}
|
|
|
|
|
|
|
|
k.Schema = schema
|
|
|
|
|
|
|
|
return &k
|
|
|
|
}
|
|
|
|
|
|
|
|
// GetAuthority returns the module's authority.
|
|
|
|
func (k Keeper) GetAuthority() string {
|
|
|
|
return k.authority
|
|
|
|
}
|
2024-07-03 11:38:48 +00:00
|
|
|
|
|
|
|
func (k Keeper) Logger(ctx sdk.Context) log.Logger {
|
2024-07-04 05:23:26 +00:00
|
|
|
return ctx.Logger().With("module", onboardingTypes.ModuleName)
|
2024-07-03 11:38:48 +00:00
|
|
|
}
|
|
|
|
|
2024-07-04 05:23:26 +00:00
|
|
|
func (k Keeper) OnboardParticipant(ctx sdk.Context, msg *onboardingTypes.MsgOnboardParticipant, signerAddress sdk.AccAddress) (*onboardingTypes.MsgOnboardParticipantResponse, error) {
|
2024-07-04 13:40:10 +00:00
|
|
|
params, err := k.Params.Get(ctx)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
if !params.OnboardingEnabled {
|
|
|
|
return nil, errorsmod.Wrap(sdkerrors.ErrInvalidRequest, "Validator onboarding is disabled")
|
|
|
|
}
|
|
|
|
|
2024-07-03 11:38:48 +00:00
|
|
|
message, err := json.Marshal(msg.EthPayload)
|
|
|
|
if err != nil {
|
|
|
|
return nil, errorsmod.Wrap(sdkerrors.ErrInvalidRequest, "Invalid format for payload")
|
|
|
|
}
|
|
|
|
|
|
|
|
ethereumAddress, err := utils.DecodeEthereumAddress(message, msg.EthSignature)
|
|
|
|
if ethereumAddress != msg.EthPayload.Address {
|
|
|
|
return nil, errorsmod.Wrap(sdkerrors.ErrInvalidRequest, "Recovered ethereum address does not match the address set in payload")
|
|
|
|
}
|
|
|
|
|
2024-07-04 05:23:26 +00:00
|
|
|
participant := &onboardingTypes.Participant{
|
2024-07-03 11:38:48 +00:00
|
|
|
CosmosAddress: signerAddress.String(),
|
|
|
|
EthereumAddress: ethereumAddress,
|
|
|
|
}
|
|
|
|
|
|
|
|
if err := k.StoreParticipant(ctx, participant); err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
2024-07-04 13:40:10 +00:00
|
|
|
return &onboardingTypes.MsgOnboardParticipantResponse{}, nil
|
2024-07-03 11:38:48 +00:00
|
|
|
}
|
|
|
|
|
2024-07-04 05:23:26 +00:00
|
|
|
func (k Keeper) StoreParticipant(ctx sdk.Context, participant *onboardingTypes.Participant) error {
|
2024-07-03 11:38:48 +00:00
|
|
|
key := participant.CosmosAddress
|
|
|
|
k.Participants.Set(ctx, key, *participant)
|
|
|
|
|
|
|
|
return nil
|
|
|
|
}
|
2024-07-04 05:23:26 +00:00
|
|
|
|
|
|
|
// ListParticipants - get all participants.
|
|
|
|
func (k Keeper) ListParticipants(ctx sdk.Context) ([]*onboardingTypes.Participant, error) {
|
|
|
|
var participants []*onboardingTypes.Participant
|
|
|
|
|
|
|
|
iter, err := k.Participants.Iterate(ctx, nil)
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
for ; iter.Valid(); iter.Next() {
|
|
|
|
participant, err := iter.Value()
|
|
|
|
if err != nil {
|
|
|
|
return nil, err
|
|
|
|
}
|
|
|
|
|
|
|
|
participants = append(participants, &participant)
|
|
|
|
}
|
|
|
|
|
|
|
|
return participants, nil
|
|
|
|
}
|