@graphprotocol/graph-cli
Version:
CLI for building for and deploying to The Graph
8 lines (7 loc) • 387 B
TypeScript
import EthereumABI from '../protocols/ethereum/abi.js';
import { ContractService } from './contracts.js';
export interface CheckForProxyResult {
implementationAbi: EthereumABI | null;
implementationAddress: string | null;
}
export declare function checkForProxy(contractService: ContractService, network: string, address: string, abi: EthereumABI): Promise<CheckForProxyResult>;