Some checks failed
CodeQL / Analyze (push) Waiting to run
golangci-lint / lint (push) Waiting to run
Tests / Code Coverage / build (amd64) (push) Waiting to run
Tests / Code Coverage / build (arm64) (push) Waiting to run
Tests / Code Coverage / unit-tests (map[additional-args:-tags="test_e2e" name:e2e path:./e2e]) (push) Waiting to run
Tests / Code Coverage / unit-tests (map[name:08-wasm path:./modules/light-clients/08-wasm]) (push) Waiting to run
Tests / Code Coverage / unit-tests (map[name:ibc-go path:.]) (push) Waiting to run
Docker Build & Push Simapp (main) / docker-build (push) Has been cancelled
73 lines
2.4 KiB
Go
73 lines
2.4 KiB
Go
package client
|
|
|
|
import (
|
|
"errors"
|
|
"fmt"
|
|
|
|
sdk "git.cw.tr/mukan-network/mukan-sdk/types"
|
|
|
|
"git.cw.tr/mukan-network/mukan-ibc/modules/core/02-client/keeper"
|
|
"git.cw.tr/mukan-network/mukan-ibc/modules/core/02-client/types"
|
|
"git.cw.tr/mukan-network/mukan-ibc/modules/core/exported"
|
|
)
|
|
|
|
// InitGenesis initializes the ibc client submodule's state from a provided genesis
|
|
// state.
|
|
func InitGenesis(ctx sdk.Context, k *keeper.Keeper, gs types.GenesisState) {
|
|
if err := gs.Params.Validate(); err != nil {
|
|
panic(fmt.Errorf("invalid ibc client genesis state parameters: %v", err))
|
|
}
|
|
k.SetParams(ctx, gs.Params)
|
|
|
|
// Set all client metadata first. This will allow client keeper to overwrite client and consensus state keys
|
|
// if clients accidentally write to ClientKeeper reserved keys.
|
|
if len(gs.ClientsMetadata) != 0 {
|
|
k.SetAllClientMetadata(ctx, gs.ClientsMetadata)
|
|
}
|
|
|
|
for _, client := range gs.Clients {
|
|
cs, ok := client.ClientState.GetCachedValue().(exported.ClientState)
|
|
if !ok {
|
|
panic(errors.New("invalid client state"))
|
|
}
|
|
|
|
if !gs.Params.IsAllowedClient(cs.ClientType()) {
|
|
panic(fmt.Errorf("client state type %s is not registered on the allowlist", cs.ClientType()))
|
|
}
|
|
|
|
k.SetClientState(ctx, client.ClientId, cs)
|
|
}
|
|
|
|
for _, cs := range gs.ClientsConsensus {
|
|
for _, consState := range cs.ConsensusStates {
|
|
consensusState, ok := consState.ConsensusState.GetCachedValue().(exported.ConsensusState)
|
|
if !ok {
|
|
panic(fmt.Errorf("invalid consensus state with client ID %s at height %s", cs.ClientId, consState.Height))
|
|
}
|
|
|
|
k.SetClientConsensusState(ctx, cs.ClientId, consState.Height, consensusState)
|
|
}
|
|
}
|
|
|
|
k.SetNextClientSequence(ctx, gs.NextClientSequence)
|
|
}
|
|
|
|
// ExportGenesis returns the ibc client submodule's exported genesis.
|
|
// NOTE: the export process is not optimized, it will iterate three
|
|
// times over the 02-client sub-store.
|
|
func ExportGenesis(ctx sdk.Context, k *keeper.Keeper) types.GenesisState {
|
|
genClients := k.GetAllGenesisClients(ctx)
|
|
clientsMetadata, err := k.GetAllClientMetadata(ctx, genClients)
|
|
if err != nil {
|
|
panic(err)
|
|
}
|
|
return types.GenesisState{
|
|
Clients: genClients,
|
|
ClientsMetadata: clientsMetadata,
|
|
ClientsConsensus: k.GetAllConsensusStates(ctx),
|
|
Params: k.GetParams(ctx),
|
|
// Warning: CreateLocalhost is deprecated
|
|
CreateLocalhost: false,
|
|
NextClientSequence: k.GetNextClientSequence(ctx),
|
|
}
|
|
}
|