Skip to content

Commit c5089f0

Browse files
committed
docs
1 parent 2c151c6 commit c5089f0

File tree

6 files changed

+4180
-641
lines changed

6 files changed

+4180
-641
lines changed

docs/client.md

Lines changed: 307 additions & 313 deletions
Large diffs are not rendered by default.

docs/monitor.md

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -298,15 +298,15 @@ export class TaskCheckForProofs extends WalletMonitorTask {
298298
run: boolean;
299299
}
300300
async runTask(): Promise<string>
301-
async getProofs(reqs: table.ProvenTxReq[], indent = 0, countsAsAttempt = false, ignoreStatus = false): Promise<{
302-
proven: table.ProvenTxReq[];
303-
invalid: table.ProvenTxReq[];
301+
async getProofs(reqs: TableProvenTxReq[], indent = 0, countsAsAttempt = false, ignoreStatus = false): Promise<{
302+
proven: TableProvenTxReq[];
303+
invalid: TableProvenTxReq[];
304304
log: string;
305305
}>
306306
}
307307
```
308308

309-
See also: [Monitor](./monitor.md#class-monitor), [ProvenTxReq](./storage-tables.md#interface-proventxreq), [WalletMonitorTask](./monitor.md#class-walletmonitortask)
309+
See also: [Monitor](./monitor.md#class-monitor), [TableProvenTxReq](./storage.md#interface-tableproventxreq), [WalletMonitorTask](./monitor.md#class-walletmonitortask)
310310

311311
###### Property checkNow
312312

@@ -331,13 +331,13 @@ depending on chaintracks succeeding on proof verification.
331331
Increments attempts if proofs where requested.
332332

333333
```ts
334-
async getProofs(reqs: table.ProvenTxReq[], indent = 0, countsAsAttempt = false, ignoreStatus = false): Promise<{
335-
proven: table.ProvenTxReq[];
336-
invalid: table.ProvenTxReq[];
334+
async getProofs(reqs: TableProvenTxReq[], indent = 0, countsAsAttempt = false, ignoreStatus = false): Promise<{
335+
proven: TableProvenTxReq[];
336+
invalid: TableProvenTxReq[];
337337
log: string;
338338
}>
339339
```
340-
See also: [ProvenTxReq](./storage-tables.md#interface-proventxreq)
340+
See also: [TableProvenTxReq](./storage.md#interface-tableproventxreq)
341341

342342
Returns
343343

@@ -493,11 +493,11 @@ export class TaskSendWaiting extends WalletMonitorTask {
493493
run: boolean;
494494
}
495495
async runTask(): Promise<string>
496-
async processUnsent(reqApis: table.ProvenTxReq[], indent = 0): Promise<string>
496+
async processUnsent(reqApis: TableProvenTxReq[], indent = 0): Promise<string>
497497
}
498498
```
499499

500-
See also: [Monitor](./monitor.md#class-monitor), [ProvenTxReq](./storage-tables.md#interface-proventxreq), [WalletMonitorTask](./monitor.md#class-walletmonitortask)
500+
See also: [Monitor](./monitor.md#class-monitor), [TableProvenTxReq](./storage.md#interface-tableproventxreq), [WalletMonitorTask](./monitor.md#class-walletmonitortask)
501501

502502
###### Method processUnsent
503503

@@ -516,9 +516,9 @@ Add mapi responses to database table if received.
516516
Increments attempts if sending was attempted.
517517

518518
```ts
519-
async processUnsent(reqApis: table.ProvenTxReq[], indent = 0): Promise<string>
519+
async processUnsent(reqApis: TableProvenTxReq[], indent = 0): Promise<string>
520520
```
521-
See also: [ProvenTxReq](./storage-tables.md#interface-proventxreq)
521+
See also: [TableProvenTxReq](./storage.md#interface-tableproventxreq)
522522

523523
Links: [API](#api), [Interfaces](#interfaces), [Classes](#classes), [Functions](#functions), [Types](#types), [Variables](#variables)
524524

0 commit comments

Comments
 (0)