// VulcanizeDB // Copyright © 2019 Vulcanize // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU Affero General Public License as published by // the Free Software Foundation, either version 3 of the License, or // (at your option) any later version. // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU Affero General Public License for more details. // You should have received a copy of the GNU Affero General Public License // along with this program. If not, see . package datastore import ( "github.com/vulcanize/vulcanizedb/pkg/core" "github.com/vulcanize/vulcanizedb/pkg/filters" ) type BlockRepository interface { CreateOrUpdateBlock(block core.Block) (int64, error) GetBlock(blockNumber int64) (core.Block, error) MissingBlockNumbers(startingBlockNumber, endingBlockNumber int64, nodeID string) []int64 SetBlocksStatus(chainHead int64) error } type ContractRepository interface { CreateContract(contract core.Contract) error GetContract(contractHash string) (core.Contract, error) ContractExists(contractHash string) (bool, error) } type FilterRepository interface { CreateFilter(filter filters.LogFilter) error GetFilter(name string) (filters.LogFilter, error) } type HeaderRepository interface { CreateOrUpdateHeader(header core.Header) (int64, error) CreateTransaction(headerID int64, transaction core.TransactionModel) error GetHeader(blockNumber int64) (core.Header, error) MissingBlockNumbers(startingBlockNumber, endingBlockNumber int64, nodeID string) ([]int64, error) } type LogRepository interface { CreateLogs(logs []core.Log, receiptId int64) error GetLogs(address string, blockNumber int64) ([]core.Log, error) } type ReceiptRepository interface { CreateReceiptsAndLogs(blockId int64, receipts []core.Receipt) error CreateReceipt(blockId int64, receipt core.Receipt) (int64, error) GetReceipt(txHash string) (core.Receipt, error) } type WatchedEventRepository interface { GetWatchedEvents(name string) ([]*core.WatchedEvent, error) }