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