-
Notifications
You must be signed in to change notification settings - Fork 188
/
sendNas.html
429 lines (390 loc) · 18.9 KB
/
sendNas.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
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
<!doctype html>
<html>
<head>
<meta charset=utf-8>
<link rel="icon shortcut" href=img/logo.png type=image/png>
<link rel=apple-touch-icon href=img/logo.png>
<link rel=stylesheet href=lib/bootstrap-4.0.0-dist/css/bootstrap.min.css>
<link rel=stylesheet href=css/base.css>
<link rel=stylesheet href=css/ui-block.css>
<meta name=viewport content="width=device-width">
<title>NEBULAS</title>
<style>
.check_list {
width: 400px;
height: 500px;
background-color: #f5f5f5;
position: absolute;
margin-left: 30%;
margin-top: -50%;
border-radius: 50px;
padding: 20px;
}
.check_list .data {
width: 100%;
}
.check_list .check {
margin-top: 60px;
}
.active1 {
display: none;
}
.transaction {
margin-top: 1rem;
display: none;
}
</style>
</head>
<body>
<div class=logo-main></div>
<div class=header></div>
<div class="container select-wallet-file"></div>
<div id=send class="container send">
<div class="form-group row">
<div class=col-md-6>
<label data-i18n=send-nas/from-address>From Address</label>
<div class="from icon-address" data-disabled></div>
</div>
<div class=col-md-6>
<label data-i18n=send-nas/balance>Balance</label>
<div class=number-comma data-disabled data-id=balance data-unit=currency data-currency-selector></div>
</div>
</div>
<div class="form-group row">
<div class=col>
<label data-i18n=send-nas/to-address>To Address</label>
<div class="icon-address to"></div>
</div>
<div class=col>
<label for=amount data-i18n=send-nas/amount>Value / Amount to Send</label>
<div class=number-comma data-data-i18n=amount data-id=amount data-unit=currency data-validate="required number eqgt0"></div>
</div>
</div>
<div class="form-group row">
<div class=col>
<label for=limit>
<span data-i18n=gas-limit>Gas Limit</span>
</label>
<div class=number-comma data-data-i18n=amount data-id=limit data-validate="required number gt0" data-value=200000></div>
</div>
<div class=col>
<label for=price>
<span data-i18n=gas-price>Gas Price</span>
<i>( 1 NAS = 1EWei = 10
<sup>18</sup> Wei )</i>
</label>
<div class=number-comma data-data-i18n=amount data-id=price data-unit=wei data-validate="required number gt0" data-value=20000000000></div>
</div>
</div>
<div class=form-group>
<label for=nonce>Nonce</label>
<input class=form-control id=nonce data-validate-order-matters="required number gt0">
</div>
<button id=generate class="btn btn-block" data-i18n=send-nas/button/generate>Generate Transaction</button>
</div>
<!-- send -->
<div id=transaction class="container transaction">
<div class=row>
<div class=col-6>
<div class=form-group>
<label for=raw data-i18n=send-nas/raw>Raw Transaction</label>
<!-- TODO: TRX -->
<textarea class=form-control rows=8 id=raw disabled></textarea>
</div>
<div class=form-group>
<label for=signed data-i18n=send-nas/signed>Signed Transaction</label>
<textarea class=form-control rows=8 id=signed disabled></textarea>
</div>
</div>
<div class="col-6 text-center">
<label data-i18n=send-nas/signed_qr>Signed Transaction QR</label>
<div id=addressqr></div>
</div>
</div>
<button type=button id=send_transaction class="btn btn-block" data-toggle=modal data-target=#modal-confirm data-i18n=send-nas/send>Send </button>
<!-- Transaction -->
<div class="container transaction" id=receipt_div>
<span data-i18n=contract/txhash></span>
<i data-i18n=contract/clickToCheck></i>↓
<a id=receipt></a>
<div class=form-group>
<label for=signed data-i18n=send-nas/receipt>receipt :</label>
<textarea id=receipt_state rows=6 class=form-control disabled></textarea>
</div>
</div>
</div>
<!-- Modal -->
<div class="fade modal" id=modal-confirm tabindex=-1 role=dialog aria-labelledby=exampleModalLabel aria-hidden=true>
<div class=modal-dialog role=document>
<div class=modal-content>
<div class=modal-header>
<h5 class=modal-title id=exampleModalLabel data-i18n=send-nas/transfer_msg>transfer message :</h5>
<button type=button class=close data-dismiss=modal aria-label=Close>
<span aria-hidden=true>×</span>
</button>
</div>
<div class=modal-body>
<div>
<label data-i18n=send-nas/from-address>From Address</label>
<input type=text class=form-control id=for_addr disabled>
</div>
<div>
<label data-i18n=send-nas/to-address>To Address</label>
<input type=text class=form-control id=to_addr disabled>
</div>
<div>
<label for=amount data-i18n=send-nas/amount>Value / Amount to Send</label>
<div class=number-comma data-data-i18n=amount data-id=value data-unit=currency data-disabled></div>
</div>
<!-- <div class=data>
<label>data</label>
<input type=text class=data id=data disabled style="width: 100%;">
</div> -->
</div>
<div class=modal-footer>
<button class="btn btn-secondary" data-dismiss=modal data-i18n=send-nas/close>Close</button>
<button class="btn btn-primary s" data-dismiss=modal data-i18n=send-nas/check></button>
</div>
</div>
</div>
</div>
<div class=footer></div>
<script src=lib/jquery-3.3.1.min.js></script>
<script src=lib/bootstrap-4.0.0-dist/js/bootstrap.bundle.min.js data-depends=jquery.slim></script>
<script src=lib/bootbox.min.js data-depends="bootstrap jquery.slim"></script>
<script src=lib/jquery.qrcode.min.js data-depends=jquery></script>
<script src=lib/blockies.min.js></script>
<script src=lib/nebulas.js></script>
<script src=js/1-localSave.js></script>
<script src=js/home.v1.js></script>
<script src=js/i18n.js data-depends=jquery.slim></script>
<script src=js/ui-block.js data-depends="bootbox blockies jquery.slim i18n.js nebulas.js"></script>
<script>
"use strict";
var nebulas = require("nebulas"),
Transaction = nebulas.Transaction,
Utils = nebulas.Utils,
Unit = nebulas.Unit,
neb = new nebulas.Neb(),
validateAll = uiBlock.validate(),
gLastGenerateInfo = {},
gAccount, gTx;
neb.setRequest(new nebulas.HttpRequest(localSave.getItem("apiPrefix") || "https://testnet.nebulas.io/"));
$("#generate").on("click", onClickGenerate);
$("#modal-confirm .s").on("click", onClickModalConfirmS);
$("#send_transaction").on("click", onClickSendTransaction);
uiBlock.insert({
footer: ".footer",
header: ".header",
iconAddress: ".icon-address",
logoMain: ".logo-main",
numberComma: ".number-comma",
selectWalletFile: [".select-wallet-file", onUnlockFile]
});
function onCurrencyChanged() {
updateBalance()
}
uiBlock.addCurrencyChangedListener(onCurrencyChanged);
function onUnlockFile(swf, fileJson, account, password) { //TODO: 对外函数不要用简称
var address;
try {
account.fromKey(fileJson, password);
address = account.getAddressString();
gAccount = account;
$(".icon-address.from input").val(address).trigger("input"); // gen icon from addr, needs trigger 'input' event if via set o.value
$("#unlock").hide();
$("#send").show();
updateBalance();
} catch (e) {
// this catches e thrown by nebulas.js!account
bootbox.dialog({
backdrop: true,
onEscape: true,
message: localSave.getItem("lang") == "en" ? e : "keystore 文件错误, 或者密码错误",
size: "large",
title: "Error"
});
}
}
function updateBalance() {
if (!gAccount) {
return;
}
var addr = gAccount.getAddressString();
var currency = uiBlock.currency;
var contractAddr = uiBlock.getContractAddr(uiBlock.currency);
$("#balance").val("").trigger("input");
if (currency == "NAS") {
neb.api.getAccountState(addr)
.then(function (resp) {
if (currency != uiBlock.currency) {
return;
}
if (resp.error) {
throw new Error(resp.error);
}
var nas = Unit.fromBasic(resp.balance, "nas").toString(10);
$("#balance").val(nas).trigger("input"); // add comma & unit from value, needs trigger 'input' event if via set o.value
$("#nonce").val(parseInt(resp.nonce || 0) + 1);
})
.catch(function (e) {
if (currency != uiBlock.currency) {
return;
}
// this catches e thrown by nebulas.js!neb
bootbox.dialog({
backdrop: true,
onEscape: true,
message: i18n.apiErrorToText(e.message),
size: "large",
title: "Error"
});
});
} else {
var contract = {"function": "balanceOf", "args": "[\"" + addr + "\"]"};
neb.api.call({"from": addr, "to": uiBlock.getContractAddr(uiBlock.currency), "gasLimit": 200000, "gasPrice":1000000, "value": 0, "contract": contract})
.then(function (resp) {
if (currency != uiBlock.currency) {
return;
}
if (resp.error) {
throw new Error(resp.error);
}
var b = resp.result.replace(/"/ig, "");
var balance;
if(uiBlock.currency === "NAX") {
balance = Unit.fromBasic(b, "gwei").toString();
} else {
balance = Unit.fromBasic(b, "nas").toString(10);
}
$("#balance").val(balance).trigger("input"); // add comma & unit from value, needs trigger 'input' event if via set o.value
})
.catch(function (e) {
if (currency != uiBlock.currency) {
return;
}
// this catches e thrown by nebulas.js!neb
bootbox.dialog({
backdrop: true,
onEscape: true,
message: i18n.apiErrorToText(e.message),
size: "large",
title: "Error"
});
});
neb.api.getAccountState(addr)
.then(function (resp) {
if (!resp.error) {
$("#nonce").val(parseInt(resp.nonce || 0) + 1);
}
})
.catch(function (e) {
});
}
}
function onClickGenerate() {
var fromAddress, toAddress, balance, amount, gaslimit, gasprice, nonce, bnAmount;
if (validateAll()) {
fromAddress = $(".icon-address.from input").val();
toAddress = $(".icon-address.to input").val();
balance = $("#balance").val();
amount = $("#amount").val();
gaslimit = $("#limit").val();
gasprice = $("#price").val();
nonce = $("#nonce").val();
if (gLastGenerateInfo.fromAddress != fromAddress ||
gLastGenerateInfo.toAddress != toAddress ||
gLastGenerateInfo.balance != balance ||
gLastGenerateInfo.amount != amount ||
gLastGenerateInfo.gaslimit != gaslimit ||
gLastGenerateInfo.gasprice != gasprice ||
gLastGenerateInfo.nonce != nonce) try { //TODO: 加括号
var tmp = Unit.fromBasic(Utils.toBigNumber(gaslimit)
.times(Utils.toBigNumber(gasprice)), "nas");
if (Utils.toBigNumber(balance).lt(Utils.toBigNumber(amount).plus(tmp))) //TODO: 加括号; tmp-->max gas used
if (Utils.toBigNumber(balance).lt(tmp))
bnAmount = Utils.toBigNumber(0); //TODO: 逻辑是否必须有
else
bnAmount = Utils.toBigNumber(balance).minus(Utils.toBigNumber(tmp));
var a = amount.split(".");
var amountValid = a.length == 1 || a[1].length <= 18;
if (uiBlock.currency == "NAS") {
if (!amountValid) throw new Error("Invalid value! The minimum unit is wei (1^-18nas) ");
gTx = new Transaction(parseInt(localSave.getItem("chainId")), gAccount, toAddress, Unit.nasToBasic(Utils.toBigNumber(amount)), parseInt(nonce), gasprice, gaslimit);
} else {
if (!amountValid) throw new Error("Invalid value! The minimum unit is wei (1^-18" + uiBlock.currency.toLowerCase() + ") ");
var transfer_amount;
if(uiBlock.currency === "NAX") {
transfer_amount = Unit.toBasic(Utils.toBigNumber(amount), "gwei").toString();
} else {
transfer_amount = Unit.nasToBasic(Utils.toBigNumber(amount)).toString(10);
}
var contract = {"source": "", "sourceType": "js", "function": "transfer", "args": "[\"" + toAddress + "\", \"" + transfer_amount + "\"]", "binary": "", "type": "call"};
gTx = new Transaction(parseInt(localSave.getItem("chainId")), gAccount, uiBlock.getContractAddr(uiBlock.currency), Unit.nasToBasic(Utils.toBigNumber("0")), parseInt(nonce), gasprice, gaslimit, contract);
}
gTx.signTransaction();
$("#raw").val(gTx.toString());
$("#signed").val(gTx.toProtoString());
$("<div id=addressqr></div>")
.qrcode(gTx.toProtoString())
.replaceAll('#addressqr');
$("#transaction").show();
gLastGenerateInfo.fromAddress = fromAddress;
gLastGenerateInfo.toAddress = toAddress;
gLastGenerateInfo.balance = balance;
gLastGenerateInfo.amount = amount;
gLastGenerateInfo.gaslimit = gaslimit;
gLastGenerateInfo.gasprice = gasprice;
gLastGenerateInfo.nonce = nonce;
} catch (e) {
bootbox.dialog({
backdrop: true,
onEscape: true,
message: e,
size: "large",
title: "Error"
});
}
}
}
function onClickSendTransaction() {
$("#for_addr").val($(".icon-address.from input").val());
$("#to_addr").val($(".icon-address.to input").val());
$("#value").val($("#amount").val()).trigger("input");
}
function onClickModalConfirmS() {
var mTxHash;
gTx && neb.api.sendRawTransaction(gTx.toProtoString()) //TODO: GTX为空是 抛异常
.then(function (resp) {
// console.log("sendRawTransaction resp: " + JSON.stringify(resp));
mTxHash = resp.txhash;
return neb.api.getTransactionReceipt(mTxHash);
}).then(function (resp) {
$("#receipt").text(mTxHash).prop("href", "check.html?" + mTxHash);
$("#receipt_state").val(JSON.stringify(resp));
$("#receipt_div").show();
// TODO: 重新点击需要reset页面状态,清理setTimeout ( 是否需要 ,如果需要的话给用户认知 )
setTimeout(function () {
neb.api.getAccountState($(".icon-address.from input").val())
.then(function (resp) {
// console.log("getAccountState resp: " + JSON.stringify(resp));
var balanceNas = Unit.fromBasic(resp.balance, "nas").toString(10);
$("#balance").val(balanceNas);
$("#nonce").val(resp.nonce);
}).catch(function (err) {
// TODO error
});
}, 60 * 1000);
}).catch(function (o) {
bootbox.dialog({
backdrop: true,
onEscape: true,
message: i18n.apiErrorToText(o.message),
size: "large",
title: "Error"
});
});
}
</script>
</body>
</html>