-
Notifications
You must be signed in to change notification settings - Fork 22
Master to stag #2319
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
Merged
Master to stag #2319
Changes from all commits
Commits
Show all changes
30 commits
Select commit
Hold shift + click to select a range
f305a69
Merge pull request #2295 from Giveth/staging
ae2079 ce7b81f
Merge pull request #2297 from Giveth/staging
ae2079 a82c1b0
Merge pull request #2298 from Giveth/staging
RamRamez 3ceb0a1
Merge pull request #2301 from Giveth/staging
kkatusic a7a05b0
fallback for internal txs unavailable
mmahdigh d163a33
Revert "fallback for internal txs unavailable"
mmahdigh 0371e4e
fallback for internal txs unavailable
mmahdigh d19adba
Update CORS whitelist to include 'qf.giveth.io'
RamRamez 04ff828
Merge pull request #2302 from Giveth/staging
mmahdigh 42d05e6
Improve GIVbacks allocatedGivTokens value
kkatusic 54ffd01
Fix power round tests
kkatusic a710c6f
fixing test error
kkatusic c47e3d0
Merge pull request #2304 from Giveth/fix_allocated_giv_value
kkatusic 11634b7
Update givbacks factor
kkatusic 86a8fa0
fix test
kkatusic 1ba15ae
fix failing test
kkatusic 86e0742
fixing test
kkatusic 4626a38
Merge pull request #2305 from Giveth/fix_allocated_giv_value
kkatusic 52bb672
Merge pull request #2307 from Giveth/release-4-16-2026
kkatusic 1b53b16
Merge pull request #2309 from Giveth/staging
ae2079 300e394
Merge pull request #2311 from Giveth/staging
ae2079 f1e6328
Merge pull request #2313 from Giveth/staging
ae2079 c728ea4
Merge pull request #2314 from Giveth/staging
ae2079 8d02998
bypass trusted createUserByAddress rate limit
ae2079 c3ef1dd
skip flaky optimistic rpc assertions in ci
ae2079 796a5e5
fix trusted createUserByAddress rate limiting
ae2079 bfab378
Merge pull request #2316 from Giveth/hotfix/trusted-create-user-rate-…
ae2079 6416aba
add isRecipient to wallet address duplicate check
RamRamez a4f5726
fix and add test cases
RamRamez 33e1406
Merge pull request #2318 from Giveth/add-isRecipient-to-wallet-addres…
RamRamez File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
Boundary conditions may exclude donations at exact window edges.
The SQL uses strict inequality (
>and<) which excludes donations at exactly 16:00:00.000 on the 1st and at 15:59:59.xxx on the last day. If the operational window should be inclusive of these boundaries (as the comments suggest "at 16:00 UTC"), consider using>=for the start boundary.Suggested fix for inclusive boundaries
And adjust
endDateto be 16:00:00 on the 1st of the next month for cleaner boundary:📝 Committable suggestion
🤖 Prompt for AI Agents