2018-07-18 20:59:40 +00:00
|
|
|
package core
|
|
|
|
|
|
|
|
import (
|
|
|
|
"context"
|
|
|
|
"math/big"
|
|
|
|
|
|
|
|
"github.com/ethereum/go-ethereum"
|
2018-07-20 16:37:46 +00:00
|
|
|
"github.com/ethereum/go-ethereum/common"
|
2018-07-18 20:59:40 +00:00
|
|
|
"github.com/ethereum/go-ethereum/core/types"
|
|
|
|
)
|
|
|
|
|
2018-07-20 16:37:46 +00:00
|
|
|
type EthClient interface {
|
2018-07-18 20:59:40 +00:00
|
|
|
BlockByNumber(ctx context.Context, number *big.Int) (*types.Block, error)
|
|
|
|
CallContract(ctx context.Context, msg ethereum.CallMsg, blockNumber *big.Int) ([]byte, error)
|
|
|
|
FilterLogs(ctx context.Context, q ethereum.FilterQuery) ([]types.Log, error)
|
|
|
|
HeaderByNumber(ctx context.Context, number *big.Int) (*types.Header, error)
|
2018-07-20 16:37:46 +00:00
|
|
|
TransactionSender(ctx context.Context, tx *types.Transaction, block common.Hash, index uint) (common.Address, error)
|
|
|
|
TransactionReceipt(ctx context.Context, txHash common.Hash) (*types.Receipt, error)
|
2018-07-18 20:59:40 +00:00
|
|
|
}
|