-
Notifications
You must be signed in to change notification settings - Fork 69
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
algod/client/model/Transaction
API response model only supports reporting PaymentTransactionType
transaction info
#71
Comments
In case of asset send transaction, since it is not a payment transaction, there will be no PaymentTransactionType. The "to" field is in PaymentTransactionType and not in Transaction. How can one obtain the asset receiver information? This is not possible in Java, and this is part of what this issue is about. I am not understanding how this can be done in go. |
algod/client/model/Transaction
returned from only supports payment information
algod/client/model/Transaction
returned from only supports payment informationalgod/client/model/Transaction
API response model only supports reporting PaymentTransactionType
transaction info
More context: the
|
fixed with API v2 |
found by @algonautshant
The REST model of a
Transaction
returned by aTransactionInformation
GET
will only decode Payment fields. It does not support KeyReg fields or any asset fields. So, if you use the java SDK toGET
information about (for example) an asset transfer transaction, you do not get information such as the asset receiver.The text was updated successfully, but these errors were encountered: