Check if a contract exists at the given address
function isContractDeployed( address: string, provider: Provider,): Promise<boolean>;
The address to check
let address: string;
The provider to use
let provider: Provider;
let returnType: Promise<boolean>;