tardis-dev 16.2.0 → 16.2.1

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/src/types.ts CHANGED
@@ -117,7 +117,7 @@ export type Liquidation = {
117
117
  readonly id: string | undefined
118
118
  readonly price: number
119
119
  readonly amount: number
120
- readonly side: 'buy' | 'sell' | 'unknown'
120
+ readonly side: 'buy' | 'sell' | 'unknown' // buy = short position liquidated, sell = long position liquidated
121
121
  readonly timestamp: Date
122
122
  readonly localTimestamp: Date
123
123
  }