@bsv/wallet-toolbox 1.4.9 → 1.4.11
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +13 -7
- package/docs/client.md +19 -53
- package/docs/monitor.md +1 -1
- package/docs/storage.md +18 -52
- package/docs/wallet.md +19 -53
- package/mobile/out/src/monitor/tasks/TaskReviewStatus.d.ts +1 -1
- package/mobile/out/src/monitor/tasks/TaskReviewStatus.js +1 -1
- package/mobile/out/src/storage/WalletStorageManager.d.ts +19 -25
- package/mobile/out/src/storage/WalletStorageManager.d.ts.map +1 -1
- package/mobile/out/src/storage/WalletStorageManager.js +64 -69
- package/mobile/out/src/storage/WalletStorageManager.js.map +1 -1
- package/mobile/out/src/storage/methods/createAction.d.ts.map +1 -1
- package/mobile/out/src/storage/methods/createAction.js +9 -4
- package/mobile/out/src/storage/methods/createAction.js.map +1 -1
- package/mobile/out/src/storage/methods/processAction.js +1 -1
- package/mobile/out/src/storage/methods/processAction.js.map +1 -1
- package/mobile/package-lock.json +6 -6
- package/mobile/package.json +2 -2
- package/out/src/monitor/tasks/TaskReviewStatus.d.ts +1 -1
- package/out/src/monitor/tasks/TaskReviewStatus.js +1 -1
- package/out/src/storage/WalletStorageManager.d.ts +19 -25
- package/out/src/storage/WalletStorageManager.d.ts.map +1 -1
- package/out/src/storage/WalletStorageManager.js +64 -69
- package/out/src/storage/WalletStorageManager.js.map +1 -1
- package/out/src/storage/methods/createAction.d.ts.map +1 -1
- package/out/src/storage/methods/createAction.js +9 -4
- package/out/src/storage/methods/createAction.js.map +1 -1
- package/out/src/storage/methods/listOutputsKnex.js +2 -2
- package/out/src/storage/methods/listOutputsKnex.js.map +1 -1
- package/out/src/storage/methods/processAction.js +1 -1
- package/out/src/storage/methods/processAction.js.map +1 -1
- package/out/test/bsv-ts-sdk/LocalKVStore.test.d.ts +2 -0
- package/out/test/bsv-ts-sdk/LocalKVStore.test.d.ts.map +1 -0
- package/out/test/bsv-ts-sdk/LocalKVStore.test.js +88 -0
- package/out/test/bsv-ts-sdk/LocalKVStore.test.js.map +1 -0
- package/out/test/storage/idb/update.test.js +2 -2
- package/out/test/storage/idb/update.test.js.map +1 -1
- package/out/test/storage/update.test.js +2 -2
- package/out/test/storage/update.test.js.map +1 -1
- package/out/test/wallet/action/createAction2.test.js +2 -2
- package/out/tsconfig.all.tsbuildinfo +1 -1
- package/package.json +2 -2
- package/src/monitor/tasks/TaskReviewStatus.ts +1 -1
- package/src/storage/WalletStorageManager.ts +72 -68
- package/src/storage/methods/createAction.ts +16 -4
- package/src/storage/methods/listOutputsKnex.ts +2 -2
- package/src/storage/methods/processAction.ts +1 -1
- package/test/bsv-ts-sdk/LocalKVStore.test.ts +94 -0
- package/test/storage/idb/update.test.ts +2 -2
- package/test/storage/update.test.ts +2 -2
- package/test/wallet/action/createAction2.test.ts +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -3,27 +3,33 @@
|
|
|
3
3
|
This document captures the history of significant changes to the wallet-toolbox repository. The git commit history contains the details but is unable to draw
|
|
4
4
|
attention to changes that materially alter behavior or extend functionality.
|
|
5
5
|
|
|
6
|
+
## wallet-toolbox 1.4.10
|
|
7
|
+
|
|
8
|
+
- when spending non-change outputs, atomically tests spendable before setting to spent.
|
|
9
|
+
- change unbasketted new outputs to spendable
|
|
10
|
+
- updated WalletStorageManager to use lockQueues for read/write/sync/sp scheduling
|
|
11
|
+
|
|
6
12
|
## wallet-toolbox 1.4.7
|
|
7
13
|
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
14
|
+
- update to bsv/sdk 1.6.5
|
|
15
|
+
- add BHSServiceClient which allows for leaning on BlockHeadersService for chain tracking.
|
|
16
|
+
- add ARC callbackURL and callbackToken to createDefaultWalletServiceOptions
|
|
11
17
|
|
|
12
18
|
## wallet-toolbox 1.4.3
|
|
13
19
|
|
|
14
|
-
|
|
20
|
+
- update monitor logging
|
|
15
21
|
|
|
16
22
|
## wallet-toolbox 1.4.2
|
|
17
23
|
|
|
18
|
-
|
|
24
|
+
- update monitor TaskNewHeader, TaskCheckForProofs to ignore bleeding edge new blocks and proofs.
|
|
19
25
|
|
|
20
26
|
## wallet-toolbox 1.4.1
|
|
21
27
|
|
|
22
|
-
|
|
28
|
+
- update to bsv/sdk 1.6.0 with reworked bignum and memory / performance improvements.
|
|
23
29
|
|
|
24
30
|
## wallet-toolbox 1.3.32
|
|
25
31
|
|
|
26
|
-
|
|
32
|
+
- add permissions caching (5 minutes)
|
|
27
33
|
|
|
28
34
|
## wallet-toolbox 1.3.30
|
|
29
35
|
|
package/docs/client.md
CHANGED
|
@@ -9855,7 +9855,7 @@ The `notified` property flags reqs that do not need to be checked.
|
|
|
9855
9855
|
|
|
9856
9856
|
Looks for aged Transactions with provenTxId with status != 'completed', sets status to 'completed'.
|
|
9857
9857
|
|
|
9858
|
-
Looks for reqs with 'invalid' status that
|
|
9858
|
+
Looks for reqs with 'invalid' status that have corresonding transactions with status other than 'failed'.
|
|
9859
9859
|
|
|
9860
9860
|
```ts
|
|
9861
9861
|
export class TaskReviewStatus extends WalletMonitorTask {
|
|
@@ -11437,11 +11437,6 @@ export class WalletStorageManager implements sdk.WalletStorage {
|
|
|
11437
11437
|
_conflictingActives?: ManagedStorage[];
|
|
11438
11438
|
_authId: sdk.AuthId;
|
|
11439
11439
|
_services?: sdk.WalletServices;
|
|
11440
|
-
_readerCount: number = 0;
|
|
11441
|
-
_writerCount: number = 0;
|
|
11442
|
-
_isSingleWriter: boolean = true;
|
|
11443
|
-
_syncLocked: boolean = false;
|
|
11444
|
-
_storageProviderLocked: boolean = false;
|
|
11445
11440
|
constructor(identityKey: string, active?: sdk.WalletStorageProvider, backups?: sdk.WalletStorageProvider[])
|
|
11446
11441
|
isStorageProvider(): boolean
|
|
11447
11442
|
isAvailable(): boolean
|
|
@@ -11458,10 +11453,6 @@ export class WalletStorageManager implements sdk.WalletStorage {
|
|
|
11458
11453
|
getBackupStores(): string[]
|
|
11459
11454
|
getConflictingStores(): string[]
|
|
11460
11455
|
getAllStores(): string[]
|
|
11461
|
-
async getActiveForWriter(): Promise<sdk.WalletStorageWriter>
|
|
11462
|
-
async getActiveForReader(): Promise<sdk.WalletStorageReader>
|
|
11463
|
-
async getActiveForSync(): Promise<sdk.WalletStorageSync>
|
|
11464
|
-
async getActiveForStorageProvider(): Promise<StorageProvider>
|
|
11465
11456
|
async runAsWriter<R>(writer: (active: sdk.WalletStorageWriter) => Promise<R>): Promise<R>
|
|
11466
11457
|
async runAsReader<R>(reader: (active: sdk.WalletStorageReader) => Promise<R>): Promise<R>
|
|
11467
11458
|
async runAsSync<R>(sync: (active: sdk.WalletStorageSync) => Promise<R>, activeSync?: sdk.WalletStorageSync): Promise<R>
|
|
@@ -11510,6 +11501,24 @@ export class WalletStorageManager implements sdk.WalletStorage {
|
|
|
11510
11501
|
|
|
11511
11502
|
See also: [AuthId](./client.md#interface-authid), [FindCertificatesArgs](./client.md#interface-findcertificatesargs), [FindOutputBasketsArgs](./client.md#interface-findoutputbasketsargs), [FindOutputsArgs](./client.md#interface-findoutputsargs), [FindProvenTxReqsArgs](./client.md#interface-findproventxreqsargs), [StorageCreateActionResult](./client.md#interface-storagecreateactionresult), [StorageInternalizeActionResult](./client.md#interface-storageinternalizeactionresult), [StorageProcessActionArgs](./client.md#interface-storageprocessactionargs), [StorageProcessActionResults](./client.md#interface-storageprocessactionresults), [StorageProvider](./storage.md#class-storageprovider), [TableCertificate](./storage.md#interface-tablecertificate), [TableCertificateX](./storage.md#interface-tablecertificatex), [TableOutput](./storage.md#interface-tableoutput), [TableOutputBasket](./storage.md#interface-tableoutputbasket), [TableProvenTxReq](./storage.md#interface-tableproventxreq), [TableSettings](./storage.md#interface-tablesettings), [TableUser](./storage.md#interface-tableuser), [ValidCreateActionArgs](./client.md#interface-validcreateactionargs), [ValidListActionsArgs](./client.md#interface-validlistactionsargs), [ValidListCertificatesArgs](./client.md#interface-validlistcertificatesargs), [ValidListOutputsArgs](./client.md#interface-validlistoutputsargs), [WalletServices](./client.md#interface-walletservices), [WalletStorage](./client.md#interface-walletstorage), [WalletStorageInfo](./client.md#interface-walletstorageinfo), [WalletStorageProvider](./client.md#interface-walletstorageprovider), [WalletStorageReader](./client.md#interface-walletstoragereader), [WalletStorageSync](./client.md#interface-walletstoragesync), [WalletStorageSyncReader](./client.md#interface-walletstoragesyncreader), [WalletStorageWriter](./client.md#interface-walletstoragewriter), [createAction](./storage.md#function-createaction), [internalizeAction](./storage.md#function-internalizeaction), [listActions](./storage.md#function-listactions), [listCertificates](./storage.md#function-listcertificates), [listOutputs](./storage.md#function-listoutputs), [processAction](./storage.md#function-processaction)
|
|
11512
11503
|
|
|
11504
|
+
###### Constructor
|
|
11505
|
+
|
|
11506
|
+
Creates a new WalletStorageManager with the given identityKey and optional active and backup storage providers.
|
|
11507
|
+
|
|
11508
|
+
```ts
|
|
11509
|
+
constructor(identityKey: string, active?: sdk.WalletStorageProvider, backups?: sdk.WalletStorageProvider[])
|
|
11510
|
+
```
|
|
11511
|
+
See also: [WalletStorageProvider](./client.md#interface-walletstorageprovider)
|
|
11512
|
+
|
|
11513
|
+
Argument Details
|
|
11514
|
+
|
|
11515
|
+
+ **identityKey**
|
|
11516
|
+
+ The identity key of the user for whom this wallet is being managed.
|
|
11517
|
+
+ **active**
|
|
11518
|
+
+ An optional active storage provider. If not provided, no active storage will be set.
|
|
11519
|
+
+ **backups**
|
|
11520
|
+
+ An optional array of backup storage providers. If not provided, no backups will be set.
|
|
11521
|
+
|
|
11513
11522
|
###### Property _active
|
|
11514
11523
|
|
|
11515
11524
|
The current active store which is only enabled if the store's user record activeStorage property matches its settings record storageIdentityKey property
|
|
@@ -11551,23 +11560,6 @@ True if makeAvailable has been run and access to managed stores (active) is allo
|
|
|
11551
11560
|
_isAvailable: boolean = false
|
|
11552
11561
|
```
|
|
11553
11562
|
|
|
11554
|
-
###### Property _isSingleWriter
|
|
11555
|
-
|
|
11556
|
-
if true, allow only a single writer to proceed at a time.
|
|
11557
|
-
queue the blocked requests so they get executed in order when released.
|
|
11558
|
-
|
|
11559
|
-
```ts
|
|
11560
|
-
_isSingleWriter: boolean = true
|
|
11561
|
-
```
|
|
11562
|
-
|
|
11563
|
-
###### Property _readerCount
|
|
11564
|
-
|
|
11565
|
-
How many read access operations are pending
|
|
11566
|
-
|
|
11567
|
-
```ts
|
|
11568
|
-
_readerCount: number = 0
|
|
11569
|
-
```
|
|
11570
|
-
|
|
11571
11563
|
###### Property _services
|
|
11572
11564
|
|
|
11573
11565
|
Configured services if any. If valid, shared with stores (which may ignore it).
|
|
@@ -11577,15 +11569,6 @@ _services?: sdk.WalletServices
|
|
|
11577
11569
|
```
|
|
11578
11570
|
See also: [WalletServices](./client.md#interface-walletservices)
|
|
11579
11571
|
|
|
11580
|
-
###### Property _storageProviderLocked
|
|
11581
|
-
|
|
11582
|
-
if true, allow no new reader or writers or sync to proceed.
|
|
11583
|
-
queue the blocked requests so they get executed in order when released.
|
|
11584
|
-
|
|
11585
|
-
```ts
|
|
11586
|
-
_storageProviderLocked: boolean = false
|
|
11587
|
-
```
|
|
11588
|
-
|
|
11589
11572
|
###### Property _stores
|
|
11590
11573
|
|
|
11591
11574
|
All configured stores including current active, backups, and conflicting actives.
|
|
@@ -11594,23 +11577,6 @@ All configured stores including current active, backups, and conflicting actives
|
|
|
11594
11577
|
_stores: ManagedStorage[] = []
|
|
11595
11578
|
```
|
|
11596
11579
|
|
|
11597
|
-
###### Property _syncLocked
|
|
11598
|
-
|
|
11599
|
-
if true, allow no new reader or writers to proceed.
|
|
11600
|
-
queue the blocked requests so they get executed in order when released.
|
|
11601
|
-
|
|
11602
|
-
```ts
|
|
11603
|
-
_syncLocked: boolean = false
|
|
11604
|
-
```
|
|
11605
|
-
|
|
11606
|
-
###### Property _writerCount
|
|
11607
|
-
|
|
11608
|
-
How many write access operations are pending
|
|
11609
|
-
|
|
11610
|
-
```ts
|
|
11611
|
-
_writerCount: number = 0
|
|
11612
|
-
```
|
|
11613
|
-
|
|
11614
11580
|
###### Method canMakeAvailable
|
|
11615
11581
|
|
|
11616
11582
|
```ts
|
package/docs/monitor.md
CHANGED
|
@@ -520,7 +520,7 @@ The `notified` property flags reqs that do not need to be checked.
|
|
|
520
520
|
|
|
521
521
|
Looks for aged Transactions with provenTxId with status != 'completed', sets status to 'completed'.
|
|
522
522
|
|
|
523
|
-
Looks for reqs with 'invalid' status that
|
|
523
|
+
Looks for reqs with 'invalid' status that have corresonding transactions with status other than 'failed'.
|
|
524
524
|
|
|
525
525
|
```ts
|
|
526
526
|
export class TaskReviewStatus extends WalletMonitorTask {
|
package/docs/storage.md
CHANGED
|
@@ -4324,11 +4324,6 @@ export class WalletStorageManager implements sdk.WalletStorage {
|
|
|
4324
4324
|
_conflictingActives?: ManagedStorage[];
|
|
4325
4325
|
_authId: sdk.AuthId;
|
|
4326
4326
|
_services?: sdk.WalletServices;
|
|
4327
|
-
_readerCount: number = 0;
|
|
4328
|
-
_writerCount: number = 0;
|
|
4329
|
-
_isSingleWriter: boolean = true;
|
|
4330
|
-
_syncLocked: boolean = false;
|
|
4331
|
-
_storageProviderLocked: boolean = false;
|
|
4332
4327
|
constructor(identityKey: string, active?: sdk.WalletStorageProvider, backups?: sdk.WalletStorageProvider[])
|
|
4333
4328
|
isStorageProvider(): boolean
|
|
4334
4329
|
isAvailable(): boolean
|
|
@@ -4345,10 +4340,6 @@ export class WalletStorageManager implements sdk.WalletStorage {
|
|
|
4345
4340
|
getBackupStores(): string[]
|
|
4346
4341
|
getConflictingStores(): string[]
|
|
4347
4342
|
getAllStores(): string[]
|
|
4348
|
-
async getActiveForWriter(): Promise<sdk.WalletStorageWriter>
|
|
4349
|
-
async getActiveForReader(): Promise<sdk.WalletStorageReader>
|
|
4350
|
-
async getActiveForSync(): Promise<sdk.WalletStorageSync>
|
|
4351
|
-
async getActiveForStorageProvider(): Promise<StorageProvider>
|
|
4352
4343
|
async runAsWriter<R>(writer: (active: sdk.WalletStorageWriter) => Promise<R>): Promise<R>
|
|
4353
4344
|
async runAsReader<R>(reader: (active: sdk.WalletStorageReader) => Promise<R>): Promise<R>
|
|
4354
4345
|
async runAsSync<R>(sync: (active: sdk.WalletStorageSync) => Promise<R>, activeSync?: sdk.WalletStorageSync): Promise<R>
|
|
@@ -4397,6 +4388,24 @@ export class WalletStorageManager implements sdk.WalletStorage {
|
|
|
4397
4388
|
|
|
4398
4389
|
See also: [AuthId](./client.md#interface-authid), [FindCertificatesArgs](./client.md#interface-findcertificatesargs), [FindOutputBasketsArgs](./client.md#interface-findoutputbasketsargs), [FindOutputsArgs](./client.md#interface-findoutputsargs), [FindProvenTxReqsArgs](./client.md#interface-findproventxreqsargs), [StorageCreateActionResult](./client.md#interface-storagecreateactionresult), [StorageInternalizeActionResult](./client.md#interface-storageinternalizeactionresult), [StorageProcessActionArgs](./client.md#interface-storageprocessactionargs), [StorageProcessActionResults](./client.md#interface-storageprocessactionresults), [StorageProvider](./storage.md#class-storageprovider), [TableCertificate](./storage.md#interface-tablecertificate), [TableCertificateX](./storage.md#interface-tablecertificatex), [TableOutput](./storage.md#interface-tableoutput), [TableOutputBasket](./storage.md#interface-tableoutputbasket), [TableProvenTxReq](./storage.md#interface-tableproventxreq), [TableSettings](./storage.md#interface-tablesettings), [TableUser](./storage.md#interface-tableuser), [ValidCreateActionArgs](./client.md#interface-validcreateactionargs), [ValidListActionsArgs](./client.md#interface-validlistactionsargs), [ValidListCertificatesArgs](./client.md#interface-validlistcertificatesargs), [ValidListOutputsArgs](./client.md#interface-validlistoutputsargs), [WalletServices](./client.md#interface-walletservices), [WalletStorage](./client.md#interface-walletstorage), [WalletStorageInfo](./client.md#interface-walletstorageinfo), [WalletStorageProvider](./client.md#interface-walletstorageprovider), [WalletStorageReader](./client.md#interface-walletstoragereader), [WalletStorageSync](./client.md#interface-walletstoragesync), [WalletStorageSyncReader](./client.md#interface-walletstoragesyncreader), [WalletStorageWriter](./client.md#interface-walletstoragewriter), [createAction](./storage.md#function-createaction), [internalizeAction](./storage.md#function-internalizeaction), [listActions](./storage.md#function-listactions), [listCertificates](./storage.md#function-listcertificates), [listOutputs](./storage.md#function-listoutputs), [processAction](./storage.md#function-processaction)
|
|
4399
4390
|
|
|
4391
|
+
###### Constructor
|
|
4392
|
+
|
|
4393
|
+
Creates a new WalletStorageManager with the given identityKey and optional active and backup storage providers.
|
|
4394
|
+
|
|
4395
|
+
```ts
|
|
4396
|
+
constructor(identityKey: string, active?: sdk.WalletStorageProvider, backups?: sdk.WalletStorageProvider[])
|
|
4397
|
+
```
|
|
4398
|
+
See also: [WalletStorageProvider](./client.md#interface-walletstorageprovider)
|
|
4399
|
+
|
|
4400
|
+
Argument Details
|
|
4401
|
+
|
|
4402
|
+
+ **identityKey**
|
|
4403
|
+
+ The identity key of the user for whom this wallet is being managed.
|
|
4404
|
+
+ **active**
|
|
4405
|
+
+ An optional active storage provider. If not provided, no active storage will be set.
|
|
4406
|
+
+ **backups**
|
|
4407
|
+
+ An optional array of backup storage providers. If not provided, no backups will be set.
|
|
4408
|
+
|
|
4400
4409
|
###### Property _active
|
|
4401
4410
|
|
|
4402
4411
|
The current active store which is only enabled if the store's user record activeStorage property matches its settings record storageIdentityKey property
|
|
@@ -4438,23 +4447,6 @@ True if makeAvailable has been run and access to managed stores (active) is allo
|
|
|
4438
4447
|
_isAvailable: boolean = false
|
|
4439
4448
|
```
|
|
4440
4449
|
|
|
4441
|
-
###### Property _isSingleWriter
|
|
4442
|
-
|
|
4443
|
-
if true, allow only a single writer to proceed at a time.
|
|
4444
|
-
queue the blocked requests so they get executed in order when released.
|
|
4445
|
-
|
|
4446
|
-
```ts
|
|
4447
|
-
_isSingleWriter: boolean = true
|
|
4448
|
-
```
|
|
4449
|
-
|
|
4450
|
-
###### Property _readerCount
|
|
4451
|
-
|
|
4452
|
-
How many read access operations are pending
|
|
4453
|
-
|
|
4454
|
-
```ts
|
|
4455
|
-
_readerCount: number = 0
|
|
4456
|
-
```
|
|
4457
|
-
|
|
4458
4450
|
###### Property _services
|
|
4459
4451
|
|
|
4460
4452
|
Configured services if any. If valid, shared with stores (which may ignore it).
|
|
@@ -4464,15 +4456,6 @@ _services?: sdk.WalletServices
|
|
|
4464
4456
|
```
|
|
4465
4457
|
See also: [WalletServices](./client.md#interface-walletservices)
|
|
4466
4458
|
|
|
4467
|
-
###### Property _storageProviderLocked
|
|
4468
|
-
|
|
4469
|
-
if true, allow no new reader or writers or sync to proceed.
|
|
4470
|
-
queue the blocked requests so they get executed in order when released.
|
|
4471
|
-
|
|
4472
|
-
```ts
|
|
4473
|
-
_storageProviderLocked: boolean = false
|
|
4474
|
-
```
|
|
4475
|
-
|
|
4476
4459
|
###### Property _stores
|
|
4477
4460
|
|
|
4478
4461
|
All configured stores including current active, backups, and conflicting actives.
|
|
@@ -4481,23 +4464,6 @@ All configured stores including current active, backups, and conflicting actives
|
|
|
4481
4464
|
_stores: ManagedStorage[] = []
|
|
4482
4465
|
```
|
|
4483
4466
|
|
|
4484
|
-
###### Property _syncLocked
|
|
4485
|
-
|
|
4486
|
-
if true, allow no new reader or writers to proceed.
|
|
4487
|
-
queue the blocked requests so they get executed in order when released.
|
|
4488
|
-
|
|
4489
|
-
```ts
|
|
4490
|
-
_syncLocked: boolean = false
|
|
4491
|
-
```
|
|
4492
|
-
|
|
4493
|
-
###### Property _writerCount
|
|
4494
|
-
|
|
4495
|
-
How many write access operations are pending
|
|
4496
|
-
|
|
4497
|
-
```ts
|
|
4498
|
-
_writerCount: number = 0
|
|
4499
|
-
```
|
|
4500
|
-
|
|
4501
4467
|
###### Method canMakeAvailable
|
|
4502
4468
|
|
|
4503
4469
|
```ts
|
package/docs/wallet.md
CHANGED
|
@@ -9854,7 +9854,7 @@ The `notified` property flags reqs that do not need to be checked.
|
|
|
9854
9854
|
|
|
9855
9855
|
Looks for aged Transactions with provenTxId with status != 'completed', sets status to 'completed'.
|
|
9856
9856
|
|
|
9857
|
-
Looks for reqs with 'invalid' status that
|
|
9857
|
+
Looks for reqs with 'invalid' status that have corresonding transactions with status other than 'failed'.
|
|
9858
9858
|
|
|
9859
9859
|
```ts
|
|
9860
9860
|
export class TaskReviewStatus extends WalletMonitorTask {
|
|
@@ -11436,11 +11436,6 @@ export class WalletStorageManager implements sdk.WalletStorage {
|
|
|
11436
11436
|
_conflictingActives?: ManagedStorage[];
|
|
11437
11437
|
_authId: sdk.AuthId;
|
|
11438
11438
|
_services?: sdk.WalletServices;
|
|
11439
|
-
_readerCount: number = 0;
|
|
11440
|
-
_writerCount: number = 0;
|
|
11441
|
-
_isSingleWriter: boolean = true;
|
|
11442
|
-
_syncLocked: boolean = false;
|
|
11443
|
-
_storageProviderLocked: boolean = false;
|
|
11444
11439
|
constructor(identityKey: string, active?: sdk.WalletStorageProvider, backups?: sdk.WalletStorageProvider[])
|
|
11445
11440
|
isStorageProvider(): boolean
|
|
11446
11441
|
isAvailable(): boolean
|
|
@@ -11457,10 +11452,6 @@ export class WalletStorageManager implements sdk.WalletStorage {
|
|
|
11457
11452
|
getBackupStores(): string[]
|
|
11458
11453
|
getConflictingStores(): string[]
|
|
11459
11454
|
getAllStores(): string[]
|
|
11460
|
-
async getActiveForWriter(): Promise<sdk.WalletStorageWriter>
|
|
11461
|
-
async getActiveForReader(): Promise<sdk.WalletStorageReader>
|
|
11462
|
-
async getActiveForSync(): Promise<sdk.WalletStorageSync>
|
|
11463
|
-
async getActiveForStorageProvider(): Promise<StorageProvider>
|
|
11464
11455
|
async runAsWriter<R>(writer: (active: sdk.WalletStorageWriter) => Promise<R>): Promise<R>
|
|
11465
11456
|
async runAsReader<R>(reader: (active: sdk.WalletStorageReader) => Promise<R>): Promise<R>
|
|
11466
11457
|
async runAsSync<R>(sync: (active: sdk.WalletStorageSync) => Promise<R>, activeSync?: sdk.WalletStorageSync): Promise<R>
|
|
@@ -11509,6 +11500,24 @@ export class WalletStorageManager implements sdk.WalletStorage {
|
|
|
11509
11500
|
|
|
11510
11501
|
See also: [AuthId](./client.md#interface-authid), [FindCertificatesArgs](./client.md#interface-findcertificatesargs), [FindOutputBasketsArgs](./client.md#interface-findoutputbasketsargs), [FindOutputsArgs](./client.md#interface-findoutputsargs), [FindProvenTxReqsArgs](./client.md#interface-findproventxreqsargs), [StorageCreateActionResult](./client.md#interface-storagecreateactionresult), [StorageInternalizeActionResult](./client.md#interface-storageinternalizeactionresult), [StorageProcessActionArgs](./client.md#interface-storageprocessactionargs), [StorageProcessActionResults](./client.md#interface-storageprocessactionresults), [StorageProvider](./storage.md#class-storageprovider), [TableCertificate](./storage.md#interface-tablecertificate), [TableCertificateX](./storage.md#interface-tablecertificatex), [TableOutput](./storage.md#interface-tableoutput), [TableOutputBasket](./storage.md#interface-tableoutputbasket), [TableProvenTxReq](./storage.md#interface-tableproventxreq), [TableSettings](./storage.md#interface-tablesettings), [TableUser](./storage.md#interface-tableuser), [ValidCreateActionArgs](./client.md#interface-validcreateactionargs), [ValidListActionsArgs](./client.md#interface-validlistactionsargs), [ValidListCertificatesArgs](./client.md#interface-validlistcertificatesargs), [ValidListOutputsArgs](./client.md#interface-validlistoutputsargs), [WalletServices](./client.md#interface-walletservices), [WalletStorage](./client.md#interface-walletstorage), [WalletStorageInfo](./client.md#interface-walletstorageinfo), [WalletStorageProvider](./client.md#interface-walletstorageprovider), [WalletStorageReader](./client.md#interface-walletstoragereader), [WalletStorageSync](./client.md#interface-walletstoragesync), [WalletStorageSyncReader](./client.md#interface-walletstoragesyncreader), [WalletStorageWriter](./client.md#interface-walletstoragewriter), [createAction](./storage.md#function-createaction), [internalizeAction](./storage.md#function-internalizeaction), [listActions](./storage.md#function-listactions), [listCertificates](./storage.md#function-listcertificates), [listOutputs](./storage.md#function-listoutputs), [processAction](./storage.md#function-processaction)
|
|
11511
11502
|
|
|
11503
|
+
###### Constructor
|
|
11504
|
+
|
|
11505
|
+
Creates a new WalletStorageManager with the given identityKey and optional active and backup storage providers.
|
|
11506
|
+
|
|
11507
|
+
```ts
|
|
11508
|
+
constructor(identityKey: string, active?: sdk.WalletStorageProvider, backups?: sdk.WalletStorageProvider[])
|
|
11509
|
+
```
|
|
11510
|
+
See also: [WalletStorageProvider](./client.md#interface-walletstorageprovider)
|
|
11511
|
+
|
|
11512
|
+
Argument Details
|
|
11513
|
+
|
|
11514
|
+
+ **identityKey**
|
|
11515
|
+
+ The identity key of the user for whom this wallet is being managed.
|
|
11516
|
+
+ **active**
|
|
11517
|
+
+ An optional active storage provider. If not provided, no active storage will be set.
|
|
11518
|
+
+ **backups**
|
|
11519
|
+
+ An optional array of backup storage providers. If not provided, no backups will be set.
|
|
11520
|
+
|
|
11512
11521
|
###### Property _active
|
|
11513
11522
|
|
|
11514
11523
|
The current active store which is only enabled if the store's user record activeStorage property matches its settings record storageIdentityKey property
|
|
@@ -11550,23 +11559,6 @@ True if makeAvailable has been run and access to managed stores (active) is allo
|
|
|
11550
11559
|
_isAvailable: boolean = false
|
|
11551
11560
|
```
|
|
11552
11561
|
|
|
11553
|
-
###### Property _isSingleWriter
|
|
11554
|
-
|
|
11555
|
-
if true, allow only a single writer to proceed at a time.
|
|
11556
|
-
queue the blocked requests so they get executed in order when released.
|
|
11557
|
-
|
|
11558
|
-
```ts
|
|
11559
|
-
_isSingleWriter: boolean = true
|
|
11560
|
-
```
|
|
11561
|
-
|
|
11562
|
-
###### Property _readerCount
|
|
11563
|
-
|
|
11564
|
-
How many read access operations are pending
|
|
11565
|
-
|
|
11566
|
-
```ts
|
|
11567
|
-
_readerCount: number = 0
|
|
11568
|
-
```
|
|
11569
|
-
|
|
11570
11562
|
###### Property _services
|
|
11571
11563
|
|
|
11572
11564
|
Configured services if any. If valid, shared with stores (which may ignore it).
|
|
@@ -11576,15 +11568,6 @@ _services?: sdk.WalletServices
|
|
|
11576
11568
|
```
|
|
11577
11569
|
See also: [WalletServices](./client.md#interface-walletservices)
|
|
11578
11570
|
|
|
11579
|
-
###### Property _storageProviderLocked
|
|
11580
|
-
|
|
11581
|
-
if true, allow no new reader or writers or sync to proceed.
|
|
11582
|
-
queue the blocked requests so they get executed in order when released.
|
|
11583
|
-
|
|
11584
|
-
```ts
|
|
11585
|
-
_storageProviderLocked: boolean = false
|
|
11586
|
-
```
|
|
11587
|
-
|
|
11588
11571
|
###### Property _stores
|
|
11589
11572
|
|
|
11590
11573
|
All configured stores including current active, backups, and conflicting actives.
|
|
@@ -11593,23 +11576,6 @@ All configured stores including current active, backups, and conflicting actives
|
|
|
11593
11576
|
_stores: ManagedStorage[] = []
|
|
11594
11577
|
```
|
|
11595
11578
|
|
|
11596
|
-
###### Property _syncLocked
|
|
11597
|
-
|
|
11598
|
-
if true, allow no new reader or writers to proceed.
|
|
11599
|
-
queue the blocked requests so they get executed in order when released.
|
|
11600
|
-
|
|
11601
|
-
```ts
|
|
11602
|
-
_syncLocked: boolean = false
|
|
11603
|
-
```
|
|
11604
|
-
|
|
11605
|
-
###### Property _writerCount
|
|
11606
|
-
|
|
11607
|
-
How many write access operations are pending
|
|
11608
|
-
|
|
11609
|
-
```ts
|
|
11610
|
-
_writerCount: number = 0
|
|
11611
|
-
```
|
|
11612
|
-
|
|
11613
11579
|
###### Method canMakeAvailable
|
|
11614
11580
|
|
|
11615
11581
|
```ts
|
|
@@ -7,7 +7,7 @@ import { WalletMonitorTask } from './WalletMonitorTask';
|
|
|
7
7
|
*
|
|
8
8
|
* Looks for aged Transactions with provenTxId with status != 'completed', sets status to 'completed'.
|
|
9
9
|
*
|
|
10
|
-
* Looks for reqs with 'invalid' status that
|
|
10
|
+
* Looks for reqs with 'invalid' status that have corresonding transactions with status other than 'failed'.
|
|
11
11
|
*/
|
|
12
12
|
export declare class TaskReviewStatus extends WalletMonitorTask {
|
|
13
13
|
triggerMsecs: number;
|
|
@@ -9,7 +9,7 @@ const WalletMonitorTask_1 = require("./WalletMonitorTask");
|
|
|
9
9
|
*
|
|
10
10
|
* Looks for aged Transactions with provenTxId with status != 'completed', sets status to 'completed'.
|
|
11
11
|
*
|
|
12
|
-
* Looks for reqs with 'invalid' status that
|
|
12
|
+
* Looks for reqs with 'invalid' status that have corresonding transactions with status other than 'failed'.
|
|
13
13
|
*/
|
|
14
14
|
class TaskReviewStatus extends WalletMonitorTask_1.WalletMonitorTask {
|
|
15
15
|
constructor(monitor, triggerMsecs = 1000 * 60 * 15, agedMsecs = 1000 * 60 * 5) {
|
|
@@ -55,28 +55,12 @@ export declare class WalletStorageManager implements sdk.WalletStorage {
|
|
|
55
55
|
*/
|
|
56
56
|
_services?: sdk.WalletServices;
|
|
57
57
|
/**
|
|
58
|
-
*
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
*
|
|
63
|
-
*/
|
|
64
|
-
_writerCount: number;
|
|
65
|
-
/**
|
|
66
|
-
* if true, allow only a single writer to proceed at a time.
|
|
67
|
-
* queue the blocked requests so they get executed in order when released.
|
|
68
|
-
*/
|
|
69
|
-
_isSingleWriter: boolean;
|
|
70
|
-
/**
|
|
71
|
-
* if true, allow no new reader or writers to proceed.
|
|
72
|
-
* queue the blocked requests so they get executed in order when released.
|
|
73
|
-
*/
|
|
74
|
-
_syncLocked: boolean;
|
|
75
|
-
/**
|
|
76
|
-
* if true, allow no new reader or writers or sync to proceed.
|
|
77
|
-
* queue the blocked requests so they get executed in order when released.
|
|
58
|
+
* Creates a new WalletStorageManager with the given identityKey and optional active and backup storage providers.
|
|
59
|
+
*
|
|
60
|
+
* @param identityKey The identity key of the user for whom this wallet is being managed.
|
|
61
|
+
* @param active An optional active storage provider. If not provided, no active storage will be set.
|
|
62
|
+
* @param backups An optional array of backup storage providers. If not provided, no backups will be set.
|
|
78
63
|
*/
|
|
79
|
-
_storageProviderLocked: boolean;
|
|
80
64
|
constructor(identityKey: string, active?: sdk.WalletStorageProvider, backups?: sdk.WalletStorageProvider[]);
|
|
81
65
|
isStorageProvider(): boolean;
|
|
82
66
|
isAvailable(): boolean;
|
|
@@ -115,10 +99,20 @@ export declare class WalletStorageManager implements sdk.WalletStorage {
|
|
|
115
99
|
getBackupStores(): string[];
|
|
116
100
|
getConflictingStores(): string[];
|
|
117
101
|
getAllStores(): string[];
|
|
118
|
-
|
|
119
|
-
|
|
120
|
-
|
|
121
|
-
|
|
102
|
+
private readonly readerLocks;
|
|
103
|
+
private readonly writerLocks;
|
|
104
|
+
private readonly syncLocks;
|
|
105
|
+
private readonly spLocks;
|
|
106
|
+
private getActiveLock;
|
|
107
|
+
private releaseActiveLock;
|
|
108
|
+
private getActiveForReader;
|
|
109
|
+
private releaseActiveForReader;
|
|
110
|
+
private getActiveForWriter;
|
|
111
|
+
private releaseActiveForWriter;
|
|
112
|
+
private getActiveForSync;
|
|
113
|
+
private releaseActiveForSync;
|
|
114
|
+
private getActiveForStorageProvider;
|
|
115
|
+
private releaseActiveForStorageProvider;
|
|
122
116
|
runAsWriter<R>(writer: (active: sdk.WalletStorageWriter) => Promise<R>): Promise<R>;
|
|
123
117
|
runAsReader<R>(reader: (active: sdk.WalletStorageReader) => Promise<R>): Promise<R>;
|
|
124
118
|
/**
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"WalletStorageManager.d.ts","sourceRoot":"","sources":["../../../../src/storage/WalletStorageManager.ts"],"names":[],"mappings":"AAAA,OAAO,EACL,eAAe,EACf,iBAAiB,EACjB,qBAAqB,EAErB,iBAAiB,EACjB,sBAAsB,EACtB,iBAAiB,EACjB,yBAAyB,EACzB,oBAAoB,EACrB,MAAM,UAAU,CAAA;AAEjB,OAAO,KAAK,GAAG,MAAM,QAAQ,CAAA;AAC7B,OAAO,EACL,gBAAgB,EAChB,iBAAiB,EACjB,WAAW,EACX,iBAAiB,EACjB,gBAAgB,EAChB,aAAa,EACb,SAAS,EACV,MAAM,0BAA0B,CAAA;AAEjC,OAAO,EAAE,eAAe,EAAE,MAAM,mBAAmB,CAAA;AAGnD,cAAM,cAAc;IAMC,OAAO,EAAE,GAAG,CAAC,qBAAqB;IALrD,WAAW,EAAE,OAAO,CAAA;IACpB,iBAAiB,EAAE,OAAO,CAAA;IAC1B,QAAQ,CAAC,EAAE,aAAa,CAAA;IACxB,IAAI,CAAC,EAAE,SAAS,CAAA;gBAEG,OAAO,EAAE,GAAG,CAAC,qBAAqB;CAItD;AAED;;;;;;;;;;;;;;GAcG;AACH,qBAAa,oBAAqB,YAAW,GAAG,CAAC,aAAa;IAC5D;;OAEG;IACH,OAAO,EAAE,cAAc,EAAE,CAAK;IAC9B;;OAEG;IACH,YAAY,EAAE,OAAO,CAAQ;IAC7B;;OAEG;IACH,OAAO,CAAC,EAAE,cAAc,CAAA;IACxB;;OAEG;IACH,QAAQ,CAAC,EAAE,cAAc,EAAE,CAAA;IAC3B;;OAEG;IACH,mBAAmB,CAAC,EAAE,cAAc,EAAE,CAAA;IACtC;;OAEG;IACH,OAAO,EAAE,GAAG,CAAC,MAAM,CAAA;IACnB;;OAEG;IACH,SAAS,CAAC,EAAE,GAAG,CAAC,cAAc,CAAA;
|
|
1
|
+
{"version":3,"file":"WalletStorageManager.d.ts","sourceRoot":"","sources":["../../../../src/storage/WalletStorageManager.ts"],"names":[],"mappings":"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"}
|