diff options
author | Florian Dold <florian.dold@gmail.com> | 2016-09-29 16:31:55 +0200 |
---|---|---|
committer | Florian Dold <florian.dold@gmail.com> | 2016-09-29 16:31:55 +0200 |
commit | 3dee4744f9d0643026ebcf100fc839e2a4a1aa32 (patch) | |
tree | f012fd6ee03a07137ce391d29132397a7db3951b /playground/contract.html | |
parent | 8b660d688235bb27da95a33054478b66b0c88068 (diff) |
contract playground
Diffstat (limited to 'playground/contract.html')
-rw-r--r-- | playground/contract.html | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/playground/contract.html b/playground/contract.html new file mode 100644 index 000000000..3bc7d3480 --- /dev/null +++ b/playground/contract.html @@ -0,0 +1,68 @@ +<!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": [], + "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}×tamp=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("../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> |