public static Task <string> DeployContractAsync(Nethereum.Web3.Web3 web3, DataParserDeployment dataParserDeployment) { return(web3.Eth.GetContractDeploymentHandler <DataParserDeployment>().SendRequestAsync(dataParserDeployment)); }
public static async Task <DataParserService> DeployContractAndGetServiceAsync(Nethereum.Web3.Web3 web3, DataParserDeployment dataParserDeployment, CancellationTokenSource cancellationTokenSource = null) { var receipt = await DeployContractAndWaitForReceiptAsync(web3, dataParserDeployment, cancellationTokenSource); return(new DataParserService(web3, receipt.ContractAddress)); }
public static Task <TransactionReceipt> DeployContractAndWaitForReceiptAsync(Nethereum.Web3.Web3 web3, DataParserDeployment dataParserDeployment, CancellationTokenSource cancellationTokenSource = null) { return(web3.Eth.GetContractDeploymentHandler <DataParserDeployment>().SendRequestAndWaitForReceiptAsync(dataParserDeployment, cancellationTokenSource)); }