public static Task <string> DeployContractAsync(Nethereum.Web3.Web3 web3, CopperDeployment copperDeployment)
 {
     return(web3.Eth.GetContractDeploymentHandler <CopperDeployment>().SendRequestAsync(copperDeployment));
 }
        public static async Task <CopperService> DeployContractAndGetServiceAsync(Nethereum.Web3.Web3 web3, CopperDeployment copperDeployment, CancellationTokenSource cancellationTokenSource = null)
        {
            var receipt = await DeployContractAndWaitForReceiptAsync(web3, copperDeployment, cancellationTokenSource);

            return(new CopperService(web3, receipt.ContractAddress));
        }
 public static Task <TransactionReceipt> DeployContractAndWaitForReceiptAsync(Nethereum.Web3.Web3 web3, CopperDeployment copperDeployment, CancellationTokenSource cancellationTokenSource = null)
 {
     return(web3.Eth.GetContractDeploymentHandler <CopperDeployment>().SendRequestAndWaitForReceiptAsync(copperDeployment, cancellationTokenSource));
 }