plugeth-utils/restricted/interface.go

14 lines
262 B
Go
Raw Normal View History

2021-08-31 20:24:20 +00:00
package restricted
import (
"github.com/openrelayxyz/plugeth-utils/core"
2021-09-14 16:53:41 +00:00
"github.com/openrelayxyz/plugeth-utils/restricted/params"
2021-08-31 20:24:20 +00:00
)
type Backend interface {
core.Backend
// General Ethereum API
ChainDb() Database
2021-09-14 16:53:41 +00:00
ChainConfig() *params.ChainConfig
2021-08-31 20:24:20 +00:00
}