@lightlink-network/ll-sdk
Version:
[LightLink] Tools for working with LightLink
17 lines (16 loc) • 627 B
TypeScript
import type { BridgeAdapterData, OEContractsLike, OEL2ContractsLike } from '../interfaces';
import { L1ChainID, L2ChainID } from '../interfaces';
export declare const DEPOSIT_CONFIRMATION_BLOCKS: {
[ChainID in L2ChainID]: number;
};
export declare const CHAIN_BLOCK_TIMES: {
[ChainID in L1ChainID]: number;
};
export declare const DEFAULT_L2_CONTRACT_ADDRESSES: OEL2ContractsLike;
export declare const IGNORABLE_CONTRACTS: string[];
export declare const CONTRACT_ADDRESSES: {
[ChainID in L2ChainID]: OEContractsLike;
};
export declare const BRIDGE_ADAPTER_DATA: {
[ChainID in L2ChainID]?: BridgeAdapterData;
};