summaryrefslogtreecommitdiff
path: root/images/regional-arch.dot
blob: 8a61ed5e464c3c0f871d9dc15b9c3b87b2eebce0 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
digraph G {
  subgraph cluster_2 {
    ubank;
    nexus;
    rank="same"; ebank; mbank;
    label="Fiat currency";
  };
  subgraph cluster_1 {
    user;
    exchange;
    shop;
    rbank;
    label="Regional currency";
  };
  subgraph cluster_2b {
  }
  user[label="Customer (Wallet)"];
  shop[label="Merchant (Backend)"];
  exchange[label="Exchange"];
  ubank[label="Customer Fiat Bank"];
  ebank[label="Exchange Fiat Bank"];
  mbank[label="Merchant Fiat Bank"];
  rbank[label="Regional Currency Bank"];
  user->ubank [label="1. Initiate withdraw"];
  ubank->ebank [label="2. Wire transfer"];
  ebank->nexus [label="3. EBICS (CAMT)"];
  nexus->rbank [label="4. Conversion (Cash-in)"];
  rbank->exchange [label="5. Wirewatch"];
  exchange->user [label="6. Withdraw E-Cash"];
  user->shop [label="7. Spend E-Cash"];
  shop->exchange [label="8. Deposit E-Cash"];
  exchange->rbank [label="9. Credit Shop"];
  rbank->nexus [xlabel="10. Conversion (Cash-out)"];
  nexus->ebank [label="11. EBICS (PAIN)"];
  ebank->mbank [label="12. Wire-transfer"];
}