feat: multisig governance, accessible modal, migration & contributor docs (#361 #364 #365 #366) - #453
Merged
devJaja merged 5 commits intoAug 31, 2026
Conversation
…olver (Epta-Node#366) - Add multisig signers list and quorum threshold to ErrorResolverContract - Add pending allowlist operations with timelock (24h default) - Add approve/execute flow for quorum-checked allowlist changes - Add append-only audit log with actor, op, and timestamp - Add new error variants: QuorumNotMet, TimelockNotExpired, AlreadyApproved, OpNotFound, SignerNotFound - Add tests for full multisig lifecycle: propose, approve, execute, timelock, quorum enforcement - Emit audit events for all governance operations
…-Node#365) - Add versioning policy with URL-based versioning and stability guarantees - Add deprecation calendar with 30-day announcement and 90-day window - Add event schema migration rules for additive and breaking changes - Add worked end-to-end example: upgrading SDK integration from v1 to v2 - Reference existing API_REFERENCE.md, events.md, and STORAGE_MIGRATION.md
…nt (Epta-Node#364) - Replace custom overlay/escape/scroll-lock with shared Modal component - Modal provides focus trap, escape-to-close, scroll lock, backdrop, aria-modal - Fix missing useAgentReputation hook call for reputation data - Remove duplicate overlay, modal, and closeButton CSS (now handled by Modal)
…Epta-Node#361) - Document quick start, all commands (dev, build, test, test:e2e) - Document project structure with component directories and conventions - Document CSS module patterns, naming conventions, data-testid usage - Document data-fetching hooks (useContractRead, useTransaction, useWalletBalance) - Document testing patterns with Vitest, Testing Library, and MSW - Document design tokens, styling approach, and key dependencies - Link to root CONTRIBUTING.md and AGENTS.md
|
@oomokaro1 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! 🚀 |
|
@oomokaro1 is attempting to deploy a commit to the Jaja's projects Team on Vercel. A member of the Team first needs to authorize it. |
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.
Closes #366, Closes #365, Closes #364, Closes #361
Type of Change
Summary
This PR addresses all four assigned issues in a single batch:
docs/MIGRATION_GUIDE.mdcovering API versioning policy, deprecation calendar, event schema migration, and a worked SDK upgrade example.AgentDetailModalto use the sharedModalcomponent, gaining focus trap, scroll lock, escape-to-close, and proper ARIA attributes. Also fixes a missinguseAgentReputationhook call.frontend/CONTRIBUTING.mddocumenting onboarding, commands, project structure, component conventions, data-fetching patterns, and testing expectations.Motivation / Context
Testing
cargo test -p error-resolver— all 23 tests pass (existing + new multisig tests)cargo fmt -p error-resolver— formatting verifiedModaland removing duplicate code; verified via code reviewCloses #366, Closes #365, Closes #364, Closes #361