import { BaseContract, Provider, EventLog, ContractEventName } from 'ethers'; import type { Tornado, TornadoRouter, TornadoProxyLight, Governance, RelayerRegistry, Echoer, Aggregator } from '@tornado/contracts'; import { BatchEventsService, BatchBlockService, BatchTransactionService, BatchEventOnProgress, BatchBlockOnProgress } from '../batch'; import { fetchDataOptions } from '../providers'; import type { NetIdType, SubdomainMap } from '../networkConfig'; import { RelayerParams } from '../relayerClient'; import type { BaseEvents, CachedEvents, MinimalEvents, DepositsEvents, WithdrawalsEvents, EncryptedNotesEvents, AllGovernanceEvents, RegistersEvents, EchoEvents } from './types'; export declare const DEPOSIT = "deposit"; export declare const WITHDRAWAL = "withdrawal"; export type BaseEventsServiceConstructor = { netId: NetIdType; provider: Provider; graphApi?: string; subgraphName?: string; contract: BaseContract; type?: string; deployedBlock?: number; fetchDataOptions?: fetchDataOptions; }; export type BatchGraphOnProgress = ({ type, fromBlock, toBlock, count, }: { type?: ContractEventName; fromBlock?: number; toBlock?: number; count?: number; }) => void; export type BaseGraphParams = { graphApi: string; subgraphName: string; fetchDataOptions?: fetchDataOptions; onProgress?: BatchGraphOnProgress; }; export declare class BaseEventsService { netId: NetIdType; provider: Provider; graphApi?: string; subgraphName?: string; contract: BaseContract; type: string; deployedBlock: number; batchEventsService: BatchEventsService; fetchDataOptions?: fetchDataOptions; constructor({ netId, provider, graphApi, subgraphName, contract, type, deployedBlock, fetchDataOptions, }: BaseEventsServiceConstructor); getInstanceName(): string; getType(): string; getGraphMethod(): string; getGraphParams(): BaseGraphParams; updateEventProgress({ percentage, type, fromBlock, toBlock, count }: Parameters[0]): void; updateBlockProgress({ percentage, currentIndex, totalIndex }: Parameters[0]): void; updateTransactionProgress({ percentage, currentIndex, totalIndex }: Parameters[0]): void; updateGraphProgress({ type, fromBlock, toBlock, count }: Parameters[0]): void; formatEvents(events: EventLog[]): Promise; /** * Get saved or cached events */ getEventsFromDB(): Promise>; /** * Events from remote cache (Either from local cache, CDN, or from IPFS) */ getEventsFromCache(): Promise>; getSavedEvents(): Promise | CachedEvents>; /** * Get latest events */ getEventsFromGraph({ fromBlock, methodName, }: { fromBlock: number; methodName?: string; }): Promise>; getEventsFromRpc({ fromBlock, toBlock, }: { fromBlock: number; toBlock?: number; }): Promise>; getLatestEvents({ fromBlock }: { fromBlock: number; }): Promise>; validateEvents({ events, lastBlock }: BaseEvents): void; /** * Handle saving events */ saveEvents({ events, lastBlock }: BaseEvents): Promise; /** * Trigger saving and receiving latest events */ updateEvents(): Promise<{ events: EventType[]; lastBlock: number; }>; } export type BaseTornadoServiceConstructor = { netId: NetIdType; provider: Provider; graphApi?: string; subgraphName?: string; Tornado: Tornado; type: string; amount: string; currency: string; deployedBlock?: number; fetchDataOptions?: fetchDataOptions; }; export type DepositsGraphParams = BaseGraphParams & { amount: string; currency: string; }; export declare class BaseTornadoService extends BaseEventsService { amount: string; currency: string; batchTransactionService: BatchTransactionService; batchBlockService: BatchBlockService; constructor({ netId, provider, graphApi, subgraphName, Tornado, type, amount, currency, deployedBlock, fetchDataOptions, }: BaseTornadoServiceConstructor); getInstanceName(): string; getGraphMethod(): string; getGraphParams(): DepositsGraphParams; formatEvents(events: EventLog[]): Promise<(DepositsEvents | WithdrawalsEvents)[]>; validateEvents({ events }: { events: (DepositsEvents | WithdrawalsEvents)[]; }): void; } export type BaseEchoServiceConstructor = { netId: NetIdType; provider: Provider; graphApi?: string; subgraphName?: string; Echoer: Echoer; deployedBlock?: number; fetchDataOptions?: fetchDataOptions; }; export declare class BaseEchoService extends BaseEventsService { constructor({ netId, provider, graphApi, subgraphName, Echoer, deployedBlock, fetchDataOptions, }: BaseEchoServiceConstructor); getInstanceName(): string; getType(): string; getGraphMethod(): string; formatEvents(events: EventLog[]): Promise; getEventsFromGraph({ fromBlock }: { fromBlock: number; }): Promise>; } export type BaseEncryptedNotesServiceConstructor = { netId: NetIdType; provider: Provider; graphApi?: string; subgraphName?: string; Router: TornadoRouter | TornadoProxyLight; deployedBlock?: number; fetchDataOptions?: fetchDataOptions; }; export declare class BaseEncryptedNotesService extends BaseEventsService { constructor({ netId, provider, graphApi, subgraphName, Router, deployedBlock, fetchDataOptions, }: BaseEncryptedNotesServiceConstructor); getInstanceName(): string; getType(): string; getGraphMethod(): string; formatEvents(events: EventLog[]): Promise; } export type BaseGovernanceServiceConstructor = { netId: NetIdType; provider: Provider; graphApi?: string; subgraphName?: string; Governance: Governance; deployedBlock?: number; fetchDataOptions?: fetchDataOptions; }; export declare class BaseGovernanceService extends BaseEventsService { batchTransactionService: BatchTransactionService; constructor({ netId, provider, graphApi, subgraphName, Governance, deployedBlock, fetchDataOptions, }: BaseGovernanceServiceConstructor); getInstanceName(): string; getType(): string; getGraphMethod(): string; formatEvents(events: EventLog[]): Promise; getEventsFromGraph({ fromBlock }: { fromBlock: number; }): Promise>; } export declare function getTovarishNetworks(registryService: BaseRegistryService, relayers: CachedRelayerInfo[]): Promise; /** * Essential params: * ensName, relayerAddress, hostnames * Other data is for historic purpose from relayer registry */ export interface CachedRelayerInfo extends RelayerParams { isRegistered?: boolean; owner?: string; stakeBalance?: string; hostnames: SubdomainMap; tovarishUrl?: string; tovarishNetworks?: number[]; } export interface CachedRelayers { timestamp: number; relayers: CachedRelayerInfo[]; fromCache?: boolean; } export type BaseRegistryServiceConstructor = { netId: NetIdType; provider: Provider; graphApi?: string; subgraphName?: string; RelayerRegistry: RelayerRegistry; Aggregator: Aggregator; relayerEnsSubdomains: SubdomainMap; deployedBlock?: number; fetchDataOptions?: fetchDataOptions; }; export declare class BaseRegistryService extends BaseEventsService { Aggregator: Aggregator; relayerEnsSubdomains: SubdomainMap; updateInterval: number; constructor({ netId, provider, graphApi, subgraphName, RelayerRegistry, Aggregator, relayerEnsSubdomains, deployedBlock, fetchDataOptions, }: BaseRegistryServiceConstructor); getInstanceName(): string; getType(): string; getGraphMethod(): string; formatEvents(events: EventLog[]): Promise<{ ensName: any; relayerAddress: any; blockNumber: number; logIndex: number; transactionHash: string; }[]>; /** * Get saved or cached relayers */ getRelayersFromDB(): Promise; /** * Relayers from remote cache (Either from local cache, CDN, or from IPFS) */ getRelayersFromCache(): Promise; getSavedRelayers(): Promise; getLatestRelayers(): Promise; /** * Handle saving relayers */ saveRelayers({ timestamp, relayers }: CachedRelayers): Promise; /** * Get cached or latest relayer and save to local */ updateRelayers(): Promise; }