feat(treasury): add durable audit events for treasury multisig state changes #187 - #253
Merged
K1NGD4VID merged 2 commits intoSep 2, 2026
Conversation
…changes - Add treasury.deposit.created audit event on deposit creation - Add treasury.withdrawal.created audit event on withdrawal creation - Add treasury.proposal.failed audit event when Stellar submission fails - Add tests for all three audit event paths Closes mergepay#187
|
@Andreas2410 Great news! 🎉 Based on an automated assessment of this PR, the linked Wave issue(s) no longer count against your application limits. You can now already apply to more issues while waiting for a review of this PR. Keep up the great work! 🚀 |
Contributor
|
Needs review Linked to The PR implements some deposit, withdrawal, and failure audit logging but is incomplete as it misses signature updates, submissions, confirmations, and rejections required by the issue. Reviewed commit: |
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.
Overview
This PR adds durable audit events for treasury multisig state changes, ensuring every treasury multisig state transition produces an audit event as required by issue #187.
Related Issue
Closes #187
Changes
Audit Events
[ADD]
src/routes/treasury.tstreasury.deposit.createdaudit event when a depositTreasuryTransactionis created.treasury.withdrawal.createdaudit event when a withdrawalTreasuryTransactionis created.groupId,userId,entityType,entityId, and safe metadata (amount, asset, destination, status).requireMembership/requireAdmin) gate audit writes.[ADD]
src/services/treasury-proposals.tstreasury.proposal.failedaudit event in themergeAndSubmit()catch block when Stellar submission fails.audit()helper (swallows errors to avoid blocking the request).Tests
[ADD]
tests/treasury.test.tswrites an audit event when a deposit is created— verifiestreasury.deposit.createdaudit log entry.writes an audit event when a withdrawal is created— verifiestreasury.withdrawal.createdaudit log entry.[ADD]
tests/treasury-proposals.test.tswrites an audit event when Stellar submission fails— verifiestreasury.proposal.failedaudit log entry.Verification Results
Acceptance Criteria
treasury.deposit.createdtreasury.withdrawal.createdtreasury.proposal.failedrequireMembership/requireAdminalready enforcedaudit()helper