endpoints/seichainget_ordersGET/sei-protocol/seichain/dex/get_orders/{contractAddr}/{account}ParameterscontractAddr*stringpathaccount*stringpathResponses200A successful response.PropertiesordersarraydefaultAn unexpected error response.PropertiescodeintegermessagestringdetailsarrayExample Usageimport { getQueryClient } from '@sei-js/cosmjs'; const queryClient = await getQueryClient("YOUR_RPC_URL"); const { getOrders } = queryClient.sei-protocol.seichain.dex; const params: QueryGetOrdersRequest = { contractAddr: "", account: "" }; const response: QueryGetOrdersResponseSDKType = await getOrders(params);