示例#1
0
 public static Task <string> DeployContractAsync(Nethereum.Web3.Web3 web3, HarborDeployment harborDeployment)
 {
     return(web3.Eth.GetContractDeploymentHandler <HarborDeployment>().SendRequestAsync(harborDeployment));
 }
示例#2
0
        public static async Task <HarborService> DeployContractAndGetServiceAsync(Nethereum.Web3.Web3 web3, HarborDeployment harborDeployment, CancellationTokenSource cancellationTokenSource = null)
        {
            var receipt = await DeployContractAndWaitForReceiptAsync(web3, harborDeployment, cancellationTokenSource);

            return(new HarborService(web3, receipt.ContractAddress));
        }
示例#3
0
 public static Task <TransactionReceipt> DeployContractAndWaitForReceiptAsync(Nethereum.Web3.Web3 web3, HarborDeployment harborDeployment, CancellationTokenSource cancellationTokenSource = null)
 {
     return(web3.Eth.GetContractDeploymentHandler <HarborDeployment>().SendRequestAndWaitForReceiptAsync(harborDeployment, cancellationTokenSource));
 }