public Task <TransactionReceipt> EmitVideoPasswordRequestAndWaitForReceiptAsync(string encryptedPassword, string ipfsHash, string buyerAddress, CancellationTokenSource cancellationToken = null)
        {
            var emitVideoPasswordFunction = new EmitVideoPasswordFunction();

            emitVideoPasswordFunction.EncryptedPassword = encryptedPassword;
            emitVideoPasswordFunction.IpfsHash          = ipfsHash;
            emitVideoPasswordFunction.BuyerAddress      = buyerAddress;

            return(ContractHandler.SendRequestAndWaitForReceiptAsync(emitVideoPasswordFunction, cancellationToken));
        }
        public Task <string> EmitVideoPasswordRequestAsync(string encryptedPassword, string ipfsHash, string buyerAddress)
        {
            var emitVideoPasswordFunction = new EmitVideoPasswordFunction();

            emitVideoPasswordFunction.EncryptedPassword = encryptedPassword;
            emitVideoPasswordFunction.IpfsHash          = ipfsHash;
            emitVideoPasswordFunction.BuyerAddress      = buyerAddress;

            return(ContractHandler.SendRequestAsync(emitVideoPasswordFunction));
        }
 public Task <TransactionReceipt> EmitVideoPasswordRequestAndWaitForReceiptAsync(EmitVideoPasswordFunction emitVideoPasswordFunction, CancellationTokenSource cancellationToken = null)
 {
     return(ContractHandler.SendRequestAndWaitForReceiptAsync(emitVideoPasswordFunction, cancellationToken));
 }
 public Task <string> EmitVideoPasswordRequestAsync(EmitVideoPasswordFunction emitVideoPasswordFunction)
 {
     return(ContractHandler.SendRequestAsync(emitVideoPasswordFunction));
 }