We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 716a628 + 2ab34b3 commit ea5c929Copy full SHA for ea5c929
1 file changed
pyinjective/composer.py
@@ -211,6 +211,21 @@ def order_data(
211
cid=cid,
212
)
213
214
+ def order_data_without_mask(
215
+ self,
216
+ market_id: str,
217
+ subaccount_id: str,
218
+ order_hash: Optional[str] = None,
219
+ cid: Optional[str] = None,
220
+ ) -> injective_exchange_tx_pb.OrderData:
221
+ return injective_exchange_tx_pb.OrderData(
222
+ market_id=market_id,
223
+ subaccount_id=subaccount_id,
224
+ order_hash=order_hash,
225
+ order_mask=1,
226
+ cid=cid,
227
+ )
228
+
229
def SpotOrder(
230
self,
231
market_id: str,
0 commit comments