ipld-eth-server/pkg/core/blockchain.go

16 lines
446 B
Go
Raw Normal View History

package core
import "math/big"
type Blockchain interface {
2018-03-12 19:09:20 +00:00
ContractDataFetcher
GetBlockByNumber(blockNumber int64) (Block, 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
}