2017-10-23 15:56:29 +00:00
|
|
|
package core
|
|
|
|
|
2017-12-04 18:54:33 +00:00
|
|
|
import "math/big"
|
|
|
|
|
2017-10-23 15:56:29 +00:00
|
|
|
type Blockchain interface {
|
2018-03-12 19:09:20 +00:00
|
|
|
ContractDataFetcher
|
2018-03-27 21:06:12 +00:00
|
|
|
GetBlockByNumber(blockNumber int64) (Block, error)
|
2018-02-13 16:31:57 +00:00
|
|
|
GetLogs(contract Contract, startingBlockNumber *big.Int, endingBlockNumber *big.Int) ([]Log, error)
|
2017-12-20 20:06:22 +00:00
|
|
|
LastBlock() *big.Int
|
2017-12-07 19:32:16 +00:00
|
|
|
Node() Node
|
2018-02-13 16:31:57 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
type ContractDataFetcher interface {
|
|
|
|
FetchContractData(abiJSON string, address string, method string, methodArg interface{}, result interface{}, blockNumber int64) error
|
2017-10-23 15:56:29 +00:00
|
|
|
}
|