export declare class ContractContext { constructor(chainid: number); chainId: number; /** * The quickswap router address */ routerAddress(): string; /** * The quickswap factory address */ factoryAddress(): string; /** * The quickswap pair address */ pairAddress(): string; /** * quickswap v2 router */ static routerAbi: any[]; /** * quickswap v2 factory */ static factoryAbi: any[]; /** * quickswap v2 pair */ static pairAbi: any[]; /** * ERC20 abi */ static erc20Abi: any[]; }