@acta-markets/ts-sdk 0.0.14-beta → 0.0.15-beta
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/dist/ws/types.d.ts +2 -2
- package/package.json +1 -1
package/dist/ws/types.d.ts
CHANGED
|
@@ -741,7 +741,7 @@ export type MakerPositionInfo = {
|
|
|
741
741
|
quantity: WsU64;
|
|
742
742
|
price: WsU64;
|
|
743
743
|
/** Net premium amount from on-chain position state (quote token base units). */
|
|
744
|
-
total_premium
|
|
744
|
+
total_premium: WsU64;
|
|
745
745
|
collateral_locked: WsU64;
|
|
746
746
|
created_at: WsU64;
|
|
747
747
|
expiry_ts: WsU64;
|
|
@@ -1014,7 +1014,7 @@ export type PositionInfo = {
|
|
|
1014
1014
|
quantity: WsU64;
|
|
1015
1015
|
price: WsU64;
|
|
1016
1016
|
/** Net premium amount from on-chain position state (quote token base units). */
|
|
1017
|
-
total_premium
|
|
1017
|
+
total_premium: WsU64;
|
|
1018
1018
|
created_at: WsU64;
|
|
1019
1019
|
/** Market expiry timestamp (unix seconds), sourced from markets table join. */
|
|
1020
1020
|
expiry_ts: WsU64;
|