mirror of
https://github.com/cerc-io/watcher-ts
synced 2025-01-24 12:09:06 +00:00
560df57ac7
* Avoid fetching contracts while creating a checkpoint * Use enum for state kind and cache ipld status * Avoid fetching block twice while finalizing a staged diff IPLDBlock * Create checkpoints at fixed block numbers and refactor checkpointing code * Avoid calling block handler until start block is reached * Use delete while finalizing staged diff IPLDBlocks * Add a check to ensure hooks job is created only once * Avoid check for initial state while creating a checkpoint
230 lines
8.0 KiB
TypeScript
230 lines
8.0 KiB
TypeScript
//
|
|
// Copyright 2021 Vulcanize, Inc.
|
|
//
|
|
|
|
import assert from 'assert';
|
|
import BigInt from 'apollo-type-bigint';
|
|
import debug from 'debug';
|
|
import Decimal from 'decimal.js';
|
|
import { GraphQLScalarType } from 'graphql';
|
|
|
|
import { BlockHeight, StateKind } from '@vulcanize/util';
|
|
|
|
import { Indexer } from './indexer';
|
|
import { EventWatcher } from './events';
|
|
|
|
import { Producer } from './entity/Producer';
|
|
import { ProducerSet } from './entity/ProducerSet';
|
|
import { ProducerSetChange } from './entity/ProducerSetChange';
|
|
import { ProducerRewardCollectorChange } from './entity/ProducerRewardCollectorChange';
|
|
import { RewardScheduleEntry } from './entity/RewardScheduleEntry';
|
|
import { RewardSchedule } from './entity/RewardSchedule';
|
|
import { ProducerEpoch } from './entity/ProducerEpoch';
|
|
import { Block } from './entity/Block';
|
|
import { Epoch } from './entity/Epoch';
|
|
import { SlotClaim } from './entity/SlotClaim';
|
|
import { Slot } from './entity/Slot';
|
|
import { Staker } from './entity/Staker';
|
|
import { Network } from './entity/Network';
|
|
import { Distributor } from './entity/Distributor';
|
|
import { Distribution } from './entity/Distribution';
|
|
import { Claim } from './entity/Claim';
|
|
import { Slash } from './entity/Slash';
|
|
import { Account } from './entity/Account';
|
|
|
|
const log = debug('vulcanize:resolver');
|
|
|
|
export const createResolvers = async (indexer: Indexer, eventWatcher: EventWatcher): Promise<any> => {
|
|
assert(indexer);
|
|
|
|
return {
|
|
BigInt: new BigInt('bigInt'),
|
|
|
|
BigDecimal: new GraphQLScalarType({
|
|
name: 'BigDecimal',
|
|
description: 'BigDecimal custom scalar type',
|
|
parseValue (value) {
|
|
// value from the client
|
|
return new Decimal(value);
|
|
},
|
|
serialize (value: Decimal) {
|
|
// value sent to the client
|
|
return value.toFixed();
|
|
}
|
|
}),
|
|
|
|
Event: {
|
|
__resolveType: (obj: any) => {
|
|
assert(obj.__typename);
|
|
|
|
return obj.__typename;
|
|
}
|
|
},
|
|
|
|
Subscription: {
|
|
onEvent: {
|
|
subscribe: () => eventWatcher.getEventIterator()
|
|
}
|
|
},
|
|
|
|
Mutation: {
|
|
watchContract: async (_: any, { address, kind, checkpoint, startingBlock = 1 }: { address: string, kind: string, checkpoint: boolean, startingBlock: number }): Promise<boolean> => {
|
|
log('watchContract', address, kind, checkpoint, startingBlock);
|
|
await indexer.watchContract(address, kind, checkpoint, startingBlock);
|
|
|
|
return true;
|
|
}
|
|
},
|
|
|
|
Query: {
|
|
producer: async (_: any, { id, block = {} }: { id: string, block: BlockHeight }) => {
|
|
log('producer', id, block);
|
|
|
|
return indexer.getSubgraphEntity(Producer, id, block);
|
|
},
|
|
|
|
producerSet: async (_: any, { id, block = {} }: { id: string, block: BlockHeight }) => {
|
|
log('producerSet', id, block);
|
|
|
|
return indexer.getSubgraphEntity(ProducerSet, id, block);
|
|
},
|
|
|
|
producerSetChange: async (_: any, { id, block = {} }: { id: string, block: BlockHeight }) => {
|
|
log('producerSetChange', id, block);
|
|
|
|
return indexer.getSubgraphEntity(ProducerSetChange, id, block);
|
|
},
|
|
|
|
producerRewardCollectorChange: async (_: any, { id, block = {} }: { id: string, block: BlockHeight }) => {
|
|
log('producerRewardCollectorChange', id, block);
|
|
|
|
return indexer.getSubgraphEntity(ProducerRewardCollectorChange, id, block);
|
|
},
|
|
|
|
rewardScheduleEntry: async (_: any, { id, block = {} }: { id: string, block: BlockHeight }) => {
|
|
log('rewardScheduleEntry', id, block);
|
|
|
|
return indexer.getSubgraphEntity(RewardScheduleEntry, id, block);
|
|
},
|
|
|
|
rewardSchedule: async (_: any, { id, block = {} }: { id: string, block: BlockHeight }) => {
|
|
log('rewardSchedule', id, block);
|
|
|
|
return indexer.getSubgraphEntity(RewardSchedule, id, block);
|
|
},
|
|
|
|
producerEpoch: async (_: any, { id, block = {} }: { id: string, block: BlockHeight }) => {
|
|
log('producerEpoch', id, block);
|
|
|
|
return indexer.getSubgraphEntity(ProducerEpoch, id, block);
|
|
},
|
|
|
|
block: async (_: any, { id, block = {} }: { id: string, block: BlockHeight }) => {
|
|
log('block', id, block);
|
|
|
|
return indexer.getSubgraphEntity(Block, id, block);
|
|
},
|
|
|
|
epoch: async (_: any, { id, block = {} }: { id: string, block: BlockHeight }) => {
|
|
log('epoch', id, block);
|
|
|
|
return indexer.getSubgraphEntity(Epoch, id, block);
|
|
},
|
|
|
|
slotClaim: async (_: any, { id, block = {} }: { id: string, block: BlockHeight }) => {
|
|
log('slotClaim', id, block);
|
|
|
|
return indexer.getSubgraphEntity(SlotClaim, id, block);
|
|
},
|
|
|
|
slot: async (_: any, { id, block = {} }: { id: string, block: BlockHeight }) => {
|
|
log('slot', id, block);
|
|
|
|
return indexer.getSubgraphEntity(Slot, id, block);
|
|
},
|
|
|
|
staker: async (_: any, { id, block = {} }: { id: string, block: BlockHeight }) => {
|
|
log('staker', id, block);
|
|
|
|
return indexer.getSubgraphEntity(Staker, id, block);
|
|
},
|
|
|
|
network: async (_: any, { id, block = {} }: { id: string, block: BlockHeight }) => {
|
|
log('network', id, block);
|
|
|
|
return indexer.getSubgraphEntity(Network, id, block);
|
|
},
|
|
|
|
distributor: async (_: any, { id, block = {} }: { id: string, block: BlockHeight }) => {
|
|
log('distributor', id, block);
|
|
|
|
return indexer.getSubgraphEntity(Distributor, id, block);
|
|
},
|
|
|
|
distribution: async (_: any, { id, block = {} }: { id: string, block: BlockHeight }) => {
|
|
log('distribution', id, block);
|
|
|
|
return indexer.getSubgraphEntity(Distribution, id, block);
|
|
},
|
|
|
|
claim: async (_: any, { id, block = {} }: { id: string, block: BlockHeight }) => {
|
|
log('claim', id, block);
|
|
|
|
return indexer.getSubgraphEntity(Claim, id, block);
|
|
},
|
|
|
|
slash: async (_: any, { id, block = {} }: { id: string, block: BlockHeight }) => {
|
|
log('slash', id, block);
|
|
|
|
return indexer.getSubgraphEntity(Slash, id, block);
|
|
},
|
|
|
|
account: async (_: any, { id, block = {} }: { id: string, block: BlockHeight }) => {
|
|
log('account', id, block);
|
|
|
|
return indexer.getSubgraphEntity(Account, id, block);
|
|
},
|
|
|
|
events: async (_: any, { blockHash, contractAddress, name }: { blockHash: string, contractAddress: string, name?: string }) => {
|
|
log('events', blockHash, contractAddress, name);
|
|
|
|
const block = await indexer.getBlockProgress(blockHash);
|
|
if (!block || !block.isComplete) {
|
|
throw new Error(`Block hash ${blockHash} number ${block?.blockNumber} not processed yet`);
|
|
}
|
|
|
|
const events = await indexer.getEventsByFilter(blockHash, contractAddress, name);
|
|
return events.map(event => indexer.getResultEvent(event));
|
|
},
|
|
|
|
eventsInRange: async (_: any, { fromBlockNumber, toBlockNumber }: { fromBlockNumber: number, toBlockNumber: number }) => {
|
|
log('eventsInRange', fromBlockNumber, toBlockNumber);
|
|
|
|
const { expected, actual } = await indexer.getProcessedBlockCountForRange(fromBlockNumber, toBlockNumber);
|
|
if (expected !== actual) {
|
|
throw new Error(`Range not available, expected ${expected}, got ${actual} blocks in range`);
|
|
}
|
|
|
|
const events = await indexer.getEventsInRange(fromBlockNumber, toBlockNumber);
|
|
return events.map(event => indexer.getResultEvent(event));
|
|
},
|
|
|
|
getStateByCID: async (_: any, { cid }: { cid: string }) => {
|
|
log('getStateByCID', cid);
|
|
|
|
const ipldBlock = await indexer.getIPLDBlockByCid(cid);
|
|
|
|
return ipldBlock && ipldBlock.block.isComplete ? indexer.getResultIPLDBlock(ipldBlock) : undefined;
|
|
},
|
|
|
|
getState: async (_: any, { blockHash, contractAddress, kind = StateKind.Diff }: { blockHash: string, contractAddress: string, kind: string }) => {
|
|
log('getState', blockHash, contractAddress, kind);
|
|
|
|
const ipldBlock = await indexer.getPrevIPLDBlock(blockHash, contractAddress, kind);
|
|
|
|
return ipldBlock && ipldBlock.block.isComplete ? indexer.getResultIPLDBlock(ipldBlock) : undefined;
|
|
}
|
|
}
|
|
};
|
|
};
|