@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,694 @@
|
|
|
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>MultisigMessage | 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="multisigmessage.html">MultisigMessage</a>
|
|
56
|
+
</li>
|
|
57
|
+
</ul>
|
|
58
|
+
<h1>Class MultisigMessage</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 Multisignature inter-wallet Message that is used to exchange data between multisignature participants</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">MultisigMessage</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>Constructors</h3>
|
|
86
|
+
<ul class="tsd-index-list">
|
|
87
|
+
<li class="tsd-kind-constructor tsd-parent-kind-class"><a href="multisigmessage.html#constructor" class="tsd-kind-icon">constructor</a></li>
|
|
88
|
+
</ul>
|
|
89
|
+
</section>
|
|
90
|
+
<section class="tsd-index-section ">
|
|
91
|
+
<h3>Accessors</h3>
|
|
92
|
+
<ul class="tsd-index-list">
|
|
93
|
+
<li class="tsd-kind-accessor tsd-parent-kind-class"><a href="multisigmessage.html#destination" class="tsd-kind-icon">destination</a></li>
|
|
94
|
+
<li class="tsd-kind-get-signature tsd-parent-kind-class"><a href="multisigmessage.html#nonce" class="tsd-kind-icon">nonce</a></li>
|
|
95
|
+
<li class="tsd-kind-accessor tsd-parent-kind-class"><a href="multisigmessage.html#partialkeyimages" class="tsd-kind-icon">partial<wbr>Key<wbr>Images</a></li>
|
|
96
|
+
<li class="tsd-kind-accessor tsd-parent-kind-class"><a href="multisigmessage.html#partialsigningkeys" class="tsd-kind-icon">partial<wbr>Signing<wbr>Keys</a></li>
|
|
97
|
+
<li class="tsd-kind-accessor tsd-parent-kind-class"><a href="multisigmessage.html#preparedtransactions" class="tsd-kind-icon">prepared<wbr>Transactions</a></li>
|
|
98
|
+
<li class="tsd-kind-accessor tsd-parent-kind-class"><a href="multisigmessage.html#source" class="tsd-kind-icon">source</a></li>
|
|
99
|
+
<li class="tsd-kind-get-signature tsd-parent-kind-class"><a href="multisigmessage.html#spendkeys" class="tsd-kind-icon">spend<wbr>Keys</a></li>
|
|
100
|
+
<li class="tsd-kind-get-signature tsd-parent-kind-class"><a href="multisigmessage.html#view" class="tsd-kind-icon">view</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="multisigmessage.html#addspendkeys" class="tsd-kind-icon">add<wbr>Spend<wbr>Keys</a></li>
|
|
107
|
+
<li class="tsd-kind-method tsd-parent-kind-class"><a href="multisigmessage.html#encode" class="tsd-kind-icon">encode</a></li>
|
|
108
|
+
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-static"><a href="multisigmessage.html#decode" class="tsd-kind-icon">decode</a></li>
|
|
109
|
+
</ul>
|
|
110
|
+
</section>
|
|
111
|
+
</div>
|
|
112
|
+
</section>
|
|
113
|
+
</section>
|
|
114
|
+
<section class="tsd-panel-group tsd-member-group ">
|
|
115
|
+
<h2>Constructors</h2>
|
|
116
|
+
<section class="tsd-panel tsd-member tsd-kind-constructor tsd-parent-kind-class">
|
|
117
|
+
<a name="constructor" class="tsd-anchor"></a>
|
|
118
|
+
<h3>constructor</h3>
|
|
119
|
+
<ul class="tsd-signatures tsd-kind-constructor tsd-parent-kind-class">
|
|
120
|
+
<li class="tsd-signature tsd-kind-icon">new <wbr>Multisig<wbr>Message<span class="tsd-signature-symbol">(</span>source<span class="tsd-signature-symbol">?: </span><a href="address.html" class="tsd-signature-type">Address</a>, destination<span class="tsd-signature-symbol">?: </span><a href="address.html" class="tsd-signature-type">Address</a>, nonce<span class="tsd-signature-symbol">?: </span><span class="tsd-signature-type">undefined</span><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><a href="multisigmessage.html" class="tsd-signature-type">MultisigMessage</a></li>
|
|
121
|
+
</ul>
|
|
122
|
+
<ul class="tsd-descriptions">
|
|
123
|
+
<li class="tsd-description">
|
|
124
|
+
<aside class="tsd-sources">
|
|
125
|
+
<ul>
|
|
126
|
+
<li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/MultisigMessage.ts#L191">MultisigMessage.ts:191</a></li>
|
|
127
|
+
</ul>
|
|
128
|
+
</aside>
|
|
129
|
+
<div class="tsd-comment tsd-typography">
|
|
130
|
+
<div class="lead">
|
|
131
|
+
<p>Constructs a new instance of a MultisigMessage object</p>
|
|
132
|
+
</div>
|
|
133
|
+
</div>
|
|
134
|
+
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
135
|
+
<ul class="tsd-parameters">
|
|
136
|
+
<li>
|
|
137
|
+
<h5><span class="tsd-flag ts-flagOptional">Optional</span> source: <a href="address.html" class="tsd-signature-type">Address</a></h5>
|
|
138
|
+
</li>
|
|
139
|
+
<li>
|
|
140
|
+
<h5><span class="tsd-flag ts-flagOptional">Optional</span> destination: <a href="address.html" class="tsd-signature-type">Address</a></h5>
|
|
141
|
+
</li>
|
|
142
|
+
<li>
|
|
143
|
+
<h5><span class="tsd-flag ts-flagOptional">Optional</span> nonce: <span class="tsd-signature-type">undefined</span><span class="tsd-signature-symbol"> | </span><span class="tsd-signature-type">number</span></h5>
|
|
144
|
+
</li>
|
|
145
|
+
</ul>
|
|
146
|
+
<h4 class="tsd-returns-title">Returns <a href="multisigmessage.html" class="tsd-signature-type">MultisigMessage</a></h4>
|
|
147
|
+
</li>
|
|
148
|
+
</ul>
|
|
149
|
+
</section>
|
|
150
|
+
</section>
|
|
151
|
+
<section class="tsd-panel-group tsd-member-group ">
|
|
152
|
+
<h2>Accessors</h2>
|
|
153
|
+
<section class="tsd-panel tsd-member tsd-kind-accessor tsd-parent-kind-class">
|
|
154
|
+
<a name="destination" class="tsd-anchor"></a>
|
|
155
|
+
<h3>destination</h3>
|
|
156
|
+
<ul class="tsd-signatures tsd-kind-accessor tsd-parent-kind-class">
|
|
157
|
+
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">get</span> destination<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="address.html" class="tsd-signature-type">Address</a></li>
|
|
158
|
+
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">set</span> destination<span class="tsd-signature-symbol">(</span>destination<span class="tsd-signature-symbol">: </span><a href="address.html" class="tsd-signature-type">Address</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
|
159
|
+
</ul>
|
|
160
|
+
<ul class="tsd-descriptions">
|
|
161
|
+
<li class="tsd-description">
|
|
162
|
+
<aside class="tsd-sources">
|
|
163
|
+
<ul>
|
|
164
|
+
<li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/MultisigMessage.ts#L47">MultisigMessage.ts:47</a></li>
|
|
165
|
+
</ul>
|
|
166
|
+
</aside>
|
|
167
|
+
<div class="tsd-comment tsd-typography">
|
|
168
|
+
<div class="lead">
|
|
169
|
+
<p>The destination individual wallet address the message is being sent TO</p>
|
|
170
|
+
</div>
|
|
171
|
+
</div>
|
|
172
|
+
<h4 class="tsd-returns-title">Returns <a href="address.html" class="tsd-signature-type">Address</a></h4>
|
|
173
|
+
</li>
|
|
174
|
+
<li class="tsd-description">
|
|
175
|
+
<aside class="tsd-sources">
|
|
176
|
+
<ul>
|
|
177
|
+
<li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/MultisigMessage.ts#L51">MultisigMessage.ts:51</a></li>
|
|
178
|
+
</ul>
|
|
179
|
+
</aside>
|
|
180
|
+
<div class="tsd-comment tsd-typography">
|
|
181
|
+
<div class="lead">
|
|
182
|
+
<p>The destination individual wallet address the message is being sent TO</p>
|
|
183
|
+
</div>
|
|
184
|
+
</div>
|
|
185
|
+
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
186
|
+
<ul class="tsd-parameters">
|
|
187
|
+
<li>
|
|
188
|
+
<h5>destination: <a href="address.html" class="tsd-signature-type">Address</a></h5>
|
|
189
|
+
</li>
|
|
190
|
+
</ul>
|
|
191
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
|
192
|
+
</li>
|
|
193
|
+
</ul>
|
|
194
|
+
</section>
|
|
195
|
+
<section class="tsd-panel tsd-member tsd-kind-get-signature tsd-parent-kind-class">
|
|
196
|
+
<a name="nonce" class="tsd-anchor"></a>
|
|
197
|
+
<h3>nonce</h3>
|
|
198
|
+
<ul class="tsd-signatures tsd-kind-get-signature tsd-parent-kind-class">
|
|
199
|
+
<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>
|
|
200
|
+
</ul>
|
|
201
|
+
<ul class="tsd-descriptions">
|
|
202
|
+
<li class="tsd-description">
|
|
203
|
+
<aside class="tsd-sources">
|
|
204
|
+
<ul>
|
|
205
|
+
<li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/MultisigMessage.ts#L58">MultisigMessage.ts:58</a></li>
|
|
206
|
+
</ul>
|
|
207
|
+
</aside>
|
|
208
|
+
<div class="tsd-comment tsd-typography">
|
|
209
|
+
<div class="lead">
|
|
210
|
+
<p>A one-time nonce value that should increment/change for every message exchanged between the wallets</p>
|
|
211
|
+
</div>
|
|
212
|
+
</div>
|
|
213
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">number</span></h4>
|
|
214
|
+
</li>
|
|
215
|
+
</ul>
|
|
216
|
+
</section>
|
|
217
|
+
<section class="tsd-panel tsd-member tsd-kind-accessor tsd-parent-kind-class">
|
|
218
|
+
<a name="partialkeyimages" class="tsd-anchor"></a>
|
|
219
|
+
<h3>partial<wbr>Key<wbr>Images</h3>
|
|
220
|
+
<ul class="tsd-signatures tsd-kind-accessor tsd-parent-kind-class">
|
|
221
|
+
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">get</span> partialKeyImages<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../interfaces/multisiginterfaces.partialkeyimage.html" class="tsd-signature-type">PartialKeyImage</a><span class="tsd-signature-symbol">[]</span></li>
|
|
222
|
+
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">set</span> partialKeyImages<span class="tsd-signature-symbol">(</span>partialKeyImages<span class="tsd-signature-symbol">: </span><a href="../interfaces/multisiginterfaces.partialkeyimage.html" class="tsd-signature-type">PartialKeyImage</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>
|
|
223
|
+
</ul>
|
|
224
|
+
<ul class="tsd-descriptions">
|
|
225
|
+
<li class="tsd-description">
|
|
226
|
+
<aside class="tsd-sources">
|
|
227
|
+
<ul>
|
|
228
|
+
<li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/MultisigMessage.ts#L72">MultisigMessage.ts:72</a></li>
|
|
229
|
+
</ul>
|
|
230
|
+
</aside>
|
|
231
|
+
<div class="tsd-comment tsd-typography">
|
|
232
|
+
<div class="lead">
|
|
233
|
+
<p>The partial key images transferred in the message</p>
|
|
234
|
+
</div>
|
|
235
|
+
</div>
|
|
236
|
+
<h4 class="tsd-returns-title">Returns <a href="../interfaces/multisiginterfaces.partialkeyimage.html" class="tsd-signature-type">PartialKeyImage</a><span class="tsd-signature-symbol">[]</span></h4>
|
|
237
|
+
</li>
|
|
238
|
+
<li class="tsd-description">
|
|
239
|
+
<aside class="tsd-sources">
|
|
240
|
+
<ul>
|
|
241
|
+
<li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/MultisigMessage.ts#L76">MultisigMessage.ts:76</a></li>
|
|
242
|
+
</ul>
|
|
243
|
+
</aside>
|
|
244
|
+
<div class="tsd-comment tsd-typography">
|
|
245
|
+
<div class="lead">
|
|
246
|
+
<p>The partial key images transferred in the message</p>
|
|
247
|
+
</div>
|
|
248
|
+
</div>
|
|
249
|
+
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
250
|
+
<ul class="tsd-parameters">
|
|
251
|
+
<li>
|
|
252
|
+
<h5>partialKeyImages: <a href="../interfaces/multisiginterfaces.partialkeyimage.html" class="tsd-signature-type">PartialKeyImage</a><span class="tsd-signature-symbol">[]</span></h5>
|
|
253
|
+
</li>
|
|
254
|
+
</ul>
|
|
255
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
|
256
|
+
</li>
|
|
257
|
+
</ul>
|
|
258
|
+
</section>
|
|
259
|
+
<section class="tsd-panel tsd-member tsd-kind-accessor tsd-parent-kind-class">
|
|
260
|
+
<a name="partialsigningkeys" class="tsd-anchor"></a>
|
|
261
|
+
<h3>partial<wbr>Signing<wbr>Keys</h3>
|
|
262
|
+
<ul class="tsd-signatures tsd-kind-accessor tsd-parent-kind-class">
|
|
263
|
+
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">get</span> partialSigningKeys<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="../interfaces/multisiginterfaces.partialsigningkey.html" class="tsd-signature-type">PartialSigningKey</a><span class="tsd-signature-symbol">[]</span></li>
|
|
264
|
+
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">set</span> partialSigningKeys<span class="tsd-signature-symbol">(</span>partialSigningKeys<span class="tsd-signature-symbol">: </span><a href="../interfaces/multisiginterfaces.partialsigningkey.html" class="tsd-signature-type">PartialSigningKey</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>
|
|
265
|
+
</ul>
|
|
266
|
+
<ul class="tsd-descriptions">
|
|
267
|
+
<li class="tsd-description">
|
|
268
|
+
<aside class="tsd-sources">
|
|
269
|
+
<ul>
|
|
270
|
+
<li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/MultisigMessage.ts#L83">MultisigMessage.ts:83</a></li>
|
|
271
|
+
</ul>
|
|
272
|
+
</aside>
|
|
273
|
+
<div class="tsd-comment tsd-typography">
|
|
274
|
+
<div class="lead">
|
|
275
|
+
<p>The partial signing keys transferred in the message</p>
|
|
276
|
+
</div>
|
|
277
|
+
</div>
|
|
278
|
+
<h4 class="tsd-returns-title">Returns <a href="../interfaces/multisiginterfaces.partialsigningkey.html" class="tsd-signature-type">PartialSigningKey</a><span class="tsd-signature-symbol">[]</span></h4>
|
|
279
|
+
</li>
|
|
280
|
+
<li class="tsd-description">
|
|
281
|
+
<aside class="tsd-sources">
|
|
282
|
+
<ul>
|
|
283
|
+
<li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/MultisigMessage.ts#L87">MultisigMessage.ts:87</a></li>
|
|
284
|
+
</ul>
|
|
285
|
+
</aside>
|
|
286
|
+
<div class="tsd-comment tsd-typography">
|
|
287
|
+
<div class="lead">
|
|
288
|
+
<p>The partial signing keys transferred in the message</p>
|
|
289
|
+
</div>
|
|
290
|
+
</div>
|
|
291
|
+
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
292
|
+
<ul class="tsd-parameters">
|
|
293
|
+
<li>
|
|
294
|
+
<h5>partialSigningKeys: <a href="../interfaces/multisiginterfaces.partialsigningkey.html" class="tsd-signature-type">PartialSigningKey</a><span class="tsd-signature-symbol">[]</span></h5>
|
|
295
|
+
</li>
|
|
296
|
+
</ul>
|
|
297
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
|
298
|
+
</li>
|
|
299
|
+
</ul>
|
|
300
|
+
</section>
|
|
301
|
+
<section class="tsd-panel tsd-member tsd-kind-accessor tsd-parent-kind-class">
|
|
302
|
+
<a name="preparedtransactions" class="tsd-anchor"></a>
|
|
303
|
+
<h3>prepared<wbr>Transactions</h3>
|
|
304
|
+
<ul class="tsd-signatures tsd-kind-accessor tsd-parent-kind-class">
|
|
305
|
+
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">get</span> preparedTransactions<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">TransactionInterfaces.PreparedTransaction</span><span class="tsd-signature-symbol">[]</span></li>
|
|
306
|
+
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">set</span> preparedTransactions<span class="tsd-signature-symbol">(</span>preparedTransactions<span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">TransactionInterfaces.PreparedTransaction</span><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>
|
|
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/MultisigMessage.ts#L94">MultisigMessage.ts:94</a></li>
|
|
313
|
+
</ul>
|
|
314
|
+
</aside>
|
|
315
|
+
<div class="tsd-comment tsd-typography">
|
|
316
|
+
<div class="lead">
|
|
317
|
+
<p>The prepared transactions transferred in the message</p>
|
|
318
|
+
</div>
|
|
319
|
+
</div>
|
|
320
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">TransactionInterfaces.PreparedTransaction</span><span class="tsd-signature-symbol">[]</span></h4>
|
|
321
|
+
</li>
|
|
322
|
+
<li class="tsd-description">
|
|
323
|
+
<aside class="tsd-sources">
|
|
324
|
+
<ul>
|
|
325
|
+
<li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/MultisigMessage.ts#L98">MultisigMessage.ts:98</a></li>
|
|
326
|
+
</ul>
|
|
327
|
+
</aside>
|
|
328
|
+
<div class="tsd-comment tsd-typography">
|
|
329
|
+
<div class="lead">
|
|
330
|
+
<p>The prepared transactions transferred in the message</p>
|
|
331
|
+
</div>
|
|
332
|
+
</div>
|
|
333
|
+
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
334
|
+
<ul class="tsd-parameters">
|
|
335
|
+
<li>
|
|
336
|
+
<h5>preparedTransactions: <span class="tsd-signature-type">TransactionInterfaces.PreparedTransaction</span><span class="tsd-signature-symbol">[]</span></h5>
|
|
337
|
+
</li>
|
|
338
|
+
</ul>
|
|
339
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
|
340
|
+
</li>
|
|
341
|
+
</ul>
|
|
342
|
+
</section>
|
|
343
|
+
<section class="tsd-panel tsd-member tsd-kind-accessor tsd-parent-kind-class">
|
|
344
|
+
<a name="source" class="tsd-anchor"></a>
|
|
345
|
+
<h3>source</h3>
|
|
346
|
+
<ul class="tsd-signatures tsd-kind-accessor tsd-parent-kind-class">
|
|
347
|
+
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">get</span> source<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="address.html" class="tsd-signature-type">Address</a></li>
|
|
348
|
+
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">set</span> source<span class="tsd-signature-symbol">(</span>source<span class="tsd-signature-symbol">: </span><a href="address.html" class="tsd-signature-type">Address</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">void</span></li>
|
|
349
|
+
</ul>
|
|
350
|
+
<ul class="tsd-descriptions">
|
|
351
|
+
<li class="tsd-description">
|
|
352
|
+
<aside class="tsd-sources">
|
|
353
|
+
<ul>
|
|
354
|
+
<li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/MultisigMessage.ts#L30">MultisigMessage.ts:30</a></li>
|
|
355
|
+
</ul>
|
|
356
|
+
</aside>
|
|
357
|
+
<div class="tsd-comment tsd-typography">
|
|
358
|
+
<div class="lead">
|
|
359
|
+
<p>The source individual wallet address that the message is being sent FROM</p>
|
|
360
|
+
</div>
|
|
361
|
+
</div>
|
|
362
|
+
<h4 class="tsd-returns-title">Returns <a href="address.html" class="tsd-signature-type">Address</a></h4>
|
|
363
|
+
</li>
|
|
364
|
+
<li class="tsd-description">
|
|
365
|
+
<aside class="tsd-sources">
|
|
366
|
+
<ul>
|
|
367
|
+
<li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/MultisigMessage.ts#L34">MultisigMessage.ts:34</a></li>
|
|
368
|
+
</ul>
|
|
369
|
+
</aside>
|
|
370
|
+
<div class="tsd-comment tsd-typography">
|
|
371
|
+
<div class="lead">
|
|
372
|
+
<p>The source individual wallet address that the message is being sent FROM</p>
|
|
373
|
+
</div>
|
|
374
|
+
</div>
|
|
375
|
+
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
376
|
+
<ul class="tsd-parameters">
|
|
377
|
+
<li>
|
|
378
|
+
<h5>source: <a href="address.html" class="tsd-signature-type">Address</a></h5>
|
|
379
|
+
</li>
|
|
380
|
+
</ul>
|
|
381
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">void</span></h4>
|
|
382
|
+
</li>
|
|
383
|
+
</ul>
|
|
384
|
+
</section>
|
|
385
|
+
<section class="tsd-panel tsd-member tsd-kind-get-signature tsd-parent-kind-class">
|
|
386
|
+
<a name="spendkeys" class="tsd-anchor"></a>
|
|
387
|
+
<h3>spend<wbr>Keys</h3>
|
|
388
|
+
<ul class="tsd-signatures tsd-kind-get-signature tsd-parent-kind-class">
|
|
389
|
+
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">get</span> spendKeys<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><a href="ed25519.keypair.html" class="tsd-signature-type">KeyPair</a><span class="tsd-signature-symbol">[]</span></li>
|
|
390
|
+
</ul>
|
|
391
|
+
<ul class="tsd-descriptions">
|
|
392
|
+
<li class="tsd-description">
|
|
393
|
+
<aside class="tsd-sources">
|
|
394
|
+
<ul>
|
|
395
|
+
<li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/MultisigMessage.ts#L65">MultisigMessage.ts:65</a></li>
|
|
396
|
+
</ul>
|
|
397
|
+
</aside>
|
|
398
|
+
<div class="tsd-comment tsd-typography">
|
|
399
|
+
<div class="lead">
|
|
400
|
+
<p>The multisig public spend keys transferred in the message</p>
|
|
401
|
+
</div>
|
|
402
|
+
</div>
|
|
403
|
+
<h4 class="tsd-returns-title">Returns <a href="ed25519.keypair.html" class="tsd-signature-type">KeyPair</a><span class="tsd-signature-symbol">[]</span></h4>
|
|
404
|
+
</li>
|
|
405
|
+
</ul>
|
|
406
|
+
</section>
|
|
407
|
+
<section class="tsd-panel tsd-member tsd-kind-get-signature tsd-parent-kind-class">
|
|
408
|
+
<a name="view" class="tsd-anchor"></a>
|
|
409
|
+
<h3>view</h3>
|
|
410
|
+
<ul class="tsd-signatures tsd-kind-get-signature tsd-parent-kind-class">
|
|
411
|
+
<li class="tsd-signature tsd-kind-icon"><span class="tsd-signature-symbol">get</span> view<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>
|
|
412
|
+
</ul>
|
|
413
|
+
<ul class="tsd-descriptions">
|
|
414
|
+
<li class="tsd-description">
|
|
415
|
+
<aside class="tsd-sources">
|
|
416
|
+
<ul>
|
|
417
|
+
<li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/MultisigMessage.ts#L23">MultisigMessage.ts:23</a></li>
|
|
418
|
+
</ul>
|
|
419
|
+
</aside>
|
|
420
|
+
<div class="tsd-comment tsd-typography">
|
|
421
|
+
<div class="lead">
|
|
422
|
+
<p>The private view key communicated in the message</p>
|
|
423
|
+
</div>
|
|
424
|
+
</div>
|
|
425
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">string</span></h4>
|
|
426
|
+
</li>
|
|
427
|
+
</ul>
|
|
428
|
+
</section>
|
|
429
|
+
</section>
|
|
430
|
+
<section class="tsd-panel-group tsd-member-group ">
|
|
431
|
+
<h2>Methods</h2>
|
|
432
|
+
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
|
|
433
|
+
<a name="addspendkeys" class="tsd-anchor"></a>
|
|
434
|
+
<h3>add<wbr>Spend<wbr>Keys</h3>
|
|
435
|
+
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
|
436
|
+
<li class="tsd-signature tsd-kind-icon">add<wbr>Spend<wbr>Keys<span class="tsd-signature-symbol">(</span>keypair<span class="tsd-signature-symbol">: </span><a href="ed25519.keypair.html" class="tsd-signature-type">KeyPair</a><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">boolean</span></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/MultisigMessage.ts#L222">MultisigMessage.ts:222</a></li>
|
|
443
|
+
</ul>
|
|
444
|
+
</aside>
|
|
445
|
+
<div class="tsd-comment tsd-typography">
|
|
446
|
+
<div class="lead">
|
|
447
|
+
<p>Adds a new set of spend keys to the message</p>
|
|
448
|
+
</div>
|
|
449
|
+
<p>Note: The key pair must be complete (both private and public) to complete the necessary
|
|
450
|
+
signing processes to provide proof that we have the private key for the given public key.</p>
|
|
451
|
+
</div>
|
|
452
|
+
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
453
|
+
<ul class="tsd-parameters">
|
|
454
|
+
<li>
|
|
455
|
+
<h5>keypair: <a href="ed25519.keypair.html" class="tsd-signature-type">KeyPair</a></h5>
|
|
456
|
+
<div class="tsd-comment tsd-typography">
|
|
457
|
+
<p>The spend key pair to include.</p>
|
|
458
|
+
</div>
|
|
459
|
+
</li>
|
|
460
|
+
</ul>
|
|
461
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">boolean</span></h4>
|
|
462
|
+
</li>
|
|
463
|
+
</ul>
|
|
464
|
+
</section>
|
|
465
|
+
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class">
|
|
466
|
+
<a name="encode" class="tsd-anchor"></a>
|
|
467
|
+
<h3>encode</h3>
|
|
468
|
+
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class">
|
|
469
|
+
<li class="tsd-signature tsd-kind-icon">encode<span class="tsd-signature-symbol">(</span><span class="tsd-signature-symbol">)</span><span class="tsd-signature-symbol">: </span><span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">></span></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/MultisigMessage.ts#L248">MultisigMessage.ts:248</a></li>
|
|
476
|
+
</ul>
|
|
477
|
+
</aside>
|
|
478
|
+
<div class="tsd-comment tsd-typography">
|
|
479
|
+
<div class="lead">
|
|
480
|
+
<p>Encodes the multisig message object as a Base58 encoded string that can be easily</p>
|
|
481
|
+
</div>
|
|
482
|
+
<p>This method performs all necessary signing of the supplied public keys, encrypts the payload,
|
|
483
|
+
and signs the message to prevent tampering and protect the confidential information inside.</p>
|
|
484
|
+
<p>transferred between multisig wallet participants</p>
|
|
485
|
+
<dl class="tsd-comment-tags">
|
|
486
|
+
<dt>async</dt>
|
|
487
|
+
<dd></dd>
|
|
488
|
+
</dl>
|
|
489
|
+
</div>
|
|
490
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol"><</span><span class="tsd-signature-type">string</span><span class="tsd-signature-symbol">></span></h4>
|
|
491
|
+
<p>The Base58 encoded string for transmission</p>
|
|
492
|
+
</li>
|
|
493
|
+
</ul>
|
|
494
|
+
</section>
|
|
495
|
+
<section class="tsd-panel tsd-member tsd-kind-method tsd-parent-kind-class tsd-is-static">
|
|
496
|
+
<a name="decode" class="tsd-anchor"></a>
|
|
497
|
+
<h3><span class="tsd-flag ts-flagStatic">Static</span> decode</h3>
|
|
498
|
+
<ul class="tsd-signatures tsd-kind-method tsd-parent-kind-class tsd-is-static">
|
|
499
|
+
<li class="tsd-signature tsd-kind-icon">decode<span class="tsd-signature-symbol">(</span>destination<span class="tsd-signature-symbol">: </span><a href="address.html" class="tsd-signature-type">Address</a>, base58<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">Promise</span><span class="tsd-signature-symbol"><</span><a href="multisigmessage.html" class="tsd-signature-type">MultisigMessage</a><span class="tsd-signature-symbol">></span></li>
|
|
500
|
+
</ul>
|
|
501
|
+
<ul class="tsd-descriptions">
|
|
502
|
+
<li class="tsd-description">
|
|
503
|
+
<aside class="tsd-sources">
|
|
504
|
+
<ul>
|
|
505
|
+
<li>Defined in <a href="https://github.com/turtlecoin/turtlecoin-utils/blob/847858e/src/MultisigMessage.ts#L112">MultisigMessage.ts:112</a></li>
|
|
506
|
+
</ul>
|
|
507
|
+
</aside>
|
|
508
|
+
<div class="tsd-comment tsd-typography">
|
|
509
|
+
<div class="lead">
|
|
510
|
+
<p>Decodes a Base58 string into a multisig message object.</p>
|
|
511
|
+
</div>
|
|
512
|
+
<p>This method validates that all signatures included in the data are valid, the data is properly
|
|
513
|
+
decrypted, and the signatures of the public keys included in the payload(s) are valid</p>
|
|
514
|
+
<dl class="tsd-comment-tags">
|
|
515
|
+
<dt>async</dt>
|
|
516
|
+
<dd></dd>
|
|
517
|
+
</dl>
|
|
518
|
+
</div>
|
|
519
|
+
<h4 class="tsd-parameters-title">Parameters</h4>
|
|
520
|
+
<ul class="tsd-parameters">
|
|
521
|
+
<li>
|
|
522
|
+
<h5>destination: <a href="address.html" class="tsd-signature-type">Address</a></h5>
|
|
523
|
+
<div class="tsd-comment tsd-typography">
|
|
524
|
+
<p>The wallet address that this message was sent</p>
|
|
525
|
+
</div>
|
|
526
|
+
</li>
|
|
527
|
+
<li>
|
|
528
|
+
<h5>base58: <span class="tsd-signature-type">string</span></h5>
|
|
529
|
+
<div class="tsd-comment tsd-typography">
|
|
530
|
+
<p>The Base58 encoded data</p>
|
|
531
|
+
</div>
|
|
532
|
+
</li>
|
|
533
|
+
</ul>
|
|
534
|
+
<h4 class="tsd-returns-title">Returns <span class="tsd-signature-type">Promise</span><span class="tsd-signature-symbol"><</span><a href="multisigmessage.html" class="tsd-signature-type">MultisigMessage</a><span class="tsd-signature-symbol">></span></h4>
|
|
535
|
+
</li>
|
|
536
|
+
</ul>
|
|
537
|
+
</section>
|
|
538
|
+
</section>
|
|
539
|
+
</div>
|
|
540
|
+
<div class="col-4 col-menu menu-sticky-wrap menu-highlight">
|
|
541
|
+
<nav class="tsd-navigation primary">
|
|
542
|
+
<ul>
|
|
543
|
+
<li class="globals ">
|
|
544
|
+
<a href="../globals.html"><em>Globals</em></a>
|
|
545
|
+
</li>
|
|
546
|
+
</ul>
|
|
547
|
+
</nav>
|
|
548
|
+
<nav class="tsd-navigation secondary menu-sticky">
|
|
549
|
+
<ul class="before-current">
|
|
550
|
+
<li class=" tsd-kind-class">
|
|
551
|
+
<a href="address.html" class="tsd-kind-icon">Address</a>
|
|
552
|
+
</li>
|
|
553
|
+
<li class=" tsd-kind-class">
|
|
554
|
+
<a href="addressprefix.html" class="tsd-kind-icon">Address<wbr>Prefix</a>
|
|
555
|
+
</li>
|
|
556
|
+
<li class=" tsd-kind-class">
|
|
557
|
+
<a href="block.html" class="tsd-kind-icon">Block</a>
|
|
558
|
+
</li>
|
|
559
|
+
<li class=" tsd-kind-class">
|
|
560
|
+
<a href="blocktemplate.html" class="tsd-kind-icon">Block<wbr>Template</a>
|
|
561
|
+
</li>
|
|
562
|
+
<li class=" tsd-kind-class">
|
|
563
|
+
<a href="cryptonote.html" class="tsd-kind-icon">Crypto<wbr>Note</a>
|
|
564
|
+
</li>
|
|
565
|
+
<li class=" tsd-kind-class">
|
|
566
|
+
<a href="levinpacket.html" class="tsd-kind-icon">Levin<wbr>Packet</a>
|
|
567
|
+
</li>
|
|
568
|
+
<li class=" tsd-kind-class">
|
|
569
|
+
<a href="multisig.html" class="tsd-kind-icon">Multisig</a>
|
|
570
|
+
</li>
|
|
571
|
+
</ul>
|
|
572
|
+
<ul class="current">
|
|
573
|
+
<li class="current tsd-kind-class">
|
|
574
|
+
<a href="multisigmessage.html" class="tsd-kind-icon">Multisig<wbr>Message</a>
|
|
575
|
+
<ul>
|
|
576
|
+
<li class=" tsd-kind-constructor tsd-parent-kind-class">
|
|
577
|
+
<a href="multisigmessage.html#constructor" class="tsd-kind-icon">constructor</a>
|
|
578
|
+
</li>
|
|
579
|
+
<li class=" tsd-kind-accessor tsd-parent-kind-class">
|
|
580
|
+
<a href="multisigmessage.html#destination" class="tsd-kind-icon">destination</a>
|
|
581
|
+
</li>
|
|
582
|
+
<li class=" tsd-kind-get-signature tsd-parent-kind-class">
|
|
583
|
+
<a href="multisigmessage.html#nonce" class="tsd-kind-icon">nonce</a>
|
|
584
|
+
</li>
|
|
585
|
+
<li class=" tsd-kind-accessor tsd-parent-kind-class">
|
|
586
|
+
<a href="multisigmessage.html#partialkeyimages" class="tsd-kind-icon">partial<wbr>Key<wbr>Images</a>
|
|
587
|
+
</li>
|
|
588
|
+
<li class=" tsd-kind-accessor tsd-parent-kind-class">
|
|
589
|
+
<a href="multisigmessage.html#partialsigningkeys" class="tsd-kind-icon">partial<wbr>Signing<wbr>Keys</a>
|
|
590
|
+
</li>
|
|
591
|
+
<li class=" tsd-kind-accessor tsd-parent-kind-class">
|
|
592
|
+
<a href="multisigmessage.html#preparedtransactions" class="tsd-kind-icon">prepared<wbr>Transactions</a>
|
|
593
|
+
</li>
|
|
594
|
+
<li class=" tsd-kind-accessor tsd-parent-kind-class">
|
|
595
|
+
<a href="multisigmessage.html#source" class="tsd-kind-icon">source</a>
|
|
596
|
+
</li>
|
|
597
|
+
<li class=" tsd-kind-get-signature tsd-parent-kind-class">
|
|
598
|
+
<a href="multisigmessage.html#spendkeys" class="tsd-kind-icon">spend<wbr>Keys</a>
|
|
599
|
+
</li>
|
|
600
|
+
<li class=" tsd-kind-get-signature tsd-parent-kind-class">
|
|
601
|
+
<a href="multisigmessage.html#view" class="tsd-kind-icon">view</a>
|
|
602
|
+
</li>
|
|
603
|
+
<li class=" tsd-kind-method tsd-parent-kind-class">
|
|
604
|
+
<a href="multisigmessage.html#addspendkeys" class="tsd-kind-icon">add<wbr>Spend<wbr>Keys</a>
|
|
605
|
+
</li>
|
|
606
|
+
<li class=" tsd-kind-method tsd-parent-kind-class">
|
|
607
|
+
<a href="multisigmessage.html#encode" class="tsd-kind-icon">encode</a>
|
|
608
|
+
</li>
|
|
609
|
+
<li class=" tsd-kind-method tsd-parent-kind-class tsd-is-static">
|
|
610
|
+
<a href="multisigmessage.html#decode" class="tsd-kind-icon">decode</a>
|
|
611
|
+
</li>
|
|
612
|
+
</ul>
|
|
613
|
+
</li>
|
|
614
|
+
</ul>
|
|
615
|
+
<ul class="after-current">
|
|
616
|
+
<li class=" tsd-kind-class">
|
|
617
|
+
<a href="parentblock.html" class="tsd-kind-icon">Parent<wbr>Block</a>
|
|
618
|
+
</li>
|
|
619
|
+
<li class=" tsd-kind-class">
|
|
620
|
+
<a href="transaction.html" class="tsd-kind-icon">Transaction</a>
|
|
621
|
+
</li>
|
|
622
|
+
</ul>
|
|
623
|
+
</nav>
|
|
624
|
+
</div>
|
|
625
|
+
</div>
|
|
626
|
+
</div>
|
|
627
|
+
<footer class="with-border-bottom">
|
|
628
|
+
<div class="container">
|
|
629
|
+
<h2>Legend</h2>
|
|
630
|
+
<div class="tsd-legend-group">
|
|
631
|
+
<ul class="tsd-legend">
|
|
632
|
+
<li class="tsd-kind-module"><span class="tsd-kind-icon">Module</span></li>
|
|
633
|
+
<li class="tsd-kind-object-literal"><span class="tsd-kind-icon">Object literal</span></li>
|
|
634
|
+
<li class="tsd-kind-variable"><span class="tsd-kind-icon">Variable</span></li>
|
|
635
|
+
<li class="tsd-kind-function"><span class="tsd-kind-icon">Function</span></li>
|
|
636
|
+
<li class="tsd-kind-function tsd-has-type-parameter"><span class="tsd-kind-icon">Function with type parameter</span></li>
|
|
637
|
+
<li class="tsd-kind-index-signature"><span class="tsd-kind-icon">Index signature</span></li>
|
|
638
|
+
<li class="tsd-kind-type-alias"><span class="tsd-kind-icon">Type alias</span></li>
|
|
639
|
+
<li class="tsd-kind-type-alias tsd-has-type-parameter"><span class="tsd-kind-icon">Type alias with type parameter</span></li>
|
|
640
|
+
</ul>
|
|
641
|
+
<ul class="tsd-legend">
|
|
642
|
+
<li class="tsd-kind-enum"><span class="tsd-kind-icon">Enumeration</span></li>
|
|
643
|
+
<li class="tsd-kind-enum-member"><span class="tsd-kind-icon">Enumeration member</span></li>
|
|
644
|
+
<li class="tsd-kind-property tsd-parent-kind-enum"><span class="tsd-kind-icon">Property</span></li>
|
|
645
|
+
<li class="tsd-kind-method tsd-parent-kind-enum"><span class="tsd-kind-icon">Method</span></li>
|
|
646
|
+
</ul>
|
|
647
|
+
<ul class="tsd-legend">
|
|
648
|
+
<li class="tsd-kind-interface"><span class="tsd-kind-icon">Interface</span></li>
|
|
649
|
+
<li class="tsd-kind-interface tsd-has-type-parameter"><span class="tsd-kind-icon">Interface with type parameter</span></li>
|
|
650
|
+
<li class="tsd-kind-constructor tsd-parent-kind-interface"><span class="tsd-kind-icon">Constructor</span></li>
|
|
651
|
+
<li class="tsd-kind-property tsd-parent-kind-interface"><span class="tsd-kind-icon">Property</span></li>
|
|
652
|
+
<li class="tsd-kind-method tsd-parent-kind-interface"><span class="tsd-kind-icon">Method</span></li>
|
|
653
|
+
<li class="tsd-kind-index-signature tsd-parent-kind-interface"><span class="tsd-kind-icon">Index signature</span></li>
|
|
654
|
+
</ul>
|
|
655
|
+
<ul class="tsd-legend">
|
|
656
|
+
<li class="tsd-kind-class"><span class="tsd-kind-icon">Class</span></li>
|
|
657
|
+
<li class="tsd-kind-class tsd-has-type-parameter"><span class="tsd-kind-icon">Class with type parameter</span></li>
|
|
658
|
+
<li class="tsd-kind-constructor tsd-parent-kind-class"><span class="tsd-kind-icon">Constructor</span></li>
|
|
659
|
+
<li class="tsd-kind-property tsd-parent-kind-class"><span class="tsd-kind-icon">Property</span></li>
|
|
660
|
+
<li class="tsd-kind-method tsd-parent-kind-class"><span class="tsd-kind-icon">Method</span></li>
|
|
661
|
+
<li class="tsd-kind-accessor tsd-parent-kind-class"><span class="tsd-kind-icon">Accessor</span></li>
|
|
662
|
+
<li class="tsd-kind-index-signature tsd-parent-kind-class"><span class="tsd-kind-icon">Index signature</span></li>
|
|
663
|
+
</ul>
|
|
664
|
+
<ul class="tsd-legend">
|
|
665
|
+
<li class="tsd-kind-constructor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited constructor</span></li>
|
|
666
|
+
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited property</span></li>
|
|
667
|
+
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited method</span></li>
|
|
668
|
+
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-inherited"><span class="tsd-kind-icon">Inherited accessor</span></li>
|
|
669
|
+
</ul>
|
|
670
|
+
<ul class="tsd-legend">
|
|
671
|
+
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected property</span></li>
|
|
672
|
+
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected method</span></li>
|
|
673
|
+
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-protected"><span class="tsd-kind-icon">Protected accessor</span></li>
|
|
674
|
+
</ul>
|
|
675
|
+
<ul class="tsd-legend">
|
|
676
|
+
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private property</span></li>
|
|
677
|
+
<li class="tsd-kind-method tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private method</span></li>
|
|
678
|
+
<li class="tsd-kind-accessor tsd-parent-kind-class tsd-is-private"><span class="tsd-kind-icon">Private accessor</span></li>
|
|
679
|
+
</ul>
|
|
680
|
+
<ul class="tsd-legend">
|
|
681
|
+
<li class="tsd-kind-property tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static property</span></li>
|
|
682
|
+
<li class="tsd-kind-call-signature tsd-parent-kind-class tsd-is-static"><span class="tsd-kind-icon">Static method</span></li>
|
|
683
|
+
</ul>
|
|
684
|
+
</div>
|
|
685
|
+
</div>
|
|
686
|
+
</footer>
|
|
687
|
+
<div class="container tsd-generator">
|
|
688
|
+
<p>Generated using <a href="https://typedoc.org/" target="_blank">TypeDoc</a></p>
|
|
689
|
+
</div>
|
|
690
|
+
<div class="overlay"></div>
|
|
691
|
+
<script src="../assets/js/main.js"></script>
|
|
692
|
+
<script>if (location.protocol == 'file:') document.write('<script src="../assets/js/search.js"><' + '/script>');</script>
|
|
693
|
+
</body>
|
|
694
|
+
</html>
|