Dont worry im on it with a wallet Dev , also the dev from GRW is informed and i have created a Explorer for but its syncing at the moment ! I also have pm you !
Regards Lafu
Can you look at the API too?
What do you looking for exactly ?
It's difficult to automate anything when you can't lookup details of an order status.
We need either an endpoint which gives order status, even when order is closed. Or a way to determine if cancelled orders have been partially filled.
Ideally:
URL: /GetOrder
Param: OrderId
Return
{
"Success":true,
"Error":null,
"Data":[
{
"OrderId": 23467,
"TradePairId": 100,
"Market": "DOT/BTC",
"Type": "Buy",
"Rate": 0.00000034,
"Amount": 145.98000000,
"Filled": "23.98760000",
"OrderStatus": Active, Cancelled
},
{
...........
}
]
}
Take a look here maybe it helps you ! https://www.cryptopia.co.nz/Forum/Category/45
A simpler option that might fit in with your code structure is returning an array of the tradeId values. Not ideal as we would still have to the API again for more details, but it would at least make your API useable.
I'm keen to add Cryptopia to my portfolio so can help with the code if needed.