@eth-optimism/contracts
Version:
[Optimism] L1 and L2 smart contracts for Optimism
9 lines (8 loc) • 419 B
TypeScript
import { ethers } from 'ethers';
export declare const getContractDefinition: (name: string) => any;
export declare const getDeployedContractDefinition: (name: string, network: string) => {
address: string;
abi: any;
};
export declare const getContractInterface: (name: string) => ethers.utils.Interface;
export declare const getContractFactory: (name: string, signer?: ethers.Signer) => ethers.ContractFactory;