diff --git a/core/interface.go b/core/interface.go index bbc9939..a125e75 100644 --- a/core/interface.go +++ b/core/interface.go @@ -200,3 +200,12 @@ type Feed interface { Send(interface{}) int Subscribe(channel interface{}) Subscription } + +type BlockContext struct { + Coinbase Address + GasLimit uint64 + BlockNumber *big.Int + Time *big.Int + Difficulty *big.Int + BaseFee *big.Int +}