2018-11-03 19:00:25 +00:00
|
|
|
// Copyright 2018 Vulcanize
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
|
|
|
package retriever
|
|
|
|
|
|
|
|
import (
|
|
|
|
"github.com/vulcanize/vulcanizedb/pkg/datastore/postgres"
|
|
|
|
)
|
|
|
|
|
2018-11-03 19:02:31 +00:00
|
|
|
// Retriever is used to retrieve the first block for a given contract
|
|
|
|
// It requires a vDB synced database with blocks, transactions, receipts, and logs
|
2018-11-03 19:00:25 +00:00
|
|
|
type Retriever interface {
|
|
|
|
RetrieveFirstBlock(contractAddr string) (int64, error)
|
|
|
|
RetrieveFirstBlockFromLogs(contractAddr string) (int64, error)
|
|
|
|
RetrieveFirstBlockFromReceipts(contractAddr string) (int64, error)
|
|
|
|
}
|
|
|
|
|
|
|
|
type retriever struct {
|
|
|
|
*postgres.DB
|
|
|
|
}
|
|
|
|
|
|
|
|
func NewRetriever(db *postgres.DB) (r *retriever) {
|
|
|
|
|
|
|
|
return &retriever{
|
|
|
|
DB: db,
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2018-11-03 19:02:31 +00:00
|
|
|
// For some contracts the contract creation transaction receipt doesn't have the contract address so this doesn't work (e.g. Sai)
|
2018-11-03 19:00:25 +00:00
|
|
|
func (r *retriever) RetrieveFirstBlockFromReceipts(contractAddr string) (int64, error) {
|
|
|
|
var firstBlock int
|
|
|
|
err := r.DB.Get(
|
|
|
|
&firstBlock,
|
|
|
|
`SELECT number FROM blocks
|
|
|
|
WHERE id = (SELECT block_id FROM receipts
|
|
|
|
WHERE contract_address = $1
|
|
|
|
ORDER BY block_id ASC
|
|
|
|
LIMIT 1)`,
|
|
|
|
contractAddr,
|
|
|
|
)
|
|
|
|
|
|
|
|
return int64(firstBlock), err
|
|
|
|
}
|
|
|
|
|
2018-11-03 19:02:31 +00:00
|
|
|
// In which case this servers as a heuristic to find the first block by finding the first contract event log
|
2018-11-03 19:00:25 +00:00
|
|
|
func (r *retriever) RetrieveFirstBlockFromLogs(contractAddr string) (int64, error) {
|
|
|
|
var firstBlock int
|
|
|
|
err := r.DB.Get(
|
|
|
|
&firstBlock,
|
|
|
|
"SELECT block_number FROM logs WHERE address = $1 ORDER BY block_number ASC LIMIT 1",
|
|
|
|
contractAddr,
|
|
|
|
)
|
|
|
|
|
|
|
|
return int64(firstBlock), err
|
|
|
|
}
|
|
|
|
|
|
|
|
// Try both methods of finding the first block, with the receipt method taking precedence
|
|
|
|
func (r *retriever) RetrieveFirstBlock(contractAddr string) (int64, error) {
|
|
|
|
i, err := r.RetrieveFirstBlockFromReceipts(contractAddr)
|
|
|
|
if err != nil {
|
|
|
|
i, err = r.RetrieveFirstBlockFromLogs(contractAddr)
|
|
|
|
}
|
|
|
|
|
|
|
|
return i, err
|
|
|
|
}
|