@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,355 @@
|
|
|
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>IExtraTag | 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/extratag.html">ExtraTag</a>
|
|
56
|
+
</li>
|
|
57
|
+
<li>
|
|
58
|
+
<a href="extratag.iextratag.html">IExtraTag</a>
|
|
59
|
+
</li>
|
|
60
|
+
</ul>
|
|
61
|
+
<h1>Class IExtraTag</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-comment">
|
|
69
|
+
<div class="tsd-comment tsd-typography">
|
|
70
|
+
<div class="lead">
|
|
71
|
+
<p>Abstract interface for structured data in the transaction extra field</p>
|
|
72
|
+
</div>
|
|
73
|
+
</div>
|
|
74
|
+
</section>
|
|
75
|
+
<section class="tsd-panel tsd-hierarchy">
|
|
76
|
+
<h3>Hierarchy</h3>
|
|
77
|
+
<ul class="tsd-hierarchy">
|
|
78
|
+
<li>
|
|
79
|
+
<span class="target">IExtraTag</span>
|
|
80
|
+
</li>
|
|
81
|
+
</ul>
|
|
82
|
+
</section>
|
|
83
|
+
<section class="tsd-panel">
|
|
84
|
+
<h3>Implemented by</h3>
|
|
85
|
+
<ul class="tsd-hierarchy">
|
|
86
|
+
<li><a href="extratag.extramergedmining.html" class="tsd-signature-type">ExtraMergedMining</a></li>
|
|
87
|
+
<li><a href="extratag.extranonce.html" class="tsd-signature-type">ExtraNonce</a></li>
|
|
88
|
+
<li><a href="extratag.extrapadding.html" class="tsd-signature-type">ExtraPadding</a></li>
|
|
89
|
+
<li><a href="extratag.extrapublickey.html" class="tsd-signature-type">ExtraPublicKey</a></li>
|
|
90
|
+
</ul>
|
|
91
|
+
</section>
|
|
92
|
+
<section class="tsd-panel-group tsd-index-group">
|
|
93
|
+
<h2>Index</h2>
|
|
94
|
+
<section class="tsd-panel tsd-index-panel">
|
|
95
|
+
<div class="tsd-index-content">
|
|
96
|
+
<section class="tsd-index-section ">
|
|
97
|
+
<h3>Accessors</h3>
|
|
98
|
+
<ul class="tsd-index-list">
|
|
99
|
+
<li class="tsd-kind-get-signature tsd-parent-kind-class"><a href="extratag.iextratag.html#size" class="tsd-kind-icon">size</a></li>
|
|
100
|
+
<li class="tsd-kind-get-signature tsd-parent-kind-class"><a href="extratag.iextratag.html#tag" class="tsd-kind-icon">tag</a></li>
|
|
101
|
+
</ul>
|
|
102
|
+
</section>
|
|
103
|
+
<section class="tsd-index-section ">
|
|
104
|
+
<h3>Methods</h3>
|
|
105
|
+
<ul class="tsd-index-list">
|
|
106
|
+
<li class="tsd-kind-method tsd-parent-kind-class"><a href="extratag.iextratag.html#tobuffer" class="tsd-kind-icon">to<wbr>Buffer</a></li>
|
|
107
|
+
<li class="tsd-kind-method tsd-parent-kind-class"><a href="extratag.iextratag.html#tostring" class="tsd-kind-icon">to<wbr>String</a></li>
|
|
108
|
+
</ul>
|
|
109
|
+
</section>
|
|
110
|
+
</div>
|
|
111
|
+
</section>
|
|
112
|
+
</section>
|
|
113
|
+
<section class="tsd-panel-group tsd-member-group ">
|
|
114
|
+
<h2>Accessors</h2>
|
|
115
|
+
<section class="tsd-panel tsd-member tsd-kind-get-signature tsd-parent-kind-class">
|
|
116
|
+
<a name="size" class="tsd-anchor"></a>
|
|
117
|
+
<h3>size</h3>
|
|
118
|
+
<ul class="tsd-signatures tsd-kind-get-signature tsd-parent-kind-class">
|
|
119
|
+
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">get</span> size<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>
|
|
120
|
+
</ul>
|
|
121
|
+
<ul class="tsd-descriptions">
|
|
122
|
+
<li class="tsd-description">
|
|
123
|
+
<aside class="tsd-sources">
|
|
124
|
+
<ul>
|
|
125
|
+
<li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/Types/IExtraTag.ts#L35">Types/IExtraTag.ts:35</a></li>
|
|
126
|
+
</ul>
|
|
127
|
+
</aside>
|
|
128
|
+
<div class="tsd-comment tsd-typography">
|
|
129
|
+
<div class="lead">
|
|
130
|
+
<p>Returns the size of the nonce field in bytes including it's tag</p>
|
|
131
|
+
</div>
|
|
132
|
+
</div>
|
|
133
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4>
|
|
134
|
+
</li>
|
|
135
|
+
</ul>
|
|
136
|
+
</section>
|
|
137
|
+
<section class="tsd-panel tsd-member tsd-kind-get-signature tsd-parent-kind-class">
|
|
138
|
+
<a name="tag" class="tsd-anchor"></a>
|
|
139
|
+
<h3>tag</h3>
|
|
140
|
+
<ul class="tsd-signatures tsd-kind-get-signature tsd-parent-kind-class">
|
|
141
|
+
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">get</span> tag<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../enums/extratag.extratagtype.html" class="tsd-signature-type">ExtraTagType</a></li>
|
|
142
|
+
</ul>
|
|
143
|
+
<ul class="tsd-descriptions">
|
|
144
|
+
<li class="tsd-description">
|
|
145
|
+
<aside class="tsd-sources">
|
|
146
|
+
<ul>
|
|
147
|
+
<li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/Types/IExtraTag.ts#L40">Types/IExtraTag.ts:40</a></li>
|
|
148
|
+
</ul>
|
|
149
|
+
</aside>
|
|
150
|
+
<div class="tsd-comment tsd-typography">
|
|
151
|
+
<div class="lead">
|
|
152
|
+
<p>Returns the Extra Nonce Field tag</p>
|
|
153
|
+
</div>
|
|
154
|
+
</div>
|
|
155
|
+
<h4 class="tsd-returns-title">Returns <a href="../enums/extratag.extratagtype.html" class="tsd-signature-type">ExtraTagType</a></h4>
|
|
156
|
+
</li>
|
|
157
|
+
</ul>
|
|
158
|
+
</section>
|
|
159
|
+
</section>
|
|
160
|
+
<section class="tsd-panel-group tsd-member-group ">
|
|
161
|
+
<h2>Methods</h2>
|
|
162
|
+
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
|
|
163
|
+
<a name="tobuffer" class="tsd-anchor"></a>
|
|
164
|
+
<h3><span class="tsd-flag ts-flagAbstract">Abstract</span> to<wbr>Buffer</h3>
|
|
165
|
+
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
|
166
|
+
<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>
|
|
167
|
+
</ul>
|
|
168
|
+
<ul class="tsd-descriptions">
|
|
169
|
+
<li class="tsd-description">
|
|
170
|
+
<aside class="tsd-sources">
|
|
171
|
+
<ul>
|
|
172
|
+
<li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/Types/IExtraTag.ts#L46">Types/IExtraTag.ts:46</a></li>
|
|
173
|
+
</ul>
|
|
174
|
+
</aside>
|
|
175
|
+
<div class="tsd-comment tsd-typography">
|
|
176
|
+
<div class="lead">
|
|
177
|
+
<p>Returns the Extra Nonce as a Buffer</p>
|
|
178
|
+
</div>
|
|
179
|
+
</div>
|
|
180
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Buffer</span></h4>
|
|
181
|
+
<p>the Buffer representation of the object</p>
|
|
182
|
+
</li>
|
|
183
|
+
</ul>
|
|
184
|
+
</section>
|
|
185
|
+
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
|
|
186
|
+
<a name="tostring" class="tsd-anchor"></a>
|
|
187
|
+
<h3><span class="tsd-flag ts-flagAbstract">Abstract</span> to<wbr>String</h3>
|
|
188
|
+
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
|
189
|
+
<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>
|
|
190
|
+
</ul>
|
|
191
|
+
<ul class="tsd-descriptions">
|
|
192
|
+
<li class="tsd-description">
|
|
193
|
+
<aside class="tsd-sources">
|
|
194
|
+
<ul>
|
|
195
|
+
<li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/Types/IExtraTag.ts#L52">Types/IExtraTag.ts:52</a></li>
|
|
196
|
+
</ul>
|
|
197
|
+
</aside>
|
|
198
|
+
<div class="tsd-comment tsd-typography">
|
|
199
|
+
<div class="lead">
|
|
200
|
+
<p>Returns the Extra Nonce as a hexadecimal string (blob)</p>
|
|
201
|
+
</div>
|
|
202
|
+
</div>
|
|
203
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
|
|
204
|
+
<p>the hexadecimal (blob) representation of the object</p>
|
|
205
|
+
</li>
|
|
206
|
+
</ul>
|
|
207
|
+
</section>
|
|
208
|
+
</section>
|
|
209
|
+
</div>
|
|
210
|
+
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
|
211
|
+
<nav class="tsd-navigation primary">
|
|
212
|
+
<ul>
|
|
213
|
+
<li class="globals ">
|
|
214
|
+
<a href="../globals.html"><em>Globals</em></a>
|
|
215
|
+
</li>
|
|
216
|
+
<li class=" tsd-kind-module">
|
|
217
|
+
<a href="../modules/ed25519.html">ED25519</a>
|
|
218
|
+
</li>
|
|
219
|
+
<li class=" tsd-kind-module">
|
|
220
|
+
<a href="../modules/extranoncetag.html">Extra<wbr>Nonce<wbr>Tag</a>
|
|
221
|
+
</li>
|
|
222
|
+
<li class="current tsd-kind-module">
|
|
223
|
+
<a href="../modules/extratag.html">Extra<wbr>Tag</a>
|
|
224
|
+
</li>
|
|
225
|
+
<li class=" tsd-kind-module">
|
|
226
|
+
<a href="../modules/interfaces.html">Interfaces</a>
|
|
227
|
+
</li>
|
|
228
|
+
<li class=" tsd-kind-module">
|
|
229
|
+
<a href="../modules/levinpayloads.html">Levin<wbr>Payloads</a>
|
|
230
|
+
</li>
|
|
231
|
+
<li class=" tsd-kind-module">
|
|
232
|
+
<a href="../modules/levinprotocol.html">Levin<wbr>Protocol</a>
|
|
233
|
+
</li>
|
|
234
|
+
<li class=" tsd-kind-module">
|
|
235
|
+
<a href="../modules/multisiginterfaces.html">Multisig<wbr>Interfaces</a>
|
|
236
|
+
</li>
|
|
237
|
+
<li class=" tsd-kind-module">
|
|
238
|
+
<a href="../modules/transactioninputs.html">Transaction<wbr>Inputs</a>
|
|
239
|
+
</li>
|
|
240
|
+
<li class=" tsd-kind-module">
|
|
241
|
+
<a href="../modules/transactionoutputs.html">Transaction<wbr>Outputs</a>
|
|
242
|
+
</li>
|
|
243
|
+
</ul>
|
|
244
|
+
</nav>
|
|
245
|
+
<nav class="tsd-navigation secondary menu-sticky">
|
|
246
|
+
<ul class="before-current">
|
|
247
|
+
<li class=" tsd-kind-enum tsd-parent-kind-module">
|
|
248
|
+
<a href="../enums/extratag.extratagtype.html" class="tsd-kind-icon">Extra<wbr>Tag<wbr>Type</a>
|
|
249
|
+
</li>
|
|
250
|
+
<li class=" tsd-kind-class tsd-parent-kind-module">
|
|
251
|
+
<a href="extratag.extramergedmining.html" class="tsd-kind-icon">Extra<wbr>Merged<wbr>Mining</a>
|
|
252
|
+
</li>
|
|
253
|
+
<li class=" tsd-kind-class tsd-parent-kind-module">
|
|
254
|
+
<a href="extratag.extranonce.html" class="tsd-kind-icon">Extra<wbr>Nonce</a>
|
|
255
|
+
</li>
|
|
256
|
+
<li class=" tsd-kind-class tsd-parent-kind-module">
|
|
257
|
+
<a href="extratag.extrapadding.html" class="tsd-kind-icon">Extra<wbr>Padding</a>
|
|
258
|
+
</li>
|
|
259
|
+
<li class=" tsd-kind-class tsd-parent-kind-module">
|
|
260
|
+
<a href="extratag.extrapublickey.html" class="tsd-kind-icon">Extra<wbr>Public<wbr>Key</a>
|
|
261
|
+
</li>
|
|
262
|
+
</ul>
|
|
263
|
+
<ul class="current">
|
|
264
|
+
<li class="current tsd-kind-class tsd-parent-kind-module">
|
|
265
|
+
<a href="extratag.iextratag.html" class="tsd-kind-icon">IExtra<wbr>Tag</a>
|
|
266
|
+
<ul>
|
|
267
|
+
<li class=" tsd-kind-get-signature tsd-parent-kind-class">
|
|
268
|
+
<a href="extratag.iextratag.html#size" class="tsd-kind-icon">size</a>
|
|
269
|
+
</li>
|
|
270
|
+
<li class=" tsd-kind-get-signature tsd-parent-kind-class">
|
|
271
|
+
<a href="extratag.iextratag.html#tag" class="tsd-kind-icon">tag</a>
|
|
272
|
+
</li>
|
|
273
|
+
<li class=" tsd-kind-method tsd-parent-kind-class">
|
|
274
|
+
<a href="extratag.iextratag.html#tobuffer" class="tsd-kind-icon">to<wbr>Buffer</a>
|
|
275
|
+
</li>
|
|
276
|
+
<li class=" tsd-kind-method tsd-parent-kind-class">
|
|
277
|
+
<a href="extratag.iextratag.html#tostring" class="tsd-kind-icon">to<wbr>String</a>
|
|
278
|
+
</li>
|
|
279
|
+
</ul>
|
|
280
|
+
</li>
|
|
281
|
+
</ul>
|
|
282
|
+
<ul class="after-current">
|
|
283
|
+
</ul>
|
|
284
|
+
</nav>
|
|
285
|
+
</div>
|
|
286
|
+
</div>
|
|
287
|
+
</div>
|
|
288
|
+
<footer class="with-border-bottom">
|
|
289
|
+
<div class="container">
|
|
290
|
+
<h2>Legend</h2>
|
|
291
|
+
<div class="tsd-legend-group">
|
|
292
|
+
<ul class="tsd-legend">
|
|
293
|
+
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
|
294
|
+
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
|
295
|
+
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
|
296
|
+
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
|
297
|
+
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
|
298
|
+
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
|
299
|
+
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
|
300
|
+
<li class="tsd-kind-type-alias tsd-has-type-parameter"><span class="tsd-kind-icon">Type alias with type parameter</span></li>
|
|
301
|
+
</ul>
|
|
302
|
+
<ul class="tsd-legend">
|
|
303
|
+
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
|
304
|
+
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
|
305
|
+
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
|
306
|
+
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
|
307
|
+
</ul>
|
|
308
|
+
<ul class="tsd-legend">
|
|
309
|
+
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
|
310
|
+
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
|
311
|
+
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
|
312
|
+
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
|
313
|
+
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
|
314
|
+
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
|
315
|
+
</ul>
|
|
316
|
+
<ul class="tsd-legend">
|
|
317
|
+
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
|
318
|
+
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
|
319
|
+
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
|
320
|
+
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
|
321
|
+
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
|
322
|
+
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
|
323
|
+
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
|
324
|
+
</ul>
|
|
325
|
+
<ul class="tsd-legend">
|
|
326
|
+
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
|
327
|
+
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
|
328
|
+
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
|
329
|
+
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
|
330
|
+
</ul>
|
|
331
|
+
<ul class="tsd-legend">
|
|
332
|
+
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
|
333
|
+
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
|
334
|
+
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
|
335
|
+
</ul>
|
|
336
|
+
<ul class="tsd-legend">
|
|
337
|
+
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
|
338
|
+
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
|
339
|
+
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
|
340
|
+
</ul>
|
|
341
|
+
<ul class="tsd-legend">
|
|
342
|
+
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
|
343
|
+
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
|
344
|
+
</ul>
|
|
345
|
+
</div>
|
|
346
|
+
</div>
|
|
347
|
+
</footer>
|
|
348
|
+
<div class="container tsd-generator">
|
|
349
|
+
<p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p>
|
|
350
|
+
</div>
|
|
351
|
+
<div class="overlay"></div>
|
|
352
|
+
<script src="../assets/js/main.js"></script>
|
|
353
|
+
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
|
354
|
+
</body>
|
|
355
|
+
</html>
|