da9157e406
* changes from update version * app changes * cmd changes * build and send tx * fix tests * eth_rpc fixes * lint * add WithEventManager to handler ctx * changelog * go mod verify and tidy
40 lines
1022 B
Go
40 lines
1022 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
|
|
CodeKey = types.StoreKey
|
|
BlockKey = types.BlockKey
|
|
RouterKey = types.RouterKey
|
|
QueryProtocolVersion = types.QueryProtocolVersion
|
|
QueryBalance = types.QueryBalance
|
|
QueryBlockNumber = types.QueryBlockNumber
|
|
QueryStorage = types.QueryStorage
|
|
QueryCode = types.QueryCode
|
|
QueryNonce = types.QueryNonce
|
|
QueryHashToHeight = types.QueryHashToHeight
|
|
QueryTxLogs = types.QueryTxLogs
|
|
QueryLogsBloom = types.QueryLogsBloom
|
|
QueryLogs = types.QueryLogs
|
|
QueryAccount = types.QueryAccount
|
|
)
|
|
|
|
// nolint
|
|
var (
|
|
NewKeeper = keeper.NewKeeper
|
|
TxDecoder = types.TxDecoder
|
|
)
|
|
|
|
//nolint
|
|
type (
|
|
Keeper = keeper.Keeper
|
|
QueryResAccount = types.QueryResAccount
|
|
GenesisState = types.GenesisState
|
|
)
|