@sentio/sdk
    Preparing search index...

    Class BaseProcessorTemplate<TContract, TBoundContractView>Abstract

    Type Parameters

    Hierarchy (View Summary)

    Index

    Constructors

    Properties

    blockHandlers: {
        blockInterval?: HandleInterval;
        fetchConfig?: EthFetchConfig;
        handler: (
            block: BlockParams,
            ctx: ContractContext<TContract, TBoundContractView>,
        ) => PromiseOrVoid;
        handlerName: string;
        preprocessHandler: (
            block: BlockParams,
            ctx: ContractContext<TContract, TBoundContractView>,
            preprocessStore: { [k: string]: any },
        ) => Promise<PreprocessResult>;
        timeIntervalInMinutes?: HandleInterval;
    }[] = []
    eventHandlers: {
        fetchConfig?: EthFetchConfig;
        filter: DeferredTopicFilter | DeferredTopicFilter[];
        handler: (
            event: TypedEvent,
            ctx: ContractContext<TContract, TBoundContractView>,
        ) => PromiseOrVoid;
        handlerName: string;
        preprocessHandler: (
            event: TypedEvent,
            ctx: ContractContext<TContract, TBoundContractView>,
            preprocessStore: { [k: string]: any },
        ) => Promise<PreprocessResult>;
    }[] = []
    id: number
    instances: Set<string> = ...
    traceHandlers: {
        fetchConfig?: EthFetchConfig;
        handler: (
            trace: TypedCallTrace,
            ctx: ContractContext<TContract, TBoundContractView>,
        ) => PromiseOrVoid;
        handlerName: string;
        preprocessHandler: (
            trace: TypedCallTrace,
            ctx: ContractContext<TContract, TBoundContractView>,
            preprocessStore: { [k: string]: any },
        ) => Promise<PreprocessResult>;
        signature: string;
    }[] = []

    Methods