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

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