@xoxno/types 1.0.432 → 1.0.433
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.
|
@@ -57,4 +57,11 @@ export interface StellarLendingActivityData {
|
|
|
57
57
|
liquidationThresholdBps: number | null;
|
|
58
58
|
liquidationBonusBps: number | null;
|
|
59
59
|
loanToValueBps: number | null;
|
|
60
|
+
/**
|
|
61
|
+
* Liquidator (caller) address on liquidation legs (`liqRepay`/`liqSeize`),
|
|
62
|
+
* correlated by tx from the on-chain `LiquidationEvent`. `null` on all other
|
|
63
|
+
* rows. Enables a top-liquidators leaderboard (the legs' `accountId`/`owner`
|
|
64
|
+
* are the liquidatee).
|
|
65
|
+
*/
|
|
66
|
+
liquidator: string | null;
|
|
60
67
|
}
|