feat: donation.confirmed webhook delivery (#76)#77
Merged
ayshadogo merged 1 commit intoJun 22, 2026
Merged
Conversation
- Add src/webhooks/donation_confirmed.rs with DonationConfirmedPayload struct and deliver() async fn that POSTs to WEBHOOK_URL on confirmation - Retry delivery up to 3 times (500ms delay) on non-2xx or network error - Add optional webhook_url field to Config, read from WEBHOOK_URL env var - Document WEBHOOK_URL in .env.example - Wire pub mod webhooks into main.rs - 2 new unit tests: payload serialization and error message format Closes Dfunder#76
5 tasks
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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Summary
Implements issue #76 — emit an HTTP POST webhook whenever a donation is confirmed on-chain.
Changes
src/webhooks/donation_confirmed.rs—DonationConfirmedPayloadstruct (serializes to the required JSON shape) anddeliver()async function that POSTs the payload to the configured URL with up to 3 retries (500 ms delay between attempts) on non-2xx responses or network errors.src/webhooks/mod.rs— module entry point re-exporting public items.src/config.rs— added optionalwebhook_url: Option<String>field read from theWEBHOOK_URLenv var; missing/empty value disables delivery..env.example— documents the newWEBHOOK_URLvariable.src/main.rs— wiredpub mod webhooks.Payload
{ "event": "donation.confirmed", "tx_hash": "...", "campaign_id": "...", "donor_address": "...", "amount": 5000, "timestamp": "2026-06-21T17:44:34Z" }Testing
cargo test).Closes #76