You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The transaction_id field is the transaction hash but the response also contains a field called txid that represents Bitstamp's internal transaction ID. This field is very useful for anyone who might also call the endpoint that brings back all Bitstamp user transactions.
The xchange-bitstamp module doesn't support this field at present but it's a pretty easy thing to add by simply adding txid to xchange-bitstamp/src/main/java/org/knowm/xchange/bitstamp/dto/account/WithdrawalRequest.java
The text was updated successfully, but these errors were encountered:
Awesome, quick work! I had my own pull request in the works but am just happy to have this field in the code now. I might create a small followup PR to add txId to the toString method if that's OK?
The Bitstamp V2 API has an endpoint that gets withdrawal requests.
The response object looks like this:
The
transaction_id
field is the transaction hash but the response also contains a field calledtxid
that represents Bitstamp's internal transaction ID. This field is very useful for anyone who might also call the endpoint that brings back all Bitstamp user transactions.The xchange-bitstamp module doesn't support this field at present but it's a pretty easy thing to add by simply adding
txid
to xchange-bitstamp/src/main/java/org/knowm/xchange/bitstamp/dto/account/WithdrawalRequest.javaThe text was updated successfully, but these errors were encountered: