@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.
Files changed (132) hide show
  1. package/.github/workflows/ci.yml +27 -0
  2. package/.idea/codeStyles/codeStyleConfig.xml +5 -0
  3. package/.idea/inspectionProfiles/Project_Default.xml +7 -0
  4. package/.idea/misc.xml +6 -0
  5. package/.idea/modules.xml +8 -0
  6. package/.idea/turtlecoin-utils.iml +12 -0
  7. package/.idea/vcs.xml +6 -0
  8. package/.travis.yml +11 -0
  9. package/CONTRIBUTING.md +3 -0
  10. package/LICENSE +674 -0
  11. package/README.md +203 -0
  12. package/config.json +7 -0
  13. package/docs/.nojekyll +0 -0
  14. package/docs/CNAME +1 -0
  15. package/docs/assets/css/main.css +2321 -0
  16. package/docs/assets/images/icons.png +0 -0
  17. package/docs/assets/images/icons@2x.png +0 -0
  18. package/docs/assets/images/widgets.png +0 -0
  19. package/docs/assets/images/widgets@2x.png +0 -0
  20. package/docs/assets/js/main.js +1 -0
  21. package/docs/assets/js/search.js +3 -0
  22. package/docs/classes/address.html +964 -0
  23. package/docs/classes/addressprefix.html +431 -0
  24. package/docs/classes/block.html +965 -0
  25. package/docs/classes/blocktemplate.html +695 -0
  26. package/docs/classes/cryptonote.html +1137 -0
  27. package/docs/classes/ed25519.keypair.html +400 -0
  28. package/docs/classes/ed25519.keys.html +373 -0
  29. package/docs/classes/extranoncetag.extranoncedata.html +454 -0
  30. package/docs/classes/extranoncetag.extranoncepaymentid.html +453 -0
  31. package/docs/classes/extranoncetag.iextranonce.html +347 -0
  32. package/docs/classes/extratag.extramergedmining.html +494 -0
  33. package/docs/classes/extratag.extranonce.html +530 -0
  34. package/docs/classes/extratag.extrapadding.html +456 -0
  35. package/docs/classes/extratag.extrapublickey.html +460 -0
  36. package/docs/classes/extratag.iextratag.html +355 -0
  37. package/docs/classes/levinpacket.html +674 -0
  38. package/docs/classes/levinpayloads.handshake.html +731 -0
  39. package/docs/classes/levinpayloads.ilevinpayload.html +318 -0
  40. package/docs/classes/levinpayloads.liteblock.html +494 -0
  41. package/docs/classes/levinpayloads.missingtransactions.html +494 -0
  42. package/docs/classes/levinpayloads.newblock.html +540 -0
  43. package/docs/classes/levinpayloads.newtransactions.html +402 -0
  44. package/docs/classes/levinpayloads.peerentry.html +610 -0
  45. package/docs/classes/levinpayloads.ping.html +450 -0
  46. package/docs/classes/levinpayloads.rawblock.html +344 -0
  47. package/docs/classes/levinpayloads.requestchain.html +402 -0
  48. package/docs/classes/levinpayloads.requestgetobjects.html +448 -0
  49. package/docs/classes/levinpayloads.requesttxpool.html +402 -0
  50. package/docs/classes/levinpayloads.responsechain.html +494 -0
  51. package/docs/classes/levinpayloads.responsegetobjects.html +540 -0
  52. package/docs/classes/levinpayloads.timedsync.html +540 -0
  53. package/docs/classes/multisig.html +930 -0
  54. package/docs/classes/multisigmessage.html +694 -0
  55. package/docs/classes/parentblock.html +347 -0
  56. package/docs/classes/transaction.html +925 -0
  57. package/docs/classes/transactioninputs.coinbaseinput.html +390 -0
  58. package/docs/classes/transactioninputs.itransactioninput.html +321 -0
  59. package/docs/classes/transactioninputs.keyinput.html +459 -0
  60. package/docs/classes/transactionoutputs.itransactionoutput.html +317 -0
  61. package/docs/classes/transactionoutputs.keyoutput.html +422 -0
  62. package/docs/enums/extranoncetag.noncetagtype.html +246 -0
  63. package/docs/enums/extratag.extratagtype.html +280 -0
  64. package/docs/enums/levinprotocol.commandtype.html +391 -0
  65. package/docs/enums/transactioninputs.inputtype.html +246 -0
  66. package/docs/enums/transactionoutputs.outputtype.html +229 -0
  67. package/docs/globals.html +238 -0
  68. package/docs/index.html +271 -0
  69. package/docs/interfaces/interfaces.config.html +590 -0
  70. package/docs/interfaces/interfaces.daemonblocktemplateresponse.html +323 -0
  71. package/docs/interfaces/interfaces.generatedinput.html +304 -0
  72. package/docs/interfaces/interfaces.generatedoutput.html +285 -0
  73. package/docs/interfaces/interfaces.inputkeys.html +304 -0
  74. package/docs/interfaces/interfaces.ipreparedtransaction.html +268 -0
  75. package/docs/interfaces/interfaces.output.html +399 -0
  76. package/docs/interfaces/interfaces.preparedringsignature.html +377 -0
  77. package/docs/interfaces/interfaces.preparedtransaction.html +329 -0
  78. package/docs/interfaces/interfaces.randomoutput.html +285 -0
  79. package/docs/interfaces/interfaces.transactionrecipient.html +285 -0
  80. package/docs/interfaces/multisiginterfaces.partialkeyimage.html +277 -0
  81. package/docs/interfaces/multisiginterfaces.partialsigningkey.html +277 -0
  82. package/docs/modules/ed25519.html +195 -0
  83. package/docs/modules/extranoncetag.html +208 -0
  84. package/docs/modules/extratag.html +216 -0
  85. package/docs/modules/interfaces.html +231 -0
  86. package/docs/modules/levinpayloads.html +247 -0
  87. package/docs/modules/levinprotocol.html +191 -0
  88. package/docs/modules/multisiginterfaces.html +195 -0
  89. package/docs/modules/transactioninputs.html +208 -0
  90. package/docs/modules/transactionoutputs.html +204 -0
  91. package/index.d.ts +417 -0
  92. package/index.js +1508 -0
  93. package/lib/base58.js +220 -0
  94. package/lib/biginteger.js +1591 -0
  95. package/lib/blocktemplate.js +408 -0
  96. package/lib/crypto.js +19698 -0
  97. package/lib/mnemonic.js +1204 -0
  98. package/lib/nacl-fast-cn.js +608 -0
  99. package/lib/ringsigs.js +24262 -0
  100. package/lib/sha3.js +477 -0
  101. package/package.json +58 -0
  102. package/src/Address.ts +433 -0
  103. package/src/AddressPrefix.ts +117 -0
  104. package/src/Block.ts +556 -0
  105. package/src/BlockTemplate.ts +289 -0
  106. package/src/Common.ts +105 -0
  107. package/src/Config.ts +66 -0
  108. package/src/CryptoNote.ts +1072 -0
  109. package/src/LevinPacket.ts +366 -0
  110. package/src/Multisig.ts +600 -0
  111. package/src/MultisigMessage.ts +374 -0
  112. package/src/ParentBlock.ts +39 -0
  113. package/src/Transaction.ts +628 -0
  114. package/src/Types/ED25519.ts +187 -0
  115. package/src/Types/IExtraNonce.ts +225 -0
  116. package/src/Types/IExtraTag.ts +507 -0
  117. package/src/Types/ITransaction.ts +230 -0
  118. package/src/Types/ITransactionInput.ts +190 -0
  119. package/src/Types/ITransactionOutput.ts +108 -0
  120. package/src/Types/LevinPayloads.ts +1576 -0
  121. package/src/Types/MultisigInterfaces.ts +65 -0
  122. package/src/Types/PortableStorage.ts +289 -0
  123. package/src/Types.ts +36 -0
  124. package/src/index.ts +36 -0
  125. package/test/template.json +6 -0
  126. package/test/test.js +1457 -0
  127. package/tests/blocktemplate.json +6 -0
  128. package/tests/tests.js +215 -0
  129. package/tsconfig.json +15 -0
  130. package/tslint.json +36 -0
  131. package/typedoc.json +10 -0
  132. package/webpack.config.js +15 -0
@@ -0,0 +1,695 @@
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>BlockTemplate | 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="blocktemplate.html">BlockTemplate</a>
56
+ </li>
57
+ </ul>
58
+ <h1>Class BlockTemplate</h1>
59
+ </div>
60
+ </div>
61
+ </header>
62
+ <div class="container container-main">
63
+ <div class="row">
64
+ <div class="col-8 col-content">
65
+ <section class="tsd-panel tsd-comment">
66
+ <div class="tsd-comment tsd-typography">
67
+ <div class="lead">
68
+ <p>Represents a BlockTemplate received from a Daemon that can be manipulated to perform mining operations</p>
69
+ </div>
70
+ </div>
71
+ </section>
72
+ <section class="tsd-panel tsd-hierarchy">
73
+ <h3>Hierarchy</h3>
74
+ <ul class="tsd-hierarchy">
75
+ <li>
76
+ <span class="target">BlockTemplate</span>
77
+ </li>
78
+ </ul>
79
+ </section>
80
+ <section class="tsd-panel-group tsd-index-group">
81
+ <h2>Index</h2>
82
+ <section class="tsd-panel tsd-index-panel">
83
+ <div class="tsd-index-content">
84
+ <section class="tsd-index-section ">
85
+ <h3>Accessors</h3>
86
+ <ul class="tsd-index-list">
87
+ <li class="tsd-kind-accessor tsd-parent-kind-class"><a href="blocktemplate.html#activateparentblockversion" class="tsd-kind-icon">activate<wbr>Parent<wbr>Block<wbr>Version</a></li>
88
+ <li class="tsd-kind-get-signature tsd-parent-kind-class"><a href="blocktemplate.html#block" class="tsd-kind-icon">block</a></li>
89
+ <li class="tsd-kind-get-signature tsd-parent-kind-class"><a href="blocktemplate.html#blocktemplate-1" class="tsd-kind-icon">block<wbr>Template</a></li>
90
+ <li class="tsd-kind-get-signature tsd-parent-kind-class"><a href="blocktemplate.html#blocktemplatebuffer" class="tsd-kind-icon">block<wbr>Template<wbr>Buffer</a></li>
91
+ <li class="tsd-kind-get-signature tsd-parent-kind-class"><a href="blocktemplate.html#difficulty" class="tsd-kind-icon">difficulty</a></li>
92
+ <li class="tsd-kind-get-signature tsd-parent-kind-class"><a href="blocktemplate.html#height" class="tsd-kind-icon">height</a></li>
93
+ <li class="tsd-kind-accessor tsd-parent-kind-class"><a href="blocktemplate.html#minernonce" class="tsd-kind-icon">miner<wbr>Nonce</a></li>
94
+ <li class="tsd-kind-get-signature tsd-parent-kind-class"><a href="blocktemplate.html#minertransaction" class="tsd-kind-icon">miner<wbr>Transaction</a></li>
95
+ <li class="tsd-kind-accessor tsd-parent-kind-class"><a href="blocktemplate.html#nonce" class="tsd-kind-icon">nonce</a></li>
96
+ <li class="tsd-kind-get-signature tsd-parent-kind-class"><a href="blocktemplate.html#reservedoffset" class="tsd-kind-icon">reserved<wbr>Offset</a></li>
97
+ </ul>
98
+ </section>
99
+ <section class="tsd-index-section ">
100
+ <h3>Methods</h3>
101
+ <ul class="tsd-index-list">
102
+ <li class="tsd-kind-method tsd-parent-kind-class"><a href="blocktemplate.html#construct" class="tsd-kind-icon">construct</a></li>
103
+ <li class="tsd-kind-method tsd-parent-kind-class"><a href="blocktemplate.html#convert" class="tsd-kind-icon">convert</a></li>
104
+ <li class="tsd-kind-method tsd-parent-kind-class tsd-is-static"><a href="blocktemplate.html#from" class="tsd-kind-icon">from</a></li>
105
+ <li class="tsd-kind-method tsd-parent-kind-class tsd-is-static"><a href="blocktemplate.html#hashmeetsdifficulty" class="tsd-kind-icon">hash<wbr>Meets<wbr>Difficulty</a></li>
106
+ </ul>
107
+ </section>
108
+ </div>
109
+ </section>
110
+ </section>
111
+ <section class="tsd-panel-group tsd-member-group ">
112
+ <h2>Accessors</h2>
113
+ <section class="tsd-panel tsd-member tsd-kind-accessor tsd-parent-kind-class">
114
+ <a name="activateparentblockversion" class="tsd-anchor"></a>
115
+ <h3>activate<wbr>Parent<wbr>Block<wbr>Version</h3>
116
+ <ul class="tsd-signatures tsd-kind-accessor tsd-parent-kind-class">
117
+ <li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">get</span> activateParentBlockVersion<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>
118
+ <li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">set</span> activateParentBlockVersion<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>
119
+ </ul>
120
+ <ul class="tsd-descriptions">
121
+ <li class="tsd-description">
122
+ <aside class="tsd-sources">
123
+ <ul>
124
+ <li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/BlockTemplate.ts#L48">BlockTemplate.ts:48</a></li>
125
+ </ul>
126
+ </aside>
127
+ <div class="tsd-comment tsd-typography">
128
+ <div class="lead">
129
+ <p>The major block version for which to activate the use of parent blocks</p>
130
+ </div>
131
+ </div>
132
+ <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4>
133
+ </li>
134
+ <li class="tsd-description">
135
+ <aside class="tsd-sources">
136
+ <ul>
137
+ <li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/BlockTemplate.ts#L52">BlockTemplate.ts:52</a></li>
138
+ </ul>
139
+ </aside>
140
+ <div class="tsd-comment tsd-typography">
141
+ <div class="lead">
142
+ <p>The major block version for which to activate the use of parent blocks</p>
143
+ </div>
144
+ </div>
145
+ <h4 class="tsd-parameters-title">Parameters</h4>
146
+ <ul class="tsd-parameters">
147
+ <li>
148
+ <h5>value: <span class="tsd-signature-type">number</span></h5>
149
+ </li>
150
+ </ul>
151
+ <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
152
+ </li>
153
+ </ul>
154
+ </section>
155
+ <section class="tsd-panel tsd-member tsd-kind-get-signature tsd-parent-kind-class">
156
+ <a name="block" class="tsd-anchor"></a>
157
+ <h3>block</h3>
158
+ <ul class="tsd-signatures tsd-kind-get-signature tsd-parent-kind-class">
159
+ <li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">get</span> block<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="block.html" class="tsd-signature-type">Block</a></li>
160
+ </ul>
161
+ <ul class="tsd-descriptions">
162
+ <li class="tsd-description">
163
+ <aside class="tsd-sources">
164
+ <ul>
165
+ <li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/BlockTemplate.ts#L105">BlockTemplate.ts:105</a></li>
166
+ </ul>
167
+ </aside>
168
+ <div class="tsd-comment tsd-typography">
169
+ <div class="lead">
170
+ <p>The block defined in the block template</p>
171
+ </div>
172
+ </div>
173
+ <h4 class="tsd-returns-title">Returns <a href="block.html" class="tsd-signature-type">Block</a></h4>
174
+ </li>
175
+ </ul>
176
+ </section>
177
+ <section class="tsd-panel tsd-member tsd-kind-get-signature tsd-parent-kind-class">
178
+ <a name="blocktemplate-1" class="tsd-anchor"></a>
179
+ <h3>block<wbr>Template</h3>
180
+ <ul class="tsd-signatures tsd-kind-get-signature tsd-parent-kind-class">
181
+ <li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">get</span> blockTemplate<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>
182
+ </ul>
183
+ <ul class="tsd-descriptions">
184
+ <li class="tsd-description">
185
+ <aside class="tsd-sources">
186
+ <ul>
187
+ <li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/BlockTemplate.ts#L66">BlockTemplate.ts:66</a></li>
188
+ </ul>
189
+ </aside>
190
+ <div class="tsd-comment tsd-typography">
191
+ <div class="lead">
192
+ <p>The original block template in hexadecimal (blob)</p>
193
+ </div>
194
+ </div>
195
+ <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
196
+ </li>
197
+ </ul>
198
+ </section>
199
+ <section class="tsd-panel tsd-member tsd-kind-get-signature tsd-parent-kind-class">
200
+ <a name="blocktemplatebuffer" class="tsd-anchor"></a>
201
+ <h3>block<wbr>Template<wbr>Buffer</h3>
202
+ <ul class="tsd-signatures tsd-kind-get-signature tsd-parent-kind-class">
203
+ <li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">get</span> blockTemplateBuffer<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>
204
+ </ul>
205
+ <ul class="tsd-descriptions">
206
+ <li class="tsd-description">
207
+ <aside class="tsd-sources">
208
+ <ul>
209
+ <li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/BlockTemplate.ts#L59">BlockTemplate.ts:59</a></li>
210
+ </ul>
211
+ </aside>
212
+ <div class="tsd-comment tsd-typography">
213
+ <div class="lead">
214
+ <p>The original block template as a buffer</p>
215
+ </div>
216
+ </div>
217
+ <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Buffer</span></h4>
218
+ </li>
219
+ </ul>
220
+ </section>
221
+ <section class="tsd-panel tsd-member tsd-kind-get-signature tsd-parent-kind-class">
222
+ <a name="difficulty" class="tsd-anchor"></a>
223
+ <h3>difficulty</h3>
224
+ <ul class="tsd-signatures tsd-kind-get-signature tsd-parent-kind-class">
225
+ <li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">get</span> difficulty<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>
226
+ </ul>
227
+ <ul class="tsd-descriptions">
228
+ <li class="tsd-description">
229
+ <aside class="tsd-sources">
230
+ <ul>
231
+ <li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/BlockTemplate.ts#L73">BlockTemplate.ts:73</a></li>
232
+ </ul>
233
+ </aside>
234
+ <div class="tsd-comment tsd-typography">
235
+ <div class="lead">
236
+ <p>The block template difficulty</p>
237
+ </div>
238
+ </div>
239
+ <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4>
240
+ </li>
241
+ </ul>
242
+ </section>
243
+ <section class="tsd-panel tsd-member tsd-kind-get-signature tsd-parent-kind-class">
244
+ <a name="height" class="tsd-anchor"></a>
245
+ <h3>height</h3>
246
+ <ul class="tsd-signatures tsd-kind-get-signature tsd-parent-kind-class">
247
+ <li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">get</span> 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>
248
+ </ul>
249
+ <ul class="tsd-descriptions">
250
+ <li class="tsd-description">
251
+ <aside class="tsd-sources">
252
+ <ul>
253
+ <li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/BlockTemplate.ts#L80">BlockTemplate.ts:80</a></li>
254
+ </ul>
255
+ </aside>
256
+ <div class="tsd-comment tsd-typography">
257
+ <div class="lead">
258
+ <p>The block template height</p>
259
+ </div>
260
+ </div>
261
+ <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4>
262
+ </li>
263
+ </ul>
264
+ </section>
265
+ <section class="tsd-panel tsd-member tsd-kind-accessor tsd-parent-kind-class">
266
+ <a name="minernonce" class="tsd-anchor"></a>
267
+ <h3>miner<wbr>Nonce</h3>
268
+ <ul class="tsd-signatures tsd-kind-accessor tsd-parent-kind-class">
269
+ <li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">get</span> minerNonce<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>
270
+ <li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">set</span> minerNonce<span class="tsd-signature-symbol">(</span>nonce<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>
271
+ </ul>
272
+ <ul class="tsd-descriptions">
273
+ <li class="tsd-description">
274
+ <aside class="tsd-sources">
275
+ <ul>
276
+ <li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/BlockTemplate.ts#L119">BlockTemplate.ts:119</a></li>
277
+ </ul>
278
+ </aside>
279
+ <div class="tsd-comment tsd-typography">
280
+ <div class="lead">
281
+ <p>The extra miner nonce typically used for pool based mining</p>
282
+ </div>
283
+ </div>
284
+ <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4>
285
+ </li>
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/BlockTemplate.ts#L151">BlockTemplate.ts:151</a></li>
290
+ </ul>
291
+ </aside>
292
+ <div class="tsd-comment tsd-typography">
293
+ <div class="lead">
294
+ <p>The extra miner nonce typically used for pool based mining</p>
295
+ </div>
296
+ </div>
297
+ <h4 class="tsd-parameters-title">Parameters</h4>
298
+ <ul class="tsd-parameters">
299
+ <li>
300
+ <h5>nonce: <span class="tsd-signature-type">number</span></h5>
301
+ </li>
302
+ </ul>
303
+ <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
304
+ </li>
305
+ </ul>
306
+ </section>
307
+ <section class="tsd-panel tsd-member tsd-kind-get-signature tsd-parent-kind-class">
308
+ <a name="minertransaction" class="tsd-anchor"></a>
309
+ <h3>miner<wbr>Transaction</h3>
310
+ <ul class="tsd-signatures tsd-kind-get-signature tsd-parent-kind-class">
311
+ <li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">get</span> minerTransaction<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="transaction.html" class="tsd-signature-type">Transaction</a></li>
312
+ </ul>
313
+ <ul class="tsd-descriptions">
314
+ <li class="tsd-description">
315
+ <aside class="tsd-sources">
316
+ <ul>
317
+ <li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/BlockTemplate.ts#L112">BlockTemplate.ts:112</a></li>
318
+ </ul>
319
+ </aside>
320
+ <div class="tsd-comment tsd-typography">
321
+ <div class="lead">
322
+ <p>The miner transaction defined in the block of the block template</p>
323
+ </div>
324
+ </div>
325
+ <h4 class="tsd-returns-title">Returns <a href="transaction.html" class="tsd-signature-type">Transaction</a></h4>
326
+ </li>
327
+ </ul>
328
+ </section>
329
+ <section class="tsd-panel tsd-member tsd-kind-accessor tsd-parent-kind-class">
330
+ <a name="nonce" class="tsd-anchor"></a>
331
+ <h3>nonce</h3>
332
+ <ul class="tsd-signatures tsd-kind-accessor tsd-parent-kind-class">
333
+ <li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">get</span> nonce<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>
334
+ <li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">set</span> nonce<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>
335
+ </ul>
336
+ <ul class="tsd-descriptions">
337
+ <li class="tsd-description">
338
+ <aside class="tsd-sources">
339
+ <ul>
340
+ <li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/BlockTemplate.ts#L94">BlockTemplate.ts:94</a></li>
341
+ </ul>
342
+ </aside>
343
+ <div class="tsd-comment tsd-typography">
344
+ <div class="lead">
345
+ <p>The block nonce</p>
346
+ </div>
347
+ </div>
348
+ <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4>
349
+ </li>
350
+ <li class="tsd-description">
351
+ <aside class="tsd-sources">
352
+ <ul>
353
+ <li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/BlockTemplate.ts#L98">BlockTemplate.ts:98</a></li>
354
+ </ul>
355
+ </aside>
356
+ <div class="tsd-comment tsd-typography">
357
+ <div class="lead">
358
+ <p>The block nonce</p>
359
+ </div>
360
+ </div>
361
+ <h4 class="tsd-parameters-title">Parameters</h4>
362
+ <ul class="tsd-parameters">
363
+ <li>
364
+ <h5>value: <span class="tsd-signature-type">number</span></h5>
365
+ </li>
366
+ </ul>
367
+ <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
368
+ </li>
369
+ </ul>
370
+ </section>
371
+ <section class="tsd-panel tsd-member tsd-kind-get-signature tsd-parent-kind-class">
372
+ <a name="reservedoffset" class="tsd-anchor"></a>
373
+ <h3>reserved<wbr>Offset</h3>
374
+ <ul class="tsd-signatures tsd-kind-get-signature tsd-parent-kind-class">
375
+ <li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">get</span> reservedOffset<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>
376
+ </ul>
377
+ <ul class="tsd-descriptions">
378
+ <li class="tsd-description">
379
+ <aside class="tsd-sources">
380
+ <ul>
381
+ <li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/BlockTemplate.ts#L87">BlockTemplate.ts:87</a></li>
382
+ </ul>
383
+ </aside>
384
+ <div class="tsd-comment tsd-typography">
385
+ <div class="lead">
386
+ <p>The block template reserved offset position</p>
387
+ </div>
388
+ </div>
389
+ <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4>
390
+ </li>
391
+ </ul>
392
+ </section>
393
+ </section>
394
+ <section class="tsd-panel-group tsd-member-group ">
395
+ <h2>Methods</h2>
396
+ <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
397
+ <a name="construct" class="tsd-anchor"></a>
398
+ <h3>construct</h3>
399
+ <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
400
+ <li class="tsd-signature tsd-kind-icon">construct<span class="tsd-signature-symbol">(</span>nonce<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">number</span>, branch<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">undefined</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="block.html" class="tsd-signature-type">Block</a></li>
401
+ </ul>
402
+ <ul class="tsd-descriptions">
403
+ <li class="tsd-description">
404
+ <aside class="tsd-sources">
405
+ <ul>
406
+ <li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/BlockTemplate.ts#L260">BlockTemplate.ts:260</a></li>
407
+ </ul>
408
+ </aside>
409
+ <div class="tsd-comment tsd-typography">
410
+ <div class="lead">
411
+ <p>Constructs a new &quot;final&quot; block that can be submitted to the network using
412
+ an original the original block in the block template and the nonce value found</p>
413
+ </div>
414
+ </div>
415
+ <h4 class="tsd-parameters-title">Parameters</h4>
416
+ <ul class="tsd-parameters">
417
+ <li>
418
+ <h5>nonce: <span class="tsd-signature-type">number</span></h5>
419
+ <div class="tsd-comment tsd-typography">
420
+ <p>the nonce value for the block</p>
421
+ </div>
422
+ </li>
423
+ <li>
424
+ <h5><span class="tsd-flag ts-flagOptional">Optional</span> branch: <span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">string</span></h5>
425
+ </li>
426
+ </ul>
427
+ <h4 class="tsd-returns-title">Returns <a href="block.html" class="tsd-signature-type">Block</a></h4>
428
+ <p>the block that can be submitted to the network</p>
429
+ </li>
430
+ </ul>
431
+ </section>
432
+ <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
433
+ <a name="convert" class="tsd-anchor"></a>
434
+ <h3>convert</h3>
435
+ <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
436
+ <li class="tsd-signature tsd-kind-icon">convert<span class="tsd-signature-symbol">(</span>block<span class="tsd-signature-symbol">?: </span><a href="block.html" class="tsd-signature-type">Block</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="block.html" class="tsd-signature-type">Block</a></li>
437
+ </ul>
438
+ <ul class="tsd-descriptions">
439
+ <li class="tsd-description">
440
+ <aside class="tsd-sources">
441
+ <ul>
442
+ <li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/BlockTemplate.ts#L229">BlockTemplate.ts:229</a></li>
443
+ </ul>
444
+ </aside>
445
+ <div class="tsd-comment tsd-typography">
446
+ <div class="lead">
447
+ <p>Converts a block into a v1 hashing block typically used by miners during mining operations
448
+ this method actually creates a merged mining block that merge mines itself</p>
449
+ </div>
450
+ </div>
451
+ <h4 class="tsd-parameters-title">Parameters</h4>
452
+ <ul class="tsd-parameters">
453
+ <li>
454
+ <h5><span class="tsd-flag ts-flagOptional">Optional</span> block: <a href="block.html" class="tsd-signature-type">Block</a></h5>
455
+ <div class="tsd-comment tsd-typography">
456
+ <p>the block to convert for miner hashing</p>
457
+ </div>
458
+ </li>
459
+ </ul>
460
+ <h4 class="tsd-returns-title">Returns <a href="block.html" class="tsd-signature-type">Block</a></h4>
461
+ <p>the mining block</p>
462
+ </li>
463
+ </ul>
464
+ </section>
465
+ <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-static">
466
+ <a name="from" class="tsd-anchor"></a>
467
+ <h3><span class="tsd-flag ts-flagStatic">Static</span> from</h3>
468
+ <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-static">
469
+ <li class="tsd-signature tsd-kind-icon">from<span class="tsd-signature-symbol">(</span>response<span class="tsd-signature-symbol">: </span><a href="../interfaces/interfaces.daemonblocktemplateresponse.html" class="tsd-signature-type">DaemonBlockTemplateResponse</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="blocktemplate.html" class="tsd-signature-type">BlockTemplate</a></li>
470
+ </ul>
471
+ <ul class="tsd-descriptions">
472
+ <li class="tsd-description">
473
+ <aside class="tsd-sources">
474
+ <ul>
475
+ <li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/BlockTemplate.ts#L203">BlockTemplate.ts:203</a></li>
476
+ </ul>
477
+ </aside>
478
+ <div class="tsd-comment tsd-typography">
479
+ <div class="lead">
480
+ <p>Creates a new block template instance using the supplied daemon response</p>
481
+ </div>
482
+ </div>
483
+ <h4 class="tsd-parameters-title">Parameters</h4>
484
+ <ul class="tsd-parameters">
485
+ <li>
486
+ <h5>response: <a href="../interfaces/interfaces.daemonblocktemplateresponse.html" class="tsd-signature-type">DaemonBlockTemplateResponse</a></h5>
487
+ <div class="tsd-comment tsd-typography">
488
+ <p>the daemon response to the get_blocktemplate call</p>
489
+ </div>
490
+ </li>
491
+ </ul>
492
+ <h4 class="tsd-returns-title">Returns <a href="blocktemplate.html" class="tsd-signature-type">BlockTemplate</a></h4>
493
+ </li>
494
+ </ul>
495
+ </section>
496
+ <section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-static">
497
+ <a name="hashmeetsdifficulty" class="tsd-anchor"></a>
498
+ <h3><span class="tsd-flag ts-flagStatic">Static</span> hash<wbr>Meets<wbr>Difficulty</h3>
499
+ <ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-static">
500
+ <li class="tsd-signature tsd-kind-icon">hash<wbr>Meets<wbr>Difficulty<span class="tsd-signature-symbol">(</span>hash<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">string</span>, difficulty<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">boolean</span></li>
501
+ </ul>
502
+ <ul class="tsd-descriptions">
503
+ <li class="tsd-description">
504
+ <aside class="tsd-sources">
505
+ <ul>
506
+ <li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/BlockTemplate.ts#L188">BlockTemplate.ts:188</a></li>
507
+ </ul>
508
+ </aside>
509
+ <div class="tsd-comment tsd-typography">
510
+ <div class="lead">
511
+ <p>Whether the given hash meets the difficulty specified</p>
512
+ </div>
513
+ </div>
514
+ <h4 class="tsd-parameters-title">Parameters</h4>
515
+ <ul class="tsd-parameters">
516
+ <li>
517
+ <h5>hash: <span class="tsd-signature-type">string</span></h5>
518
+ <div class="tsd-comment tsd-typography">
519
+ <p>the block POW hash</p>
520
+ </div>
521
+ </li>
522
+ <li>
523
+ <h5>difficulty: <span class="tsd-signature-type">number</span></h5>
524
+ <div class="tsd-comment tsd-typography">
525
+ <p>the target difficulty</p>
526
+ </div>
527
+ </li>
528
+ </ul>
529
+ <h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
530
+ </li>
531
+ </ul>
532
+ </section>
533
+ </section>
534
+ </div>
535
+ <div class="col-4 col-menu menu-sticky-wrap menu-highlight">
536
+ <nav class="tsd-navigation primary">
537
+ <ul>
538
+ <li class="globals ">
539
+ <a href="../globals.html"><em>Globals</em></a>
540
+ </li>
541
+ </ul>
542
+ </nav>
543
+ <nav class="tsd-navigation secondary menu-sticky">
544
+ <ul class="before-current">
545
+ <li class=" tsd-kind-class">
546
+ <a href="address.html" class="tsd-kind-icon">Address</a>
547
+ </li>
548
+ <li class=" tsd-kind-class">
549
+ <a href="addressprefix.html" class="tsd-kind-icon">Address<wbr>Prefix</a>
550
+ </li>
551
+ <li class=" tsd-kind-class">
552
+ <a href="block.html" class="tsd-kind-icon">Block</a>
553
+ </li>
554
+ </ul>
555
+ <ul class="current">
556
+ <li class="current tsd-kind-class">
557
+ <a href="blocktemplate.html" class="tsd-kind-icon">Block<wbr>Template</a>
558
+ <ul>
559
+ <li class=" tsd-kind-accessor tsd-parent-kind-class">
560
+ <a href="blocktemplate.html#activateparentblockversion" class="tsd-kind-icon">activate<wbr>Parent<wbr>Block<wbr>Version</a>
561
+ </li>
562
+ <li class=" tsd-kind-get-signature tsd-parent-kind-class">
563
+ <a href="blocktemplate.html#block" class="tsd-kind-icon">block</a>
564
+ </li>
565
+ <li class=" tsd-kind-get-signature tsd-parent-kind-class">
566
+ <a href="blocktemplate.html#blocktemplate-1" class="tsd-kind-icon">block<wbr>Template</a>
567
+ </li>
568
+ <li class=" tsd-kind-get-signature tsd-parent-kind-class">
569
+ <a href="blocktemplate.html#blocktemplatebuffer" class="tsd-kind-icon">block<wbr>Template<wbr>Buffer</a>
570
+ </li>
571
+ <li class=" tsd-kind-get-signature tsd-parent-kind-class">
572
+ <a href="blocktemplate.html#difficulty" class="tsd-kind-icon">difficulty</a>
573
+ </li>
574
+ <li class=" tsd-kind-get-signature tsd-parent-kind-class">
575
+ <a href="blocktemplate.html#height" class="tsd-kind-icon">height</a>
576
+ </li>
577
+ <li class=" tsd-kind-accessor tsd-parent-kind-class">
578
+ <a href="blocktemplate.html#minernonce" class="tsd-kind-icon">miner<wbr>Nonce</a>
579
+ </li>
580
+ <li class=" tsd-kind-get-signature tsd-parent-kind-class">
581
+ <a href="blocktemplate.html#minertransaction" class="tsd-kind-icon">miner<wbr>Transaction</a>
582
+ </li>
583
+ <li class=" tsd-kind-accessor tsd-parent-kind-class">
584
+ <a href="blocktemplate.html#nonce" class="tsd-kind-icon">nonce</a>
585
+ </li>
586
+ <li class=" tsd-kind-get-signature tsd-parent-kind-class">
587
+ <a href="blocktemplate.html#reservedoffset" class="tsd-kind-icon">reserved<wbr>Offset</a>
588
+ </li>
589
+ <li class=" tsd-kind-method tsd-parent-kind-class">
590
+ <a href="blocktemplate.html#construct" class="tsd-kind-icon">construct</a>
591
+ </li>
592
+ <li class=" tsd-kind-method tsd-parent-kind-class">
593
+ <a href="blocktemplate.html#convert" class="tsd-kind-icon">convert</a>
594
+ </li>
595
+ <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-static">
596
+ <a href="blocktemplate.html#from" class="tsd-kind-icon">from</a>
597
+ </li>
598
+ <li class=" tsd-kind-method tsd-parent-kind-class tsd-is-static">
599
+ <a href="blocktemplate.html#hashmeetsdifficulty" class="tsd-kind-icon">hash<wbr>Meets<wbr>Difficulty</a>
600
+ </li>
601
+ </ul>
602
+ </li>
603
+ </ul>
604
+ <ul class="after-current">
605
+ <li class=" tsd-kind-class">
606
+ <a href="cryptonote.html" class="tsd-kind-icon">Crypto<wbr>Note</a>
607
+ </li>
608
+ <li class=" tsd-kind-class">
609
+ <a href="levinpacket.html" class="tsd-kind-icon">Levin<wbr>Packet</a>
610
+ </li>
611
+ <li class=" tsd-kind-class">
612
+ <a href="multisig.html" class="tsd-kind-icon">Multisig</a>
613
+ </li>
614
+ <li class=" tsd-kind-class">
615
+ <a href="multisigmessage.html" class="tsd-kind-icon">Multisig<wbr>Message</a>
616
+ </li>
617
+ <li class=" tsd-kind-class">
618
+ <a href="parentblock.html" class="tsd-kind-icon">Parent<wbr>Block</a>
619
+ </li>
620
+ <li class=" tsd-kind-class">
621
+ <a href="transaction.html" class="tsd-kind-icon">Transaction</a>
622
+ </li>
623
+ </ul>
624
+ </nav>
625
+ </div>
626
+ </div>
627
+ </div>
628
+ <footer class="with-border-bottom">
629
+ <div class="container">
630
+ <h2>Legend</h2>
631
+ <div class="tsd-legend-group">
632
+ <ul class="tsd-legend">
633
+ <li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
634
+ <li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
635
+ <li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
636
+ <li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
637
+ <li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
638
+ <li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
639
+ <li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
640
+ <li class="tsd-kind-type-alias tsd-has-type-parameter"><span class="tsd-kind-icon">Type alias with type parameter</span></li>
641
+ </ul>
642
+ <ul class="tsd-legend">
643
+ <li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
644
+ <li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
645
+ <li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
646
+ <li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
647
+ </ul>
648
+ <ul class="tsd-legend">
649
+ <li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
650
+ <li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
651
+ <li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
652
+ <li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
653
+ <li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
654
+ <li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
655
+ </ul>
656
+ <ul class="tsd-legend">
657
+ <li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
658
+ <li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
659
+ <li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
660
+ <li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
661
+ <li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
662
+ <li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
663
+ <li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
664
+ </ul>
665
+ <ul class="tsd-legend">
666
+ <li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
667
+ <li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
668
+ <li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
669
+ <li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
670
+ </ul>
671
+ <ul class="tsd-legend">
672
+ <li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
673
+ <li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
674
+ <li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
675
+ </ul>
676
+ <ul class="tsd-legend">
677
+ <li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
678
+ <li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
679
+ <li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
680
+ </ul>
681
+ <ul class="tsd-legend">
682
+ <li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
683
+ <li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
684
+ </ul>
685
+ </div>
686
+ </div>
687
+ </footer>
688
+ <div class="container tsd-generator">
689
+ <p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p>
690
+ </div>
691
+ <div class="overlay"></div>
692
+ <script src="../assets/js/main.js"></script>
693
+ <script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
694
+ </body>
695
+ </html>