zonder
Version:
Ergonomic multi-chain indexing framework with dual runtime support for Ponder and Envio.
10 lines (9 loc) • 445 B
TypeScript
import { type Chain as ViemChain } from 'viem';
import type { ZonderConfig } from '../zonder/types.js';
interface DeploymentResults {
[chainName: string]: {
[contractName: string]: number;
};
}
export declare function findAllDeploymentBlocks<TChains extends Record<string, ViemChain>, TContracts extends Record<string, any>>(config: ZonderConfig<TChains, TContracts>, overwrite?: boolean): Promise<DeploymentResults>;
export {};