edf4357176
* add workflows * fix * fix lint * rpc tests * build and format * fix build errors * remove dontcover * update importer test * more fixes * lint * split importer test * fix * remove tmp dir * revert * comment test import
26 lines
384 B
Go
26 lines
384 B
Go
package evm
|
|
|
|
import (
|
|
"github.com/cosmos/ethermint/x/evm/keeper"
|
|
"github.com/cosmos/ethermint/x/evm/types"
|
|
)
|
|
|
|
// nolint
|
|
const (
|
|
ModuleName = types.ModuleName
|
|
StoreKey = types.StoreKey
|
|
RouterKey = types.RouterKey
|
|
)
|
|
|
|
// nolint
|
|
var (
|
|
NewKeeper = keeper.NewKeeper
|
|
TxDecoder = types.TxDecoder
|
|
)
|
|
|
|
//nolint
|
|
type (
|
|
Keeper = keeper.Keeper
|
|
GenesisState = types.GenesisState
|
|
)
|