plugeth-utils/restricted/interface.go
2021-09-14 11:53:41 -05:00

14 lines
262 B
Go

package restricted
import (
"github.com/openrelayxyz/plugeth-utils/core"
"github.com/openrelayxyz/plugeth-utils/restricted/params"
)
type Backend interface {
core.Backend
// General Ethereum API
ChainDb() Database
ChainConfig() *params.ChainConfig
}