0e837e2d03
* Make naming consistent for watched_contracts * Update FindContract and FindBlockByNumber to return errors rather than nil
17 lines
557 B
Go
17 lines
557 B
Go
package repositories
|
|
|
|
import "github.com/8thlight/vulcanizedb/pkg/core"
|
|
|
|
type Repository interface {
|
|
CreateBlock(block core.Block) error
|
|
BlockCount() int
|
|
FindBlockByNumber(blockNumber int64) (core.Block, error)
|
|
MaxBlockNumber() int64
|
|
MissingBlockNumbers(startingBlockNumber int64, endingBlockNumber int64) []int64
|
|
CreateContract(contract core.Contract) error
|
|
ContractExists(contractHash string) bool
|
|
FindContract(contractHash string) (core.Contract, error)
|
|
CreateLogs(log []core.Log) error
|
|
FindLogs(address string, blockNumber int64) []core.Log
|
|
}
|