github.com/MikyChow/arbitrum-go-ethereum@v0.0.0-20230306102812-078da49636de/arbitrum/arbos_interface.go (about)

     1  package arbitrum
     2  
     3  import (
     4  	"context"
     5  
     6  	"github.com/MikyChow/arbitrum-go-ethereum/core"
     7  	"github.com/MikyChow/arbitrum-go-ethereum/core/types"
     8  )
     9  
    10  type ArbInterface interface {
    11  	PublishTransaction(ctx context.Context, tx *types.Transaction) error
    12  	BlockChain() *core.BlockChain
    13  	ArbNode() interface{}
    14  }