Skip to content
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

Verify Donation Queue Job ID Production #1277

Merged
merged 49 commits into from
Jan 31, 2024
Merged
Changes from all commits
Commits
Show all changes
49 commits
Select commit Hold shift + click to select a range
6e72b25
Verify transfer spl-token on solana, supporting multi chain solana
mohammadranjbarz Jan 4, 2024
4b9d793
fix solana tests on devnet
CarlosQ96 Jan 5, 2024
461b823
add solana additional tokens
CarlosQ96 Jan 5, 2024
3d7d37c
fix solana token transfer test
CarlosQ96 Jan 5, 2024
76ab1d2
improve joi schema chaintype validator
CarlosQ96 Jan 7, 2024
26199f8
Add another spl-token transfer test case, change validator of createD…
mohammadranjbarz Jan 8, 2024
7adfc7c
Refactor and change a nested if-else with witch case
mohammadranjbarz Jan 8, 2024
212279f
Removed only tags from tests
aminlatifi Jan 9, 2024
ed61794
Update src/utils/errorMessages.ts
CarlosQ96 Jan 10, 2024
4ac1c90
Update src/utils/locales/en.json
CarlosQ96 Jan 10, 2024
dc1e4c9
Merge pull request #1232 from Giveth/1175_verify_spl-token_transfer
aminlatifi Jan 14, 2024
761015f
Fill networkId for solana addresses when create/update projects
mohammadranjbarz Jan 15, 2024
311d0b1
Add some test tokens for solana dev chain
mohammadranjbarz Jan 15, 2024
55e1e3a
Merge branch 'master' of github.com:Giveth/impact-graph into staging
mohammadranjbarz Jan 15, 2024
e64588e
Import lost donations into DB cronjob (#1236)
CarlosQ96 Jan 15, 2024
6ae3a13
setup notification center disabling and reduce notifications
CarlosQ96 Jan 16, 2024
5d4bef5
Change filling networkId for solana
mohammadranjbarz Jan 16, 2024
bc1d6db
Fix migration files for adding spl tokens on solana
mohammadranjbarz Jan 16, 2024
8b08f09
Modify create donation test cases for check filling networkId of sola…
mohammadranjbarz Jan 16, 2024
b2bea74
Merge branch 'staging' into 1244_fill_solana_network_ids_with_correct…
mohammadranjbarz Jan 16, 2024
4185858
Merge branch 'staging' of github.com:Giveth/impact-graph into staging
mohammadranjbarz Jan 16, 2024
43b222b
Resolve merge conflicts
mohammadranjbarz Jan 16, 2024
4a6dd8c
comment out notification center methods interface
CarlosQ96 Jan 16, 2024
3e0ed60
Merge pull request #1246 from Giveth/feature_disable_calls_to_notific…
CarlosQ96 Jan 16, 2024
dadb847
Revert "comment out notification center methods interface"
aminlatifi Jan 16, 2024
85d5869
set logic as before, comment notification center methods not required
CarlosQ96 Jan 16, 2024
673bc8c
move donation received logic to notification adapter
CarlosQ96 Jan 16, 2024
d11eba4
Merge pull request #1249 from Giveth/hotfix_donationReceived_notifica…
CarlosQ96 Jan 16, 2024
4321187
Refactor get networkId for solana addresses and implement getAppropri…
mohammadranjbarz Jan 17, 2024
759a243
Merge branch 'staging' into 1244_fill_solana_network_ids_with_correct…
aminlatifi Jan 17, 2024
279bc40
Merge pull request #1245 from Giveth/1244_fill_solana_network_ids_wit…
aminlatifi Jan 17, 2024
86084a7
Fix filling solana donations price (#1252)
mohammadranjbarz Jan 18, 2024
494766f
Added jobId to donation verification queue
aminlatifi Jan 22, 2024
b067eb6
fix merge conflicts with master
CarlosQ96 Jan 22, 2024
693ef0e
fix test env
CarlosQ96 Jan 23, 2024
491bdef
Merge branch 'staging' into fix-verify-donation-job-queue-add
aminlatifi Jan 23, 2024
a00ed03
Merge pull request #1258 from Giveth/fix-verify-donation-job-queue-add
aminlatifi Jan 23, 2024
de14c4b
Import from Donation Backup Service (#1253)
aminlatifi Jan 23, 2024
9c7d9cf
Fix query of getting failed donations from mongo API
mohammadranjbarz Jan 23, 2024
de235e5
Add more logs for importing failed donations
mohammadranjbarz Jan 23, 2024
c3e8c41
Change info logs to debug logs
mohammadranjbarz Jan 23, 2024
028aefa
1.21.0
aminlatifi Jan 23, 2024
56f5efc
Add importDate to donation entity
mohammadranjbarz Jan 23, 2024
c91719c
Fill importDate of donation correctly
mohammadranjbarz Jan 23, 2024
a0534d0
Merge pull request #1263 from Giveth/import_failed_donation_add_impor…
aminlatifi Jan 23, 2024
e2d52b4
Put importing failed donations in try...catch
mohammadranjbarz Jan 23, 2024
3c699de
Resolve merge conflicts
mohammadranjbarz Jan 28, 2024
901dde7
Merge branch 'master' into staging
aminlatifi Jan 28, 2024
550db9c
Added back jobId to verifyDonationsQueue, along with removeOnComplete…
aminlatifi Jan 28, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 3 additions & 1 deletion src/services/cronJobs/syncDonationsWithNetwork.ts
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,9 @@ const addJobToCheckPendingDonationsWithNetwork = async () => {
donationId: donation.id,
},
{
// jobId: `verify-donation-id-${donation.id}`,
jobId: `verify-donation-id-${donation.id}`,
removeOnComplete: true,
removeOnFail: true,
},
);
});
Expand Down
Loading