We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
There are methods in the Node API that allow you to request information about several listed entities at once:
/addresses/balance
/addresses/data/{address}
assets/details
transactions/merkleProof
transactions/status
Check how WavesJ behaves if some of the requested ids are incorrect for some reason:
Example: /assets/details?id=CG2xFkPdDwKUoBkzGAhQtLpSGzfXLiCYPEzeKH2Ad24a&id=DG2xFkPdDwKUoBkzGAhQtLpSGzfXLiCYPEzeKH2Ad24p
/assets/details?id=CG2xFkPdDwKUoBkzGAhQtLpSGzfXLiCYPEzeKH2Ad24a&id=DG2xFkPdDwKUoBkzGAhQtLpSGzfXLiCYPEzeKH2Ad24p
Add handling of such cases. Some of the possible approaches:
List<Error> errors
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There are methods in the Node API that allow you to request information about several listed entities at once:
/addresses/balance
/addresses/data/{address}
assets/details
transactions/merkleProof
transactions/status
Check how WavesJ behaves if some of the requested ids are incorrect for some reason:
Example:
/assets/details?id=CG2xFkPdDwKUoBkzGAhQtLpSGzfXLiCYPEzeKH2Ad24a&id=DG2xFkPdDwKUoBkzGAhQtLpSGzfXLiCYPEzeKH2Ad24p
Add handling of such cases. Some of the possible approaches:
List<Error> errors
with info for incorrect ids.The text was updated successfully, but these errors were encountered: