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

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