forked from cerc-io/ipld-eth-server
- Migrate various mocks of core namespaces to shared version in `fakes` pkg - Err on the side of making test doubles less sophisticated - Don't pull over mocks of namespaces that are only used in example code
17 lines
500 B
Go
17 lines
500 B
Go
package core
|
|
|
|
import "math/big"
|
|
|
|
type BlockChain interface {
|
|
ContractDataFetcher
|
|
GetBlockByNumber(blockNumber int64) (Block, error)
|
|
GetHeaderByNumber(blockNumber int64) (Header, error)
|
|
GetLogs(contract Contract, startingBlockNumber *big.Int, endingBlockNumber *big.Int) ([]Log, error)
|
|
LastBlock() *big.Int
|
|
Node() Node
|
|
}
|
|
|
|
type ContractDataFetcher interface {
|
|
FetchContractData(abiJSON string, address string, method string, methodArg interface{}, result interface{}, blockNumber int64) error
|
|
}
|