public Task <string> AddressToEncryptedKeysQueryAsync(string returnValue1, BlockParameter blockParameter = null)
        {
            var addressToEncryptedKeysFunction = new AddressToEncryptedKeysFunction();

            addressToEncryptedKeysFunction.ReturnValue1 = returnValue1;

            return(ContractHandler.QueryAsync <AddressToEncryptedKeysFunction, string>(addressToEncryptedKeysFunction, blockParameter));
        }
 public Task <string> AddressToEncryptedKeysQueryAsync(AddressToEncryptedKeysFunction addressToEncryptedKeysFunction, BlockParameter blockParameter = null)
 {
     return(ContractHandler.QueryAsync <AddressToEncryptedKeysFunction, string>(addressToEncryptedKeysFunction, blockParameter));
 }