mirror of
https://github.com/cerc-io/watcher-ts
synced 2024-11-20 04:46:20 +00:00
4f8f1d8cd7
* Remove fields no longer present in schema. * Refactor code to work with log_cids change in eth-server. * Refactor process event to save events from logs. * Use constants for erc20 event names. * Implement watch blocks in erc20-watcher similar to uni-watcher. * Moved common methods to util. * Implement eventsInRange query in erc20-watcher. * Filter unknown event in database query. * Change dependencies version to be same in all packages. Co-authored-by: nabarun <nabarun@deepstacksoft.com>
253 lines
7.3 KiB
TypeScript
253 lines
7.3 KiB
TypeScript
//
|
|
// Copyright 2021 Vulcanize, Inc.
|
|
//
|
|
|
|
import assert from 'assert';
|
|
import { DeepPartial, FindConditions, Not } from 'typeorm';
|
|
import debug from 'debug';
|
|
import { ethers } from 'ethers';
|
|
|
|
import { EthClient } from '@vulcanize/ipld-eth-client';
|
|
import { GetStorageAt, getStorageValue, StorageLayout } from '@vulcanize/solidity-mapper';
|
|
|
|
import { BlockProgressInterface, DatabaseInterface, EventInterface, SyncStatusInterface, ContractInterface } from './types';
|
|
import { UNKNOWN_EVENT_NAME } from './constants';
|
|
|
|
const MAX_EVENTS_BLOCK_RANGE = 1000;
|
|
|
|
const log = debug('vulcanize:indexer');
|
|
|
|
export interface ValueResult {
|
|
value: any;
|
|
proof?: {
|
|
data: string;
|
|
}
|
|
}
|
|
|
|
export class Indexer {
|
|
_db: DatabaseInterface;
|
|
_ethClient: EthClient;
|
|
_getStorageAt: GetStorageAt
|
|
|
|
constructor (db: DatabaseInterface, ethClient: EthClient) {
|
|
this._db = db;
|
|
this._ethClient = ethClient;
|
|
this._getStorageAt = this._ethClient.getStorageAt.bind(this._ethClient);
|
|
}
|
|
|
|
async getSyncStatus (): Promise<SyncStatusInterface | undefined> {
|
|
const dbTx = await this._db.createTransactionRunner();
|
|
let res;
|
|
|
|
try {
|
|
res = await this._db.getSyncStatus(dbTx);
|
|
await dbTx.commitTransaction();
|
|
} catch (error) {
|
|
await dbTx.rollbackTransaction();
|
|
throw error;
|
|
} finally {
|
|
await dbTx.release();
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
async updateSyncStatusIndexedBlock (blockHash: string, blockNumber: number): Promise<SyncStatusInterface> {
|
|
const dbTx = await this._db.createTransactionRunner();
|
|
let res;
|
|
|
|
try {
|
|
res = await this._db.updateSyncStatusIndexedBlock(dbTx, blockHash, blockNumber);
|
|
await dbTx.commitTransaction();
|
|
} catch (error) {
|
|
await dbTx.rollbackTransaction();
|
|
throw error;
|
|
} finally {
|
|
await dbTx.release();
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
async updateSyncStatusChainHead (blockHash: string, blockNumber: number): Promise<SyncStatusInterface> {
|
|
const dbTx = await this._db.createTransactionRunner();
|
|
let res;
|
|
|
|
try {
|
|
res = await this._db.updateSyncStatusChainHead(dbTx, blockHash, blockNumber);
|
|
await dbTx.commitTransaction();
|
|
} catch (error) {
|
|
await dbTx.rollbackTransaction();
|
|
throw error;
|
|
} finally {
|
|
await dbTx.release();
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
async updateSyncStatusCanonicalBlock (blockHash: string, blockNumber: number): Promise<SyncStatusInterface> {
|
|
const dbTx = await this._db.createTransactionRunner();
|
|
let res;
|
|
|
|
try {
|
|
res = await this._db.updateSyncStatusCanonicalBlock(dbTx, blockHash, blockNumber);
|
|
await dbTx.commitTransaction();
|
|
} catch (error) {
|
|
await dbTx.rollbackTransaction();
|
|
throw error;
|
|
} finally {
|
|
await dbTx.release();
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
async getBlock (blockHash: string): Promise<any> {
|
|
const { block } = await this._ethClient.getLogs({ blockHash });
|
|
return block;
|
|
}
|
|
|
|
async getBlockProgress (blockHash: string): Promise<BlockProgressInterface | undefined> {
|
|
return this._db.getBlockProgress(blockHash);
|
|
}
|
|
|
|
async getBlocksAtHeight (height: number, isPruned: boolean): Promise<BlockProgressInterface[]> {
|
|
return this._db.getBlocksAtHeight(height, isPruned);
|
|
}
|
|
|
|
async markBlocksAsPruned (blocks: BlockProgressInterface[]): Promise<void> {
|
|
const dbTx = await this._db.createTransactionRunner();
|
|
|
|
try {
|
|
await this._db.markBlocksAsPruned(dbTx, blocks);
|
|
await dbTx.commitTransaction();
|
|
} catch (error) {
|
|
await dbTx.rollbackTransaction();
|
|
throw error;
|
|
} finally {
|
|
await dbTx.release();
|
|
}
|
|
}
|
|
|
|
async updateBlockProgress (blockHash: string, lastProcessedEventIndex: number): Promise<void> {
|
|
const dbTx = await this._db.createTransactionRunner();
|
|
let res;
|
|
|
|
try {
|
|
res = await this._db.updateBlockProgress(dbTx, blockHash, lastProcessedEventIndex);
|
|
await dbTx.commitTransaction();
|
|
} catch (error) {
|
|
await dbTx.rollbackTransaction();
|
|
throw error;
|
|
} finally {
|
|
await dbTx.release();
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
async getEvent (id: string): Promise<EventInterface | undefined> {
|
|
return this._db.getEvent(id);
|
|
}
|
|
|
|
async getOrFetchBlockEvents (block: DeepPartial<BlockProgressInterface>, fetchAndSaveEvents: (block: DeepPartial<BlockProgressInterface>) => Promise<void>): Promise<Array<EventInterface>> {
|
|
assert(block.blockHash);
|
|
const blockProgress = await this._db.getBlockProgress(block.blockHash);
|
|
if (!blockProgress) {
|
|
// Fetch and save events first and make a note in the event sync progress table.
|
|
log(`getBlockEvents: db miss, fetching from upstream server ${block.blockHash}`);
|
|
await fetchAndSaveEvents(block);
|
|
}
|
|
|
|
const events = await this._db.getBlockEvents(block.blockHash);
|
|
log(`getBlockEvents: db hit, ${block.blockHash} num events: ${events.length}`);
|
|
|
|
return events;
|
|
}
|
|
|
|
async getBlockEvents (blockHash: string): Promise<Array<EventInterface>> {
|
|
return this._db.getBlockEvents(blockHash);
|
|
}
|
|
|
|
async getEventsByFilter (blockHash: string, contract: string, name: string | null): Promise<Array<EventInterface>> {
|
|
if (contract) {
|
|
const watchedContract = await this.isWatchedContract(contract);
|
|
if (!watchedContract) {
|
|
throw new Error('Not a watched contract');
|
|
}
|
|
}
|
|
|
|
const where: FindConditions<EventInterface> = {
|
|
eventName: Not(UNKNOWN_EVENT_NAME)
|
|
};
|
|
|
|
if (contract) {
|
|
where.contract = contract;
|
|
}
|
|
|
|
if (name) {
|
|
where.eventName = name;
|
|
}
|
|
|
|
const events = await this._db.getBlockEvents(blockHash, where);
|
|
log(`getEvents: db hit, num events: ${events.length}`);
|
|
|
|
return events;
|
|
}
|
|
|
|
async getAncestorAtDepth (blockHash: string, depth: number): Promise<string> {
|
|
return this._db.getAncestorAtDepth(blockHash, depth);
|
|
}
|
|
|
|
async saveEventEntity (dbEvent: EventInterface): Promise<EventInterface> {
|
|
const dbTx = await this._db.createTransactionRunner();
|
|
let res;
|
|
|
|
try {
|
|
res = this._db.saveEventEntity(dbTx, dbEvent);
|
|
await dbTx.commitTransaction();
|
|
} catch (error) {
|
|
await dbTx.rollbackTransaction();
|
|
throw error;
|
|
} finally {
|
|
await dbTx.release();
|
|
}
|
|
|
|
return res;
|
|
}
|
|
|
|
async getProcessedBlockCountForRange (fromBlockNumber: number, toBlockNumber: number): Promise<{ expected: number, actual: number }> {
|
|
return this._db.getProcessedBlockCountForRange(fromBlockNumber, toBlockNumber);
|
|
}
|
|
|
|
async getEventsInRange (fromBlockNumber: number, toBlockNumber: number): Promise<Array<EventInterface>> {
|
|
if (toBlockNumber <= fromBlockNumber) {
|
|
throw new Error('toBlockNumber should be greater than fromBlockNumber');
|
|
}
|
|
|
|
if ((toBlockNumber - fromBlockNumber) > MAX_EVENTS_BLOCK_RANGE) {
|
|
throw new Error(`Max range (${MAX_EVENTS_BLOCK_RANGE}) exceeded`);
|
|
}
|
|
|
|
return this._db.getEventsInRange(fromBlockNumber, toBlockNumber);
|
|
}
|
|
|
|
async isWatchedContract (address : string): Promise<ContractInterface | undefined> {
|
|
assert(this._db.getContract);
|
|
|
|
return this._db.getContract(ethers.utils.getAddress(address));
|
|
}
|
|
|
|
async getStorageValue (storageLayout: StorageLayout, blockHash: string, token: string, variable: string, ...mappingKeys: any[]): Promise<ValueResult> {
|
|
return getStorageValue(
|
|
storageLayout,
|
|
this._getStorageAt,
|
|
blockHash,
|
|
token,
|
|
variable,
|
|
...mappingKeys
|
|
);
|
|
}
|
|
}
|