-
Notifications
You must be signed in to change notification settings - Fork 4
[Automated] Update OpenAPI definition #134
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
base: main
Are you sure you want to change the base?
Conversation
PR SummaryIntroduces a full OpenAPI spec with endpoints for prices, balances, transactions (EVM/SVM), collectibles, leaderboards, and webhook management, plus supporting schemas and tags.
Written by Cursor Bugbot for commit db6b722. Configure here. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Comment @cursor review or bugbot run to trigger another review on this PR
| "schema": { | ||
| "type": "string" | ||
| } | ||
| }, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Bug: EVM transactions offset parameter incorrectly marked required
The offset parameter for /echo/v1/transactions/evm/{address} is marked as required: true, but the description states it's "a cursor being passed from the previous response." This would prevent clients from making an initial request since they wouldn't have an offset value on the first call. All other pagination endpoints in this API correctly mark offset as optional (required: false), including the similar SVM transactions endpoint.
bh2smith
left a comment
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Seems Legit - although the diff is a bit hard to parse since it looks like an entirely new file.
This is an automated pull request to update the OpenAPI definition.