summaryrefslogtreecommitdiff
path: root/playground
diff options
context:
space:
mode:
authorMarcello Stanisci <marcello.stanisci@inria.fr>2016-09-30 00:53:01 +0200
committerMarcello Stanisci <marcello.stanisci@inria.fr>2016-09-30 00:53:01 +0200
commitbf309402cd08262af9f40f3336257d41166b3892 (patch)
tree2d87161f46c7083e2666633ade1c2b76731319ac /playground
parent3dee4744f9d0643026ebcf100fc839e2a4a1aa32 (diff)
downloadwallet-core-bf309402cd08262af9f40f3336257d41166b3892.tar.gz
wallet-core-bf309402cd08262af9f40f3336257d41166b3892.tar.bz2
wallet-core-bf309402cd08262af9f40f3336257d41166b3892.zip
adding richer mock contract
Diffstat (limited to 'playground')
-rw-r--r--playground/contract_full.html116
1 files changed, 116 insertions, 0 deletions
diff --git a/playground/contract_full.html b/playground/contract_full.html
new file mode 100644
index 000000000..f6d47fc51
--- /dev/null
+++ b/playground/contract_full.html
@@ -0,0 +1,116 @@
+<!doctype html>
+<html>
+<head>
+ <title>Contract playground</title>
+ <meta charset="UTF-8">
+ <script src="../lib/vendor/mithril.js"></script>
+ <script src="../lib/i18n.js"></script>
+ <script src="../lib/vendor/system-csp-production.src.js"></script>
+ <script type="application/javascript">
+ var contract = {
+ "H_wire": "ADVPV6Q9P0GF74CD5H5ENYCC862AM34ZS93JDQR2G09SR8868YMPYCVQP8WGGVVYZDY2ZMG703TQESN837VBAEDCGMS2D2RADKFKW08",
+ "amount": {
+ "currency": "KUDOS", "fraction": 100000, "value": 0
+ }
+ ,
+ "auditors": [{
+ "auditor_pub": "ERFPOJ0FRKRLM909ILKDETS04Y2QCKMMCFHZSWJWWVN82BTTH00",
+ "auditor_url": "https://auditor.example.gov/",
+ "denomination_keys": [{"denom_pub_h": "ERFPOJ0FRKRLM909ILKDETS04Y2QCKMMCFHZSWJWWVN82BTTH00",
+ "auditor_sig": "EPROFERPOJERVJPROJ45ETS04Y2QCKMMCFHZSWJWWVN82BTTH00"}]
+ },
+ {
+ "auditor_pub": "09FGKJ0FRKRLM909ILKDETS04Y2QCKMMCFHZSWJWWVN82BTTH00",
+ "auditor_url": "https://auditor-alt.example.gov/",
+ "denomination_keys": [{"denom_pub_h": "ERFPOJ0FRKRLM909ILKDETS04Y2QCKMMCFHZSWJWWVN82BTTH00",
+ "auditor_sig": "EPROFERPOJERVJPROJ45ETS04Y2QCKMMCFHZSWJWWVN82BTTH00"}]
+ }
+ ],
+ "exchanges": [{
+ "master_pub": "CQQZ9DY3MZ1ARMN5K1VKDETS04Y2QCKMMCFHZSWJWWVN82BTTH00",
+ "url": "https://exchange.demo.taler.net/"
+ },
+ {
+ "master_pub": "OIJ23JIO4Z1ARMN5K1VKDETS04Y2QCKMMCFHZSWJWWVN82BTTH00",
+ "url": "https://exchange.example.com/"
+ }],
+ "expiry": "/Date(1483798537)/",
+ "fulfillment_url": "https://playground-purchase.example.com/fulfillment?x=123",
+ "locations": {"LOC0": {"country": "France",
+ "city": "Bordeaux",
+ "region": "Nouvelle-Aquitaine",
+ "province": "Gironde",
+ "zip_code": "33000",
+ "street": "Pas connu",
+ "street_number": 8},
+ "LOC1": {"country": "USA",
+ "city": "La Fayette",
+ "state": "Louisiana",
+ "zip_code": "70508",
+ "street": "Not given",
+ "street_number": 8}}
+ ,
+ "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
+ },
+ {
+ "description": "E-reader for playground reads",
+ "price": {"currency": "KUDOS", "fraction": 100000, "value": 10},
+ "product_id": 9,
+ "quantity": 3,
+ "taxes": [{"teatax": {"currency": "KUDOS", "fraction": 1000, "value": 0}},
+ {"IVA": {"currency": "KUDOS", "fraction": 1000, "value": 0}}],
+ "delivery_date": "/Date(1475148537)/",
+ "delivery_location": "LOC1"
+ },
+ {
+ "description": "Fancy playground bookmark",
+ "price": {"currency": "KUDOS", "fraction": 500000, "value": 0},
+ "product_id": 4,
+ "quantity": 1,
+ "taxes": [{"IMP": {"currency": "KUDOS", "fraction": 3000, "value": 0}},
+ {"EUX": {"currency": "KUDOS", "fraction": 10, "value": 0}}],
+ "delivery_date": "/Date(1475138597)/",
+ "delivery_location": "LOC1"
+ }],
+ "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("../lib/wallet/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>