@xoxno/types 1.0.456 → 1.0.457
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.
|
@@ -3,6 +3,12 @@ export declare class StellarLendingCursorDoc {
|
|
|
3
3
|
dataType: StellarLendingDataType;
|
|
4
4
|
lastLedger: number;
|
|
5
5
|
lastPagingToken: string | null;
|
|
6
|
+
/**
|
|
7
|
+
* Controller the cursor position belongs to. A fresh protocol deployment
|
|
8
|
+
* changes this address; the indexer discards a mismatched cursor and
|
|
9
|
+
* reseeds from the configured start ledger so setup events are not skipped.
|
|
10
|
+
*/
|
|
11
|
+
controllerAddress: string | null;
|
|
6
12
|
updatedAt: number;
|
|
7
13
|
id: string;
|
|
8
14
|
pk: string;
|
|
@@ -7,6 +7,12 @@ class StellarLendingCursorDoc {
|
|
|
7
7
|
this.dataType = enums_1.StellarLendingDataType.CURSOR;
|
|
8
8
|
this.lastLedger = 0;
|
|
9
9
|
this.lastPagingToken = null;
|
|
10
|
+
/**
|
|
11
|
+
* Controller the cursor position belongs to. A fresh protocol deployment
|
|
12
|
+
* changes this address; the indexer discards a mismatched cursor and
|
|
13
|
+
* reseeds from the configured start ledger so setup events are not skipped.
|
|
14
|
+
*/
|
|
15
|
+
this.controllerAddress = null;
|
|
10
16
|
this.updatedAt = 0;
|
|
11
17
|
Object.assign(this, props);
|
|
12
18
|
this.pk = this.dataType;
|