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
I've encountered an issue related to the handling of NEAR blockchain's API responses in the ReceiptData class. Recently, it appears that the NEAR API response format has been updated, introducing a new data type 'Data'. This new format isn't currently supported by the ReceiptData class in your library.
Issue Description:
The original API response format, which is currently supported by your library, looks like this:
Suggested Solution:
I propose an update to the ReceiptData class to accommodate this new 'Data' field. This could involve adding a new property to the class to parse and store this additional data from the JSON response.
Thank you for your attention to this matter!
The text was updated successfully, but these errors were encountered:
Hello near-java-api Team,
I've encountered an issue related to the handling of NEAR blockchain's API responses in the
ReceiptData
class. Recently, it appears that the NEAR API response format has been updated, introducing a new data type 'Data'. This new format isn't currently supported by theReceiptData
class in your library.Issue Description:
The original API response format, which is currently supported by your library, looks like this:
The new API response format includes an additional 'Data' field as shown below:
Suggested Solution:
I propose an update to the ReceiptData class to accommodate this new 'Data' field. This could involve adding a new property to the class to parse and store this additional data from the JSON response.
Thank you for your attention to this matter!
The text was updated successfully, but these errors were encountered: