feat: implement four major feature epics (#469, #470, #471, #472)#559
Merged
Merged
Conversation
…7#470, Smartdevs17#471, Smartdevs17#472) - Issue Smartdevs17#469: Multi-Signature Timelock Treasury Management System - Soroban multi-sig timelock treasury contract - EVM multi-sig treasury contract with timelock governance - Backend treasury management service and API routes - Frontend treasury management dashboard - Issue Smartdevs17#470: Stellar Soroban Atomic Swap with Hash TimeLock Contracts - Soroban HTLC contract with lock/claim/refund/dispute flow - TypeScript SDK bindings for HTLC contract interaction - Backend HTLC manager service and API routes - Database models for atomic swaps and secrets - Issue Smartdevs17#471: API Key Usage Analytics and Quota Management Dashboard - API usage tracking middleware with real-time counters - Quota enforcement with 429 response and Retry-After header - Backend quota management service and API routes - Frontend API key usage dashboard with charts - Issue Smartdevs17#472: Custom Report Builder with Saved Report Templates - Drag-and-drop report builder with metric/dimension selection - Multiple chart type support (line, bar, pie, table, heatmap, area) - Date range presets and custom range picker - Report scheduling with email delivery support - Report template system for reusability
|
@sanmipaul is attempting to deploy a commit to the smartdevs17's projects Team on Vercel. A member of the Team first needs to authorize it. |
|
@sanmipaul 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! 🚀 |
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
This PR implements four major feature epics addressing Issues #469, #470, #471, and #472.
Issue #469: Multi-Signature Timelock Treasury Management System
Files:
contracts/soroban/treasury/,contracts/evm/contracts/Treasury.sol,backend/src/services/treasury/,backend/src/routes/treasury.ts,frontend/src/app/dashboard/treasury/,backend/prisma/schema.prismaIssue #470: Stellar Soroban Atomic Swap with Hash TimeLock Contracts
Files:
contracts/soroban/htlc/,packages/contracts/src/soroban/htlc.ts,backend/src/services/swaps/htlc-manager.ts,backend/src/routes/swaps.ts,backend/prisma/schema.prismacreate_swapwith SHA-256 hashlock + timelock,claimwith preimage verification,refundafter expiry,raise_dispute/`resolve_dispute` with admin mediationSorobanHtlcClientwith buildXDR methods for all contract functions, decode helpers, and RPC simulationAtomicSwapandAtomicSwapSecretmodels with PrismaIssue #471: API Key Usage Analytics and Quota Management Dashboard
Files:
backend/src/middleware/api-usage-tracker.ts,backend/src/services/keys/quota-manager.ts,backend/src/routes/api-keys.ts,frontend/src/app/dashboard/developers/api-keys/,backend/prisma/schema.prismaRetry-Afterheader, usage-based progress bars at 50%/80%/100% thresholdsIssue #472: Custom Report Builder with Saved Report Templates
Files:
frontend/src/app/dashboard/reports/builder/page.tsx,frontend/src/store/report-builder-store.ts,frontend/src/components/reports/,backend/src/services/reports/custom-report.ts,backend/src/routes/reports.ts,backend/prisma/schema.prismaSavedReport,ScheduledReport,ReportTemplatemodels with full CRUD and scheduling supportTesting
asyncHandlerpatternuse client+ Zustand patternRelated Issues
Closes #469
Closes #470
Closes #471
Closes #472