Interface FuelBaseProcessor<T>

interface FuelBaseProcessor<T> {
    blockHandlers: BlockHandler[];
    callHandlers: CallHandler<Data_FuelCall>[];
    config: T;
    configure(): Promise<void>;
}

Type Parameters

  • T

Implemented by

Properties

blockHandlers: BlockHandler[]
callHandlers: CallHandler<Data_FuelCall>[]
config: T

Methods