Dev branch for age restriction, deposit policies, Brandt-Vickrey auctions etc.
Go to file
Christian Grothoff 9303881d22 fix extra-disting
2015-03-28 12:32:24 +01:00
contrib/mint-template major rename-fest for more constent symbol names 2015-03-27 19:58:40 +01:00
doc major rename-fest for more constent symbol names 2015-03-27 19:58:40 +01:00
m4 install taler headers 2015-01-08 19:32:53 +01:00
src fix extra-disting 2015-03-28 12:32:24 +01:00
.gitignore updating ignores 2015-01-30 14:27:06 +01:00
.gitmodules -initial import for mint 2015-01-08 18:37:20 +01:00
AUTHORS -initial import for mint 2015-01-08 18:37:20 +01:00
bootstrap -initial import for mint 2015-01-08 18:37:20 +01:00
ChangeLog -initial import for mint 2015-01-08 18:37:20 +01:00
configure.ac second round of renamefest 2015-03-28 11:06:00 +01:00
COPYING -initial import for mint 2015-01-08 18:37:20 +01:00
INSTALL first stab at establishing proper plugin API, main HTTP code compiles, other binaries FTBFS right now 2015-03-20 23:51:28 +01:00
Makefile.am bringing copyright tags up to FSF standard 2015-02-08 00:17:40 +01:00
NEWS -initial import for mint 2015-01-08 18:37:20 +01:00
README got the official GNUification 2015-02-06 20:27:10 +01:00

                       Welcome to GNU Taler


What is Taler?
==============

Taler is an electronic payment system providing the ability to pay
anonymously using digital cash.  Taler consists of a network protocol
definition (using a RESTful API over HTTP), a Mint (which creates
digital coins), a Wallet (which allows customers to manage, store and
spend digital coins), and a Merchant website which allows customers to
spend their digital coins.  Naturally, each Merchant is different, but
Taler includes code examples to help Merchants integrate Taler as a
payment system.

Taler is currently developed by a worldwide group of independent free
software developers and the DECENTRALISE team at Inria Rennes.  Taler
is free software and a GNU package (http://www.gnu.org/).

This is not even a release yet, but some raw development prototype
that does not work yet.  This package also only includes the Taler
mint, not the other components of the system.

Documentation about Taler can be found at http://taler.net/.


Dependencies:
=============

These are the direct dependencies for running a Taler mint:

- GNUnet            >= 0.10.2
- GNU libmicrohttpd >= 0.9.38
- Postgres          >= 9.3



Project structure is currently as follows:

src/include/
  -- installed headers for public APIs

src/util/
  -- common utility functions (currency representation,
     Taler-specific cryptography, Taler-specific json
     support)

src/pq/
  -- Postgres-specific utility functions

src/mint/
  -- taler mint server and helper binaries

src/lib/
  -- libtalermint: C API to issue HTTP requests to mint, including testcases