exchange

Base system with REST service to issue digital coins, run by the payment service provider
Log | Files | Refs | Submodules | README | LICENSE

proc-domestic.tex (2976B)


      1 \section{Domestic wallet check} \label{sec:proc:domestic}
      2 
      3 \begin{figure}[h!]
      4   \begin{sequencediagram}
      5     \newinst{wallet}{\shortstack{Customer wallet \\
      6       \\ \begin{tikzpicture}
      7         \node [fill=gray!20,draw=black,thick,align=center] { Unique \\ Wallet ID};
      8       \end{tikzpicture}
      9     }}
     10     \newinst[2]{exchange}{\shortstack{Taler (exchange) \\
     11        \\ \begin{tikzpicture}[shape aspect=.5]
     12         \tikzset{every node/.style={cylinder,shape border rotate=90, draw,fill=gray!25}}
     13         \node at (1.5,0) {\shortstack{{{\tiny Database}}}};
     14        \end{tikzpicture}
     15     }}
     16     \newinst[2]{sms}{\shortstack{Address validator}}
     17 
     18     \postlevel
     19     \mess[0]{wallet}{{P2P payment (Wallet ID)}}{exchange}
     20     \begin{callself}{exchange}{New wallet?}{}
     21     \end{callself}
     22     \mess[0]{exchange}{Request address validation}{sms}
     23     \mess[0]{sms}{Validation process ID}{exchange}
     24     \mess[0]{exchange}{Request address validation}{wallet}
     25     \mess[0]{wallet}{Send address}{sms}
     26     \mess[0]{sms}{{Send confirmation code (to address)}}{wallet}
     27     \mess[0]{wallet}{Supply confirmation code}{sms}
     28     \mess[0]{sms}{{Confirmed customer address}}{exchange}
     29     \mess[0]{exchange}{{Confirm completion}}{wallet}
     30     \mess[0]{wallet}{{Retry action}}{exchange}
     31 \end{sequencediagram}
     32   \caption{Deposit interactions between customer, Taler exchange (payment
     33     service provider) and external address validation service.  The process can be
     34     triggered by wallet-to-wallet (P2P) payments described in Chapter~\ref{chap:triggers}.}
     35   \label{fig:proc:domestic}
     36 \end{figure}
     37 
     38 Our users have to accept the terms of service which restrict the use of the
     39 service to domestic customers.  For interactions with the core banking system,
     40 this simply means that we only accept payments from or to domestic bank
     41 accounts.  For P2P payments between wallets, we require that the wallets are
     42 controlled by a domestic entity.  We define domestic entities as those that
     43 are able to receive messages at a domestic address. Two types of addresses are
     44 supported:
     45 
     46 \begin{itemize}
     47 \item Control over a domestic {\bf mobile phone number} is established
     48   by sending an SMS message with a confirmation code to the MSIN.
     49 \item Control over a domestic {\bf postal address} is established by
     50   sending a letter with a confirmation code to the address.
     51 \end{itemize}
     52 
     53 Depending on the type of address, a validation has a limited validity period,
     54 as shown in Table~\ref{table:proc:domestic}.  When the validity period is
     55 over, a wallet has to re-do the address validation before they can receive any
     56 further funds through the service.
     57 
     58 \begin{table}[h!]
     59   \caption{Restrictions on address validations}
     60   \label{table:proc:domestic}
     61   \begin{tabular}{l|l|r}
     62     {\bf Type}          & {\bf Validity period} & {\bf Restricted to} \\ \hline \hline
     63     Mobile phone number & 12 months             & {\em +41} \\
     64     Postal address      & 36 months             & {\em Switzerland} \\
     65   \end{tabular}
     66 \end{table}