Add RWA asset creation wizard (#29) - #189
Merged
El-swaggerito merged 2 commits intoJul 29, 2026
Merged
Conversation
Contributor
| \nThis PR is currently blocked by merge conflicts.\n\nPlease update the branch with the latest main branch and resolve the conflicts before it can be merged. |
…tion-wizard-29 # Conflicts: # README.md # docs/README.md
6 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.
Description
Adds a guided asset creation wizard to the Issuer Console (
/issuer), lettingissuers submit a new RWA asset for compliance review. This is the missing
"create" counterpart to the existing minting workflow (#6): a request created
here starts in
pendingstatus in the existing issuance-request lifecycle(
draft → pending → approved → minted → rejected) and only becomes mintableafter a separate compliance approval step (out of scope here, already existed
in the table's status model).
Related Issue: Closes #29
Type of Change:
Evidence Checklist
1. Issue Reference
2. Implementation Summary
src/lib/assetCreationRequest.ts(new) — pure validation module, mirrorsmintRequest.tssrc/lib/assetCreationRequest.test.ts(new) — 11 unit testssrc/features/asset-creation/components/AssetCreationWizard.tsx(new) — 3-step wizard (form → review → submit)src/features/asset-creation/components/AssetCreationWizard.test.tsx(new) — 7 component testssrc/pages/issuer.tsx(modified) — wires the wizard into a modal, adds "New asset request" buttondocs/rwa-asset-creation-wizard.md(new) — design doc, edge cases, security/compliance assumptionsdocs/README.md(modified) — indexes the new docREADME.md(modified) — links the new doc3. Testing
Test Commands Run:
npm run lint npx tsc --noEmit npm testTest Output (summary):