@bsv/sdk 1.2.6 → 1.2.7

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 (74) hide show
  1. package/dist/cjs/package.json +1 -1
  2. package/dist/cjs/src/script/templates/PushDrop.js +2 -2
  3. package/dist/cjs/src/script/templates/PushDrop.js.map +1 -1
  4. package/dist/cjs/src/transaction/Transaction.js +1 -5
  5. package/dist/cjs/src/transaction/Transaction.js.map +1 -1
  6. package/dist/cjs/src/wallet/CachedKeyDeriver.js +4 -4
  7. package/dist/cjs/src/wallet/CachedKeyDeriver.js.map +1 -1
  8. package/dist/cjs/src/wallet/KeyDeriver.js +5 -5
  9. package/dist/cjs/src/wallet/KeyDeriver.js.map +1 -1
  10. package/dist/cjs/src/wallet/ProtoWallet.js.map +1 -1
  11. package/dist/cjs/src/wallet/Wallet.interfaces.js +14 -0
  12. package/dist/cjs/src/wallet/Wallet.interfaces.js.map +1 -1
  13. package/dist/cjs/src/wallet/WalletClient.js.map +1 -1
  14. package/dist/cjs/src/wallet/substrates/WalletWireProcessor.js.map +1 -1
  15. package/dist/cjs/src/wallet/substrates/WalletWireTransceiver.js.map +1 -1
  16. package/dist/cjs/src/wallet/substrates/XDM.js.map +1 -1
  17. package/dist/cjs/src/wallet/substrates/window.CWI.js.map +1 -1
  18. package/dist/cjs/tsconfig.cjs.tsbuildinfo +1 -1
  19. package/dist/esm/src/script/templates/PushDrop.js +2 -2
  20. package/dist/esm/src/script/templates/PushDrop.js.map +1 -1
  21. package/dist/esm/src/transaction/Transaction.js +1 -5
  22. package/dist/esm/src/transaction/Transaction.js.map +1 -1
  23. package/dist/esm/src/wallet/CachedKeyDeriver.js +4 -4
  24. package/dist/esm/src/wallet/CachedKeyDeriver.js.map +1 -1
  25. package/dist/esm/src/wallet/KeyDeriver.js +5 -5
  26. package/dist/esm/src/wallet/KeyDeriver.js.map +1 -1
  27. package/dist/esm/src/wallet/ProtoWallet.js.map +1 -1
  28. package/dist/esm/src/wallet/Wallet.interfaces.js +13 -1
  29. package/dist/esm/src/wallet/Wallet.interfaces.js.map +1 -1
  30. package/dist/esm/src/wallet/WalletClient.js.map +1 -1
  31. package/dist/esm/src/wallet/substrates/WalletWireProcessor.js.map +1 -1
  32. package/dist/esm/src/wallet/substrates/WalletWireTransceiver.js.map +1 -1
  33. package/dist/esm/src/wallet/substrates/XDM.js.map +1 -1
  34. package/dist/esm/src/wallet/substrates/window.CWI.js.map +1 -1
  35. package/dist/esm/tsconfig.esm.tsbuildinfo +1 -1
  36. package/dist/types/src/script/templates/PushDrop.d.ts +5 -4
  37. package/dist/types/src/script/templates/PushDrop.d.ts.map +1 -1
  38. package/dist/types/src/transaction/Transaction.d.ts +0 -1
  39. package/dist/types/src/transaction/Transaction.d.ts.map +1 -1
  40. package/dist/types/src/wallet/CachedKeyDeriver.d.ts +9 -8
  41. package/dist/types/src/wallet/CachedKeyDeriver.d.ts.map +1 -1
  42. package/dist/types/src/wallet/KeyDeriver.d.ts +10 -9
  43. package/dist/types/src/wallet/KeyDeriver.d.ts.map +1 -1
  44. package/dist/types/src/wallet/ProtoWallet.d.ts +10 -10
  45. package/dist/types/src/wallet/ProtoWallet.d.ts.map +1 -1
  46. package/dist/types/src/wallet/Wallet.interfaces.d.ts +30 -2
  47. package/dist/types/src/wallet/Wallet.interfaces.d.ts.map +1 -1
  48. package/dist/types/src/wallet/WalletClient.d.ts +10 -10
  49. package/dist/types/src/wallet/WalletClient.d.ts.map +1 -1
  50. package/dist/types/src/wallet/substrates/WalletWireProcessor.d.ts.map +1 -1
  51. package/dist/types/src/wallet/substrates/WalletWireTransceiver.d.ts +10 -10
  52. package/dist/types/src/wallet/substrates/WalletWireTransceiver.d.ts.map +1 -1
  53. package/dist/types/src/wallet/substrates/XDM.d.ts +10 -10
  54. package/dist/types/src/wallet/substrates/XDM.d.ts.map +1 -1
  55. package/dist/types/src/wallet/substrates/window.CWI.d.ts +10 -10
  56. package/dist/types/src/wallet/substrates/window.CWI.d.ts.map +1 -1
  57. package/dist/types/tsconfig.types.tsbuildinfo +1 -1
  58. package/dist/umd/bundle.js +1 -1
  59. package/docs/overlay-tools.md +21 -19
  60. package/docs/script.md +21 -19
  61. package/docs/transaction.md +4 -6
  62. package/docs/wallet.md +229 -196
  63. package/package.json +1 -1
  64. package/src/script/templates/PushDrop.ts +5 -4
  65. package/src/transaction/Transaction.ts +1 -5
  66. package/src/wallet/CachedKeyDeriver.ts +9 -8
  67. package/src/wallet/KeyDeriver.ts +11 -10
  68. package/src/wallet/ProtoWallet.ts +10 -9
  69. package/src/wallet/Wallet.interfaces.ts +32 -2
  70. package/src/wallet/WalletClient.ts +9 -9
  71. package/src/wallet/substrates/WalletWireProcessor.ts +3 -2
  72. package/src/wallet/substrates/WalletWireTransceiver.ts +11 -11
  73. package/src/wallet/substrates/XDM.ts +9 -9
  74. package/src/wallet/substrates/window.CWI.ts +9 -9
package/docs/wallet.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # API
2
2
 
3
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
4
4
 
5
5
  ## Interfaces
6
6
 
@@ -26,7 +26,7 @@ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](
26
26
  | [IdentityCertifier](#interface-identitycertifier) | [SendWithResult](#interface-sendwithresult) | [WalletWire](#interface-walletwire) |
27
27
  | [InternalizeActionArgs](#interface-internalizeactionargs) | [SignActionArgs](#interface-signactionargs) | |
28
28
 
29
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
29
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
30
30
 
31
31
  ---
32
32
 
@@ -40,7 +40,7 @@ export interface AbortActionArgs {
40
40
 
41
41
  See also: [Base64String](#type-base64string)
42
42
 
43
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
43
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
44
44
 
45
45
  ---
46
46
  ### Interface: AbortActionResult
@@ -51,7 +51,7 @@ export interface AbortActionResult {
51
51
  }
52
52
  ```
53
53
 
54
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
54
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
55
55
 
56
56
  ---
57
57
  ### Interface: AcquireCertificateArgs
@@ -75,7 +75,7 @@ export interface AcquireCertificateArgs {
75
75
 
76
76
  See also: [AcquisitionProtocol](#type-acquisitionprotocol), [Base64String](#type-base64string), [BooleanDefaultFalse](#type-booleandefaultfalse), [CertificateFieldNameUnder50Bytes](#type-certificatefieldnameunder50bytes), [DescriptionString5to50Bytes](#type-descriptionstring5to50bytes), [HexString](#type-hexstring), [KeyringRevealer](#type-keyringrevealer), [OutpointString](#type-outpointstring), [PubKeyHex](#type-pubkeyhex)
77
77
 
78
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
78
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
79
79
 
80
80
  ---
81
81
  ### Interface: AcquireCertificateResult
@@ -87,7 +87,7 @@ export interface AcquireCertificateResult extends WalletCertificate {
87
87
 
88
88
  See also: [WalletCertificate](#interface-walletcertificate)
89
89
 
90
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
90
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
91
91
 
92
92
  ---
93
93
  ### Interface: BasketInsertion
@@ -102,7 +102,7 @@ export interface BasketInsertion {
102
102
 
103
103
  See also: [BasketStringUnder300Bytes](#type-basketstringunder300bytes), [OutputTagStringUnder300Bytes](#type-outputtagstringunder300bytes)
104
104
 
105
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
105
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
106
106
 
107
107
  ---
108
108
  ### Interface: CreateActionArgs
@@ -122,7 +122,7 @@ export interface CreateActionArgs {
122
122
 
123
123
  See also: [BEEF](#type-beef), [CreateActionInput](#interface-createactioninput), [CreateActionOptions](#interface-createactionoptions), [CreateActionOutput](#interface-createactionoutput), [DescriptionString5to50Bytes](#type-descriptionstring5to50bytes), [LabelStringUnder300Bytes](#type-labelstringunder300bytes), [PositiveIntegerOrZero](#type-positiveintegerorzero)
124
124
 
125
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
125
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
126
126
 
127
127
  ---
128
128
  ### Interface: CreateActionInput
@@ -139,7 +139,7 @@ export interface CreateActionInput {
139
139
 
140
140
  See also: [DescriptionString5to50Bytes](#type-descriptionstring5to50bytes), [HexString](#type-hexstring), [OutpointString](#type-outpointstring), [PositiveInteger](#type-positiveinteger), [PositiveIntegerOrZero](#type-positiveintegerorzero)
141
141
 
142
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
142
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
143
143
 
144
144
  ---
145
145
  ### Interface: CreateActionOptions
@@ -160,7 +160,7 @@ export interface CreateActionOptions {
160
160
 
161
161
  See also: [BooleanDefaultFalse](#type-booleandefaultfalse), [BooleanDefaultTrue](#type-booleandefaulttrue), [OutpointString](#type-outpointstring), [TXIDHexString](#type-txidhexstring), [TrustSelf](#type-trustself)
162
162
 
163
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
163
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
164
164
 
165
165
  ---
166
166
  ### Interface: CreateActionOutput
@@ -178,7 +178,7 @@ export interface CreateActionOutput {
178
178
 
179
179
  See also: [BasketStringUnder300Bytes](#type-basketstringunder300bytes), [DescriptionString5to50Bytes](#type-descriptionstring5to50bytes), [HexString](#type-hexstring), [OutputTagStringUnder300Bytes](#type-outputtagstringunder300bytes), [SatoshiValue](#type-satoshivalue)
180
180
 
181
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
181
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
182
182
 
183
183
  ---
184
184
  ### Interface: CreateActionResult
@@ -195,7 +195,7 @@ export interface CreateActionResult {
195
195
 
196
196
  See also: [AtomicBEEF](#type-atomicbeef), [OutpointString](#type-outpointstring), [SendWithResult](#interface-sendwithresult), [SignableTransaction](#interface-signabletransaction), [TXIDHexString](#type-txidhexstring)
197
197
 
198
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
198
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
199
199
 
200
200
  ---
201
201
  ### Interface: CreateHmacArgs
@@ -208,7 +208,7 @@ export interface CreateHmacArgs extends WalletEncryptionArgs {
208
208
 
209
209
  See also: [Byte](#type-byte), [WalletEncryptionArgs](#interface-walletencryptionargs)
210
210
 
211
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
211
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
212
212
 
213
213
  ---
214
214
  ### Interface: CreateSignatureArgs
@@ -222,7 +222,7 @@ export interface CreateSignatureArgs extends WalletEncryptionArgs {
222
222
 
223
223
  See also: [Byte](#type-byte), [WalletEncryptionArgs](#interface-walletencryptionargs)
224
224
 
225
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
225
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
226
226
 
227
227
  ---
228
228
  ### Interface: DiscoverByAttributesArgs
@@ -238,7 +238,7 @@ export interface DiscoverByAttributesArgs {
238
238
 
239
239
  See also: [BooleanDefaultTrue](#type-booleandefaulttrue), [CertificateFieldNameUnder50Bytes](#type-certificatefieldnameunder50bytes), [PositiveIntegerDefault10Max10000](#type-positiveintegerdefault10max10000), [PositiveIntegerOrZero](#type-positiveintegerorzero)
240
240
 
241
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
241
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
242
242
 
243
243
  ---
244
244
  ### Interface: DiscoverByIdentityKeyArgs
@@ -254,7 +254,7 @@ export interface DiscoverByIdentityKeyArgs {
254
254
 
255
255
  See also: [BooleanDefaultTrue](#type-booleandefaulttrue), [PositiveIntegerDefault10Max10000](#type-positiveintegerdefault10max10000), [PositiveIntegerOrZero](#type-positiveintegerorzero), [PubKeyHex](#type-pubkeyhex)
256
256
 
257
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
257
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
258
258
 
259
259
  ---
260
260
  ### Interface: DiscoverCertificatesResult
@@ -268,7 +268,7 @@ export interface DiscoverCertificatesResult {
268
268
 
269
269
  See also: [IdentityCertificate](#interface-identitycertificate), [PositiveIntegerOrZero](#type-positiveintegerorzero)
270
270
 
271
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
271
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
272
272
 
273
273
  ---
274
274
  ### Interface: GetPublicKeyArgs
@@ -286,7 +286,7 @@ export interface GetPublicKeyArgs extends Partial<WalletEncryptionArgs> {
286
286
 
287
287
  See also: [BooleanDefaultFalse](#type-booleandefaultfalse), [WalletEncryptionArgs](#interface-walletencryptionargs)
288
288
 
289
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
289
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
290
290
 
291
291
  ---
292
292
  ### Interface: IdentityCertificate
@@ -301,7 +301,7 @@ export interface IdentityCertificate extends WalletCertificate {
301
301
 
302
302
  See also: [Base64String](#type-base64string), [CertificateFieldNameUnder50Bytes](#type-certificatefieldnameunder50bytes), [IdentityCertifier](#interface-identitycertifier), [WalletCertificate](#interface-walletcertificate)
303
303
 
304
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
304
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
305
305
 
306
306
  ---
307
307
  ### Interface: IdentityCertifier
@@ -317,7 +317,7 @@ export interface IdentityCertifier {
317
317
 
318
318
  See also: [DescriptionString5to50Bytes](#type-descriptionstring5to50bytes), [EntityIconURLStringMax500Bytes](#type-entityiconurlstringmax500bytes), [EntityNameStringMax100Bytes](#type-entitynamestringmax100bytes), [PositiveIntegerMax10](#type-positiveintegermax10)
319
319
 
320
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
320
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
321
321
 
322
322
  ---
323
323
  ### Interface: InternalizeActionArgs
@@ -334,7 +334,7 @@ export interface InternalizeActionArgs {
334
334
 
335
335
  See also: [AtomicBEEF](#type-atomicbeef), [BooleanDefaultTrue](#type-booleandefaulttrue), [DescriptionString5to50Bytes](#type-descriptionstring5to50bytes), [InternalizeOutput](#interface-internalizeoutput), [LabelStringUnder300Bytes](#type-labelstringunder300bytes)
336
336
 
337
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
337
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
338
338
 
339
339
  ---
340
340
  ### Interface: InternalizeActionResult
@@ -345,7 +345,7 @@ export interface InternalizeActionResult {
345
345
  }
346
346
  ```
347
347
 
348
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
348
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
349
349
 
350
350
  ---
351
351
  ### Interface: InternalizeOutput
@@ -361,14 +361,17 @@ export interface InternalizeOutput {
361
361
 
362
362
  See also: [BasketInsertion](#interface-basketinsertion), [PositiveIntegerOrZero](#type-positiveintegerorzero), [WalletPayment](#interface-walletpayment)
363
363
 
364
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
364
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
365
365
 
366
366
  ---
367
367
  ### Interface: KeyLinkageArgs
368
368
 
369
369
  ```ts
370
370
  export interface KeyLinkageArgs {
371
- protocolID: WalletProtocol;
371
+ protocolID: [
372
+ SecurityLevel,
373
+ ProtocolString5To400Bytes
374
+ ];
372
375
  keyID: KeyIDStringUnder800Bytes;
373
376
  counterparty?: WalletCounterparty;
374
377
  privileged?: BooleanDefaultFalse;
@@ -376,9 +379,9 @@ export interface KeyLinkageArgs {
376
379
  }
377
380
  ```
378
381
 
379
- See also: [BooleanDefaultFalse](#type-booleandefaultfalse), [DescriptionString5to50Bytes](#type-descriptionstring5to50bytes), [KeyIDStringUnder800Bytes](#type-keyidstringunder800bytes), [WalletCounterparty](#type-walletcounterparty), [WalletProtocol](#type-walletprotocol)
382
+ See also: [BooleanDefaultFalse](#type-booleandefaultfalse), [DescriptionString5to50Bytes](#type-descriptionstring5to50bytes), [KeyIDStringUnder800Bytes](#type-keyidstringunder800bytes), [ProtocolString5To400Bytes](#type-protocolstring5to400bytes), [SecurityLevel](#type-securitylevel), [WalletCounterparty](#type-walletcounterparty)
380
383
 
381
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
384
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
382
385
 
383
386
  ---
384
387
  ### Interface: KeyLinkageResult
@@ -395,7 +398,7 @@ export interface KeyLinkageResult {
395
398
 
396
399
  See also: [Byte](#type-byte), [PubKeyHex](#type-pubkeyhex)
397
400
 
398
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
401
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
399
402
 
400
403
  ---
401
404
  ### Interface: ListActionsArgs
@@ -418,7 +421,7 @@ export interface ListActionsArgs {
418
421
 
419
422
  See also: [BooleanDefaultFalse](#type-booleandefaultfalse), [BooleanDefaultTrue](#type-booleandefaulttrue), [LabelStringUnder300Bytes](#type-labelstringunder300bytes), [PositiveIntegerDefault10Max10000](#type-positiveintegerdefault10max10000), [PositiveIntegerOrZero](#type-positiveintegerorzero)
420
423
 
421
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
424
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
422
425
 
423
426
  ---
424
427
  ### Interface: ListActionsResult
@@ -432,7 +435,7 @@ export interface ListActionsResult {
432
435
 
433
436
  See also: [PositiveIntegerOrZero](#type-positiveintegerorzero), [WalletAction](#interface-walletaction)
434
437
 
435
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
438
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
436
439
 
437
440
  ---
438
441
  ### Interface: ListCertificatesArgs
@@ -450,7 +453,7 @@ export interface ListCertificatesArgs {
450
453
 
451
454
  See also: [Base64String](#type-base64string), [BooleanDefaultFalse](#type-booleandefaultfalse), [DescriptionString5to50Bytes](#type-descriptionstring5to50bytes), [PositiveIntegerDefault10Max10000](#type-positiveintegerdefault10max10000), [PositiveIntegerOrZero](#type-positiveintegerorzero), [PubKeyHex](#type-pubkeyhex)
452
455
 
453
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
456
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
454
457
 
455
458
  ---
456
459
  ### Interface: ListCertificatesResult
@@ -464,7 +467,7 @@ export interface ListCertificatesResult {
464
467
 
465
468
  See also: [PositiveIntegerOrZero](#type-positiveintegerorzero), [WalletCertificate](#interface-walletcertificate)
466
469
 
467
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
470
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
468
471
 
469
472
  ---
470
473
  ### Interface: ListOutputsArgs
@@ -486,7 +489,7 @@ export interface ListOutputsArgs {
486
489
 
487
490
  See also: [BasketStringUnder300Bytes](#type-basketstringunder300bytes), [BooleanDefaultFalse](#type-booleandefaultfalse), [BooleanDefaultTrue](#type-booleandefaulttrue), [OutputTagStringUnder300Bytes](#type-outputtagstringunder300bytes), [PositiveIntegerDefault10Max10000](#type-positiveintegerdefault10max10000), [PositiveIntegerOrZero](#type-positiveintegerorzero)
488
491
 
489
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
492
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
490
493
 
491
494
  ---
492
495
  ### Interface: ListOutputsResult
@@ -501,7 +504,7 @@ export interface ListOutputsResult {
501
504
 
502
505
  See also: [BEEF](#type-beef), [PositiveIntegerOrZero](#type-positiveintegerorzero), [WalletOutput](#interface-walletoutput)
503
506
 
504
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
507
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
505
508
 
506
509
  ---
507
510
  ### Interface: ProveCertificateArgs
@@ -518,7 +521,7 @@ export interface ProveCertificateArgs {
518
521
 
519
522
  See also: [BooleanDefaultFalse](#type-booleandefaultfalse), [CertificateFieldNameUnder50Bytes](#type-certificatefieldnameunder50bytes), [DescriptionString5to50Bytes](#type-descriptionstring5to50bytes), [PubKeyHex](#type-pubkeyhex), [WalletCertificate](#interface-walletcertificate)
520
523
 
521
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
524
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
522
525
 
523
526
  ---
524
527
  ### Interface: ProveCertificateResult
@@ -531,7 +534,7 @@ export interface ProveCertificateResult {
531
534
 
532
535
  See also: [Base64String](#type-base64string), [CertificateFieldNameUnder50Bytes](#type-certificatefieldnameunder50bytes)
533
536
 
534
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
537
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
535
538
 
536
539
  ---
537
540
  ### Interface: RelinquishCertificateArgs
@@ -546,7 +549,7 @@ export interface RelinquishCertificateArgs {
546
549
 
547
550
  See also: [Base64String](#type-base64string), [PubKeyHex](#type-pubkeyhex)
548
551
 
549
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
552
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
550
553
 
551
554
  ---
552
555
  ### Interface: RevealCounterpartyKeyLinkageArgs
@@ -562,7 +565,7 @@ export interface RevealCounterpartyKeyLinkageArgs {
562
565
 
563
566
  See also: [BooleanDefaultFalse](#type-booleandefaultfalse), [DescriptionString5to50Bytes](#type-descriptionstring5to50bytes), [PubKeyHex](#type-pubkeyhex)
564
567
 
565
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
568
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
566
569
 
567
570
  ---
568
571
  ### Interface: RevealCounterpartyKeyLinkageResult
@@ -575,7 +578,7 @@ export interface RevealCounterpartyKeyLinkageResult extends KeyLinkageResult {
575
578
 
576
579
  See also: [ISOTimestampString](#type-isotimestampstring), [KeyLinkageResult](#interface-keylinkageresult)
577
580
 
578
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
581
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
579
582
 
580
583
  ---
581
584
  ### Interface: RevealSpecificKeyLinkageArgs
@@ -589,7 +592,7 @@ export interface RevealSpecificKeyLinkageArgs extends KeyLinkageArgs {
589
592
 
590
593
  See also: [KeyLinkageArgs](#interface-keylinkageargs), [PubKeyHex](#type-pubkeyhex), [WalletCounterparty](#type-walletcounterparty)
591
594
 
592
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
595
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
593
596
 
594
597
  ---
595
598
  ### Interface: RevealSpecificKeyLinkageResult
@@ -604,7 +607,7 @@ export interface RevealSpecificKeyLinkageResult extends KeyLinkageResult {
604
607
 
605
608
  See also: [Byte](#type-byte), [KeyIDStringUnder800Bytes](#type-keyidstringunder800bytes), [KeyLinkageResult](#interface-keylinkageresult), [WalletProtocol](#type-walletprotocol)
606
609
 
607
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
610
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
608
611
 
609
612
  ---
610
613
  ### Interface: SendWithResult
@@ -618,7 +621,7 @@ export interface SendWithResult {
618
621
 
619
622
  See also: [TXIDHexString](#type-txidhexstring)
620
623
 
621
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
624
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
622
625
 
623
626
  ---
624
627
  ### Interface: SignActionArgs
@@ -633,7 +636,7 @@ export interface SignActionArgs {
633
636
 
634
637
  See also: [Base64String](#type-base64string), [PositiveIntegerOrZero](#type-positiveintegerorzero), [SignActionOptions](#interface-signactionoptions), [SignActionSpend](#interface-signactionspend)
635
638
 
636
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
639
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
637
640
 
638
641
  ---
639
642
  ### Interface: SignActionOptions
@@ -649,7 +652,7 @@ export interface SignActionOptions {
649
652
 
650
653
  See also: [BooleanDefaultFalse](#type-booleandefaultfalse), [BooleanDefaultTrue](#type-booleandefaulttrue), [TXIDHexString](#type-txidhexstring)
651
654
 
652
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
655
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
653
656
 
654
657
  ---
655
658
  ### Interface: SignActionResult
@@ -664,7 +667,7 @@ export interface SignActionResult {
664
667
 
665
668
  See also: [AtomicBEEF](#type-atomicbeef), [SendWithResult](#interface-sendwithresult), [TXIDHexString](#type-txidhexstring)
666
669
 
667
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
670
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
668
671
 
669
672
  ---
670
673
  ### Interface: SignActionSpend
@@ -678,7 +681,7 @@ export interface SignActionSpend {
678
681
 
679
682
  See also: [HexString](#type-hexstring), [PositiveIntegerOrZero](#type-positiveintegerorzero)
680
683
 
681
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
684
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
682
685
 
683
686
  ---
684
687
  ### Interface: SignableTransaction
@@ -692,7 +695,7 @@ export interface SignableTransaction {
692
695
 
693
696
  See also: [AtomicBEEF](#type-atomicbeef), [Base64String](#type-base64string)
694
697
 
695
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
698
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
696
699
 
697
700
  ---
698
701
  ### Interface: VerifyHmacArgs
@@ -706,7 +709,7 @@ export interface VerifyHmacArgs extends WalletEncryptionArgs {
706
709
 
707
710
  See also: [Byte](#type-byte), [WalletEncryptionArgs](#interface-walletencryptionargs)
708
711
 
709
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
712
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
710
713
 
711
714
  ---
712
715
  ### Interface: VerifySignatureArgs
@@ -722,7 +725,7 @@ export interface VerifySignatureArgs extends WalletEncryptionArgs {
722
725
 
723
726
  See also: [BooleanDefaultFalse](#type-booleandefaultfalse), [Byte](#type-byte), [WalletEncryptionArgs](#interface-walletencryptionargs)
724
727
 
725
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
728
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
726
729
 
727
730
  ---
728
731
  ### Interface: Wallet
@@ -1102,7 +1105,7 @@ See also: [OriginatorDomainNameStringUnder250Bytes](#type-originatordomainnamest
1102
1105
 
1103
1106
  </details>
1104
1107
 
1105
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
1108
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
1106
1109
 
1107
1110
  ---
1108
1111
  ### Interface: WalletAction
@@ -1124,7 +1127,7 @@ export interface WalletAction {
1124
1127
 
1125
1128
  See also: [ActionStatus](#type-actionstatus), [DescriptionString5to50Bytes](#type-descriptionstring5to50bytes), [LabelStringUnder300Bytes](#type-labelstringunder300bytes), [PositiveIntegerOrZero](#type-positiveintegerorzero), [SatoshiValue](#type-satoshivalue), [TXIDHexString](#type-txidhexstring), [WalletActionInput](#interface-walletactioninput), [WalletActionOutput](#interface-walletactionoutput)
1126
1129
 
1127
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
1130
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
1128
1131
 
1129
1132
  ---
1130
1133
  ### Interface: WalletActionInput
@@ -1142,7 +1145,7 @@ export interface WalletActionInput {
1142
1145
 
1143
1146
  See also: [DescriptionString5to50Bytes](#type-descriptionstring5to50bytes), [HexString](#type-hexstring), [OutpointString](#type-outpointstring), [PositiveIntegerOrZero](#type-positiveintegerorzero), [SatoshiValue](#type-satoshivalue)
1144
1147
 
1145
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
1148
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
1146
1149
 
1147
1150
  ---
1148
1151
  ### Interface: WalletActionOutput
@@ -1162,7 +1165,7 @@ export interface WalletActionOutput {
1162
1165
 
1163
1166
  See also: [BasketStringUnder300Bytes](#type-basketstringunder300bytes), [DescriptionString5to50Bytes](#type-descriptionstring5to50bytes), [HexString](#type-hexstring), [OutputTagStringUnder300Bytes](#type-outputtagstringunder300bytes), [PositiveIntegerOrZero](#type-positiveintegerorzero), [SatoshiValue](#type-satoshivalue)
1164
1167
 
1165
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
1168
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
1166
1169
 
1167
1170
  ---
1168
1171
  ### Interface: WalletCertificate
@@ -1181,7 +1184,7 @@ export interface WalletCertificate {
1181
1184
 
1182
1185
  See also: [Base64String](#type-base64string), [CertificateFieldNameUnder50Bytes](#type-certificatefieldnameunder50bytes), [HexString](#type-hexstring), [OutpointString](#type-outpointstring), [PubKeyHex](#type-pubkeyhex)
1183
1186
 
1184
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
1187
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
1185
1188
 
1186
1189
  ---
1187
1190
  ### Interface: WalletDecryptArgs
@@ -1194,7 +1197,7 @@ export interface WalletDecryptArgs extends WalletEncryptionArgs {
1194
1197
 
1195
1198
  See also: [Byte](#type-byte), [WalletEncryptionArgs](#interface-walletencryptionargs)
1196
1199
 
1197
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
1200
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
1198
1201
 
1199
1202
  ---
1200
1203
  ### Interface: WalletEncryptArgs
@@ -1207,7 +1210,7 @@ export interface WalletEncryptArgs extends WalletEncryptionArgs {
1207
1210
 
1208
1211
  See also: [Byte](#type-byte), [WalletEncryptionArgs](#interface-walletencryptionargs)
1209
1212
 
1210
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
1213
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
1211
1214
 
1212
1215
  ---
1213
1216
  ### Interface: WalletEncryptionArgs
@@ -1220,7 +1223,7 @@ export interface WalletEncryptionArgs extends KeyLinkageArgs {
1220
1223
 
1221
1224
  See also: [BooleanDefaultTrue](#type-booleandefaulttrue), [KeyLinkageArgs](#interface-keylinkageargs)
1222
1225
 
1223
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
1226
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
1224
1227
 
1225
1228
  ---
1226
1229
  ### Interface: WalletErrorObject
@@ -1236,7 +1239,7 @@ export interface WalletErrorObject extends Error {
1236
1239
  }
1237
1240
  ```
1238
1241
 
1239
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
1242
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
1240
1243
 
1241
1244
  ---
1242
1245
  ### Interface: WalletOutput
@@ -1255,7 +1258,7 @@ export interface WalletOutput {
1255
1258
 
1256
1259
  See also: [HexString](#type-hexstring), [LabelStringUnder300Bytes](#type-labelstringunder300bytes), [OutpointString](#type-outpointstring), [OutputTagStringUnder300Bytes](#type-outputtagstringunder300bytes), [SatoshiValue](#type-satoshivalue)
1257
1260
 
1258
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
1261
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
1259
1262
 
1260
1263
  ---
1261
1264
  ### Interface: WalletPayment
@@ -1270,7 +1273,7 @@ export interface WalletPayment {
1270
1273
 
1271
1274
  See also: [Base64String](#type-base64string), [PubKeyHex](#type-pubkeyhex)
1272
1275
 
1273
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
1276
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
1274
1277
 
1275
1278
  ---
1276
1279
  ### Interface: WalletWire
@@ -1283,7 +1286,7 @@ export default interface WalletWire {
1283
1286
  }
1284
1287
  ```
1285
1288
 
1286
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
1289
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
1287
1290
 
1288
1291
  ---
1289
1292
  ## Classes
@@ -1301,7 +1304,7 @@ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](
1301
1304
  | [WindowCWISubstrate](#class-windowcwisubstrate) |
1302
1305
  | [XDMSubstrate](#class-xdmsubstrate) |
1303
1306
 
1304
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
1307
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
1305
1308
 
1306
1309
  ---
1307
1310
 
@@ -1317,26 +1320,26 @@ export default class CachedKeyDeriver {
1317
1320
  maxCacheSize?: number;
1318
1321
  })
1319
1322
  derivePublicKey(protocolID: [
1320
- 0 | 1 | 2,
1323
+ SecurityLevel,
1321
1324
  string
1322
1325
  ], keyID: string, counterparty: PublicKey | string | "self" | "anyone", forSelf: boolean = false): PublicKey
1323
1326
  derivePrivateKey(protocolID: [
1324
- 0 | 1 | 2,
1327
+ SecurityLevel,
1325
1328
  string
1326
1329
  ], keyID: string, counterparty: PublicKey | string | "self" | "anyone"): PrivateKey
1327
1330
  deriveSymmetricKey(protocolID: [
1328
- 0 | 1 | 2,
1331
+ SecurityLevel,
1329
1332
  string
1330
1333
  ], keyID: string, counterparty: PublicKey | string | "self" | "anyone"): SymmetricKey
1331
1334
  revealCounterpartySecret(counterparty: PublicKey | string | "self" | "anyone"): number[]
1332
1335
  revealSpecificSecret(counterparty: PublicKey | string | "self" | "anyone", protocolID: [
1333
- 0 | 1 | 2,
1336
+ SecurityLevel,
1334
1337
  string
1335
1338
  ], keyID: string): number[]
1336
1339
  }
1337
1340
  ```
1338
1341
 
1339
- See also: [PrivateKey](#class-privatekey), [PublicKey](#class-publickey), [SymmetricKey](#class-symmetrickey)
1342
+ See also: [PrivateKey](#class-privatekey), [PublicKey](#class-publickey), [SecurityLevel](#type-securitylevel), [SymmetricKey](#class-symmetrickey)
1340
1343
 
1341
1344
  <details>
1342
1345
 
@@ -1367,11 +1370,11 @@ Caches the result for future calls with the same parameters.
1367
1370
 
1368
1371
  ```ts
1369
1372
  derivePrivateKey(protocolID: [
1370
- 0 | 1 | 2,
1373
+ SecurityLevel,
1371
1374
  string
1372
1375
  ], keyID: string, counterparty: PublicKey | string | "self" | "anyone"): PrivateKey
1373
1376
  ```
1374
- See also: [PrivateKey](#class-privatekey), [PublicKey](#class-publickey)
1377
+ See also: [PrivateKey](#class-privatekey), [PublicKey](#class-publickey), [SecurityLevel](#type-securitylevel)
1375
1378
 
1376
1379
  Returns
1377
1380
 
@@ -1393,11 +1396,11 @@ Caches the result for future calls with the same parameters.
1393
1396
 
1394
1397
  ```ts
1395
1398
  derivePublicKey(protocolID: [
1396
- 0 | 1 | 2,
1399
+ SecurityLevel,
1397
1400
  string
1398
1401
  ], keyID: string, counterparty: PublicKey | string | "self" | "anyone", forSelf: boolean = false): PublicKey
1399
1402
  ```
1400
- See also: [PublicKey](#class-publickey)
1403
+ See also: [PublicKey](#class-publickey), [SecurityLevel](#type-securitylevel)
1401
1404
 
1402
1405
  Returns
1403
1406
 
@@ -1421,11 +1424,11 @@ Caches the result for future calls with the same parameters.
1421
1424
 
1422
1425
  ```ts
1423
1426
  deriveSymmetricKey(protocolID: [
1424
- 0 | 1 | 2,
1427
+ SecurityLevel,
1425
1428
  string
1426
1429
  ], keyID: string, counterparty: PublicKey | string | "self" | "anyone"): SymmetricKey
1427
1430
  ```
1428
- See also: [PublicKey](#class-publickey), [SymmetricKey](#class-symmetrickey)
1431
+ See also: [PublicKey](#class-publickey), [SecurityLevel](#type-securitylevel), [SymmetricKey](#class-symmetrickey)
1429
1432
 
1430
1433
  Returns
1431
1434
 
@@ -1474,11 +1477,11 @@ Caches the result for future calls with the same parameters.
1474
1477
 
1475
1478
  ```ts
1476
1479
  revealSpecificSecret(counterparty: PublicKey | string | "self" | "anyone", protocolID: [
1477
- 0 | 1 | 2,
1480
+ SecurityLevel,
1478
1481
  string
1479
1482
  ], keyID: string): number[]
1480
1483
  ```
1481
- See also: [PublicKey](#class-publickey)
1484
+ See also: [PublicKey](#class-publickey), [SecurityLevel](#type-securitylevel)
1482
1485
 
1483
1486
  Returns
1484
1487
 
@@ -1495,7 +1498,7 @@ Argument Details
1495
1498
 
1496
1499
  </details>
1497
1500
 
1498
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
1501
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
1499
1502
 
1500
1503
  ---
1501
1504
  ### Class: HTTPWalletWire
@@ -1512,7 +1515,7 @@ export default class HTTPWalletWire implements WalletWire {
1512
1515
 
1513
1516
  See also: [WalletWire](#interface-walletwire)
1514
1517
 
1515
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
1518
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
1516
1519
 
1517
1520
  ---
1518
1521
  ### Class: KeyDeriver
@@ -1525,26 +1528,26 @@ export default class KeyDeriver {
1525
1528
  rootKey: PrivateKey;
1526
1529
  constructor(rootKey: PrivateKey | "anyone")
1527
1530
  derivePublicKey(protocolID: [
1528
- 0 | 1 | 2,
1531
+ SecurityLevel,
1529
1532
  string
1530
1533
  ], keyID: string, counterparty: PublicKey | string | "self" | "anyone", forSelf: boolean = false): PublicKey
1531
1534
  derivePrivateKey(protocolID: [
1532
- 0 | 1 | 2,
1535
+ SecurityLevel,
1533
1536
  string
1534
1537
  ], keyID: string, counterparty: PublicKey | string | "self" | "anyone"): PrivateKey
1535
1538
  deriveSymmetricKey(protocolID: [
1536
- 0 | 1 | 2,
1539
+ SecurityLevel,
1537
1540
  string
1538
1541
  ], keyID: string, counterparty: PublicKey | string | "self" | "anyone"): SymmetricKey
1539
1542
  revealCounterpartySecret(counterparty: PublicKey | string | "self" | "anyone"): number[]
1540
1543
  revealSpecificSecret(counterparty: PublicKey | string | "self" | "anyone", protocolID: [
1541
- 0 | 1 | 2,
1544
+ SecurityLevel,
1542
1545
  string
1543
1546
  ], keyID: string): number[]
1544
1547
  }
1545
1548
  ```
1546
1549
 
1547
- See also: [PrivateKey](#class-privatekey), [PublicKey](#class-publickey), [SymmetricKey](#class-symmetrickey)
1550
+ See also: [PrivateKey](#class-privatekey), [PublicKey](#class-publickey), [SecurityLevel](#type-securitylevel), [SymmetricKey](#class-symmetrickey)
1548
1551
 
1549
1552
  <details>
1550
1553
 
@@ -1570,11 +1573,11 @@ Derives a private key based on protocol ID, key ID, and counterparty.
1570
1573
 
1571
1574
  ```ts
1572
1575
  derivePrivateKey(protocolID: [
1573
- 0 | 1 | 2,
1576
+ SecurityLevel,
1574
1577
  string
1575
1578
  ], keyID: string, counterparty: PublicKey | string | "self" | "anyone"): PrivateKey
1576
1579
  ```
1577
- See also: [PrivateKey](#class-privatekey), [PublicKey](#class-publickey)
1580
+ See also: [PrivateKey](#class-privatekey), [PublicKey](#class-publickey), [SecurityLevel](#type-securitylevel)
1578
1581
 
1579
1582
  Returns
1580
1583
 
@@ -1595,11 +1598,11 @@ Derives a public key based on protocol ID, key ID, and counterparty.
1595
1598
 
1596
1599
  ```ts
1597
1600
  derivePublicKey(protocolID: [
1598
- 0 | 1 | 2,
1601
+ SecurityLevel,
1599
1602
  string
1600
1603
  ], keyID: string, counterparty: PublicKey | string | "self" | "anyone", forSelf: boolean = false): PublicKey
1601
1604
  ```
1602
- See also: [PublicKey](#class-publickey)
1605
+ See also: [PublicKey](#class-publickey), [SecurityLevel](#type-securitylevel)
1603
1606
 
1604
1607
  Returns
1605
1608
 
@@ -1623,11 +1626,11 @@ Note: Symmetric keys should not be derivable by everyone due to security risks.
1623
1626
 
1624
1627
  ```ts
1625
1628
  deriveSymmetricKey(protocolID: [
1626
- 0 | 1 | 2,
1629
+ SecurityLevel,
1627
1630
  string
1628
1631
  ], keyID: string, counterparty: PublicKey | string | "self" | "anyone"): SymmetricKey
1629
1632
  ```
1630
- See also: [PublicKey](#class-publickey), [SymmetricKey](#class-symmetrickey)
1633
+ See also: [PublicKey](#class-publickey), [SecurityLevel](#type-securitylevel), [SymmetricKey](#class-symmetrickey)
1631
1634
 
1632
1635
  Returns
1633
1636
 
@@ -1675,11 +1678,11 @@ Reveals the specific key association for a given protocol ID, key ID, and counte
1675
1678
 
1676
1679
  ```ts
1677
1680
  revealSpecificSecret(counterparty: PublicKey | string | "self" | "anyone", protocolID: [
1678
- 0 | 1 | 2,
1681
+ SecurityLevel,
1679
1682
  string
1680
1683
  ], keyID: string): number[]
1681
1684
  ```
1682
- See also: [PublicKey](#class-publickey)
1685
+ See also: [PublicKey](#class-publickey), [SecurityLevel](#type-securitylevel)
1683
1686
 
1684
1687
  Returns
1685
1688
 
@@ -1696,7 +1699,7 @@ Argument Details
1696
1699
 
1697
1700
  </details>
1698
1701
 
1699
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
1702
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
1700
1703
 
1701
1704
  ---
1702
1705
  ### Class: ProtoWallet
@@ -1875,7 +1878,7 @@ export default class ProtoWallet implements Wallet {
1875
1878
  async getPublicKey(args: {
1876
1879
  identityKey?: true;
1877
1880
  protocolID?: [
1878
- 0 | 1 | 2,
1881
+ SecurityLevel,
1879
1882
  ProtocolString5To400Bytes
1880
1883
  ];
1881
1884
  keyID?: KeyIDStringUnder800Bytes;
@@ -1903,7 +1906,7 @@ export default class ProtoWallet implements Wallet {
1903
1906
  counterparty: PubKeyHex;
1904
1907
  verifier: PubKeyHex;
1905
1908
  protocolID: [
1906
- 0 | 1 | 2,
1909
+ SecurityLevel,
1907
1910
  ProtocolString5To400Bytes
1908
1911
  ];
1909
1912
  keyID: KeyIDStringUnder800Bytes;
@@ -1914,7 +1917,7 @@ export default class ProtoWallet implements Wallet {
1914
1917
  verifier: PubKeyHex;
1915
1918
  counterparty: PubKeyHex;
1916
1919
  protocolID: [
1917
- 0 | 1 | 2,
1920
+ SecurityLevel,
1918
1921
  ProtocolString5To400Bytes
1919
1922
  ];
1920
1923
  keyID: KeyIDStringUnder800Bytes;
@@ -1925,7 +1928,7 @@ export default class ProtoWallet implements Wallet {
1925
1928
  async encrypt(args: {
1926
1929
  plaintext: Byte[];
1927
1930
  protocolID: [
1928
- 0 | 1 | 2,
1931
+ SecurityLevel,
1929
1932
  ProtocolString5To400Bytes
1930
1933
  ];
1931
1934
  keyID: KeyIDStringUnder800Bytes;
@@ -1938,7 +1941,7 @@ export default class ProtoWallet implements Wallet {
1938
1941
  async decrypt(args: {
1939
1942
  ciphertext: Byte[];
1940
1943
  protocolID: [
1941
- 0 | 1 | 2,
1944
+ SecurityLevel,
1942
1945
  ProtocolString5To400Bytes
1943
1946
  ];
1944
1947
  keyID: KeyIDStringUnder800Bytes;
@@ -1951,7 +1954,7 @@ export default class ProtoWallet implements Wallet {
1951
1954
  async createHmac(args: {
1952
1955
  data: Byte[];
1953
1956
  protocolID: [
1954
- 0 | 1 | 2,
1957
+ SecurityLevel,
1955
1958
  ProtocolString5To400Bytes
1956
1959
  ];
1957
1960
  keyID: KeyIDStringUnder800Bytes;
@@ -1965,7 +1968,7 @@ export default class ProtoWallet implements Wallet {
1965
1968
  data: Byte[];
1966
1969
  hmac: Byte[];
1967
1970
  protocolID: [
1968
- 0 | 1 | 2,
1971
+ SecurityLevel,
1969
1972
  ProtocolString5To400Bytes
1970
1973
  ];
1971
1974
  keyID: KeyIDStringUnder800Bytes;
@@ -1979,7 +1982,7 @@ export default class ProtoWallet implements Wallet {
1979
1982
  data?: Byte[];
1980
1983
  hashToDirectlySign?: Byte[];
1981
1984
  protocolID: [
1982
- 0 | 1 | 2,
1985
+ SecurityLevel,
1983
1986
  ProtocolString5To400Bytes
1984
1987
  ];
1985
1988
  keyID: KeyIDStringUnder800Bytes;
@@ -1994,7 +1997,7 @@ export default class ProtoWallet implements Wallet {
1994
1997
  hashToDirectlyVerify?: Byte[];
1995
1998
  signature: Byte[];
1996
1999
  protocolID: [
1997
- 0 | 1 | 2,
2000
+ SecurityLevel,
1998
2001
  ProtocolString5To400Bytes
1999
2002
  ];
2000
2003
  keyID: KeyIDStringUnder800Bytes;
@@ -2141,9 +2144,9 @@ export default class ProtoWallet implements Wallet {
2141
2144
  }
2142
2145
  ```
2143
2146
 
2144
- See also: [BEEF](#type-beef), [Base64String](#type-base64string), [BasketStringUnder300Bytes](#type-basketstringunder300bytes), [BooleanDefaultFalse](#type-booleandefaultfalse), [BooleanDefaultTrue](#type-booleandefaulttrue), [Byte](#type-byte), [CertificateFieldNameUnder50Bytes](#type-certificatefieldnameunder50bytes), [DescriptionString5to50Bytes](#type-descriptionstring5to50bytes), [EntityIconURLStringMax500Bytes](#type-entityiconurlstringmax500bytes), [EntityNameStringMax100Bytes](#type-entitynamestringmax100bytes), [HexString](#type-hexstring), [ISOTimestampString](#type-isotimestampstring), [KeyDeriver](#class-keyderiver), [KeyIDStringUnder800Bytes](#type-keyidstringunder800bytes), [LabelStringUnder300Bytes](#type-labelstringunder300bytes), [OriginatorDomainNameStringUnder250Bytes](#type-originatordomainnamestringunder250bytes), [OutpointString](#type-outpointstring), [OutputTagStringUnder300Bytes](#type-outputtagstringunder300bytes), [PositiveInteger](#type-positiveinteger), [PositiveIntegerDefault10Max10000](#type-positiveintegerdefault10max10000), [PositiveIntegerMax10](#type-positiveintegermax10), [PositiveIntegerOrZero](#type-positiveintegerorzero), [PrivateKey](#class-privatekey), [ProtocolString5To400Bytes](#type-protocolstring5to400bytes), [PubKeyHex](#type-pubkeyhex), [SatoshiValue](#type-satoshivalue), [TXIDHexString](#type-txidhexstring), [VersionString7To30Bytes](#type-versionstring7to30bytes), [Wallet](#interface-wallet), [decrypt](#variable-decrypt), [encrypt](#variable-encrypt)
2147
+ See also: [BEEF](#type-beef), [Base64String](#type-base64string), [BasketStringUnder300Bytes](#type-basketstringunder300bytes), [BooleanDefaultFalse](#type-booleandefaultfalse), [BooleanDefaultTrue](#type-booleandefaulttrue), [Byte](#type-byte), [CertificateFieldNameUnder50Bytes](#type-certificatefieldnameunder50bytes), [DescriptionString5to50Bytes](#type-descriptionstring5to50bytes), [EntityIconURLStringMax500Bytes](#type-entityiconurlstringmax500bytes), [EntityNameStringMax100Bytes](#type-entitynamestringmax100bytes), [HexString](#type-hexstring), [ISOTimestampString](#type-isotimestampstring), [KeyDeriver](#class-keyderiver), [KeyIDStringUnder800Bytes](#type-keyidstringunder800bytes), [LabelStringUnder300Bytes](#type-labelstringunder300bytes), [OriginatorDomainNameStringUnder250Bytes](#type-originatordomainnamestringunder250bytes), [OutpointString](#type-outpointstring), [OutputTagStringUnder300Bytes](#type-outputtagstringunder300bytes), [PositiveInteger](#type-positiveinteger), [PositiveIntegerDefault10Max10000](#type-positiveintegerdefault10max10000), [PositiveIntegerMax10](#type-positiveintegermax10), [PositiveIntegerOrZero](#type-positiveintegerorzero), [PrivateKey](#class-privatekey), [ProtocolString5To400Bytes](#type-protocolstring5to400bytes), [PubKeyHex](#type-pubkeyhex), [SatoshiValue](#type-satoshivalue), [SecurityLevel](#type-securitylevel), [TXIDHexString](#type-txidhexstring), [VersionString7To30Bytes](#type-versionstring7to30bytes), [Wallet](#interface-wallet), [decrypt](#variable-decrypt), [encrypt](#variable-encrypt)
2145
2148
 
2146
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
2149
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
2147
2150
 
2148
2151
  ---
2149
2152
  ### Class: WalletClient
@@ -2177,7 +2180,7 @@ export default class WalletClient implements Wallet {
2177
2180
  async getPublicKey(args: {
2178
2181
  identityKey?: true;
2179
2182
  protocolID?: [
2180
- 0 | 1 | 2,
2183
+ SecurityLevel,
2181
2184
  ProtocolString5To400Bytes
2182
2185
  ];
2183
2186
  keyID?: KeyIDStringUnder800Bytes;
@@ -2205,7 +2208,7 @@ export default class WalletClient implements Wallet {
2205
2208
  counterparty: PubKeyHex;
2206
2209
  verifier: PubKeyHex;
2207
2210
  protocolID: [
2208
- 0 | 1 | 2,
2211
+ SecurityLevel,
2209
2212
  ProtocolString5To400Bytes
2210
2213
  ];
2211
2214
  keyID: KeyIDStringUnder800Bytes;
@@ -2216,7 +2219,7 @@ export default class WalletClient implements Wallet {
2216
2219
  verifier: PubKeyHex;
2217
2220
  counterparty: PubKeyHex;
2218
2221
  protocolID: [
2219
- 0 | 1 | 2,
2222
+ SecurityLevel,
2220
2223
  ProtocolString5To400Bytes
2221
2224
  ];
2222
2225
  keyID: KeyIDStringUnder800Bytes;
@@ -2227,7 +2230,7 @@ export default class WalletClient implements Wallet {
2227
2230
  async encrypt(args: {
2228
2231
  plaintext: Byte[];
2229
2232
  protocolID: [
2230
- 0 | 1 | 2,
2233
+ SecurityLevel,
2231
2234
  ProtocolString5To400Bytes
2232
2235
  ];
2233
2236
  keyID: KeyIDStringUnder800Bytes;
@@ -2240,7 +2243,7 @@ export default class WalletClient implements Wallet {
2240
2243
  async decrypt(args: {
2241
2244
  ciphertext: Byte[];
2242
2245
  protocolID: [
2243
- 0 | 1 | 2,
2246
+ SecurityLevel,
2244
2247
  ProtocolString5To400Bytes
2245
2248
  ];
2246
2249
  keyID: KeyIDStringUnder800Bytes;
@@ -2253,7 +2256,7 @@ export default class WalletClient implements Wallet {
2253
2256
  async createHmac(args: {
2254
2257
  data: Byte[];
2255
2258
  protocolID: [
2256
- 0 | 1 | 2,
2259
+ SecurityLevel,
2257
2260
  ProtocolString5To400Bytes
2258
2261
  ];
2259
2262
  keyID: KeyIDStringUnder800Bytes;
@@ -2267,7 +2270,7 @@ export default class WalletClient implements Wallet {
2267
2270
  data: Byte[];
2268
2271
  hmac: Byte[];
2269
2272
  protocolID: [
2270
- 0 | 1 | 2,
2273
+ SecurityLevel,
2271
2274
  ProtocolString5To400Bytes
2272
2275
  ];
2273
2276
  keyID: KeyIDStringUnder800Bytes;
@@ -2281,7 +2284,7 @@ export default class WalletClient implements Wallet {
2281
2284
  data?: Byte[];
2282
2285
  hashToDirectlySign?: Byte[];
2283
2286
  protocolID: [
2284
- 0 | 1 | 2,
2287
+ SecurityLevel,
2285
2288
  ProtocolString5To400Bytes
2286
2289
  ];
2287
2290
  keyID: KeyIDStringUnder800Bytes;
@@ -2296,7 +2299,7 @@ export default class WalletClient implements Wallet {
2296
2299
  hashToDirectlyVerify?: Byte[];
2297
2300
  signature: Byte[];
2298
2301
  protocolID: [
2299
- 0 | 1 | 2,
2302
+ SecurityLevel,
2300
2303
  ProtocolString5To400Bytes
2301
2304
  ];
2302
2305
  keyID: KeyIDStringUnder800Bytes;
@@ -2357,9 +2360,9 @@ export default class WalletClient implements Wallet {
2357
2360
  }
2358
2361
  ```
2359
2362
 
2360
- See also: [AcquireCertificateArgs](#interface-acquirecertificateargs), [AcquireCertificateResult](#interface-acquirecertificateresult), [Base64String](#type-base64string), [BasketStringUnder300Bytes](#type-basketstringunder300bytes), [BooleanDefaultFalse](#type-booleandefaultfalse), [Byte](#type-byte), [CertificateFieldNameUnder50Bytes](#type-certificatefieldnameunder50bytes), [CreateActionArgs](#interface-createactionargs), [CreateActionResult](#interface-createactionresult), [DescriptionString5to50Bytes](#type-descriptionstring5to50bytes), [DiscoverCertificatesResult](#interface-discovercertificatesresult), [HexString](#type-hexstring), [ISOTimestampString](#type-isotimestampstring), [InternalizeActionArgs](#interface-internalizeactionargs), [KeyIDStringUnder800Bytes](#type-keyidstringunder800bytes), [ListActionsArgs](#interface-listactionsargs), [ListActionsResult](#interface-listactionsresult), [ListCertificatesResult](#interface-listcertificatesresult), [ListOutputsArgs](#interface-listoutputsargs), [ListOutputsResult](#interface-listoutputsresult), [OriginatorDomainNameStringUnder250Bytes](#type-originatordomainnamestringunder250bytes), [OutpointString](#type-outpointstring), [PositiveInteger](#type-positiveinteger), [PositiveIntegerDefault10Max10000](#type-positiveintegerdefault10max10000), [PositiveIntegerOrZero](#type-positiveintegerorzero), [ProtocolString5To400Bytes](#type-protocolstring5to400bytes), [ProveCertificateArgs](#interface-provecertificateargs), [ProveCertificateResult](#interface-provecertificateresult), [PubKeyHex](#type-pubkeyhex), [SignActionArgs](#interface-signactionargs), [SignActionResult](#interface-signactionresult), [VersionString7To30Bytes](#type-versionstring7to30bytes), [Wallet](#interface-wallet), [decrypt](#variable-decrypt), [encrypt](#variable-encrypt)
2363
+ See also: [AcquireCertificateArgs](#interface-acquirecertificateargs), [AcquireCertificateResult](#interface-acquirecertificateresult), [Base64String](#type-base64string), [BasketStringUnder300Bytes](#type-basketstringunder300bytes), [BooleanDefaultFalse](#type-booleandefaultfalse), [Byte](#type-byte), [CertificateFieldNameUnder50Bytes](#type-certificatefieldnameunder50bytes), [CreateActionArgs](#interface-createactionargs), [CreateActionResult](#interface-createactionresult), [DescriptionString5to50Bytes](#type-descriptionstring5to50bytes), [DiscoverCertificatesResult](#interface-discovercertificatesresult), [HexString](#type-hexstring), [ISOTimestampString](#type-isotimestampstring), [InternalizeActionArgs](#interface-internalizeactionargs), [KeyIDStringUnder800Bytes](#type-keyidstringunder800bytes), [ListActionsArgs](#interface-listactionsargs), [ListActionsResult](#interface-listactionsresult), [ListCertificatesResult](#interface-listcertificatesresult), [ListOutputsArgs](#interface-listoutputsargs), [ListOutputsResult](#interface-listoutputsresult), [OriginatorDomainNameStringUnder250Bytes](#type-originatordomainnamestringunder250bytes), [OutpointString](#type-outpointstring), [PositiveInteger](#type-positiveinteger), [PositiveIntegerDefault10Max10000](#type-positiveintegerdefault10max10000), [PositiveIntegerOrZero](#type-positiveintegerorzero), [ProtocolString5To400Bytes](#type-protocolstring5to400bytes), [ProveCertificateArgs](#interface-provecertificateargs), [ProveCertificateResult](#interface-provecertificateresult), [PubKeyHex](#type-pubkeyhex), [SecurityLevel](#type-securitylevel), [SignActionArgs](#interface-signactionargs), [SignActionResult](#interface-signactionresult), [VersionString7To30Bytes](#type-versionstring7to30bytes), [Wallet](#interface-wallet), [decrypt](#variable-decrypt), [encrypt](#variable-encrypt)
2361
2364
 
2362
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
2365
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
2363
2366
 
2364
2367
  ---
2365
2368
  ### Class: WalletError
@@ -2372,7 +2375,7 @@ export class WalletError extends Error {
2372
2375
  }
2373
2376
  ```
2374
2377
 
2375
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
2378
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
2376
2379
 
2377
2380
  ---
2378
2381
  ### Class: WalletWireProcessor
@@ -2389,7 +2392,7 @@ export default class WalletWireProcessor implements WalletWire {
2389
2392
 
2390
2393
  See also: [Wallet](#interface-wallet), [WalletWire](#interface-walletwire)
2391
2394
 
2392
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
2395
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
2393
2396
 
2394
2397
  ---
2395
2398
  ### Class: WalletWireTransceiver
@@ -2422,7 +2425,7 @@ export default class WalletWireTransceiver implements Wallet {
2422
2425
  seekPermission?: BooleanDefaultTrue;
2423
2426
  identityKey?: true;
2424
2427
  protocolID?: [
2425
- 0 | 1 | 2,
2428
+ SecurityLevel,
2426
2429
  ProtocolString5To400Bytes
2427
2430
  ];
2428
2431
  keyID?: KeyIDStringUnder800Bytes;
@@ -2450,7 +2453,7 @@ export default class WalletWireTransceiver implements Wallet {
2450
2453
  counterparty: PubKeyHex;
2451
2454
  verifier: PubKeyHex;
2452
2455
  protocolID: [
2453
- 0 | 1 | 2,
2456
+ SecurityLevel,
2454
2457
  ProtocolString5To400Bytes
2455
2458
  ];
2456
2459
  keyID: KeyIDStringUnder800Bytes;
@@ -2461,7 +2464,7 @@ export default class WalletWireTransceiver implements Wallet {
2461
2464
  verifier: PubKeyHex;
2462
2465
  counterparty: PubKeyHex;
2463
2466
  protocolID: [
2464
- 0 | 1 | 2,
2467
+ SecurityLevel,
2465
2468
  ProtocolString5To400Bytes
2466
2469
  ];
2467
2470
  keyID: KeyIDStringUnder800Bytes;
@@ -2473,7 +2476,7 @@ export default class WalletWireTransceiver implements Wallet {
2473
2476
  seekPermission?: BooleanDefaultTrue;
2474
2477
  plaintext: Byte[];
2475
2478
  protocolID: [
2476
- 0 | 1 | 2,
2479
+ SecurityLevel,
2477
2480
  ProtocolString5To400Bytes
2478
2481
  ];
2479
2482
  keyID: KeyIDStringUnder800Bytes;
@@ -2487,7 +2490,7 @@ export default class WalletWireTransceiver implements Wallet {
2487
2490
  seekPermission?: BooleanDefaultTrue;
2488
2491
  ciphertext: Byte[];
2489
2492
  protocolID: [
2490
- 0 | 1 | 2,
2493
+ SecurityLevel,
2491
2494
  ProtocolString5To400Bytes
2492
2495
  ];
2493
2496
  keyID: KeyIDStringUnder800Bytes;
@@ -2501,7 +2504,7 @@ export default class WalletWireTransceiver implements Wallet {
2501
2504
  seekPermission?: BooleanDefaultTrue;
2502
2505
  data: Byte[];
2503
2506
  protocolID: [
2504
- 0 | 1 | 2,
2507
+ SecurityLevel,
2505
2508
  ProtocolString5To400Bytes
2506
2509
  ];
2507
2510
  keyID: KeyIDStringUnder800Bytes;
@@ -2516,7 +2519,7 @@ export default class WalletWireTransceiver implements Wallet {
2516
2519
  data: Byte[];
2517
2520
  hmac: Byte[];
2518
2521
  protocolID: [
2519
- 0 | 1 | 2,
2522
+ SecurityLevel,
2520
2523
  ProtocolString5To400Bytes
2521
2524
  ];
2522
2525
  keyID: KeyIDStringUnder800Bytes;
@@ -2531,7 +2534,7 @@ export default class WalletWireTransceiver implements Wallet {
2531
2534
  data?: Byte[];
2532
2535
  hashToDirectlySign?: Byte[];
2533
2536
  protocolID: [
2534
- 0 | 1 | 2,
2537
+ SecurityLevel,
2535
2538
  ProtocolString5To400Bytes
2536
2539
  ];
2537
2540
  keyID: KeyIDStringUnder800Bytes;
@@ -2547,7 +2550,7 @@ export default class WalletWireTransceiver implements Wallet {
2547
2550
  hashToDirectlyVerify?: Byte[];
2548
2551
  signature: Byte[];
2549
2552
  protocolID: [
2550
- 0 | 1 | 2,
2553
+ SecurityLevel,
2551
2554
  ProtocolString5To400Bytes
2552
2555
  ];
2553
2556
  keyID: KeyIDStringUnder800Bytes;
@@ -2610,9 +2613,9 @@ export default class WalletWireTransceiver implements Wallet {
2610
2613
  }
2611
2614
  ```
2612
2615
 
2613
- See also: [AcquireCertificateArgs](#interface-acquirecertificateargs), [AcquireCertificateResult](#interface-acquirecertificateresult), [Base64String](#type-base64string), [BasketStringUnder300Bytes](#type-basketstringunder300bytes), [BooleanDefaultFalse](#type-booleandefaultfalse), [BooleanDefaultTrue](#type-booleandefaulttrue), [Byte](#type-byte), [CertificateFieldNameUnder50Bytes](#type-certificatefieldnameunder50bytes), [CreateActionArgs](#interface-createactionargs), [CreateActionResult](#interface-createactionresult), [DescriptionString5to50Bytes](#type-descriptionstring5to50bytes), [DiscoverCertificatesResult](#interface-discovercertificatesresult), [HexString](#type-hexstring), [ISOTimestampString](#type-isotimestampstring), [InternalizeActionArgs](#interface-internalizeactionargs), [KeyIDStringUnder800Bytes](#type-keyidstringunder800bytes), [ListActionsArgs](#interface-listactionsargs), [ListActionsResult](#interface-listactionsresult), [ListCertificatesResult](#interface-listcertificatesresult), [ListOutputsArgs](#interface-listoutputsargs), [ListOutputsResult](#interface-listoutputsresult), [OriginatorDomainNameStringUnder250Bytes](#type-originatordomainnamestringunder250bytes), [OutpointString](#type-outpointstring), [PositiveInteger](#type-positiveinteger), [PositiveIntegerDefault10Max10000](#type-positiveintegerdefault10max10000), [PositiveIntegerOrZero](#type-positiveintegerorzero), [ProtocolString5To400Bytes](#type-protocolstring5to400bytes), [ProveCertificateArgs](#interface-provecertificateargs), [ProveCertificateResult](#interface-provecertificateresult), [PubKeyHex](#type-pubkeyhex), [SignActionArgs](#interface-signactionargs), [SignActionResult](#interface-signactionresult), [VersionString7To30Bytes](#type-versionstring7to30bytes), [Wallet](#interface-wallet), [WalletWire](#interface-walletwire), [decrypt](#variable-decrypt), [encrypt](#variable-encrypt)
2616
+ See also: [AcquireCertificateArgs](#interface-acquirecertificateargs), [AcquireCertificateResult](#interface-acquirecertificateresult), [Base64String](#type-base64string), [BasketStringUnder300Bytes](#type-basketstringunder300bytes), [BooleanDefaultFalse](#type-booleandefaultfalse), [BooleanDefaultTrue](#type-booleandefaulttrue), [Byte](#type-byte), [CertificateFieldNameUnder50Bytes](#type-certificatefieldnameunder50bytes), [CreateActionArgs](#interface-createactionargs), [CreateActionResult](#interface-createactionresult), [DescriptionString5to50Bytes](#type-descriptionstring5to50bytes), [DiscoverCertificatesResult](#interface-discovercertificatesresult), [HexString](#type-hexstring), [ISOTimestampString](#type-isotimestampstring), [InternalizeActionArgs](#interface-internalizeactionargs), [KeyIDStringUnder800Bytes](#type-keyidstringunder800bytes), [ListActionsArgs](#interface-listactionsargs), [ListActionsResult](#interface-listactionsresult), [ListCertificatesResult](#interface-listcertificatesresult), [ListOutputsArgs](#interface-listoutputsargs), [ListOutputsResult](#interface-listoutputsresult), [OriginatorDomainNameStringUnder250Bytes](#type-originatordomainnamestringunder250bytes), [OutpointString](#type-outpointstring), [PositiveInteger](#type-positiveinteger), [PositiveIntegerDefault10Max10000](#type-positiveintegerdefault10max10000), [PositiveIntegerOrZero](#type-positiveintegerorzero), [ProtocolString5To400Bytes](#type-protocolstring5to400bytes), [ProveCertificateArgs](#interface-provecertificateargs), [ProveCertificateResult](#interface-provecertificateresult), [PubKeyHex](#type-pubkeyhex), [SecurityLevel](#type-securitylevel), [SignActionArgs](#interface-signactionargs), [SignActionResult](#interface-signactionresult), [VersionString7To30Bytes](#type-versionstring7to30bytes), [Wallet](#interface-wallet), [WalletWire](#interface-walletwire), [decrypt](#variable-decrypt), [encrypt](#variable-encrypt)
2614
2617
 
2615
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
2618
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
2616
2619
 
2617
2620
  ---
2618
2621
  ### Class: WindowCWISubstrate
@@ -2788,7 +2791,7 @@ export default class WindowCWISubstrate implements Wallet {
2788
2791
  async getPublicKey(args: {
2789
2792
  identityKey?: true;
2790
2793
  protocolID?: [
2791
- 0 | 1 | 2,
2794
+ SecurityLevel,
2792
2795
  ProtocolString5To400Bytes
2793
2796
  ];
2794
2797
  keyID?: KeyIDStringUnder800Bytes;
@@ -2816,7 +2819,7 @@ export default class WindowCWISubstrate implements Wallet {
2816
2819
  counterparty: PubKeyHex;
2817
2820
  verifier: PubKeyHex;
2818
2821
  protocolID: [
2819
- 0 | 1 | 2,
2822
+ SecurityLevel,
2820
2823
  ProtocolString5To400Bytes
2821
2824
  ];
2822
2825
  keyID: KeyIDStringUnder800Bytes;
@@ -2827,7 +2830,7 @@ export default class WindowCWISubstrate implements Wallet {
2827
2830
  verifier: PubKeyHex;
2828
2831
  counterparty: PubKeyHex;
2829
2832
  protocolID: [
2830
- 0 | 1 | 2,
2833
+ SecurityLevel,
2831
2834
  ProtocolString5To400Bytes
2832
2835
  ];
2833
2836
  keyID: KeyIDStringUnder800Bytes;
@@ -2838,7 +2841,7 @@ export default class WindowCWISubstrate implements Wallet {
2838
2841
  async encrypt(args: {
2839
2842
  plaintext: Byte[];
2840
2843
  protocolID: [
2841
- 0 | 1 | 2,
2844
+ SecurityLevel,
2842
2845
  ProtocolString5To400Bytes
2843
2846
  ];
2844
2847
  keyID: KeyIDStringUnder800Bytes;
@@ -2851,7 +2854,7 @@ export default class WindowCWISubstrate implements Wallet {
2851
2854
  async decrypt(args: {
2852
2855
  ciphertext: Byte[];
2853
2856
  protocolID: [
2854
- 0 | 1 | 2,
2857
+ SecurityLevel,
2855
2858
  ProtocolString5To400Bytes
2856
2859
  ];
2857
2860
  keyID: KeyIDStringUnder800Bytes;
@@ -2864,7 +2867,7 @@ export default class WindowCWISubstrate implements Wallet {
2864
2867
  async createHmac(args: {
2865
2868
  data: Byte[];
2866
2869
  protocolID: [
2867
- 0 | 1 | 2,
2870
+ SecurityLevel,
2868
2871
  ProtocolString5To400Bytes
2869
2872
  ];
2870
2873
  keyID: KeyIDStringUnder800Bytes;
@@ -2878,7 +2881,7 @@ export default class WindowCWISubstrate implements Wallet {
2878
2881
  data: Byte[];
2879
2882
  hmac: Byte[];
2880
2883
  protocolID: [
2881
- 0 | 1 | 2,
2884
+ SecurityLevel,
2882
2885
  ProtocolString5To400Bytes
2883
2886
  ];
2884
2887
  keyID: KeyIDStringUnder800Bytes;
@@ -2892,7 +2895,7 @@ export default class WindowCWISubstrate implements Wallet {
2892
2895
  data?: Byte[];
2893
2896
  hashToDirectlySign?: Byte[];
2894
2897
  protocolID: [
2895
- 0 | 1 | 2,
2898
+ SecurityLevel,
2896
2899
  ProtocolString5To400Bytes
2897
2900
  ];
2898
2901
  keyID: KeyIDStringUnder800Bytes;
@@ -2907,7 +2910,7 @@ export default class WindowCWISubstrate implements Wallet {
2907
2910
  hashToDirectlyVerify?: Byte[];
2908
2911
  signature: Byte[];
2909
2912
  protocolID: [
2910
- 0 | 1 | 2,
2913
+ SecurityLevel,
2911
2914
  ProtocolString5To400Bytes
2912
2915
  ];
2913
2916
  keyID: KeyIDStringUnder800Bytes;
@@ -3053,9 +3056,9 @@ export default class WindowCWISubstrate implements Wallet {
3053
3056
  }
3054
3057
  ```
3055
3058
 
3056
- See also: [BEEF](#type-beef), [Base64String](#type-base64string), [BasketStringUnder300Bytes](#type-basketstringunder300bytes), [BooleanDefaultFalse](#type-booleandefaultfalse), [BooleanDefaultTrue](#type-booleandefaulttrue), [Byte](#type-byte), [CertificateFieldNameUnder50Bytes](#type-certificatefieldnameunder50bytes), [DescriptionString5to50Bytes](#type-descriptionstring5to50bytes), [EntityIconURLStringMax500Bytes](#type-entityiconurlstringmax500bytes), [EntityNameStringMax100Bytes](#type-entitynamestringmax100bytes), [HexString](#type-hexstring), [ISOTimestampString](#type-isotimestampstring), [KeyIDStringUnder800Bytes](#type-keyidstringunder800bytes), [LabelStringUnder300Bytes](#type-labelstringunder300bytes), [OriginatorDomainNameStringUnder250Bytes](#type-originatordomainnamestringunder250bytes), [OutpointString](#type-outpointstring), [OutputTagStringUnder300Bytes](#type-outputtagstringunder300bytes), [PositiveInteger](#type-positiveinteger), [PositiveIntegerDefault10Max10000](#type-positiveintegerdefault10max10000), [PositiveIntegerMax10](#type-positiveintegermax10), [PositiveIntegerOrZero](#type-positiveintegerorzero), [ProtocolString5To400Bytes](#type-protocolstring5to400bytes), [PubKeyHex](#type-pubkeyhex), [SatoshiValue](#type-satoshivalue), [TXIDHexString](#type-txidhexstring), [VersionString7To30Bytes](#type-versionstring7to30bytes), [Wallet](#interface-wallet), [decrypt](#variable-decrypt), [encrypt](#variable-encrypt)
3059
+ See also: [BEEF](#type-beef), [Base64String](#type-base64string), [BasketStringUnder300Bytes](#type-basketstringunder300bytes), [BooleanDefaultFalse](#type-booleandefaultfalse), [BooleanDefaultTrue](#type-booleandefaulttrue), [Byte](#type-byte), [CertificateFieldNameUnder50Bytes](#type-certificatefieldnameunder50bytes), [DescriptionString5to50Bytes](#type-descriptionstring5to50bytes), [EntityIconURLStringMax500Bytes](#type-entityiconurlstringmax500bytes), [EntityNameStringMax100Bytes](#type-entitynamestringmax100bytes), [HexString](#type-hexstring), [ISOTimestampString](#type-isotimestampstring), [KeyIDStringUnder800Bytes](#type-keyidstringunder800bytes), [LabelStringUnder300Bytes](#type-labelstringunder300bytes), [OriginatorDomainNameStringUnder250Bytes](#type-originatordomainnamestringunder250bytes), [OutpointString](#type-outpointstring), [OutputTagStringUnder300Bytes](#type-outputtagstringunder300bytes), [PositiveInteger](#type-positiveinteger), [PositiveIntegerDefault10Max10000](#type-positiveintegerdefault10max10000), [PositiveIntegerMax10](#type-positiveintegermax10), [PositiveIntegerOrZero](#type-positiveintegerorzero), [ProtocolString5To400Bytes](#type-protocolstring5to400bytes), [PubKeyHex](#type-pubkeyhex), [SatoshiValue](#type-satoshivalue), [SecurityLevel](#type-securitylevel), [TXIDHexString](#type-txidhexstring), [VersionString7To30Bytes](#type-versionstring7to30bytes), [Wallet](#interface-wallet), [decrypt](#variable-decrypt), [encrypt](#variable-encrypt)
3057
3060
 
3058
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3061
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3059
3062
 
3060
3063
  ---
3061
3064
  ### Class: XDMSubstrate
@@ -3232,7 +3235,7 @@ export default class XDMSubstrate implements Wallet {
3232
3235
  async getPublicKey(args: {
3233
3236
  identityKey?: true;
3234
3237
  protocolID?: [
3235
- 0 | 1 | 2,
3238
+ SecurityLevel,
3236
3239
  ProtocolString5To400Bytes
3237
3240
  ];
3238
3241
  keyID?: KeyIDStringUnder800Bytes;
@@ -3260,7 +3263,7 @@ export default class XDMSubstrate implements Wallet {
3260
3263
  counterparty: PubKeyHex;
3261
3264
  verifier: PubKeyHex;
3262
3265
  protocolID: [
3263
- 0 | 1 | 2,
3266
+ SecurityLevel,
3264
3267
  ProtocolString5To400Bytes
3265
3268
  ];
3266
3269
  keyID: KeyIDStringUnder800Bytes;
@@ -3271,7 +3274,7 @@ export default class XDMSubstrate implements Wallet {
3271
3274
  verifier: PubKeyHex;
3272
3275
  counterparty: PubKeyHex;
3273
3276
  protocolID: [
3274
- 0 | 1 | 2,
3277
+ SecurityLevel,
3275
3278
  ProtocolString5To400Bytes
3276
3279
  ];
3277
3280
  keyID: KeyIDStringUnder800Bytes;
@@ -3282,7 +3285,7 @@ export default class XDMSubstrate implements Wallet {
3282
3285
  async encrypt(args: {
3283
3286
  plaintext: Byte[];
3284
3287
  protocolID: [
3285
- 0 | 1 | 2,
3288
+ SecurityLevel,
3286
3289
  ProtocolString5To400Bytes
3287
3290
  ];
3288
3291
  keyID: KeyIDStringUnder800Bytes;
@@ -3295,7 +3298,7 @@ export default class XDMSubstrate implements Wallet {
3295
3298
  async decrypt(args: {
3296
3299
  ciphertext: Byte[];
3297
3300
  protocolID: [
3298
- 0 | 1 | 2,
3301
+ SecurityLevel,
3299
3302
  ProtocolString5To400Bytes
3300
3303
  ];
3301
3304
  keyID: KeyIDStringUnder800Bytes;
@@ -3308,7 +3311,7 @@ export default class XDMSubstrate implements Wallet {
3308
3311
  async createHmac(args: {
3309
3312
  data: Byte[];
3310
3313
  protocolID: [
3311
- 0 | 1 | 2,
3314
+ SecurityLevel,
3312
3315
  ProtocolString5To400Bytes
3313
3316
  ];
3314
3317
  keyID: KeyIDStringUnder800Bytes;
@@ -3322,7 +3325,7 @@ export default class XDMSubstrate implements Wallet {
3322
3325
  data: Byte[];
3323
3326
  hmac: Byte[];
3324
3327
  protocolID: [
3325
- 0 | 1 | 2,
3328
+ SecurityLevel,
3326
3329
  ProtocolString5To400Bytes
3327
3330
  ];
3328
3331
  keyID: KeyIDStringUnder800Bytes;
@@ -3336,7 +3339,7 @@ export default class XDMSubstrate implements Wallet {
3336
3339
  data?: Byte[];
3337
3340
  hashToDirectlySign?: Byte[];
3338
3341
  protocolID: [
3339
- 0 | 1 | 2,
3342
+ SecurityLevel,
3340
3343
  ProtocolString5To400Bytes
3341
3344
  ];
3342
3345
  keyID: KeyIDStringUnder800Bytes;
@@ -3351,7 +3354,7 @@ export default class XDMSubstrate implements Wallet {
3351
3354
  hashToDirectlyVerify?: Byte[];
3352
3355
  signature: Byte[];
3353
3356
  protocolID: [
3354
- 0 | 1 | 2,
3357
+ SecurityLevel,
3355
3358
  ProtocolString5To400Bytes
3356
3359
  ];
3357
3360
  keyID: KeyIDStringUnder800Bytes;
@@ -3497,9 +3500,9 @@ export default class XDMSubstrate implements Wallet {
3497
3500
  }
3498
3501
  ```
3499
3502
 
3500
- See also: [BEEF](#type-beef), [Base64String](#type-base64string), [BasketStringUnder300Bytes](#type-basketstringunder300bytes), [BooleanDefaultFalse](#type-booleandefaultfalse), [BooleanDefaultTrue](#type-booleandefaulttrue), [Byte](#type-byte), [CallType](#type-calltype), [CertificateFieldNameUnder50Bytes](#type-certificatefieldnameunder50bytes), [DescriptionString5to50Bytes](#type-descriptionstring5to50bytes), [EntityIconURLStringMax500Bytes](#type-entityiconurlstringmax500bytes), [EntityNameStringMax100Bytes](#type-entitynamestringmax100bytes), [HexString](#type-hexstring), [ISOTimestampString](#type-isotimestampstring), [KeyIDStringUnder800Bytes](#type-keyidstringunder800bytes), [LabelStringUnder300Bytes](#type-labelstringunder300bytes), [OutpointString](#type-outpointstring), [OutputTagStringUnder300Bytes](#type-outputtagstringunder300bytes), [PositiveInteger](#type-positiveinteger), [PositiveIntegerDefault10Max10000](#type-positiveintegerdefault10max10000), [PositiveIntegerMax10](#type-positiveintegermax10), [PositiveIntegerOrZero](#type-positiveintegerorzero), [ProtocolString5To400Bytes](#type-protocolstring5to400bytes), [PubKeyHex](#type-pubkeyhex), [SatoshiValue](#type-satoshivalue), [TXIDHexString](#type-txidhexstring), [VersionString7To30Bytes](#type-versionstring7to30bytes), [Wallet](#interface-wallet), [decrypt](#variable-decrypt), [encrypt](#variable-encrypt)
3503
+ See also: [BEEF](#type-beef), [Base64String](#type-base64string), [BasketStringUnder300Bytes](#type-basketstringunder300bytes), [BooleanDefaultFalse](#type-booleandefaultfalse), [BooleanDefaultTrue](#type-booleandefaulttrue), [Byte](#type-byte), [CallType](#type-calltype), [CertificateFieldNameUnder50Bytes](#type-certificatefieldnameunder50bytes), [DescriptionString5to50Bytes](#type-descriptionstring5to50bytes), [EntityIconURLStringMax500Bytes](#type-entityiconurlstringmax500bytes), [EntityNameStringMax100Bytes](#type-entitynamestringmax100bytes), [HexString](#type-hexstring), [ISOTimestampString](#type-isotimestampstring), [KeyIDStringUnder800Bytes](#type-keyidstringunder800bytes), [LabelStringUnder300Bytes](#type-labelstringunder300bytes), [OutpointString](#type-outpointstring), [OutputTagStringUnder300Bytes](#type-outputtagstringunder300bytes), [PositiveInteger](#type-positiveinteger), [PositiveIntegerDefault10Max10000](#type-positiveintegerdefault10max10000), [PositiveIntegerMax10](#type-positiveintegermax10), [PositiveIntegerOrZero](#type-positiveintegerorzero), [ProtocolString5To400Bytes](#type-protocolstring5to400bytes), [PubKeyHex](#type-pubkeyhex), [SatoshiValue](#type-satoshivalue), [SecurityLevel](#type-securitylevel), [TXIDHexString](#type-txidhexstring), [VersionString7To30Bytes](#type-versionstring7to30bytes), [Wallet](#interface-wallet), [decrypt](#variable-decrypt), [encrypt](#variable-encrypt)
3501
3504
 
3502
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3505
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3503
3506
 
3504
3507
  ---
3505
3508
  ## Functions
@@ -3513,16 +3516,16 @@ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](
3513
3516
  | [AtomicBEEF](#type-atomicbeef) | [ErrorDescriptionString20To200Bytes](#type-errordescriptionstring20to200bytes) | [ProtocolString5To400Bytes](#type-protocolstring5to400bytes) |
3514
3517
  | [BEEF](#type-beef) | [HexString](#type-hexstring) | [PubKeyHex](#type-pubkeyhex) |
3515
3518
  | [Base64String](#type-base64string) | [ISOTimestampString](#type-isotimestampstring) | [SatoshiValue](#type-satoshivalue) |
3516
- | [BasketStringUnder300Bytes](#type-basketstringunder300bytes) | [KeyIDStringUnder800Bytes](#type-keyidstringunder800bytes) | [TXIDHexString](#type-txidhexstring) |
3517
- | [BooleanDefaultFalse](#type-booleandefaultfalse) | [KeyringRevealer](#type-keyringrevealer) | [TrustSelf](#type-trustself) |
3518
- | [BooleanDefaultTrue](#type-booleandefaulttrue) | [LabelStringUnder300Bytes](#type-labelstringunder300bytes) | [VersionString7To30Bytes](#type-versionstring7to30bytes) |
3519
- | [Byte](#type-byte) | [OriginatorDomainNameStringUnder250Bytes](#type-originatordomainnamestringunder250bytes) | [WalletCounterparty](#type-walletcounterparty) |
3520
- | [CallType](#type-calltype) | [OutpointString](#type-outpointstring) | [WalletErrorCode](#type-walleterrorcode) |
3521
- | [CertificateFieldNameUnder50Bytes](#type-certificatefieldnameunder50bytes) | [OutputTagStringUnder300Bytes](#type-outputtagstringunder300bytes) | [WalletNetwork](#type-walletnetwork) |
3522
- | [DescriptionString5to50Bytes](#type-descriptionstring5to50bytes) | [PositiveInteger](#type-positiveinteger) | [WalletProtocol](#type-walletprotocol) |
3523
- | [EntityIconURLStringMax500Bytes](#type-entityiconurlstringmax500bytes) | [PositiveIntegerDefault10Max10000](#type-positiveintegerdefault10max10000) | |
3519
+ | [BasketStringUnder300Bytes](#type-basketstringunder300bytes) | [KeyIDStringUnder800Bytes](#type-keyidstringunder800bytes) | [SecurityLevel](#type-securitylevel) |
3520
+ | [BooleanDefaultFalse](#type-booleandefaultfalse) | [KeyringRevealer](#type-keyringrevealer) | [TXIDHexString](#type-txidhexstring) |
3521
+ | [BooleanDefaultTrue](#type-booleandefaulttrue) | [LabelStringUnder300Bytes](#type-labelstringunder300bytes) | [TrustSelf](#type-trustself) |
3522
+ | [Byte](#type-byte) | [OriginatorDomainNameStringUnder250Bytes](#type-originatordomainnamestringunder250bytes) | [VersionString7To30Bytes](#type-versionstring7to30bytes) |
3523
+ | [CallType](#type-calltype) | [OutpointString](#type-outpointstring) | [WalletCounterparty](#type-walletcounterparty) |
3524
+ | [CertificateFieldNameUnder50Bytes](#type-certificatefieldnameunder50bytes) | [OutputTagStringUnder300Bytes](#type-outputtagstringunder300bytes) | [WalletErrorCode](#type-walleterrorcode) |
3525
+ | [DescriptionString5to50Bytes](#type-descriptionstring5to50bytes) | [PositiveInteger](#type-positiveinteger) | [WalletNetwork](#type-walletnetwork) |
3526
+ | [EntityIconURLStringMax500Bytes](#type-entityiconurlstringmax500bytes) | [PositiveIntegerDefault10Max10000](#type-positiveintegerdefault10max10000) | [WalletProtocol](#type-walletprotocol) |
3524
3527
 
3525
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3528
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3526
3529
 
3527
3530
  ---
3528
3531
 
@@ -3532,7 +3535,7 @@ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](
3532
3535
  export type AcquisitionProtocol = "direct" | "issuance"
3533
3536
  ```
3534
3537
 
3535
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3538
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3536
3539
 
3537
3540
  ---
3538
3541
  ### Type: ActionStatus
@@ -3541,7 +3544,7 @@ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](
3541
3544
  export type ActionStatus = "completed" | "unprocessed" | "sending" | "unproven" | "unsigned" | "nosend" | "nonfinal"
3542
3545
  ```
3543
3546
 
3544
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3547
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3545
3548
 
3546
3549
  ---
3547
3550
  ### Type: AtomicBEEF
@@ -3552,7 +3555,7 @@ export type AtomicBEEF = Byte[]
3552
3555
 
3553
3556
  See also: [Byte](#type-byte)
3554
3557
 
3555
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3558
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3556
3559
 
3557
3560
  ---
3558
3561
  ### Type: BEEF
@@ -3563,7 +3566,7 @@ export type BEEF = Byte[]
3563
3566
 
3564
3567
  See also: [Byte](#type-byte)
3565
3568
 
3566
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3569
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3567
3570
 
3568
3571
  ---
3569
3572
  ### Type: Base64String
@@ -3572,7 +3575,7 @@ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](
3572
3575
  export type Base64String = string
3573
3576
  ```
3574
3577
 
3575
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3578
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3576
3579
 
3577
3580
  ---
3578
3581
  ### Type: BasketStringUnder300Bytes
@@ -3581,7 +3584,7 @@ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](
3581
3584
  export type BasketStringUnder300Bytes = string
3582
3585
  ```
3583
3586
 
3584
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3587
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3585
3588
 
3586
3589
  ---
3587
3590
  ### Type: BooleanDefaultFalse
@@ -3590,7 +3593,7 @@ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](
3590
3593
  export type BooleanDefaultFalse = boolean
3591
3594
  ```
3592
3595
 
3593
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3596
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3594
3597
 
3595
3598
  ---
3596
3599
  ### Type: BooleanDefaultTrue
@@ -3599,7 +3602,7 @@ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](
3599
3602
  export type BooleanDefaultTrue = boolean
3600
3603
  ```
3601
3604
 
3602
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3605
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3603
3606
 
3604
3607
  ---
3605
3608
  ### Type: Byte
@@ -3608,7 +3611,7 @@ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](
3608
3611
  export type Byte = number
3609
3612
  ```
3610
3613
 
3611
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3614
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3612
3615
 
3613
3616
  ---
3614
3617
  ### Type: CallType
@@ -3617,7 +3620,7 @@ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](
3617
3620
  export type CallType = keyof typeof calls
3618
3621
  ```
3619
3622
 
3620
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3623
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3621
3624
 
3622
3625
  ---
3623
3626
  ### Type: CertificateFieldNameUnder50Bytes
@@ -3626,7 +3629,7 @@ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](
3626
3629
  export type CertificateFieldNameUnder50Bytes = string
3627
3630
  ```
3628
3631
 
3629
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3632
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3630
3633
 
3631
3634
  ---
3632
3635
  ### Type: DescriptionString5to50Bytes
@@ -3635,7 +3638,7 @@ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](
3635
3638
  export type DescriptionString5to50Bytes = string
3636
3639
  ```
3637
3640
 
3638
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3641
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3639
3642
 
3640
3643
  ---
3641
3644
  ### Type: EntityIconURLStringMax500Bytes
@@ -3644,7 +3647,7 @@ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](
3644
3647
  export type EntityIconURLStringMax500Bytes = string
3645
3648
  ```
3646
3649
 
3647
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3650
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3648
3651
 
3649
3652
  ---
3650
3653
  ### Type: EntityNameStringMax100Bytes
@@ -3653,7 +3656,7 @@ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](
3653
3656
  export type EntityNameStringMax100Bytes = string
3654
3657
  ```
3655
3658
 
3656
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3659
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3657
3660
 
3658
3661
  ---
3659
3662
  ### Type: ErrorCodeString10To40Bytes
@@ -3662,7 +3665,7 @@ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](
3662
3665
  export type ErrorCodeString10To40Bytes = string
3663
3666
  ```
3664
3667
 
3665
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3668
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3666
3669
 
3667
3670
  ---
3668
3671
  ### Type: ErrorDescriptionString20To200Bytes
@@ -3671,7 +3674,7 @@ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](
3671
3674
  export type ErrorDescriptionString20To200Bytes = string
3672
3675
  ```
3673
3676
 
3674
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3677
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3675
3678
 
3676
3679
  ---
3677
3680
  ### Type: HexString
@@ -3680,7 +3683,7 @@ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](
3680
3683
  export type HexString = string
3681
3684
  ```
3682
3685
 
3683
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3686
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3684
3687
 
3685
3688
  ---
3686
3689
  ### Type: ISOTimestampString
@@ -3689,7 +3692,7 @@ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](
3689
3692
  export type ISOTimestampString = string
3690
3693
  ```
3691
3694
 
3692
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3695
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3693
3696
 
3694
3697
  ---
3695
3698
  ### Type: KeyIDStringUnder800Bytes
@@ -3698,7 +3701,7 @@ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](
3698
3701
  export type KeyIDStringUnder800Bytes = string
3699
3702
  ```
3700
3703
 
3701
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3704
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3702
3705
 
3703
3706
  ---
3704
3707
  ### Type: KeyringRevealer
@@ -3709,7 +3712,7 @@ export type KeyringRevealer = PubKeyHex | "certifier"
3709
3712
 
3710
3713
  See also: [PubKeyHex](#type-pubkeyhex)
3711
3714
 
3712
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3715
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3713
3716
 
3714
3717
  ---
3715
3718
  ### Type: LabelStringUnder300Bytes
@@ -3718,7 +3721,7 @@ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](
3718
3721
  export type LabelStringUnder300Bytes = string
3719
3722
  ```
3720
3723
 
3721
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3724
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3722
3725
 
3723
3726
  ---
3724
3727
  ### Type: OriginatorDomainNameStringUnder250Bytes
@@ -3727,7 +3730,7 @@ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](
3727
3730
  export type OriginatorDomainNameStringUnder250Bytes = string
3728
3731
  ```
3729
3732
 
3730
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3733
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3731
3734
 
3732
3735
  ---
3733
3736
  ### Type: OutpointString
@@ -3736,7 +3739,7 @@ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](
3736
3739
  export type OutpointString = string
3737
3740
  ```
3738
3741
 
3739
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3742
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3740
3743
 
3741
3744
  ---
3742
3745
  ### Type: OutputTagStringUnder300Bytes
@@ -3745,7 +3748,7 @@ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](
3745
3748
  export type OutputTagStringUnder300Bytes = string
3746
3749
  ```
3747
3750
 
3748
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3751
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3749
3752
 
3750
3753
  ---
3751
3754
  ### Type: PositiveInteger
@@ -3754,7 +3757,7 @@ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](
3754
3757
  export type PositiveInteger = number
3755
3758
  ```
3756
3759
 
3757
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3760
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3758
3761
 
3759
3762
  ---
3760
3763
  ### Type: PositiveIntegerDefault10Max10000
@@ -3763,7 +3766,7 @@ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](
3763
3766
  export type PositiveIntegerDefault10Max10000 = number
3764
3767
  ```
3765
3768
 
3766
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3769
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3767
3770
 
3768
3771
  ---
3769
3772
  ### Type: PositiveIntegerMax10
@@ -3772,7 +3775,7 @@ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](
3772
3775
  export type PositiveIntegerMax10 = number
3773
3776
  ```
3774
3777
 
3775
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3778
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3776
3779
 
3777
3780
  ---
3778
3781
  ### Type: PositiveIntegerOrZero
@@ -3781,7 +3784,7 @@ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](
3781
3784
  export type PositiveIntegerOrZero = number
3782
3785
  ```
3783
3786
 
3784
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3787
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3785
3788
 
3786
3789
  ---
3787
3790
  ### Type: ProtocolString5To400Bytes
@@ -3790,7 +3793,7 @@ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](
3790
3793
  export type ProtocolString5To400Bytes = string
3791
3794
  ```
3792
3795
 
3793
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3796
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3794
3797
 
3795
3798
  ---
3796
3799
  ### Type: PubKeyHex
@@ -3801,7 +3804,7 @@ export type PubKeyHex = HexString
3801
3804
 
3802
3805
  See also: [HexString](#type-hexstring)
3803
3806
 
3804
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3807
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3805
3808
 
3806
3809
  ---
3807
3810
  ### Type: SatoshiValue
@@ -3810,7 +3813,22 @@ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](
3810
3813
  export type SatoshiValue = number
3811
3814
  ```
3812
3815
 
3813
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3816
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3817
+
3818
+ ---
3819
+ ### Type: SecurityLevel
3820
+
3821
+
3822
+ SecurityLevel for protocols.
3823
+ 0 = Silently grants the request with no user interation.
3824
+ 1 = Requires user approval for every application.
3825
+ 2 = Requires user approval per counterparty per application.
3826
+
3827
+ ```ts
3828
+ export type SecurityLevel = 0 | 1 | 2
3829
+ ```
3830
+
3831
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3814
3832
 
3815
3833
  ---
3816
3834
  ### Type: TXIDHexString
@@ -3821,7 +3839,7 @@ export type TXIDHexString = HexString
3821
3839
 
3822
3840
  See also: [HexString](#type-hexstring)
3823
3841
 
3824
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3842
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3825
3843
 
3826
3844
  ---
3827
3845
  ### Type: TrustSelf
@@ -3836,7 +3854,7 @@ If undefined, input BEEFs must be complete and valid.
3836
3854
  export type TrustSelf = "known"
3837
3855
  ```
3838
3856
 
3839
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3857
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3840
3858
 
3841
3859
  ---
3842
3860
  ### Type: VersionString7To30Bytes
@@ -3845,7 +3863,7 @@ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](
3845
3863
  export type VersionString7To30Bytes = string
3846
3864
  ```
3847
3865
 
3848
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3866
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3849
3867
 
3850
3868
  ---
3851
3869
  ### Type: WalletCounterparty
@@ -3856,7 +3874,7 @@ export type WalletCounterparty = PubKeyHex | "self" | "anyone"
3856
3874
 
3857
3875
  See also: [PubKeyHex](#type-pubkeyhex)
3858
3876
 
3859
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3877
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3860
3878
 
3861
3879
  ---
3862
3880
  ### Type: WalletErrorCode
@@ -3865,7 +3883,7 @@ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](
3865
3883
  export type WalletErrorCode = keyof typeof walletErrors
3866
3884
  ```
3867
3885
 
3868
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3886
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3869
3887
 
3870
3888
  ---
3871
3889
  ### Type: WalletNetwork
@@ -3874,21 +3892,36 @@ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](
3874
3892
  export type WalletNetwork = "mainnet" | "testnet"
3875
3893
  ```
3876
3894
 
3877
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3895
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3878
3896
 
3879
3897
  ---
3880
3898
  ### Type: WalletProtocol
3881
3899
 
3882
3900
  ```ts
3883
3901
  export type WalletProtocol = [
3884
- 0 | 1 | 2,
3902
+ SecurityLevel,
3885
3903
  ProtocolString5To400Bytes
3886
3904
  ]
3887
3905
  ```
3888
3906
 
3889
- See also: [ProtocolString5To400Bytes](#type-protocolstring5to400bytes)
3907
+ See also: [ProtocolString5To400Bytes](#type-protocolstring5to400bytes), [SecurityLevel](#type-securitylevel)
3908
+
3909
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3910
+
3911
+ ---
3912
+ ## Enums
3913
+
3914
+ ### Enum: SecurityLevels
3915
+
3916
+ ```ts
3917
+ export enum SecurityLevels {
3918
+ Silent = 0,
3919
+ App = 1,
3920
+ Counterparty = 2
3921
+ }
3922
+ ```
3890
3923
 
3891
- Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
3924
+ Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Enums](#enums), [Variables](#variables)
3892
3925
 
3893
3926
  ---
3894
3927
  ## Variables