GenesisState defines the dex module's genesis state.

interface GenesisState {
    contractState: ContractState[];
    lastEpoch: bigint;
    params: undefined | Params;
}

Properties

contractState: ContractState[]
lastEpoch: bigint
params: undefined | Params