Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion build-on-omnichain/integration-checklist.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ Main flows to cover:

<Note>
Submit reduce-only orders for orders reducing the position, as reduce-only orders don't count
against IMR. If a user wants to close a position and the order is not submited as reduce-only,
against IMR. If a user wants to close a position and the order is not submitted as reduce-only,
user might run into IMR requirements issues if they don't have enough margin to submit the order,
preventing the user from closing the position.
</Note>
Expand Down
2 changes: 1 addition & 1 deletion sdks/hooks/market-data/use-orderbook-stream.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ const [data, { onDepthChange, isLoading, onItemClick, depth, allDepths }] = useO
);
```

`useOrderbookStream` returns an array, where the first element is the formatted orderbook data and the second element is an `object` conatining some data regarding the orderbook status.
`useOrderbookStream` returns an array, where the first element is the formatted orderbook data and the second element is an `object` containing some data regarding the orderbook status.

## Data structure

Expand Down
4 changes: 2 additions & 2 deletions sdks/hooks/orders/use-order-entry.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -77,8 +77,8 @@ type OrderEntryReturn = {
- `maxQty`: The maximum quantity that the user can trade based on the free collateral.
- `freeCollateral`: The amount collateral available for trading, factoring in open positions and pending orders.
- `markPrice`: The mark price of the symbol.
- `estLiqPrice`: The estimated liquidation price, if a position is created from given order paramters.
- `estLeverage`: The estimated leverage, if a position is created from given order paramters.
- `estLiqPrice`: The estimated liquidation price, if a position is created from given order parameters.
- `estLeverage`: The estimated leverage, if a position is created from given order parameters.

### Updating values

Expand Down