-
Notifications
You must be signed in to change notification settings - Fork 1.2k
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
paraswap: add paraswap_zkevm + v6.1 spell #6100
Conversation
Workflow run id 9400951741 approved. |
Workflow run id 9400951863 approved. |
Workflow run id 9400961897 approved. |
Workflow run id 9400962107 approved. |
Workflow run id 9412036634 approved. |
Workflow run id 9412036833 approved. |
Workflow run id 9414598097 approved. |
Workflow run id 9414598476 approved. |
Workflow run id 9427890743 approved. |
Workflow run id 9427890791 approved. |
Workflow run id 9428665135 approved. |
Workflow run id 9428665218 approved. |
Co-authored-by: Huang Geyang <[email protected]>
Co-authored-by: Huang Geyang <[email protected]>
Workflow run id 9442458777 approved. |
Workflow run id 9442458858 approved. |
Workflow run id 9442460616 approved. |
Workflow run id 9442460771 approved. |
thanks for the suggestions, applied @Hosuke both. Worth noting that those improvements are not normalised across all the spells (not only ParaSwap ones) |
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.
These improvements are new standards that we are striving to implement in our development process. We will do our best to cover these in all new spells. Thank you for your understanding and support!
AND tx.block_time >= TIMESTAMP '{{project_start_date}}' | ||
{% endif %} | ||
{% if is_incremental() %} | ||
AND tx.block_time >= date_trunc('day', now() - interval '7' day) |
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.
AND tx.block_time >= date_trunc('day', now() - interval '7' day) | |
AND {{ incremental_predicate('tx.block_time') }} |
AND p2.minute >= TIMESTAMP '{{project_start_date}}' | ||
{% endif %} | ||
{% if is_incremental() %} | ||
AND p2.minute >= date_trunc('day', now() - interval '7' day) |
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.
AND p2.minute >= date_trunc('day', now() - interval '7' day) | |
AND {{ incremental_predicate('p2.minute') }} |
AND p1.minute >= TIMESTAMP '{{project_start_date}}' | ||
{% endif %} | ||
{% if is_incremental() %} | ||
AND p1.minute >= date_trunc('day', now() - interval '7' day) |
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.
AND p1.minute >= date_trunc('day', now() - interval '7' day) | |
AND {{ incremental_predicate('p1.minute') }} |
i've been letting this one sit, as it appears suggestion still remain. please do make the changes and look to finalize |
closing due to inactivity. feel free to reopen and describe what needs to happen next, if necessary. thank you. |
This PR is a follow up of previous works (copy pasta). Previous PRs: #5597 and #6002