Closed
Conversation
|
@ISTIFANUS-N is attempting to deploy a commit to the naijabuz's projects Team on Vercel. A member of the Team first needs to authorize it. |
Collaborator
|
fix falling CI and resolve conflicts |
Contributor
Author
Collaborator
|
As you can see the CI is failing, please fix failing CI and your PR will be reviewed. |
786dc8f to
d4297ed
Compare
- Set up QueryClientProvider with Providers component - Create centralized mutation keys in lib/query/keys.ts - Implement useRegisterMutation and useLoginMutation hooks - Add comprehensive TypeScript types for auth flows - Configure API client with normalized error handling - Enable React Query DevTools for development - Update root layout to include query provider
- Add Breadcrumb component in components/ui/Breadcrumb.tsx
- Accept array of {label, href} items as props
- Render links for all except last item (plain text)
- Use Tailwind classes (flex, gap-2, text-sm)
- Add example usage demonstrations
- Component is reusable across Dashboard, Profile, and other pages
Closes DistinctCodes#316
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.
Extend Asset Contract with Tokenization Support
Why:
To support Pro/Enterprise plans, assets need to be tokenizable on the Stellar network. This requires extending the existing
asset.rscontract to link assets with a Stellar token ID.Scope / Changes:
tokenize_asset(asset_id: BytesN<32>, token_id: BytesN<32>)function.initialize).Assetstruct to include astellar_token_idfield.errors.rsfor error handling (AssetNotFound,Unauthorized, etc.).Acceptance Criteria:
stellar_token_idin theAssetstruct.closes #247