forked from moneysocket/moneysocket.github.io
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathplayground.html
More file actions
76 lines (68 loc) · 2.08 KB
/
playground.html
File metadata and controls
76 lines (68 loc) · 2.08 KB
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
68
69
70
71
72
73
74
75
76
<!DOCTYPE html>
<!-- Copyright (c) 2020 Jarret Dyrbye
Distributed under the MIT software license, see the accompanying
file LICENSE or http://www.opensource.org/licenses/mit-license.php -->
<html>
<meta content="text/html;charset=utf-8" http-equiv="Content-Type">
<meta content="utf-8" http-equiv="encoding">
<head>
<style>
.container {
width: 90%;
margin: auto;
padding: 10px;
}
.left {
border: 1px solid blue ;
width: 50%;
text-align: center;
float: left;
}
.column {
width: 50%;
text-align: middle;
margin-left: auto;
margin-right: auto;
}
.right {
border: 1px solid blue ;
width: 45%;
text-align: center;
margin-left: "15pm";
float: right;
}
.balance {
font-size: 200%;
}
div {
}
form {
}
</style>
</head>
<body>
<center class="column">
<h2> Wallet </h2>
<p>
The <a href="wallet/">Costanza Wallet</a>. Runs in a browser and connects to a downstream wallet provider. Also provides an upstream socket connection to an app. <br>
<br> Source code and docs <a href="https://github.com/moneysocket/costanza">here</a>.
</p>
<h2> Mover Application </h2>
<p>
A basic <a href="mover/">Application for Moving Money</a> between two Moneysocket provider connections. <br>
<br> Source code <a href="https://github.com/moneysocket/mover">here</a>.
</p>
<h1> Moneysocket Plaground: </h1> <br>
<h2> Beacon Codec </h2>
<p>
<a href="codec/">Beacon Encode/Decode Utility</a> <br>
<br> Source code <a href="https://github.com/moneysocket/beacon-codec">here</a>.
</p>
<h2> Buyer and Seller </h2>
<p>
An example of Moneysocket protocol extension in the form of a demo of a <a href="bs-demo/buyer.html">Buyer</a> and a <a href="bs-demo/seller.html">Seller</a> that can connect and exchange money for specific digital goods of their own defintion. <br>
<br> Source code <a href="https://github.com/moneysocket/bs-demo">here</a>.
</p>
</center>
</body>
</html>