-
Notifications
You must be signed in to change notification settings - Fork 45
/
playground.html
224 lines (221 loc) · 6.22 KB
/
playground.html
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
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
<html>
<head>
<style>
body {
margin: 0;
font-family: Menlo, monaco, Courier;
font-size: 12px;
}
.container {
padding: 10px;
margin: 0 auto;
padding-bottom: 200px;
padding-top: 50px;
max-width: 800px;
}
.row.noflex {
display: block;
}
.row {
display: flex;
padding: 10px;
}
.row .item {
flex-grow: 1;
}
.row .button.selected {
background: gold;
}
.row h2 {
font-size: 15px;
}
.row .button {
text-align: center;
color: black;
padding: 20px;
text-decoration: none;
margin: 5px;
border: 2px solid gray;
}
.row input[type=text], .row textarea {
padding: 10px;
text-align: left;
}
.row pre {
background: #2a2a2a;
color: silver;
width: 100%;
box-sizing: border-box;
padding: 10px;
border-radius: 3px;
white-space: pre-wrap;
white-space: -moz-pre-wrap;
white-space: -pre-wrap;
white-space: -o-pre-wrap;
word-wrap: break-word;
}
#send {
background: gold;
padding: 20px;
flex-grow: 1;
text-decoration: none;
text-align: center;
color: black;
font-weight: bold;
font-size: 20px;
}
#txconfirmation a {
padding: 50px;
text-align: center;
border: 2px dotted cornflowerblue;
color: cornflowerblue;
font-size: 14px;
flex-grow: 1;
font-weight: bold;
}
</style>
<meta name="viewport" content="width=device-width, initial-scale=1">
<script src="https://unpkg.com/[email protected]/dist/datapay.min.js"></script>
<script>
var endpoint = "https://api.mattercloud.net/api/v3/main/tx/send"; // alternative: 'https://api.whatsonchain.com/v1/bsv/main/tx/raw'
var rawTxKey = 'rawtx'; // use 'txhex' for api.whatsonchain.com
var apiKey = ''; // only needed for api.mattercloud.net when exeeding 3 tx per 15 seconds.
// Get the API key from https://www.mattercloud.net/#get-api-key
var transaction = null;
var selected = null;
var sending = false;
document.addEventListener("DOMContentLoaded", function(event) {
var messageEl = document.querySelector("#message");
var keyEl = document.querySelector("#privatekey");
var codeEl = document.querySelector("#code");
var txEl = document.querySelector("#tx");
var hexEl = document.querySelector("#hex");
var memoEl = document.querySelector("#memo");
var bpEl = document.querySelector("#blockpress");
var sendEl = document.querySelector("#send");
var confirmEl = document.querySelector("#txconfirmation");
messageEl.oninput = function(e) {
update()
}
keyEl.oninput = function(e) {
update()
}
memoEl.onclick = function(e) {
selected = '0x6d02'
e.target.className = "button item selected";
bpEl.className = "button item";
update()
return false;
}
bpEl.onclick = function(e) {
selected = '0x8d02'
e.target.className = "button item selected";
memoEl.className = "button item";
update()
return false;
}
sendEl.onclick = function(e) {
if (!sending) {
var v = transaction.verify();
if (typeof v === 'string') {
alert(v);
} else {
e.target.textContent = "Sending...";
sending = true;
header = {
'Accept': 'application/json',
'Content-Type': 'application/json'
};
if (apiKey.length > 0)
header.apikey = apiKey;
fetch(endpoint, {
headers: header,
method: 'POST',
body: `{"${rawTxKey}": "${transaction.toString()}"}`
})
.then(function(res) {
return res.json();
})
.then(function(response) {
console.log("Response = ", response)
e.target.textContent = "Sent!";
confirmEl.innerHTML = "<a href='https://whatsonchain.com/tx/" + response.txid + "' target='_blank'>Success! Click to view Transaction</a>";
})
}
}
return false;
}
var update = function() {
var dsl = {};
if (selected) {
if (messageEl.value.length > 0) {
dsl.data = [selected, messageEl.value];
}
if (keyEl.value.length > 0) {
dsl.pay = { key: keyEl.value }
}
codeEl.textContent = JSON.stringify(dsl, null, 2)
datapay.build(dsl, function(err, tx) {
transaction = tx;
txEl.textContent = JSON.stringify(tx.toObject(), null, 2);
hexEl.textContent = tx.toString()
})
}
}
update()
})
</script>
</head>
<body>
<div class='container'>
<div class='row noflex'>
<h1>Bitcoin SV Microblogging Playground</h1>
This website uses an open source Bitcoin SV library called <a href='https://github.com/unwriter/datapay'>Datapay</a> to construct and broadcast OP_RETURN Bitcoin SV Transactions.<br><br>
1. All the signing takes place 100% on the client side so your private key is safe. (Check out the source code to make sure)<br><br>
2. After the signed transaction is constructed, you can broadcast it to Bitcoin SV network by pressing the "Send" button. This will broadcast the signed transaction through a public JSON-RPC endpoint.
</div>
<div class='row'>
<h2>Step 1. Select a protocol</h2>
</div>
<div class='row'>
<a class='button item' href='#' id='memo'>Generate a post for Memo.cash</a>
<a class='button item' href='#' id='blockpress'>Generate a post for Blockpress</a>
</div>
<div class='row'>
<h2>Step 2. Write a message</h2>
</div>
<div class='row'>
<textarea id='message' class='item' placeholder='write a message'></textarea>
</div>
<div class='row'>
<h2>Step 3. Paste the private key</h2>
</div>
<div class='row'>
<input type='text' id='privatekey' placeholder='enter private key' class='item'>
</div>
<div class='row'>
<h2>Step 4. Review the DSL</h2>
</div>
<div class='row'>
<pre id='code' class='item'>generated DSL will show up here</pre>
</div>
<div class='row'>
<h2>Step 5. The DSL generates the following transaction</h2>
</div>
<div class='row'>
<pre id='tx' class='item'>generated Transaction will show up here</pre>
</div>
<div class='row'>
<h2>Step 6. Send the hex encoded transaction!</h2>
</div>
<div class='row'>
<pre id='hex' class='item'>a hex encoded version of the transaction will show up here</pre>
</div>
<div class='row'>
<a href='#' id='send'>Send</a>
</div>
<div class='row' id='txconfirmation'>
</div>
</div>
</body>
</html>