summaryrefslogtreecommitdiff
path: root/playground/contract.html
blob: 20365aac8dd6088d655fc9754bdb96362b2084a6 (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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!doctype html>
<html>
<head>
  <title>Contract playground</title>
  <meta charset="UTF-8">
  <script src="/src/i18n.js"></script>
  <script src="/src/vendor/system-csp-production.src.js"></script>
  <script type="application/javascript">
    var contract = {
      "H_wire": "ADVPV6Q9P0GF74CD5H5ENYCC862AM34ZS93JDQR2G09SR8868YMPYCVQP8WGGVVYZDY2ZMG703TQESN837VBAEDCGMS2D2RADKFKW08",
      "amount": {
        "currency": "KUDOS", "fraction": 100000, "value": 0
      }
      ,
      "auditors": [],
      "exchanges": [{
        "master_pub": "CQQZ9DY3MZ1ARMN5K1VKDETS04Y2QCKMMCFHZSWJWWVN82BTTH00",
        "url": "https://exchange.demo.taler.net/"
      }],
      "expiry": "/Date(1483798537)/",
      "fulfillment_url": "https://blog.demo.taler.net/essay/7._Why_Schools_Should_Exclusively_Use_Free%C2%A0Software?uuid=${H_contract}&timestamp=1475158537&tid=501210171398673",
      "locations": {}
      ,
      "max_fee": {
        "currency": "KUDOS", "fraction": 0, "value": 3
      }
      ,
      "merchant": {
        "address": "nowhere", "jurisdiction": "none", "name": "Kudos Inc."
      }
      ,
      "merchant_pub": "9K5V0G537N2RPKGQVYV2Q9WBS8R7QB93RTC7BJF1YE6XQQQ6BS2G",
      "products": [{
        "description": "Essay: 7. Why Schools Should Exclusively Use Free Software",
        "price": {"currency": "KUDOS", "fraction": 100000, "value": 0},
        "product_id": 0,
        "quantity": 1
      }],
      "refund_deadline": "/Date(1475158537)/",
      "timestamp": "/Date(1475158537)/",
      "transaction_id": 501210171398673
    };
  </script>
</head>
<body>
  <div id="container"></div>
<script>
  "use strict";
  System.config({
    defaultJSExtensions: true,
  });

  document.addEventListener("DOMContentLoaded", () => {
    System.import("/src/renderHtml")
      .then((render) => {
        let r = render.renderContract(contract);
        let component = {view: function () {return r;}}
        m.mount(document.getElementById("container"), component);
      }
    )
    .catch((e) => {
      console.error(e.stack);
    });
  });
</script>
</body>
</html>