OrderStatus is blank in monaco protocol client docs #56
-
https://monacoprotocol.gitbook.io/monaco-protocol-client/docs/types/order#orderstatus There is nothing written for OrderStatus that explains what its return value is like. Could someone in charge please correct this issue, and also respond here with what the OrderStatus value looks like? Thanks in advance |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hi there thanks for your question, OrderStatus is an enum with the values:
You can see this in the client code here: https://github.com/MonacoProtocol/protocol/blob/main/npm-client/types/order.ts#L5 The return value through the client is represented like an object Will look into the missing documentation, cheers! |
Beta Was this translation helpful? Give feedback.
Hi there thanks for your question,
OrderStatus is an enum with the values:
You can see this in the client code here: https://github.com/MonacoProtocol/protocol/blob/main/npm-client/types/order.ts#L5
The return value through the client is represented like an object
orderStatus: { matched: {} },
though we hope to look into improving this.Will look into the missing documentation, cheers!