keeper

package
v0.1.4 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Aug 28, 2022 License: LGPL-3.0 Imports: 16 Imported by: 2

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

This section is empty.

Types

type Keeper

type Keeper struct {
	// contains filtered or unexported fields
}

Keeper grants access to the Fee Market module state.

func NewKeeper

func NewKeeper(
	cdc codec.BinaryCodec, paramSpace paramtypes.Subspace, storeKey, transientKey storetypes.StoreKey,
) Keeper

NewKeeper generates new fee market module keeper

func (Keeper) AddTransientGasWanted

func (k Keeper) AddTransientGasWanted(ctx sdk.Context, gasWanted uint64) (uint64, error)

AddTransientGasWanted adds the cumulative gas wanted in the transient store

func (Keeper) BaseFee

BaseFee implements the Query/BaseFee gRPC method

func (*Keeper) BeginBlock

func (k *Keeper) BeginBlock(ctx sdk.Context, req abci.RequestBeginBlock)

BeginBlock updates base fee

func (Keeper) BlockGas

BlockGas implements the Query/BlockGas gRPC method

func (Keeper) CalculateBaseFee

func (k Keeper) CalculateBaseFee(ctx sdk.Context) *big.Int

CalculateBaseFee calculates the base fee for the current block. This is only calculated once per block during BeginBlock. If the NoBaseFee parameter is enabled or below activation height, this function returns nil. NOTE: This code is inspired from the go-ethereum EIP1559 implementation and adapted to Cosmos SDK-based chains. For the canonical code refer to: https://github.com/ethereum/go-ethereum/blob/master/consensus/misc/eip1559.go

func (*Keeper) EndBlock

func (k *Keeper) EndBlock(ctx sdk.Context, req abci.RequestEndBlock)

EndBlock update block gas wanted. The EVM end block logic doesn't update the validator set, thus it returns an empty slice.

func (Keeper) GetBaseFee

func (k Keeper) GetBaseFee(ctx sdk.Context) *big.Int

GetBaseFee get's the base fee from the paramSpace return nil if base fee is not enabled

func (Keeper) GetBlockGasWanted

func (k Keeper) GetBlockGasWanted(ctx sdk.Context) uint64

GetBlockGasWanted returns the last block gas wanted value from the store.

func (Keeper) GetParams

func (k Keeper) GetParams(ctx sdk.Context) (params types.Params)

GetParams returns the total set of fee market parameters.

func (Keeper) GetTransientGasWanted

func (k Keeper) GetTransientGasWanted(ctx sdk.Context) uint64

GetTransientGasWanted returns the gas wanted in the current block from transient store.

func (Keeper) Logger

func (k Keeper) Logger(ctx sdk.Context) log.Logger

Logger returns a module-specific logger.

func (Keeper) Params

Params implements the Query/Params gRPC method

func (Keeper) SetBaseFee

func (k Keeper) SetBaseFee(ctx sdk.Context, baseFee *big.Int)

SetBaseFee set's the base fee in the paramSpace

func (Keeper) SetBlockGasWanted

func (k Keeper) SetBlockGasWanted(ctx sdk.Context, gas uint64)

SetBlockGasWanted sets the block gas wanted to the store. CONTRACT: this should be only called during EndBlock.

func (Keeper) SetParams

func (k Keeper) SetParams(ctx sdk.Context, params types.Params)

SetParams sets the fee market parameters to the param space.

func (Keeper) SetTransientBlockGasWanted

func (k Keeper) SetTransientBlockGasWanted(ctx sdk.Context, gasWanted uint64)

SetTransientBlockGasWanted sets the block gas wanted to the transient store.

type Migrator

type Migrator struct {
	// contains filtered or unexported fields
}

Migrator is a struct for handling in-place store migrations.

func NewMigrator

func NewMigrator(keeper Keeper) Migrator

NewMigrator returns a new Migrator.

func (Migrator) Migrate1to2

func (m Migrator) Migrate1to2(ctx sdk.Context) error

Migrate1to2 migrates the store from consensus version v1 to v2

func (Migrator) Migrate2to3

func (m Migrator) Migrate2to3(ctx sdk.Context) error

Migrate2to3 migrates the store from consensus version v2 to v3

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL