mirror of
https://github.com/0glabs/0g-chain.git
synced 2024-11-10 10:05:18 +00:00
184 lines
5.1 KiB
Go
184 lines
5.1 KiB
Go
package keeper
|
|
|
|
import (
|
|
"encoding/hex"
|
|
|
|
"github.com/cosmos/cosmos-sdk/codec"
|
|
"github.com/cosmos/cosmos-sdk/store/prefix"
|
|
storetypes "github.com/cosmos/cosmos-sdk/store/types"
|
|
sdk "github.com/cosmos/cosmos-sdk/types"
|
|
"github.com/tendermint/tendermint/libs/log"
|
|
|
|
"github.com/0glabs/0g-chain/x/dasigners/v1/types"
|
|
)
|
|
|
|
type Keeper struct {
|
|
storeKey storetypes.StoreKey
|
|
cdc codec.BinaryCodec
|
|
stakingKeeper types.StakingKeeper
|
|
}
|
|
|
|
// NewKeeper creates a new das Keeper instance
|
|
func NewKeeper(
|
|
storeKey storetypes.StoreKey,
|
|
cdc codec.BinaryCodec,
|
|
stakingKeeper types.StakingKeeper,
|
|
) Keeper {
|
|
return Keeper{
|
|
storeKey: storeKey,
|
|
cdc: cdc,
|
|
stakingKeeper: stakingKeeper,
|
|
}
|
|
}
|
|
|
|
// Logger returns a module-specific logger.
|
|
func (k Keeper) Logger(ctx sdk.Context) log.Logger {
|
|
return ctx.Logger().With("module", "x/"+types.ModuleName)
|
|
}
|
|
|
|
func (k Keeper) GetParams(ctx sdk.Context) types.Params {
|
|
store := ctx.KVStore(k.storeKey)
|
|
bz := store.Get(types.ParamsKey)
|
|
var params types.Params
|
|
k.cdc.MustUnmarshal(bz, ¶ms)
|
|
return params
|
|
}
|
|
|
|
func (k Keeper) SetParams(ctx sdk.Context, params types.Params) {
|
|
store := ctx.KVStore(k.storeKey)
|
|
bz := k.cdc.MustMarshal(¶ms)
|
|
store.Set(types.ParamsKey, bz)
|
|
}
|
|
|
|
func (k Keeper) GetEpochNumber(ctx sdk.Context) (uint64, error) {
|
|
store := ctx.KVStore(k.storeKey)
|
|
bz := store.Get(types.EpochNumberKey)
|
|
if bz == nil {
|
|
return 0, types.ErrEpochNumberNotSet
|
|
}
|
|
return sdk.BigEndianToUint64(bz), nil
|
|
}
|
|
|
|
func (k Keeper) SetEpochNumber(ctx sdk.Context, epoch uint64) {
|
|
store := ctx.KVStore(k.storeKey)
|
|
store.Set(types.EpochNumberKey, sdk.Uint64ToBigEndian(epoch))
|
|
}
|
|
|
|
func (k Keeper) GetSigner(ctx sdk.Context, account string) (types.Signer, bool, error) {
|
|
store := prefix.NewStore(ctx.KVStore(k.storeKey), types.SignerKeyPrefix)
|
|
key, err := types.GetSignerKeyFromAccount(account)
|
|
if err != nil {
|
|
return types.Signer{}, false, err
|
|
}
|
|
bz := store.Get(key)
|
|
if bz == nil {
|
|
return types.Signer{}, false, nil
|
|
}
|
|
var signer types.Signer
|
|
k.cdc.MustUnmarshal(bz, &signer)
|
|
return signer, true, nil
|
|
}
|
|
|
|
func (k Keeper) SetSigner(ctx sdk.Context, signer types.Signer) error {
|
|
store := prefix.NewStore(ctx.KVStore(k.storeKey), types.SignerKeyPrefix)
|
|
bz := k.cdc.MustMarshal(&signer)
|
|
key, err := types.GetSignerKeyFromAccount(signer.Account)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
store.Set(key, bz)
|
|
|
|
ctx.EventManager().EmitEvent(
|
|
sdk.NewEvent(
|
|
types.EventTypeUpdateSigner,
|
|
sdk.NewAttribute(types.AttributeKeySigner, signer.Account),
|
|
sdk.NewAttribute(types.AttributeKeySocket, signer.Socket),
|
|
sdk.NewAttribute(types.AttributeKeyPublicKeyG1, hex.EncodeToString(signer.PubkeyG1)),
|
|
sdk.NewAttribute(types.AttributeKeyPublicKeyG2, hex.EncodeToString(signer.PubkeyG2)),
|
|
),
|
|
)
|
|
return nil
|
|
}
|
|
|
|
// iterate through the signers set and perform the provided function
|
|
func (k Keeper) IterateSigners(ctx sdk.Context, fn func(index int64, signer types.Signer) (stop bool)) {
|
|
store := ctx.KVStore(k.storeKey)
|
|
|
|
prefix := types.SignerKeyPrefix
|
|
iterator := sdk.KVStorePrefixIterator(store, prefix)
|
|
defer iterator.Close()
|
|
|
|
i := int64(0)
|
|
|
|
for ; iterator.Valid(); iterator.Next() {
|
|
var signer types.Signer
|
|
k.cdc.MustUnmarshal(iterator.Value(), &signer)
|
|
stop := fn(i, signer)
|
|
|
|
if stop {
|
|
break
|
|
}
|
|
i++
|
|
}
|
|
}
|
|
|
|
func (k Keeper) GetEpochSignerSet(ctx sdk.Context, epoch uint64) (types.EpochSignerSet, bool) {
|
|
store := prefix.NewStore(ctx.KVStore(k.storeKey), types.EpochSignerSetKeyPrefix)
|
|
bz := store.Get(types.GetEpochSignerSetKeyFromEpoch(epoch))
|
|
if bz == nil {
|
|
return types.EpochSignerSet{}, false
|
|
}
|
|
var signers types.EpochSignerSet
|
|
k.cdc.MustUnmarshal(bz, &signers)
|
|
return signers, true
|
|
}
|
|
|
|
func (k Keeper) SetEpochSignerSet(ctx sdk.Context, epoch uint64, signers types.EpochSignerSet) {
|
|
store := prefix.NewStore(ctx.KVStore(k.storeKey), types.EpochSignerSetKeyPrefix)
|
|
bz := k.cdc.MustMarshal(&signers)
|
|
store.Set(types.GetEpochSignerSetKeyFromEpoch(epoch), bz)
|
|
}
|
|
|
|
func (k Keeper) GetRegistration(ctx sdk.Context, epoch uint64, account string) ([]byte, bool, error) {
|
|
store := prefix.NewStore(ctx.KVStore(k.storeKey), types.GetEpochRegistrationKeyPrefix(epoch))
|
|
key, err := types.GetRegistrationKey(account)
|
|
if err != nil {
|
|
return nil, false, err
|
|
}
|
|
signature := store.Get(key)
|
|
if signature == nil {
|
|
return nil, false, nil
|
|
}
|
|
return signature, true, nil
|
|
}
|
|
|
|
// iterate through the registrations set and perform the provided function
|
|
func (k Keeper) IterateRegistrations(ctx sdk.Context, epoch uint64, fn func(account string, signature []byte) (stop bool)) {
|
|
store := ctx.KVStore(k.storeKey)
|
|
|
|
prefix := types.GetEpochRegistrationKeyPrefix(epoch)
|
|
iterator := sdk.KVStorePrefixIterator(store, prefix)
|
|
defer iterator.Close()
|
|
|
|
i := int64(0)
|
|
|
|
for ; iterator.Valid(); iterator.Next() {
|
|
stop := fn(hex.EncodeToString((iterator.Key())[len(prefix):]), iterator.Value())
|
|
|
|
if stop {
|
|
break
|
|
}
|
|
i++
|
|
}
|
|
}
|
|
|
|
func (k Keeper) SetRegistration(ctx sdk.Context, epoch uint64, account string, signature []byte) error {
|
|
store := prefix.NewStore(ctx.KVStore(k.storeKey), types.GetEpochRegistrationKeyPrefix(epoch))
|
|
key, err := types.GetRegistrationKey(account)
|
|
if err != nil {
|
|
return err
|
|
}
|
|
store.Set(key, signature)
|
|
return nil
|
|
}
|