@leocuvee/turtlecoin-utils 0.0.14
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/.github/workflows/ci.yml +27 -0
- package/.idea/codeStyles/codeStyleConfig.xml +5 -0
- package/.idea/inspectionProfiles/Project_Default.xml +7 -0
- package/.idea/misc.xml +6 -0
- package/.idea/modules.xml +8 -0
- package/.idea/turtlecoin-utils.iml +12 -0
- package/.idea/vcs.xml +6 -0
- package/.travis.yml +11 -0
- package/CONTRIBUTING.md +3 -0
- package/LICENSE +674 -0
- package/README.md +203 -0
- package/config.json +7 -0
- package/docs/.nojekyll +0 -0
- package/docs/CNAME +1 -0
- package/docs/assets/css/main.css +2321 -0
- package/docs/assets/images/icons.png +0 -0
- package/docs/assets/images/icons@2x.png +0 -0
- package/docs/assets/images/widgets.png +0 -0
- package/docs/assets/images/widgets@2x.png +0 -0
- package/docs/assets/js/main.js +1 -0
- package/docs/assets/js/search.js +3 -0
- package/docs/classes/address.html +964 -0
- package/docs/classes/addressprefix.html +431 -0
- package/docs/classes/block.html +965 -0
- package/docs/classes/blocktemplate.html +695 -0
- package/docs/classes/cryptonote.html +1137 -0
- package/docs/classes/ed25519.keypair.html +400 -0
- package/docs/classes/ed25519.keys.html +373 -0
- package/docs/classes/extranoncetag.extranoncedata.html +454 -0
- package/docs/classes/extranoncetag.extranoncepaymentid.html +453 -0
- package/docs/classes/extranoncetag.iextranonce.html +347 -0
- package/docs/classes/extratag.extramergedmining.html +494 -0
- package/docs/classes/extratag.extranonce.html +530 -0
- package/docs/classes/extratag.extrapadding.html +456 -0
- package/docs/classes/extratag.extrapublickey.html +460 -0
- package/docs/classes/extratag.iextratag.html +355 -0
- package/docs/classes/levinpacket.html +674 -0
- package/docs/classes/levinpayloads.handshake.html +731 -0
- package/docs/classes/levinpayloads.ilevinpayload.html +318 -0
- package/docs/classes/levinpayloads.liteblock.html +494 -0
- package/docs/classes/levinpayloads.missingtransactions.html +494 -0
- package/docs/classes/levinpayloads.newblock.html +540 -0
- package/docs/classes/levinpayloads.newtransactions.html +402 -0
- package/docs/classes/levinpayloads.peerentry.html +610 -0
- package/docs/classes/levinpayloads.ping.html +450 -0
- package/docs/classes/levinpayloads.rawblock.html +344 -0
- package/docs/classes/levinpayloads.requestchain.html +402 -0
- package/docs/classes/levinpayloads.requestgetobjects.html +448 -0
- package/docs/classes/levinpayloads.requesttxpool.html +402 -0
- package/docs/classes/levinpayloads.responsechain.html +494 -0
- package/docs/classes/levinpayloads.responsegetobjects.html +540 -0
- package/docs/classes/levinpayloads.timedsync.html +540 -0
- package/docs/classes/multisig.html +930 -0
- package/docs/classes/multisigmessage.html +694 -0
- package/docs/classes/parentblock.html +347 -0
- package/docs/classes/transaction.html +925 -0
- package/docs/classes/transactioninputs.coinbaseinput.html +390 -0
- package/docs/classes/transactioninputs.itransactioninput.html +321 -0
- package/docs/classes/transactioninputs.keyinput.html +459 -0
- package/docs/classes/transactionoutputs.itransactionoutput.html +317 -0
- package/docs/classes/transactionoutputs.keyoutput.html +422 -0
- package/docs/enums/extranoncetag.noncetagtype.html +246 -0
- package/docs/enums/extratag.extratagtype.html +280 -0
- package/docs/enums/levinprotocol.commandtype.html +391 -0
- package/docs/enums/transactioninputs.inputtype.html +246 -0
- package/docs/enums/transactionoutputs.outputtype.html +229 -0
- package/docs/globals.html +238 -0
- package/docs/index.html +271 -0
- package/docs/interfaces/interfaces.config.html +590 -0
- package/docs/interfaces/interfaces.daemonblocktemplateresponse.html +323 -0
- package/docs/interfaces/interfaces.generatedinput.html +304 -0
- package/docs/interfaces/interfaces.generatedoutput.html +285 -0
- package/docs/interfaces/interfaces.inputkeys.html +304 -0
- package/docs/interfaces/interfaces.ipreparedtransaction.html +268 -0
- package/docs/interfaces/interfaces.output.html +399 -0
- package/docs/interfaces/interfaces.preparedringsignature.html +377 -0
- package/docs/interfaces/interfaces.preparedtransaction.html +329 -0
- package/docs/interfaces/interfaces.randomoutput.html +285 -0
- package/docs/interfaces/interfaces.transactionrecipient.html +285 -0
- package/docs/interfaces/multisiginterfaces.partialkeyimage.html +277 -0
- package/docs/interfaces/multisiginterfaces.partialsigningkey.html +277 -0
- package/docs/modules/ed25519.html +195 -0
- package/docs/modules/extranoncetag.html +208 -0
- package/docs/modules/extratag.html +216 -0
- package/docs/modules/interfaces.html +231 -0
- package/docs/modules/levinpayloads.html +247 -0
- package/docs/modules/levinprotocol.html +191 -0
- package/docs/modules/multisiginterfaces.html +195 -0
- package/docs/modules/transactioninputs.html +208 -0
- package/docs/modules/transactionoutputs.html +204 -0
- package/index.d.ts +417 -0
- package/index.js +1508 -0
- package/lib/base58.js +220 -0
- package/lib/biginteger.js +1591 -0
- package/lib/blocktemplate.js +408 -0
- package/lib/crypto.js +19698 -0
- package/lib/mnemonic.js +1204 -0
- package/lib/nacl-fast-cn.js +608 -0
- package/lib/ringsigs.js +24262 -0
- package/lib/sha3.js +477 -0
- package/package.json +58 -0
- package/src/Address.ts +433 -0
- package/src/AddressPrefix.ts +117 -0
- package/src/Block.ts +556 -0
- package/src/BlockTemplate.ts +289 -0
- package/src/Common.ts +105 -0
- package/src/Config.ts +66 -0
- package/src/CryptoNote.ts +1072 -0
- package/src/LevinPacket.ts +366 -0
- package/src/Multisig.ts +600 -0
- package/src/MultisigMessage.ts +374 -0
- package/src/ParentBlock.ts +39 -0
- package/src/Transaction.ts +628 -0
- package/src/Types/ED25519.ts +187 -0
- package/src/Types/IExtraNonce.ts +225 -0
- package/src/Types/IExtraTag.ts +507 -0
- package/src/Types/ITransaction.ts +230 -0
- package/src/Types/ITransactionInput.ts +190 -0
- package/src/Types/ITransactionOutput.ts +108 -0
- package/src/Types/LevinPayloads.ts +1576 -0
- package/src/Types/MultisigInterfaces.ts +65 -0
- package/src/Types/PortableStorage.ts +289 -0
- package/src/Types.ts +36 -0
- package/src/index.ts +36 -0
- package/test/template.json +6 -0
- package/test/test.js +1457 -0
- package/tests/blocktemplate.json +6 -0
- package/tests/tests.js +215 -0
- package/tsconfig.json +15 -0
- package/tslint.json +36 -0
- package/typedoc.json +10 -0
- package/webpack.config.js +15 -0
|
@@ -0,0 +1,540 @@
|
|
|
1
|
+
<!doctype html>
|
|
2
|
+
<html class="default no-js">
|
|
3
|
+
<head>
|
|
4
|
+
<meta charset="utf-8">
|
|
5
|
+
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
|
6
|
+
<title>TimedSync | TurtleCoin-Utils</title>
|
|
7
|
+
<meta name="description" content="">
|
|
8
|
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
|
9
|
+
<link rel="stylesheet" href="../assets/css/main.css">
|
|
10
|
+
</head>
|
|
11
|
+
<body>
|
|
12
|
+
<header>
|
|
13
|
+
<div class="tsd-page-toolbar">
|
|
14
|
+
<div class="container">
|
|
15
|
+
<div class="table-wrap">
|
|
16
|
+
<div class="table-cell" id="tsd-search" data-index="../assets/js/search.js" data-base="..">
|
|
17
|
+
<div class="field">
|
|
18
|
+
<label for="tsd-search-field" class="tsd-widget search no-caption">Search</label>
|
|
19
|
+
<input id="tsd-search-field" type="text" />
|
|
20
|
+
</div>
|
|
21
|
+
<ul class="results">
|
|
22
|
+
<li class="state loading">Preparing search index...</li>
|
|
23
|
+
<li class="state failure">The search index is not available</li>
|
|
24
|
+
</ul>
|
|
25
|
+
<a href="../index.html" class="title">TurtleCoin-Utils</a>
|
|
26
|
+
</div>
|
|
27
|
+
<div class="table-cell" id="tsd-widgets">
|
|
28
|
+
<div id="tsd-filter">
|
|
29
|
+
<a href="#" class="tsd-widget options no-caption" data-toggle="options">Options</a>
|
|
30
|
+
<div class="tsd-filter-group">
|
|
31
|
+
<div class="tsd-select" id="tsd-filter-visibility">
|
|
32
|
+
<span class="tsd-select-label">All</span>
|
|
33
|
+
<ul class="tsd-select-list">
|
|
34
|
+
<li data-value="public">Public</li>
|
|
35
|
+
<li data-value="protected">Public/Protected</li>
|
|
36
|
+
<li data-value="private" class="selected">All</li>
|
|
37
|
+
</ul>
|
|
38
|
+
</div>
|
|
39
|
+
<input type="checkbox" id="tsd-filter-inherited" checked />
|
|
40
|
+
<label class="tsd-widget" for="tsd-filter-inherited">Inherited</label>
|
|
41
|
+
</div>
|
|
42
|
+
</div>
|
|
43
|
+
<a href="#" class="tsd-widget menu no-caption" data-toggle="menu">Menu</a>
|
|
44
|
+
</div>
|
|
45
|
+
</div>
|
|
46
|
+
</div>
|
|
47
|
+
</div>
|
|
48
|
+
<div class="tsd-page-title">
|
|
49
|
+
<div class="container">
|
|
50
|
+
<ul class="tsd-breadcrumb">
|
|
51
|
+
<li>
|
|
52
|
+
<a href="../globals.html">Globals</a>
|
|
53
|
+
</li>
|
|
54
|
+
<li>
|
|
55
|
+
<a href="../modules/levinpayloads.html">LevinPayloads</a>
|
|
56
|
+
</li>
|
|
57
|
+
<li>
|
|
58
|
+
<a href="levinpayloads.timedsync.html">TimedSync</a>
|
|
59
|
+
</li>
|
|
60
|
+
</ul>
|
|
61
|
+
<h1>Class TimedSync</h1>
|
|
62
|
+
</div>
|
|
63
|
+
</div>
|
|
64
|
+
</header>
|
|
65
|
+
<div class="container container-main">
|
|
66
|
+
<div class="row">
|
|
67
|
+
<div class="col-8 col-content">
|
|
68
|
+
<section class="tsd-panel tsd-hierarchy">
|
|
69
|
+
<h3>Hierarchy</h3>
|
|
70
|
+
<ul class="tsd-hierarchy">
|
|
71
|
+
<li>
|
|
72
|
+
<span class="target">TimedSync</span>
|
|
73
|
+
</li>
|
|
74
|
+
</ul>
|
|
75
|
+
</section>
|
|
76
|
+
<section class="tsd-panel">
|
|
77
|
+
<h3>Implements</h3>
|
|
78
|
+
<ul class="tsd-hierarchy">
|
|
79
|
+
<li><a href="levinpayloads.ilevinpayload.html" class="tsd-signature-type">ILevinPayload</a></li>
|
|
80
|
+
</ul>
|
|
81
|
+
</section>
|
|
82
|
+
<section class="tsd-panel-group tsd-index-group">
|
|
83
|
+
<h2>Index</h2>
|
|
84
|
+
<section class="tsd-panel tsd-index-panel">
|
|
85
|
+
<div class="tsd-index-content">
|
|
86
|
+
<section class="tsd-index-section ">
|
|
87
|
+
<h3>Accessors</h3>
|
|
88
|
+
<ul class="tsd-index-list">
|
|
89
|
+
<li class="tsd-kind-accessor tsd-parent-kind-class"><a href="levinpayloads.timedsync.html#current_height" class="tsd-kind-icon">current_<wbr>height</a></li>
|
|
90
|
+
<li class="tsd-kind-accessor tsd-parent-kind-class"><a href="levinpayloads.timedsync.html#local_peerlist" class="tsd-kind-icon">local_<wbr>peerlist</a></li>
|
|
91
|
+
<li class="tsd-kind-accessor tsd-parent-kind-class"><a href="levinpayloads.timedsync.html#local_time" class="tsd-kind-icon">local_<wbr>time</a></li>
|
|
92
|
+
<li class="tsd-kind-accessor tsd-parent-kind-class"><a href="levinpayloads.timedsync.html#top_id" class="tsd-kind-icon">top_<wbr>id</a></li>
|
|
93
|
+
</ul>
|
|
94
|
+
</section>
|
|
95
|
+
<section class="tsd-index-section ">
|
|
96
|
+
<h3>Methods</h3>
|
|
97
|
+
<ul class="tsd-index-list">
|
|
98
|
+
<li class="tsd-kind-method tsd-parent-kind-class"><a href="levinpayloads.timedsync.html#tobuffer" class="tsd-kind-icon">to<wbr>Buffer</a></li>
|
|
99
|
+
<li class="tsd-kind-method tsd-parent-kind-class"><a href="levinpayloads.timedsync.html#tostring" class="tsd-kind-icon">to<wbr>String</a></li>
|
|
100
|
+
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-static"><a href="levinpayloads.timedsync.html#from" class="tsd-kind-icon">from</a></li>
|
|
101
|
+
</ul>
|
|
102
|
+
</section>
|
|
103
|
+
</div>
|
|
104
|
+
</section>
|
|
105
|
+
</section>
|
|
106
|
+
<section class="tsd-panel-group tsd-member-group ">
|
|
107
|
+
<h2>Accessors</h2>
|
|
108
|
+
<section class="tsd-panel tsd-member tsd-kind-accessor tsd-parent-kind-class">
|
|
109
|
+
<a name="current_height" class="tsd-anchor"></a>
|
|
110
|
+
<h3>current_<wbr>height</h3>
|
|
111
|
+
<ul class="tsd-signatures tsd-kind-accessor tsd-parent-kind-class">
|
|
112
|
+
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">get</span> current_height<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span></li>
|
|
113
|
+
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">set</span> current_height<span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
|
114
|
+
</ul>
|
|
115
|
+
<ul class="tsd-descriptions">
|
|
116
|
+
<li class="tsd-description">
|
|
117
|
+
<aside class="tsd-sources">
|
|
118
|
+
<ul>
|
|
119
|
+
<li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/Types/LevinPayloads.ts#L1427">Types/LevinPayloads.ts:1427</a></li>
|
|
120
|
+
</ul>
|
|
121
|
+
</aside>
|
|
122
|
+
<div class="tsd-comment tsd-typography">
|
|
123
|
+
<div class="lead">
|
|
124
|
+
<p>The current height of the node</p>
|
|
125
|
+
</div>
|
|
126
|
+
</div>
|
|
127
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4>
|
|
128
|
+
</li>
|
|
129
|
+
<li class="tsd-description">
|
|
130
|
+
<aside class="tsd-sources">
|
|
131
|
+
<ul>
|
|
132
|
+
<li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/Types/LevinPayloads.ts#L1431">Types/LevinPayloads.ts:1431</a></li>
|
|
133
|
+
</ul>
|
|
134
|
+
</aside>
|
|
135
|
+
<div class="tsd-comment tsd-typography">
|
|
136
|
+
<div class="lead">
|
|
137
|
+
<p>The current height of the node</p>
|
|
138
|
+
</div>
|
|
139
|
+
</div>
|
|
140
|
+
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
141
|
+
<ul class="tsd-parameters">
|
|
142
|
+
<li>
|
|
143
|
+
<h5>value: <span class="tsd-signature-type">number</span></h5>
|
|
144
|
+
</li>
|
|
145
|
+
</ul>
|
|
146
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
|
147
|
+
</li>
|
|
148
|
+
</ul>
|
|
149
|
+
</section>
|
|
150
|
+
<section class="tsd-panel tsd-member tsd-kind-accessor tsd-parent-kind-class">
|
|
151
|
+
<a name="local_peerlist" class="tsd-anchor"></a>
|
|
152
|
+
<h3>local_<wbr>peerlist</h3>
|
|
153
|
+
<ul class="tsd-signatures tsd-kind-accessor tsd-parent-kind-class">
|
|
154
|
+
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">get</span> local_peerlist<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="levinpayloads.peerentry.html" class="tsd-signature-type">PeerEntry</a><span class="tsd-signature-symbol">[]</span></li>
|
|
155
|
+
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">set</span> local_peerlist<span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><a href="levinpayloads.peerentry.html" class="tsd-signature-type">PeerEntry</a><span class="tsd-signature-symbol">[]</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
|
156
|
+
</ul>
|
|
157
|
+
<ul class="tsd-descriptions">
|
|
158
|
+
<li class="tsd-description">
|
|
159
|
+
<aside class="tsd-sources">
|
|
160
|
+
<ul>
|
|
161
|
+
<li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/Types/LevinPayloads.ts#L1454">Types/LevinPayloads.ts:1454</a></li>
|
|
162
|
+
</ul>
|
|
163
|
+
</aside>
|
|
164
|
+
<div class="tsd-comment tsd-typography">
|
|
165
|
+
<div class="lead">
|
|
166
|
+
<p>The list of locally known peers</p>
|
|
167
|
+
</div>
|
|
168
|
+
</div>
|
|
169
|
+
<h4 class="tsd-returns-title">Returns <a href="levinpayloads.peerentry.html" class="tsd-signature-type">PeerEntry</a><span class="tsd-signature-symbol">[]</span></h4>
|
|
170
|
+
</li>
|
|
171
|
+
<li class="tsd-description">
|
|
172
|
+
<aside class="tsd-sources">
|
|
173
|
+
<ul>
|
|
174
|
+
<li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/Types/LevinPayloads.ts#L1458">Types/LevinPayloads.ts:1458</a></li>
|
|
175
|
+
</ul>
|
|
176
|
+
</aside>
|
|
177
|
+
<div class="tsd-comment tsd-typography">
|
|
178
|
+
<div class="lead">
|
|
179
|
+
<p>The list of locally known peers</p>
|
|
180
|
+
</div>
|
|
181
|
+
</div>
|
|
182
|
+
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
183
|
+
<ul class="tsd-parameters">
|
|
184
|
+
<li>
|
|
185
|
+
<h5>value: <a href="levinpayloads.peerentry.html" class="tsd-signature-type">PeerEntry</a><span class="tsd-signature-symbol">[]</span></h5>
|
|
186
|
+
</li>
|
|
187
|
+
</ul>
|
|
188
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
|
189
|
+
</li>
|
|
190
|
+
</ul>
|
|
191
|
+
</section>
|
|
192
|
+
<section class="tsd-panel tsd-member tsd-kind-accessor tsd-parent-kind-class">
|
|
193
|
+
<a name="local_time" class="tsd-anchor"></a>
|
|
194
|
+
<h3>local_<wbr>time</h3>
|
|
195
|
+
<ul class="tsd-signatures tsd-kind-accessor tsd-parent-kind-class">
|
|
196
|
+
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">get</span> local_time<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Date</span></li>
|
|
197
|
+
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">set</span> local_time<span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Date</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
|
198
|
+
</ul>
|
|
199
|
+
<ul class="tsd-descriptions">
|
|
200
|
+
<li class="tsd-description">
|
|
201
|
+
<aside class="tsd-sources">
|
|
202
|
+
<ul>
|
|
203
|
+
<li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/Types/LevinPayloads.ts#L1416">Types/LevinPayloads.ts:1416</a></li>
|
|
204
|
+
</ul>
|
|
205
|
+
</aside>
|
|
206
|
+
<div class="tsd-comment tsd-typography">
|
|
207
|
+
<div class="lead">
|
|
208
|
+
<p>The current time of the node</p>
|
|
209
|
+
</div>
|
|
210
|
+
</div>
|
|
211
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Date</span></h4>
|
|
212
|
+
</li>
|
|
213
|
+
<li class="tsd-description">
|
|
214
|
+
<aside class="tsd-sources">
|
|
215
|
+
<ul>
|
|
216
|
+
<li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/Types/LevinPayloads.ts#L1420">Types/LevinPayloads.ts:1420</a></li>
|
|
217
|
+
</ul>
|
|
218
|
+
</aside>
|
|
219
|
+
<div class="tsd-comment tsd-typography">
|
|
220
|
+
<div class="lead">
|
|
221
|
+
<p>The current time of the node</p>
|
|
222
|
+
</div>
|
|
223
|
+
</div>
|
|
224
|
+
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
225
|
+
<ul class="tsd-parameters">
|
|
226
|
+
<li>
|
|
227
|
+
<h5>value: <span class="tsd-signature-type">Date</span></h5>
|
|
228
|
+
</li>
|
|
229
|
+
</ul>
|
|
230
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
|
231
|
+
</li>
|
|
232
|
+
</ul>
|
|
233
|
+
</section>
|
|
234
|
+
<section class="tsd-panel tsd-member tsd-kind-accessor tsd-parent-kind-class">
|
|
235
|
+
<a name="top_id" class="tsd-anchor"></a>
|
|
236
|
+
<h3>top_<wbr>id</h3>
|
|
237
|
+
<ul class="tsd-signatures tsd-kind-accessor tsd-parent-kind-class">
|
|
238
|
+
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">get</span> top_id<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li>
|
|
239
|
+
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">set</span> top_id<span class="tsd-signature-symbol">(</span>value<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
|
240
|
+
</ul>
|
|
241
|
+
<ul class="tsd-descriptions">
|
|
242
|
+
<li class="tsd-description">
|
|
243
|
+
<aside class="tsd-sources">
|
|
244
|
+
<ul>
|
|
245
|
+
<li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/Types/LevinPayloads.ts#L1438">Types/LevinPayloads.ts:1438</a></li>
|
|
246
|
+
</ul>
|
|
247
|
+
</aside>
|
|
248
|
+
<div class="tsd-comment tsd-typography">
|
|
249
|
+
<div class="lead">
|
|
250
|
+
<p>The last known block hash of the node</p>
|
|
251
|
+
</div>
|
|
252
|
+
</div>
|
|
253
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
|
|
254
|
+
</li>
|
|
255
|
+
<li class="tsd-description">
|
|
256
|
+
<aside class="tsd-sources">
|
|
257
|
+
<ul>
|
|
258
|
+
<li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/Types/LevinPayloads.ts#L1442">Types/LevinPayloads.ts:1442</a></li>
|
|
259
|
+
</ul>
|
|
260
|
+
</aside>
|
|
261
|
+
<div class="tsd-comment tsd-typography">
|
|
262
|
+
<div class="lead">
|
|
263
|
+
<p>The last known block hash of the node</p>
|
|
264
|
+
</div>
|
|
265
|
+
</div>
|
|
266
|
+
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
267
|
+
<ul class="tsd-parameters">
|
|
268
|
+
<li>
|
|
269
|
+
<h5>value: <span class="tsd-signature-type">string</span></h5>
|
|
270
|
+
</li>
|
|
271
|
+
</ul>
|
|
272
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
|
273
|
+
</li>
|
|
274
|
+
</ul>
|
|
275
|
+
</section>
|
|
276
|
+
</section>
|
|
277
|
+
<section class="tsd-panel-group tsd-member-group ">
|
|
278
|
+
<h2>Methods</h2>
|
|
279
|
+
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
|
|
280
|
+
<a name="tobuffer" class="tsd-anchor"></a>
|
|
281
|
+
<h3>to<wbr>Buffer</h3>
|
|
282
|
+
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
|
283
|
+
<li class="tsd-signature tsd-kind-icon">to<wbr>Buffer<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Buffer</span></li>
|
|
284
|
+
</ul>
|
|
285
|
+
<ul class="tsd-descriptions">
|
|
286
|
+
<li class="tsd-description">
|
|
287
|
+
<aside class="tsd-sources">
|
|
288
|
+
<ul>
|
|
289
|
+
<li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/Types/LevinPayloads.ts#L1512">Types/LevinPayloads.ts:1512</a></li>
|
|
290
|
+
</ul>
|
|
291
|
+
</aside>
|
|
292
|
+
<div class="tsd-comment tsd-typography">
|
|
293
|
+
<div class="lead">
|
|
294
|
+
<p>Provides the Buffer representation of the object</p>
|
|
295
|
+
</div>
|
|
296
|
+
</div>
|
|
297
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Buffer</span></h4>
|
|
298
|
+
<p>the buffer representation of the object</p>
|
|
299
|
+
</li>
|
|
300
|
+
</ul>
|
|
301
|
+
</section>
|
|
302
|
+
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
|
|
303
|
+
<a name="tostring" class="tsd-anchor"></a>
|
|
304
|
+
<h3>to<wbr>String</h3>
|
|
305
|
+
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
|
306
|
+
<li class="tsd-signature tsd-kind-icon">to<wbr>String<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span></li>
|
|
307
|
+
</ul>
|
|
308
|
+
<ul class="tsd-descriptions">
|
|
309
|
+
<li class="tsd-description">
|
|
310
|
+
<aside class="tsd-sources">
|
|
311
|
+
<ul>
|
|
312
|
+
<li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/Types/LevinPayloads.ts#L1542">Types/LevinPayloads.ts:1542</a></li>
|
|
313
|
+
</ul>
|
|
314
|
+
</aside>
|
|
315
|
+
<div class="tsd-comment tsd-typography">
|
|
316
|
+
<div class="lead">
|
|
317
|
+
<p>Provides the hexadecimal (blob) representation of the object</p>
|
|
318
|
+
</div>
|
|
319
|
+
</div>
|
|
320
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
|
|
321
|
+
<p>the hexadecimal (blob) representation of the object</p>
|
|
322
|
+
</li>
|
|
323
|
+
</ul>
|
|
324
|
+
</section>
|
|
325
|
+
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-static">
|
|
326
|
+
<a name="from" class="tsd-anchor"></a>
|
|
327
|
+
<h3><span class="tsd-flag ts-flagStatic">Static</span> from</h3>
|
|
328
|
+
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-static">
|
|
329
|
+
<li class="tsd-signature tsd-kind-icon">from<span class="tsd-signature-symbol">(</span>data<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Reader</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Buffer</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="levinpayloads.timedsync.html" class="tsd-signature-type">TimedSync</a></li>
|
|
330
|
+
</ul>
|
|
331
|
+
<ul class="tsd-descriptions">
|
|
332
|
+
<li class="tsd-description">
|
|
333
|
+
<aside class="tsd-sources">
|
|
334
|
+
<ul>
|
|
335
|
+
<li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/Types/LevinPayloads.ts#L1467">Types/LevinPayloads.ts:1467</a></li>
|
|
336
|
+
</ul>
|
|
337
|
+
</aside>
|
|
338
|
+
<div class="tsd-comment tsd-typography">
|
|
339
|
+
<div class="lead">
|
|
340
|
+
<p>Creates a new instance of the object using the supplied data found in the levin packet</p>
|
|
341
|
+
</div>
|
|
342
|
+
</div>
|
|
343
|
+
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
344
|
+
<ul class="tsd-parameters">
|
|
345
|
+
<li>
|
|
346
|
+
<h5>data: <span class="tsd-signature-type">Reader</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">Buffer</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></h5>
|
|
347
|
+
<div class="tsd-comment tsd-typography">
|
|
348
|
+
<p>the data contained for the payload in the levin packet</p>
|
|
349
|
+
</div>
|
|
350
|
+
</li>
|
|
351
|
+
</ul>
|
|
352
|
+
<h4 class="tsd-returns-title">Returns <a href="levinpayloads.timedsync.html" class="tsd-signature-type">TimedSync</a></h4>
|
|
353
|
+
<p>a new instance of the object</p>
|
|
354
|
+
</li>
|
|
355
|
+
</ul>
|
|
356
|
+
</section>
|
|
357
|
+
</section>
|
|
358
|
+
</div>
|
|
359
|
+
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
|
360
|
+
<nav class="tsd-navigation primary">
|
|
361
|
+
<ul>
|
|
362
|
+
<li class="globals ">
|
|
363
|
+
<a href="../globals.html"><em>Globals</em></a>
|
|
364
|
+
</li>
|
|
365
|
+
<li class=" tsd-kind-module">
|
|
366
|
+
<a href="../modules/ed25519.html">ED25519</a>
|
|
367
|
+
</li>
|
|
368
|
+
<li class=" tsd-kind-module">
|
|
369
|
+
<a href="../modules/extranoncetag.html">Extra<wbr>Nonce<wbr>Tag</a>
|
|
370
|
+
</li>
|
|
371
|
+
<li class=" tsd-kind-module">
|
|
372
|
+
<a href="../modules/extratag.html">Extra<wbr>Tag</a>
|
|
373
|
+
</li>
|
|
374
|
+
<li class=" tsd-kind-module">
|
|
375
|
+
<a href="../modules/interfaces.html">Interfaces</a>
|
|
376
|
+
</li>
|
|
377
|
+
<li class="current tsd-kind-module">
|
|
378
|
+
<a href="../modules/levinpayloads.html">Levin<wbr>Payloads</a>
|
|
379
|
+
</li>
|
|
380
|
+
<li class=" tsd-kind-module">
|
|
381
|
+
<a href="../modules/levinprotocol.html">Levin<wbr>Protocol</a>
|
|
382
|
+
</li>
|
|
383
|
+
<li class=" tsd-kind-module">
|
|
384
|
+
<a href="../modules/multisiginterfaces.html">Multisig<wbr>Interfaces</a>
|
|
385
|
+
</li>
|
|
386
|
+
<li class=" tsd-kind-module">
|
|
387
|
+
<a href="../modules/transactioninputs.html">Transaction<wbr>Inputs</a>
|
|
388
|
+
</li>
|
|
389
|
+
<li class=" tsd-kind-module">
|
|
390
|
+
<a href="../modules/transactionoutputs.html">Transaction<wbr>Outputs</a>
|
|
391
|
+
</li>
|
|
392
|
+
</ul>
|
|
393
|
+
</nav>
|
|
394
|
+
<nav class="tsd-navigation secondary menu-sticky">
|
|
395
|
+
<ul class="before-current">
|
|
396
|
+
<li class=" tsd-kind-class tsd-parent-kind-module">
|
|
397
|
+
<a href="levinpayloads.handshake.html" class="tsd-kind-icon">Handshake</a>
|
|
398
|
+
</li>
|
|
399
|
+
<li class=" tsd-kind-class tsd-parent-kind-module">
|
|
400
|
+
<a href="levinpayloads.ilevinpayload.html" class="tsd-kind-icon">ILevin<wbr>Payload</a>
|
|
401
|
+
</li>
|
|
402
|
+
<li class=" tsd-kind-class tsd-parent-kind-module">
|
|
403
|
+
<a href="levinpayloads.liteblock.html" class="tsd-kind-icon">Lite<wbr>Block</a>
|
|
404
|
+
</li>
|
|
405
|
+
<li class=" tsd-kind-class tsd-parent-kind-module">
|
|
406
|
+
<a href="levinpayloads.missingtransactions.html" class="tsd-kind-icon">Missing<wbr>Transactions</a>
|
|
407
|
+
</li>
|
|
408
|
+
<li class=" tsd-kind-class tsd-parent-kind-module">
|
|
409
|
+
<a href="levinpayloads.newblock.html" class="tsd-kind-icon">New<wbr>Block</a>
|
|
410
|
+
</li>
|
|
411
|
+
<li class=" tsd-kind-class tsd-parent-kind-module">
|
|
412
|
+
<a href="levinpayloads.newtransactions.html" class="tsd-kind-icon">New<wbr>Transactions</a>
|
|
413
|
+
</li>
|
|
414
|
+
<li class=" tsd-kind-class tsd-parent-kind-module">
|
|
415
|
+
<a href="levinpayloads.peerentry.html" class="tsd-kind-icon">Peer<wbr>Entry</a>
|
|
416
|
+
</li>
|
|
417
|
+
<li class=" tsd-kind-class tsd-parent-kind-module">
|
|
418
|
+
<a href="levinpayloads.ping.html" class="tsd-kind-icon">Ping</a>
|
|
419
|
+
</li>
|
|
420
|
+
<li class=" tsd-kind-class tsd-parent-kind-module">
|
|
421
|
+
<a href="levinpayloads.rawblock.html" class="tsd-kind-icon">Raw<wbr>Block</a>
|
|
422
|
+
</li>
|
|
423
|
+
<li class=" tsd-kind-class tsd-parent-kind-module">
|
|
424
|
+
<a href="levinpayloads.requestchain.html" class="tsd-kind-icon">Request<wbr>Chain</a>
|
|
425
|
+
</li>
|
|
426
|
+
<li class=" tsd-kind-class tsd-parent-kind-module">
|
|
427
|
+
<a href="levinpayloads.requestgetobjects.html" class="tsd-kind-icon">Request<wbr>Get<wbr>Objects</a>
|
|
428
|
+
</li>
|
|
429
|
+
<li class=" tsd-kind-class tsd-parent-kind-module">
|
|
430
|
+
<a href="levinpayloads.requesttxpool.html" class="tsd-kind-icon">RequestTXPool</a>
|
|
431
|
+
</li>
|
|
432
|
+
<li class=" tsd-kind-class tsd-parent-kind-module">
|
|
433
|
+
<a href="levinpayloads.responsechain.html" class="tsd-kind-icon">Response<wbr>Chain</a>
|
|
434
|
+
</li>
|
|
435
|
+
<li class=" tsd-kind-class tsd-parent-kind-module">
|
|
436
|
+
<a href="levinpayloads.responsegetobjects.html" class="tsd-kind-icon">Response<wbr>Get<wbr>Objects</a>
|
|
437
|
+
</li>
|
|
438
|
+
</ul>
|
|
439
|
+
<ul class="current">
|
|
440
|
+
<li class="current tsd-kind-class tsd-parent-kind-module">
|
|
441
|
+
<a href="levinpayloads.timedsync.html" class="tsd-kind-icon">Timed<wbr>Sync</a>
|
|
442
|
+
<ul>
|
|
443
|
+
<li class=" tsd-kind-accessor tsd-parent-kind-class">
|
|
444
|
+
<a href="levinpayloads.timedsync.html#current_height" class="tsd-kind-icon">current_<wbr>height</a>
|
|
445
|
+
</li>
|
|
446
|
+
<li class=" tsd-kind-accessor tsd-parent-kind-class">
|
|
447
|
+
<a href="levinpayloads.timedsync.html#local_peerlist" class="tsd-kind-icon">local_<wbr>peerlist</a>
|
|
448
|
+
</li>
|
|
449
|
+
<li class=" tsd-kind-accessor tsd-parent-kind-class">
|
|
450
|
+
<a href="levinpayloads.timedsync.html#local_time" class="tsd-kind-icon">local_<wbr>time</a>
|
|
451
|
+
</li>
|
|
452
|
+
<li class=" tsd-kind-accessor tsd-parent-kind-class">
|
|
453
|
+
<a href="levinpayloads.timedsync.html#top_id" class="tsd-kind-icon">top_<wbr>id</a>
|
|
454
|
+
</li>
|
|
455
|
+
<li class=" tsd-kind-method tsd-parent-kind-class">
|
|
456
|
+
<a href="levinpayloads.timedsync.html#tobuffer" class="tsd-kind-icon">to<wbr>Buffer</a>
|
|
457
|
+
</li>
|
|
458
|
+
<li class=" tsd-kind-method tsd-parent-kind-class">
|
|
459
|
+
<a href="levinpayloads.timedsync.html#tostring" class="tsd-kind-icon">to<wbr>String</a>
|
|
460
|
+
</li>
|
|
461
|
+
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-static">
|
|
462
|
+
<a href="levinpayloads.timedsync.html#from" class="tsd-kind-icon">from</a>
|
|
463
|
+
</li>
|
|
464
|
+
</ul>
|
|
465
|
+
</li>
|
|
466
|
+
</ul>
|
|
467
|
+
<ul class="after-current">
|
|
468
|
+
</ul>
|
|
469
|
+
</nav>
|
|
470
|
+
</div>
|
|
471
|
+
</div>
|
|
472
|
+
</div>
|
|
473
|
+
<footer class="with-border-bottom">
|
|
474
|
+
<div class="container">
|
|
475
|
+
<h2>Legend</h2>
|
|
476
|
+
<div class="tsd-legend-group">
|
|
477
|
+
<ul class="tsd-legend">
|
|
478
|
+
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
|
479
|
+
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
|
480
|
+
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
|
481
|
+
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
|
482
|
+
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
|
483
|
+
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
|
484
|
+
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
|
485
|
+
<li class="tsd-kind-type-alias tsd-has-type-parameter"><span class="tsd-kind-icon">Type alias with type parameter</span></li>
|
|
486
|
+
</ul>
|
|
487
|
+
<ul class="tsd-legend">
|
|
488
|
+
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
|
489
|
+
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
|
490
|
+
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
|
491
|
+
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
|
492
|
+
</ul>
|
|
493
|
+
<ul class="tsd-legend">
|
|
494
|
+
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
|
495
|
+
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
|
496
|
+
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
|
497
|
+
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
|
498
|
+
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
|
499
|
+
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
|
500
|
+
</ul>
|
|
501
|
+
<ul class="tsd-legend">
|
|
502
|
+
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
|
503
|
+
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
|
504
|
+
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
|
505
|
+
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
|
506
|
+
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
|
507
|
+
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
|
508
|
+
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
|
509
|
+
</ul>
|
|
510
|
+
<ul class="tsd-legend">
|
|
511
|
+
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
|
512
|
+
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
|
513
|
+
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
|
514
|
+
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
|
515
|
+
</ul>
|
|
516
|
+
<ul class="tsd-legend">
|
|
517
|
+
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
|
518
|
+
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
|
519
|
+
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
|
520
|
+
</ul>
|
|
521
|
+
<ul class="tsd-legend">
|
|
522
|
+
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
|
523
|
+
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
|
524
|
+
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
|
525
|
+
</ul>
|
|
526
|
+
<ul class="tsd-legend">
|
|
527
|
+
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
|
528
|
+
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
|
529
|
+
</ul>
|
|
530
|
+
</div>
|
|
531
|
+
</div>
|
|
532
|
+
</footer>
|
|
533
|
+
<div class="container tsd-generator">
|
|
534
|
+
<p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p>
|
|
535
|
+
</div>
|
|
536
|
+
<div class="overlay"></div>
|
|
537
|
+
<script src="../assets/js/main.js"></script>
|
|
538
|
+
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
|
539
|
+
</body>
|
|
540
|
+
</html>
|