-
Notifications
You must be signed in to change notification settings - Fork 20
feat: tabbar enhancements #1399
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
…tooltip feedback) Add debounce to tab operations (create, delete, rename, reorder) Improve error handling and validation Show operation feedback as tooltip
|
Note Other AI code review bot(s) detectedCodeRabbit has detected other AI code review bot(s) in this pull request and will avoid duplicating their findings in the review comments. This may lead to a less comprehensive review. WalkthroughRefactors TabBar to a new explicit public API with serialized, debounced tab operations and navigation sequencing; updates PublicSpace to use spacePageData defaults and derive token networks; adds hover/touch tab preloading; and guards EditorPanel fidget tray contents against non-array values. Changes
Sequence Diagram(s)sequenceDiagram
autonumber
participant U as User
participant TB as TabBar
participant NAV as Router/URL
participant S as Backend/Store
U->>TB: Click tab
TB->>NAV: update URL (getSpacePageUrl)
TB->>TB: switchTabTo(tabName, shouldSave?)
TB->>S: (optional) preloadTabData / load tab data
TB-->>U: Active tab updated
U->>TB: Create/Rename/Delete/Reorder
TB->>TB: Debounce + serialize (isOperating)
TB->>S: createTab/renameTab/deleteTab/updateTabOrder
alt Delete
TB->>TB: Compute nextClosestTab -> pendingTabSwitch
TB->>NAV: deferred URL update
TB->>TB: switchTabTo(pendingTab)
end
TB-->>U: Operation complete / indicator cleared
sequenceDiagram
autonumber
participant PS as PublicSpace
participant TB as TabBar
participant CFG as Config/State
participant NAV as Router
PS->>CFG: Resolve currentTab (fallback to spacePageData.defaultTab)
PS->>TB: Render TabBar with API props (inHomebase, inEditMode, tabList, handlers)
TB-->>PS: User callbacks (switch/create/rename/delete/commit)
PS->>CFG: Apply updates and commit
PS->>NAV: replace/push URL via getSpacePageUrl
note right of PS: For token spaces derive network via\nspacePageData.tokenData?.network
Estimated code review effort🎯 4 (Complex) | ⏱️ ~60–90 minutes Possibly related PRs
Suggested labels
Suggested reviewers
Poem
Pre-merge checks and finishing touches❌ Failed checks (1 warning)
✅ Passed checks (2 passed)
✨ Finishing touches
🧪 Generate unit tests
📜 Recent review detailsConfiguration used: CodeRabbit UI Review profile: CHILL Plan: Pro 📒 Files selected for processing (1)
🧰 Additional context used🧬 Code graph analysis (1)src/app/(spaces)/PublicSpace.tsx (3)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out. Comment |
|
The latest updates on your projects. Learn more about Vercel for GitHub.
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Pull Request Overview
This PR enhances the TabBar component with debounced operations, improved error handling, and better state management to prevent race conditions and provide user feedback during tab operations.
- Implements debounced functions for tab operations (create, delete, rename, reorder) with 500ms delays
- Adds operation state tracking with visual feedback and disabled states during processing
- Improves error handling with toast notifications and safe array fallbacks
Reviewed Changes
Copilot reviewed 2 out of 2 changed files in this pull request and generated 4 comments.
| File | Description |
|---|---|
| src/common/components/organisms/TabBar.tsx | Adds debouncing, operation state management, error handling with toasts, and visual feedback for tab operations |
| src/common/components/organisms/EditorPanel.tsx | Adds safe array fallback for fidgetTrayContents to prevent potential runtime errors |
Tip: Customize your code reviews with copilot-instructions.md. Create the file or learn how to get started.
| setIsOperating(false); | ||
| } | ||
| }, 500), | ||
| [tabList] |
Copilot
AI
Sep 1, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The dependency array for debouncedCreateTab includes tabList, but debouncedDeleteTab and debouncedRenameTab have empty dependency arrays. This inconsistency could lead to stale closures in the delete and rename functions where they might not have access to the latest tabList state.
| onReorder={debounce((newOrder) => { | ||
| if (isOperating) return; | ||
| setIsOperating(true); | ||
| updateTabOrder(newOrder); | ||
| setTimeout(() => { | ||
| commitTabOrder(); | ||
| setIsOperating(false); | ||
| }, 100); | ||
| }, 500)} |
Copilot
AI
Sep 1, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The debounce function is created inline on every render, which defeats the purpose of debouncing. This should be moved to a useCallback with proper dependencies like the other debounced functions.
| try { | ||
| // Simple and safe delete function | ||
| if (!isEditableTab(tabName)) { | ||
| toast.error("Cannot delete this tab."); |
Copilot
AI
Sep 1, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The toast.error call is not aligned with the surrounding code indentation. It should be indented to match the return statement below it.
| toast.error("Cannot delete this tab."); | |
| toast.error("Cannot delete this tab."); |
| <TooltipProvider> | ||
| <div className="bg-blue-100 border border-blue-300 rounded-lg px-4 py-2 shadow-lg flex items-center"> | ||
| <span className="text-blue-600 font-bold">Processing operation...</span> | ||
| </div> | ||
| </TooltipProvider> |
Copilot
AI
Sep 1, 2025
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
TooltipProvider is being used incorrectly here. It's not providing a tooltip but just wrapping a div. Either use proper Tooltip components or remove the TooltipProvider wrapper.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
Caution
Some comments are outside the diff and can’t be posted inline due to platform limitations.
⚠️ Outside diff range comments (3)
src/common/components/organisms/TabBar.tsx (3)
146-180: Race condition risk in async tab creation flowThe
handleCreateTabfunction has a potential race condition between creating the tab and committing the order. The 100ms timeout forcommitTabOrder()might execute before the asynccreateTabcompletes if the network is slow.Consider awaiting the commit or using a more reliable sequencing:
-// Commit in background -setTimeout(() => { - commitTabOrder(); -}, 100); +// Ensure tab is created before committing order +await commitTabOrder();Or if you need non-blocking behavior:
-setTimeout(() => { - commitTabOrder(); -}, 100); +// Queue the commit after current operation completes +Promise.resolve().then(() => commitTabOrder());
209-254: Consider preventing data loss during rename operationsThe rename function changes the tab name immediately and commits asynchronously. If the commit fails, the UI will show the new name but the backend won't be updated, creating an inconsistent state.
Consider adding error handling and potential rollback:
// Commit in background -setTimeout(() => { - commitTab(uniqueName); - commitTabOrder(); -}, 100); +setTimeout(async () => { + try { + await commitTab(uniqueName); + await commitTabOrder(); + } catch (error) { + console.error("Failed to commit rename:", error); + toast.error("Failed to save tab rename. Please refresh the page."); + // Consider rolling back the rename in the UI + } +}, 100);
119-121: Add maximum tab limit to prevent unlimited creationThe PR title mentions "unlimited tabs" but there's no safeguard against creating too many tabs, which could impact performance and UX.
Consider adding a reasonable limit:
function generateNewTabName(): string { + const MAX_TABS = 50; // Or another reasonable limit + if (tabList.length >= MAX_TABS) { + toast.error(`Maximum of ${MAX_TABS} tabs allowed`); + return null; + } const endIndex = tabList.length + 1; const base = `Tab ${endIndex}`; const uniqueName = generateUniqueTabName(base); return uniqueName || `Tab ${Date.now()}`; // Fallback to timestamp if unique name fails }And update the create button handler:
-onClick={() => debouncedCreateTab(generateNewTabName())} +onClick={() => { + const newTabName = generateNewTabName(); + if (newTabName) { + debouncedCreateTab(newTabName); + } +}}
🧹 Nitpick comments (2)
src/common/components/organisms/EditorPanel.tsx (1)
59-59: Redundant array validation given the default parameterSince you've already set
fidgetTrayContents = []in the destructuring on line 47, thesafeFidgetTrayContentscheck becomes redundant. The parameter will never be undefined at this point, making the additionalArray.isArraycheck unnecessary unless you're defending against non-array values being explicitly passed.If you want to defend against non-array values being passed, consider validating at the props level or simplifying:
-const safeFidgetTrayContents = Array.isArray(fidgetTrayContents) ? fidgetTrayContents : []; +// fidgetTrayContents is guaranteed to be an array due to default parameter +const safeFidgetTrayContents = fidgetTrayContents;Or if you need to guard against non-array values:
-fidgetTrayContents = [], // fallback to empty array +fidgetTrayContents, // no default hereAnd keep the validation:
const safeFidgetTrayContents = Array.isArray(fidgetTrayContents) ? fidgetTrayContents : [];src/common/components/organisms/TabBar.tsx (1)
373-381: Consider using a more appropriate loading indicatorThe "Processing operation..." tooltip might not be the best UX pattern. Users might not notice it at the bottom-right corner.
Consider using a more prominent loading state, such as:
- A loading overlay
- Disabled state on all interactive elements
- A progress bar at the top of the page
Example with a top bar:
-{isOperating && ( - <div className="fixed bottom-8 right-8 z-50"> - <TooltipProvider> - <div className="bg-blue-100 border border-blue-300 rounded-lg px-4 py-2 shadow-lg flex items-center"> - <span className="text-blue-600 font-bold">Processing operation...</span> - </div> - </TooltipProvider> - </div> -)} +{isOperating && ( + <div className="fixed top-0 left-0 right-0 z-50 h-1 bg-blue-200"> + <div className="h-full bg-blue-600 animate-pulse" /> + </div> +)}
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
💡 Knowledge Base configuration:
- MCP integration is disabled by default for public repositories
- Jira integration is disabled by default for public repositories
- Linear integration is disabled by default for public repositories
You can enable these sources in your CodeRabbit configuration.
📒 Files selected for processing (2)
src/common/components/organisms/EditorPanel.tsx(3 hunks)src/common/components/organisms/TabBar.tsx(9 hunks)
🧰 Additional context used
🧬 Code graph analysis (2)
src/common/components/organisms/EditorPanel.tsx (1)
src/common/components/organisms/FidgetTray.tsx (1)
FidgetTray(27-123)
src/common/components/organisms/TabBar.tsx (2)
src/common/data/stores/app/homebase/homebaseTabsStore.ts (1)
deleteTab(338-375)src/common/components/atoms/tooltip.tsx (1)
TooltipProvider(28-28)
🔇 Additional comments (6)
src/common/components/organisms/EditorPanel.tsx (2)
47-47: Good defensive programming with array fallbackAdding a default empty array for
fidgetTrayContentsprevents potential undefined errors downstream.
89-89: Consistent safe array handlingGood use of the validated array for both the conditional rendering logic and the props passed to FidgetTray.
Also applies to: 95-95
src/common/components/organisms/TabBar.tsx (4)
4-4: LGTM! Necessary imports for enhanced functionalityThe addition of
debouncefrom lodash andtoastfrom sonner supports the new debouncing and user feedback features.Also applies to: 16-16
80-114: Well-structured debounced handlers with proper state managementThe implementation correctly:
- Uses 500ms debounce delay to prevent rapid operations
- Manages
isOperatingstate to prevent concurrent operations- Properly cleans up state in finally blocks
183-183: Good defensive programming for tab listThe
safeTabListensures there's always at least a "Profile" tab, preventing UI issues with empty tab lists.
185-207: Robust delete implementation with proper user feedbackExcellent implementation that:
- Prevents deletion of permanent tabs
- Ensures at least one tab remains
- Switches to another tab before deletion
- Provides clear user feedback via toasts
…n with state - Navigation to next tab now only occurs after tabList is updated - Eliminates double render/loading when deleting tabs - Improves UX and state consistency for tab operations
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 4
♻️ Duplicate comments (2)
src/common/components/organisms/TabBar.tsx (2)
380-389: Don’t wrap a plain div with TooltipProviderTooltipProvider should wrap Tooltip components, not serve as a stylistic wrapper. Remove the nested provider (keep the top-level one).
- <TooltipProvider> - <div className="bg-blue-100 border border-blue-300 rounded-lg px-4 py-2 shadow-lg flex items-center"> - <span className="text-blue-600 font-bold">Processing operation...</span> - </div> - </TooltipProvider> + <div className="bg-blue-100 border border-blue-300 rounded-lg px-4 py-2 shadow-lg flex items-center"> + <span className="text-blue-600 font-bold">Processing operation...</span> + </div>
317-325: Inline debounce recreated every render for onReorderThis defeats debouncing and risks dropped state. Memoize the debounced reorder handler and cancel on unmount.
Apply this change to the prop:
- onReorder={debounce((newOrder) => { - if (isOperating) return; - setIsOperating(true); - updateTabOrder(newOrder); - setTimeout(() => { - commitTabOrder(); - setIsOperating(false); - }, 100); - }, 500)} + onReorder={debouncedReorder}Add the handler above return():
const updateRef = React.useRef(updateTabOrder); const commitRef = React.useRef(commitTabOrder); React.useEffect(() => { updateRef.current = updateTabOrder; commitRef.current = commitTabOrder; }, [updateTabOrder, commitTabOrder]); const debouncedReorder = React.useMemo( () => debounce((newOrder: string[]) => { setIsOperating(true); updateRef.current(newOrder); setTimeout(() => { commitRef.current(); setIsOperating(false); }, 100); }, 500), [] ); React.useEffect(() => () => debouncedReorder.cancel(), [debouncedReorder]);
🧹 Nitpick comments (4)
src/common/components/organisms/TabBar.tsx (4)
4-4: Trim lodash usage (bundle size) and prefer native Array.mapImport debounce directly and drop lodash map in favor of native map.
-import { debounce, map } from "lodash"; +import debounce from "lodash/debounce"; @@ - {map( - inHomebase ? ["Feed", ...tabList] : tabList, - (tabName: string) => ( - <Tab - key={`tab-${tabName}`} - getSpacePageUrl={getSpacePageUrl} - tabName={tabName} - inEditMode={inEditMode} - isSelected={currentTab === tabName} - onClick={() => handleTabClick(tabName)} - removeable={isEditableTab(tabName)} - draggable={inEditMode} - renameable={isEditableTab(tabName)} - onRemove={() => debouncedDeleteTab(tabName)} - renameTab={(tab, newName) => debouncedRenameTab(tab, newName)} - /> - ) - )} + {(inHomebase ? ["Feed", ...tabList] : tabList).map((tabName: string) => ( + <Tab + key={`tab-${tabName}`} + getSpacePageUrl={getSpacePageUrl} + tabName={tabName} + inEditMode={inEditMode} + isSelected={currentTab === tabName} + onClick={() => handleTabClick(tabName)} + removeable={isEditableTab(tabName)} + draggable={inEditMode} + renameable={isEditableTab(tabName)} + onRemove={() => debouncedDeleteTab(tabName)} + renameTab={(tab, newName) => debouncedRenameTab(tab, newName)} + /> + ))}Also applies to: 329-346
175-179: Avoid bare setTimeout for commits; debounce and cleanupMultiple setTimeouts can leak on unmount and compete. Centralize commit with a debounced function and cancel on unmount.
Example:
const commitOrderSoon = React.useMemo(() => debounce(() => commitTabOrder(), 100), [commitTabOrder]); React.useEffect(() => () => commitOrderSoon.cancel(), [commitOrderSoon]); // then replace setTimeout(() => { commitTabOrder(); ... }, 100) with: commitOrderSoon();Also applies to: 254-257, 321-324
293-295: Remove stray console.log or guard with debug flagKeep logs behind a debug flag or remove before shipping.
- console.log("Tab clicked:", tabName, "Current tab:", currentTab);
49-67: Unused prop: inHomeinHome is declared but not used. Remove or implement.
- inHome?: boolean;
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
💡 Knowledge Base configuration:
- MCP integration is disabled by default for public repositories
- Jira integration is disabled by default for public repositories
- Linear integration is disabled by default for public repositories
You can enable these sources in your CodeRabbit configuration.
📒 Files selected for processing (1)
src/common/components/organisms/TabBar.tsx(9 hunks)
🧰 Additional context used
🧬 Code graph analysis (1)
src/common/components/organisms/TabBar.tsx (2)
src/common/data/stores/app/homebase/homebaseTabsStore.ts (1)
deleteTab(338-375)src/common/components/atoms/tooltip.tsx (1)
TooltipProvider(28-28)
| // Effect to navigate only when the deleted tab disappears from the tabList | ||
| React.useEffect(() => { | ||
| if (pendingTabSwitch && !tabList.includes(pendingTabSwitch)) { | ||
| switchTabTo(pendingTabSwitch); | ||
| setPendingTabSwitch(null); | ||
| } | ||
|
|
||
| const nextTab = nextClosestTab(tabName); | ||
|
|
||
| // Switch to next tab first | ||
| switchTabTo(nextTab); | ||
|
|
||
| // Delete the tab | ||
| deleteTab(tabName); | ||
| } | ||
| }, [tabList, pendingTabSwitch, switchTabTo]); | ||
|
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wrong condition for post-delete navigation
Effect checks “pendingTabSwitch not in tabList” and then navigates to it, which is inverted. You either need to track the deleted tab and wait until it disappears, or simply switch immediately after delete.
Minimal fix: switch immediately and drop the effect/state.
- const nextTab = nextClosestTab(tabName);
- await Promise.resolve(deleteTab(tabName));
- setPendingTabSwitch(nextTab); // just mark to switch later
+ const nextTab = nextClosestTab(tabName);
+ await Promise.resolve(deleteTab(tabName));
+ switchTabTo(nextTab);
toast.success("Tab deleted successfully!");
@@
- // Effect to navigate only when the deleted tab disappears from the tabList
- React.useEffect(() => {
- if (pendingTabSwitch && !tabList.includes(pendingTabSwitch)) {
- switchTabTo(pendingTabSwitch);
- setPendingTabSwitch(null);
- }
- }, [tabList, pendingTabSwitch, switchTabTo]);
+ // removed: immediate navigation after deleteIf you prefer waiting for store propagation, track lastDeletedTab and check for its absence instead of checking pendingTabSwitch membership.
Also applies to: 199-205
🤖 Prompt for AI Agents
In src/common/components/organisms/TabBar.tsx around lines 199-216, the effect
that tries to navigate after a tab delete uses an inverted condition (it checks
that pendingTabSwitch is NOT in tabList and then switches to pendingTabSwitch),
which is wrong; the minimal fix is to perform the switch immediately after you
dispatch the delete and remove the pendingTabSwitch state and the useEffect
entirely (i.e., call switchTabTo(...) right after delete and delete
setPendingTabSwitch/useEffect code). If you instead need to wait for store
propagation, replace pendingTabSwitch with lastDeletedTab, set lastDeletedTab
when deleting, and change the effect to run when tabList changes and, if
lastDeletedTab is not in tabList, call switchTabTo(pendingTabSwitch) then clear
lastDeletedTab and pendingTabSwitch.
- Move router.push() to execute immediately after setCurrentTabName() - Defer save/commit operations to background using setTimeout - Remove blocking await operations from tab switching - Improve perceived performance by updating URL instantly - Maintain data persistence in background without blocking UI Fixes slow URL updates when switching tabs in localhost
…IComponent for tab names
✨ **Key fixes:** - Fixed client-side exception error during tab navigation - Resolved infinite requests issue in TabBar - Maintained instant URL update for immediate visual feedback - Tab navigation is now stable and responsive 🛠️ **TabBar improvements:** - Simplified debounced functions for better performance - Removed complex logic causing unnecessary re-renders - Reduced debounce from 500ms to 300ms for faster response - Improved state management during tab operations 🚀 **Next.js 15 compatibility:** - Fixed generateMetadata to use `await params` per new API - Eliminated sync dynamic APIs warning - Compliance with Next.js 15 new rules 📱 **Enhanced UX:** - Instant navigation when clicking tabs - Immediate visual feedback in URL - Eliminated unnecessary delays - Prevented errors during rapid tab switching Closes: Tab navigation breaking and infinite requests issue
- Add timing delay to prevent race conditions when switching to new tabs - Improve error handling in tab name generation functions - Add safety limits to prevent infinite loops
- Remove automatic navigation after tab creation to prevent race conditions - Add comprehensive error handling and debug logging - Improve tab creation stability
- Add conditional navigation only when deleting current tab - Increase delay to 100ms to prevent race conditions - Enhanced error handling and debug logs
- Fix nextClosestTab to properly handle last tab deletion - Correct useEffect condition to prevent infinite re-renders - Clean up debug logs
… type requirements
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 3
🧹 Nitpick comments (6)
src/constants/initialPersonSpace.ts (2)
53-80: Formatting inconsistency in layoutItems array.The opening brace for the first layout item (line 54) is on the same line as the array bracket, while the second item (line 67) has its opening brace on a new line. This inconsistency reduces readability.
Apply this diff to standardize the formatting:
const layoutItems = [ { - w: 6, + w: 6, - h: 8, + h: 8, - x: 0, + x: 0, - y: 0, + y: 0, - i: "feed:profile", + i: "feed:profile", - minW: 4, + minW: 4, - maxW: 36, + maxW: 36, - minH: 6, + minH: 6, - maxH: 36, + maxH: 36, - moved: false, + moved: false, - static: false, + static: false, - }, -{ - w: 6, + }, + { + w: 6, - h: 8, + h: 8, - x: 7, + x: 7, - y: 0, + y: 0, - i: "Portfolio:cd627e89-d661-4255-8c4c-2242a950e93e", + i: "Portfolio:cd627e89-d661-4255-8c4c-2242a950e93e", - minW: 3, + minW: 3, - maxW: 36, + maxW: 36, - minH: 3, + minH: 3, - maxH: 36, + maxH: 36, - moved: false, + moved: false, - static: false, - } + static: false, + }, ];
70-70: Consider layout positioning - potential gap between widgets.The first widget ends at
x=5(x=0, w=6), but the second widget starts atx=7, creating a one-column gap. If this spacing is intentional for visual separation, consider adding a comment to clarify. Otherwise, you may want to adjust the x-coordinate to6for adjacent placement.src/app/(spaces)/p/[proposalId]/ProposalSpace.tsx (1)
106-112: Consider using the centralized editability utility.The PublicSpace API refactor looks good and aligns with the pattern across other space components. However, this component duplicates editability logic that could leverage the new
spaceEditability.tsutility (lines 42-78 vs. the utility atsrc/common/utils/spaceEditability.ts).Note: The local
isProposalSpaceEditableincludes identity key ownership checks (lines 62-63) that are missing fromspaceEditability.ts. If you consolidate to the utility, ensure identity key ownership support is added there first.src/app/(spaces)/s/[handle]/ProfileSpace.tsx (1)
97-102: Consider using the centralized editability utility.The refactor to discrete PublicSpace props is consistent with the broader pattern. However, similar to ProposalSpace, this duplicates editability logic (lines 38-73) that could use the
spaceEditability.tsutility.The local
isProfileSpaceEditableincludes identity key ownership checks (lines 58-59) missing fromspaceEditability.ts. Add identity key ownership support to the utility before consolidating.src/app/(spaces)/t/[network]/[contractAddress]/TokenSpace.tsx (1)
165-173: Consider using the centralized editability utility.The discrete props refactor is consistent across all space components. However,
checkTokenSpaceEditability(lines 45-135) duplicates logic that overlaps withspaceEditability.ts.The local helper includes identity key ownership checks (lines 103-110) that are absent from
spaceEditability.ts. This pattern appears across all three *Space files, suggesting the utility needs identity key ownership support before consolidation can proceed.src/common/utils/spaceEditability.ts (1)
4-4: Remove unused import.
useAppStoreis imported but never used in this file.-import { useAppStore } from '../data/stores/app';
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (5)
src/app/(spaces)/p/[proposalId]/ProposalSpace.tsx(1 hunks)src/app/(spaces)/s/[handle]/ProfileSpace.tsx(1 hunks)src/app/(spaces)/t/[network]/[contractAddress]/TokenSpace.tsx(1 hunks)src/common/utils/spaceEditability.ts(1 hunks)src/constants/initialPersonSpace.ts(1 hunks)
🧰 Additional context used
🧬 Code graph analysis (2)
src/common/utils/spaceEditability.ts (1)
src/common/providers/TokenProvider.tsx (1)
MasterToken(19-24)
src/constants/initialPersonSpace.ts (2)
src/app/(spaces)/Space.tsx (1)
SpaceConfig(37-49)src/common/utils/layoutFormatUtils.ts (1)
getLayoutConfig(95-106)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
- GitHub Check: Vercel Agent Review
🔇 Additional comments (2)
src/constants/initialPersonSpace.ts (1)
39-51: Ensure Portfolio fidget IDs are unique at runtime.The template uses a static UUID (
cd627e89-d661-4255-8c4c-2242a950e93e) across bothinitialProfileSpace.tsandinitialPersonSpace.ts. Unless these constants are replaced with newly generated IDs when instantiating a space, all users will share the same fidget ID, leading to collisions. Confirm that the cloneDeep path regenerates IDs (e.g., viauuid()) or update this template to inject a dynamic ID instead.src/common/utils/spaceEditability.ts (1)
47-49: Clarify the editableSpaces cache mechanism.The code checks
editableSpaces[spaceId]for cached editability but the origin and lifecycle of this cache is unclear. Where iseditableSpacespopulated, and when is it invalidated?If this is intended to bypass expensive checks, document the caching strategy. If it's for future use, consider removing it until the implementation is complete.
src/common/utils/spaceEditability.ts
Outdated
| export const createEditabilityChecker = (context: EditabilityContext) => { | ||
| const { | ||
| currentUserFid, | ||
| currentUserIdentityPublicKey, | ||
| spaceOwnerFid, | ||
| spaceOwnerAddress, | ||
| tokenData, | ||
| wallets = [], | ||
| isTokenPage = false, | ||
| spaceId, | ||
| editableSpaces, | ||
| } = context; | ||
|
|
||
|
|
||
| // First, check if the space is already marked as editable in the store | ||
| if (spaceId && editableSpaces && editableSpaces[spaceId]) { | ||
| return { isEditable: true, isLoading: false }; | ||
| } | ||
|
|
||
| // If we don't have any authentication method, we're definitely not editable | ||
| if (isNil(currentUserFid) && isNil(currentUserIdentityPublicKey) && (!wallets || wallets.length === 0)) { | ||
| return { isEditable: false, isLoading: false }; | ||
| } | ||
|
|
||
| let isEditable = false; | ||
|
|
||
| // For token spaces, check requestor and ownership | ||
| if (isTokenPage) { | ||
| // Check if user is the owner by FID | ||
| if ( | ||
| spaceOwnerFid && | ||
| !isNil(currentUserFid) && | ||
| currentUserFid === spaceOwnerFid | ||
| ) { | ||
| isEditable = true; | ||
| } | ||
|
|
||
| // Check if user owns the wallet address - handles both direct contract ownership | ||
| // and Empire token ownership through tokenData.empireData.owner | ||
| const ownerAddress = | ||
| spaceOwnerAddress || (tokenData?.empireData?.owner as Address | undefined); | ||
| if ( | ||
| !isEditable && | ||
| ownerAddress && | ||
| wallets.some((w) => isAddressEqual(w.address as Address, ownerAddress)) | ||
| ) { | ||
| isEditable = true; | ||
| } | ||
|
|
||
| // Check Clanker requestor status | ||
| if ( | ||
| !isEditable && | ||
| tokenData?.clankerData?.requestor_fid && | ||
| !isNil(currentUserFid) && | ||
| currentUserFid === Number(tokenData.clankerData.requestor_fid) | ||
| ) { | ||
| isEditable = true; | ||
| } | ||
| } else { | ||
| // For profile spaces, check FID match | ||
| if ( | ||
| spaceOwnerFid && | ||
| !isNil(currentUserFid) && | ||
| currentUserFid === spaceOwnerFid | ||
| ) { | ||
| isEditable = true; | ||
| } | ||
| } | ||
|
|
||
| return { isEditable, isLoading: false }; | ||
| }; No newline at end of file |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing identity key ownership checks prevent adoption.
The utility implements FID, wallet, and Clanker ownership checks but omits identity key ownership verification that all three *Space components include:
- ProposalSpace.tsx (lines 62-63): Checks
spaceIdentityPublicKey === currentUserIdentityPublicKey - ProfileSpace.tsx (lines 58-59): Same check
- TokenSpace.tsx (lines 103-110): Same check
Without this check, the utility cannot replace the duplicated logic in those components.
Add identity key ownership checks for both token and profile space paths:
// For token spaces, check requestor and ownership
if (isTokenPage) {
// Check if user is the owner by FID
if (
spaceOwnerFid &&
!isNil(currentUserFid) &&
currentUserFid === spaceOwnerFid
) {
isEditable = true;
}
// Check if user owns the wallet address - handles both direct contract ownership
// and Empire token ownership through tokenData.empireData.owner
const ownerAddress =
spaceOwnerAddress || (tokenData?.empireData?.owner as Address | undefined);
if (
!isEditable &&
ownerAddress &&
wallets.some((w) => isAddressEqual(w.address as Address, ownerAddress))
) {
isEditable = true;
}
// Check Clanker requestor status
if (
!isEditable &&
tokenData?.clankerData?.requestor_fid &&
!isNil(currentUserFid) &&
currentUserFid === Number(tokenData.clankerData.requestor_fid)
) {
isEditable = true;
}
+
+ // Check identity key ownership (only if space is registered)
+ if (
+ !isEditable &&
+ spaceId &&
+ context.spaceIdentityPublicKey &&
+ context.spaceIdentityPublicKey === currentUserIdentityPublicKey
+ ) {
+ isEditable = true;
+ }
} else {
// For profile spaces, check FID match
if (
spaceOwnerFid &&
!isNil(currentUserFid) &&
currentUserFid === spaceOwnerFid
) {
isEditable = true;
}
+
+ // Check identity key ownership (only if space is registered)
+ if (
+ !isEditable &&
+ spaceId &&
+ context.spaceIdentityPublicKey &&
+ context.spaceIdentityPublicKey === currentUserIdentityPublicKey
+ ) {
+ isEditable = true;
+ }
}Also extend EditabilityContext to include spaceIdentityPublicKey:
export type EditabilityContext = {
currentUserFid: number | null;
// Editable spaces
editableSpaces?: Record<string, string>;
currentUserIdentityPublicKey?: string | null;
+ spaceIdentityPublicKey?: string;
// Profile ownership
spaceOwnerFid?: number;📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| export const createEditabilityChecker = (context: EditabilityContext) => { | |
| const { | |
| currentUserFid, | |
| currentUserIdentityPublicKey, | |
| spaceOwnerFid, | |
| spaceOwnerAddress, | |
| tokenData, | |
| wallets = [], | |
| isTokenPage = false, | |
| spaceId, | |
| editableSpaces, | |
| } = context; | |
| // First, check if the space is already marked as editable in the store | |
| if (spaceId && editableSpaces && editableSpaces[spaceId]) { | |
| return { isEditable: true, isLoading: false }; | |
| } | |
| // If we don't have any authentication method, we're definitely not editable | |
| if (isNil(currentUserFid) && isNil(currentUserIdentityPublicKey) && (!wallets || wallets.length === 0)) { | |
| return { isEditable: false, isLoading: false }; | |
| } | |
| let isEditable = false; | |
| // For token spaces, check requestor and ownership | |
| if (isTokenPage) { | |
| // Check if user is the owner by FID | |
| if ( | |
| spaceOwnerFid && | |
| !isNil(currentUserFid) && | |
| currentUserFid === spaceOwnerFid | |
| ) { | |
| isEditable = true; | |
| } | |
| // Check if user owns the wallet address - handles both direct contract ownership | |
| // and Empire token ownership through tokenData.empireData.owner | |
| const ownerAddress = | |
| spaceOwnerAddress || (tokenData?.empireData?.owner as Address | undefined); | |
| if ( | |
| !isEditable && | |
| ownerAddress && | |
| wallets.some((w) => isAddressEqual(w.address as Address, ownerAddress)) | |
| ) { | |
| isEditable = true; | |
| } | |
| // Check Clanker requestor status | |
| if ( | |
| !isEditable && | |
| tokenData?.clankerData?.requestor_fid && | |
| !isNil(currentUserFid) && | |
| currentUserFid === Number(tokenData.clankerData.requestor_fid) | |
| ) { | |
| isEditable = true; | |
| } | |
| } else { | |
| // For profile spaces, check FID match | |
| if ( | |
| spaceOwnerFid && | |
| !isNil(currentUserFid) && | |
| currentUserFid === spaceOwnerFid | |
| ) { | |
| isEditable = true; | |
| } | |
| } | |
| return { isEditable, isLoading: false }; | |
| }; | |
| // --- src/common/utils/spaceEditability.ts --- | |
| export type EditabilityContext = { | |
| currentUserFid: number | null; | |
| // Editable spaces | |
| editableSpaces?: Record<string, string>; | |
| currentUserIdentityPublicKey?: string | null; | |
| spaceIdentityPublicKey?: string; // <-- added | |
| // Profile ownership | |
| spaceOwnerFid?: number; | |
| // ... | |
| }; | |
| export const createEditabilityChecker = (context: EditabilityContext) => { | |
| const { | |
| currentUserFid, | |
| currentUserIdentityPublicKey, | |
| spaceOwnerFid, | |
| spaceOwnerAddress, | |
| tokenData, | |
| wallets = [], | |
| isTokenPage = false, | |
| spaceId, | |
| editableSpaces, | |
| } = context; | |
| // First, check if the space is already marked as editable in the store | |
| if (spaceId && editableSpaces && editableSpaces[spaceId]) { | |
| return { isEditable: true, isLoading: false }; | |
| } | |
| // If we don't have any authentication method, we're definitely not editable | |
| if ( | |
| isNil(currentUserFid) && | |
| isNil(currentUserIdentityPublicKey) && | |
| (!wallets || wallets.length === 0) | |
| ) { | |
| return { isEditable: false, isLoading: false }; | |
| } | |
| let isEditable = false; | |
| // For token spaces, check requestor and ownership | |
| if (isTokenPage) { | |
| // Check if user is the owner by FID | |
| if ( | |
| spaceOwnerFid && | |
| !isNil(currentUserFid) && | |
| currentUserFid === spaceOwnerFid | |
| ) { | |
| isEditable = true; | |
| } | |
| // Check if user owns the wallet address - handles both direct contract ownership | |
| // and Empire token ownership through tokenData.empireData.owner | |
| const ownerAddress = | |
| spaceOwnerAddress || | |
| (tokenData?.empireData?.owner as Address | undefined); | |
| if ( | |
| !isEditable && | |
| ownerAddress && | |
| wallets.some((w) => | |
| isAddressEqual(w.address as Address, ownerAddress) | |
| ) | |
| ) { | |
| isEditable = true; | |
| } | |
| // Check Clanker requestor status | |
| if ( | |
| !isEditable && | |
| tokenData?.clankerData?.requestor_fid && | |
| !isNil(currentUserFid) && | |
| currentUserFid === | |
| Number(tokenData.clankerData.requestor_fid) | |
| ) { | |
| isEditable = true; | |
| } | |
| // Check identity key ownership (only if space is registered) | |
| if ( | |
| !isEditable && | |
| spaceId && | |
| context.spaceIdentityPublicKey && | |
| context.spaceIdentityPublicKey === | |
| currentUserIdentityPublicKey | |
| ) { | |
| isEditable = true; | |
| } | |
| } else { | |
| // For profile spaces, check FID match | |
| if ( | |
| spaceOwnerFid && | |
| !isNil(currentUserFid) && | |
| currentUserFid === spaceOwnerFid | |
| ) { | |
| isEditable = true; | |
| } | |
| // Check identity key ownership (only if space is registered) | |
| if ( | |
| !isEditable && | |
| spaceId && | |
| context.spaceIdentityPublicKey && | |
| context.spaceIdentityPublicKey === | |
| currentUserIdentityPublicKey | |
| ) { | |
| isEditable = true; | |
| } | |
| } | |
| return { isEditable, isLoading: false }; | |
| }; |
🤖 Prompt for AI Agents
In src/common/utils/spaceEditability.ts around lines 32-102, the function lacks
the identity-key ownership check used in ProposalSpace, ProfileSpace and
TokenSpace; update the EditabilityContext to include spaceIdentityPublicKey and
add checks that set isEditable true when spaceIdentityPublicKey ===
currentUserIdentityPublicKey in both the token (isTokenPage) and profile
branches (i.e., before or alongside the FID checks), ensuring the same
identity-public-key comparison logic used in the components is applied here.
src/constants/initialPersonSpace.ts
Outdated
| fidgetTrayContents: [], | ||
| }; | ||
|
|
||
| const createIntialPersonSpaceConfigForFid = ( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix typo in function name.
The function name has a typo: "Intial" should be "Initial".
Apply this diff to fix the typo:
-const createIntialPersonSpaceConfigForFid = (
+const createInitialPersonSpaceConfigForFid = (Also update the export at the end of the file:
-export default createIntialPersonSpaceConfigForFid;
+export default createInitialPersonSpaceConfigForFid;📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| const createIntialPersonSpaceConfigForFid = ( | |
| // … earlier code … | |
| const createInitialPersonSpaceConfigForFid = ( | |
| fid: number, | |
| username?: string, | |
| ): Omit<SpaceConfig, "isEditable"> => { | |
| // … function body unchanged … | |
| }; | |
| export default createInitialPersonSpaceConfigForFid; |
🤖 Prompt for AI Agents
In src/constants/initialPersonSpace.ts around line 20 the function name
createIntialPersonSpaceConfigForFid contains a typo ("Intial"); rename the
function to createInitialPersonSpaceConfigForFid and update the export at the
end of the file to export the new name, plus update any local references/usages
in this file to the corrected identifier so all references remain consistent.
src/constants/initialPersonSpace.ts
Outdated
| editable: false, | ||
| settings: { | ||
| feedType: FeedType.Filter, | ||
| users: fid, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🧩 Analysis chain
Verify the expected type for the users field.
The users field is set to fid (a number), but feed configuration APIs often expect an array of fids or a comma-separated string. Please verify that the Neynar SDK's FilterType.Fids configuration accepts a single number for the users field.
🌐 Web query:
Neynar SDK FilterType.Fids users field expected type
💡 Result:
The users/fids field should be a string (comma-separated FID numbers, e.g. "123,456"). [1][2]
Sources:
[1] Neynar API docs — fetch feed / fids parameter.
[2] Neynar React SDK README — fids prop typed as string.
Convert users to a comma-separated string
The API’s users (a.k.a. “fids”) parameter expects a string of FID numbers (e.g. "123" or "123,456"), not a number. In src/constants/initialPersonSpace.ts line 31, change:
- users: fid,
+ users: String(fid),📝 Committable suggestion
‼️ IMPORTANT
Carefully review the code before committing. Ensure that it accurately replaces the highlighted code, contains no missing lines, and has no issues with indentation. Thoroughly test & benchmark the code to ensure it meets the requirements.
| users: fid, | |
| users: String(fid), |
🤖 Prompt for AI Agents
In src/constants/initialPersonSpace.ts around line 31, the users field is
currently set to a numeric fid (users: fid) but the API expects a
comma-separated string of FID(s); change it to supply a string (e.g., users:
String(fid) or users: fid.toString()); if the code ever supplies multiple FIDs,
join them into a comma-separated string (e.g., fids.join(',')) so users is
always a string.
src/app/(spaces)/PublicSpace.tsx
Outdated
| import TabBarSkeleton from "@/common/components/organisms/TabBarSkeleton"; | ||
| import { useAppStore } from "@/common/data/stores/app"; | ||
| import { MasterToken } from "@/common/providers/TokenProvider"; | ||
| import { createEditabilityChecker } from "@/common/utils/spaceEditability"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The import path has been changed from initialSpaceConfig to initialPersonSpace, but the new file exports a different structure of INITIAL_SPACE_CONFIG_EMPTY that's missing the tabNames: [] property.
View Details
📝 Patch Details
diff --git a/src/constants/initialPersonSpace.ts b/src/constants/initialPersonSpace.ts
index c7de2097..f0c7f99a 100644
--- a/src/constants/initialPersonSpace.ts
+++ b/src/constants/initialPersonSpace.ts
@@ -15,6 +15,7 @@ export const INITIAL_SPACE_CONFIG_EMPTY: Omit<SpaceConfig, "isEditable"> = {
theme: DEFAULT_THEME,
fidgetInstanceDatums: {},
fidgetTrayContents: [],
+ tabNames: [],
};
const createIntialPersonSpaceConfigForFid = (
Analysis
Missing tabNames property in initialPersonSpace.ts causes inconsistent space configuration structure
What fails: INITIAL_SPACE_CONFIG_EMPTY exported from @/constants/initialPersonSpace is missing the tabNames: [] property that exists in @/constants/initialSpaceConfig, causing structural inconsistency when creating new tabs
How to reproduce:
- Compare exports from
src/constants/initialSpaceConfig.ts(hastabNames: []) andsrc/constants/initialPersonSpace.ts(missingtabNames) - Create a new tab in PublicSpace.tsx - it calls
createSpaceTab()with the incomplete configuration - The resulting tab configuration lacks the
tabNamesproperty expected by UI components
Result: New tabs created in PublicSpace.tsx are stored without tabNames property, causing inconsistent behavior in components like MobileNavbar.tsx that expect this field for custom tab naming (line 150: if (tabNames && tabNames[index]) return tabNames[index])
Expected: All INITIAL_SPACE_CONFIG_EMPTY exports should have identical structure, including tabNames: [] property for consistent tab configuration across the application
| const permanentTabs = ["Feed", spaceData?.defaultTab || "Profile"]; | ||
| return !permanentTabs.includes(tabName); | ||
| }; | ||
| const PERMANENT_TABS = ["Feed", "Profile"]; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The PERMANENT_TABS array hardcodes "Profile" as permanent, but token spaces use "Token" and proposal spaces use "Overview" as their permanent default tabs, allowing users to incorrectly delete these essential tabs.
View Details
📝 Patch Details
diff --git a/src/app/(spaces)/PublicSpace.tsx b/src/app/(spaces)/PublicSpace.tsx
index d5870f3b..ae23ec51 100644
--- a/src/app/(spaces)/PublicSpace.tsx
+++ b/src/app/(spaces)/PublicSpace.tsx
@@ -727,6 +727,7 @@ export default function PublicSpace({
}}
getSpacePageUrl={getSpacePageUrl}
isEditable={isEditable}
+ spaceDefaultTab={spacePageData.defaultTab}
/>
);
diff --git a/src/common/components/organisms/TabBar.tsx b/src/common/components/organisms/TabBar.tsx
index aee496ff..df281341 100644
--- a/src/common/components/organisms/TabBar.tsx
+++ b/src/common/components/organisms/TabBar.tsx
@@ -31,10 +31,32 @@ interface TabBarProps {
isTokenPage?: boolean;
contractAddress?: Address;
isEditable?: boolean;
+ spaceDefaultTab?: string;
}
-const PERMANENT_TABS = ["Feed", "Profile"];
-const isEditableTab = (tabName: string) => !PERMANENT_TABS.includes(tabName);
+const BASE_PERMANENT_TABS = ["Feed"];
+
+const getPermanentTabs = (inHomebase: boolean, spaceDefaultTab?: string): string[] => {
+ const permanentTabs = [...BASE_PERMANENT_TABS];
+
+ if (inHomebase) {
+ // In homebase, also protect Profile tab
+ permanentTabs.push("Profile");
+ } else if (spaceDefaultTab) {
+ // In spaces, protect the space's default tab
+ permanentTabs.push(spaceDefaultTab);
+ } else {
+ // Fallback to Profile if no default tab specified
+ permanentTabs.push("Profile");
+ }
+
+ return permanentTabs;
+};
+
+const isEditableTab = (tabName: string, inHomebase: boolean, spaceDefaultTab?: string) => {
+ const permanentTabs = getPermanentTabs(inHomebase, spaceDefaultTab);
+ return !permanentTabs.includes(tabName);
+};
// Add validation function
const validateTabName = (tabName: string): string | null => {
@@ -60,7 +82,8 @@ function TabBar({
getSpacePageUrl,
isTokenPage,
contractAddress,
- isEditable
+ isEditable,
+ spaceDefaultTab
}: TabBarProps) {
const isMobile = useIsMobile();
const { setEditMode } = useSidebarContext();
@@ -156,7 +179,7 @@ function TabBar({
if (isOperating) return;
setIsOperating(true);
try {
- if (!isEditableTab(tabName)) {
+ if (!isEditableTab(tabName, inHomebase, spaceDefaultTab)) {
toast.error("Cannot delete this tab.");
return;
}
@@ -417,9 +440,9 @@ function TabBar({
inEditMode={inEditMode}
isSelected={currentTab === tabName}
onClick={() => handleTabClick(tabName)}
- removeable={isEditableTab(tabName)}
+ removeable={isEditableTab(tabName, inHomebase, spaceDefaultTab)}
draggable={inEditMode}
- renameable={isEditableTab(tabName)}
+ renameable={isEditableTab(tabName, inHomebase, spaceDefaultTab)}
onRemove={() => debouncedDeleteTab(tabName)}
renameTab={(tab, newName) => debouncedRenameTab(tab, newName)}
preloadTabData={preloadTabData}
@@ -473,4 +496,4 @@ function TabBar({
);
}
-export default TabBar;
\ No newline at end of file
+export default TabBar;
Analysis
PERMANENT_TABS array ignores space-specific default tabs, allowing deletion of essential tabs
What fails: TabBar.isEditableTab() uses hardcoded ["Feed", "Profile"] array, allowing users to delete "Token" tabs in token spaces and "Overview" tabs in proposal spaces
How to reproduce:
- Navigate to any token space (e.g.,
/t/ethereum/0x123.../Token) - Enter edit mode and attempt to delete the "Token" tab
- Tab deletion succeeds despite being the space's essential default tab
Result: Users can delete default tabs that are essential for space functionality, potentially breaking token spaces that rely on the "Token" tab and proposal spaces that rely on the "Overview" tab
Expected: Default tabs should be protected from deletion based on space type - per spaceData.ts type definitions, TokenSpacePageData.defaultTab is "Token" and ProposalSpacePageData.defaultTab is "Overview"
| const futureTabList = tabList.filter(tab => tab !== tabName); | ||
|
|
||
| if (futureTabList.length === 0) { | ||
| return inHomebase ? "Feed" : "Profile"; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The nextClosestTab function hardcodes fallback tabs to "Profile" for non-homebase spaces, but should fallback to the space's actual default tab ("Token" for token spaces, "Overview" for proposal spaces).
View Details
📝 Patch Details
diff --git a/package-lock.json b/package-lock.json
index d3c04bdc..76557be0 100644
--- a/package-lock.json
+++ b/package-lock.json
@@ -21,12 +21,12 @@
"@googleapis/youtube": "^18.0.0",
"@gumlet/react-hls-player": "^1.0.1",
"@heroicons/react": "^2.0.18",
- "@internationalized/date": "^3.5.4",
+ "@internationalized/date": "^3.9.0",
"@mod-protocol/core": "^0.2.1",
"@mod-protocol/react": "^0.2.0",
"@mod-protocol/react-editor": "^0.1.0",
"@mod-protocol/react-ui-shadcn": "^0.3.1",
- "@mui/material": "^7.2.0",
+ "@mui/material": "^7.3.2",
"@neynar/nodejs-sdk": "^2.23.0",
"@privy-io/react-auth": "^1.73.1",
"@privy-io/wagmi": "^0.2.6",
@@ -71,7 +71,7 @@
"gray-matter": "^4.0.3",
"isomorphic-dompurify": "^2.12.0",
"linkify-react": "^4.1.1",
- "linkifyjs": "^4.1.1",
+ "linkifyjs": "^4.3.2",
"lodash": "^4.17.21",
"lucide-react": "^0.469.0",
"moment": "^2.30.1",
@@ -86,7 +86,7 @@
"react-colorful": "^5.6.1",
"react-dom": "^18.3.1",
"react-grid-layout": "^1.4.4",
- "react-hook-form": "^7.51.0",
+ "react-hook-form": "^7.62.0",
"react-icons": "^5.0.1",
"react-intersection-observer": "^9.8.1",
"react-loader-spinner": "^6.1.6",
@@ -257,9 +257,9 @@
}
},
"node_modules/@babel/runtime": {
- "version": "7.27.6",
- "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.27.6.tgz",
- "integrity": "sha512-vbavdySgbTTrmFE+EsiqUTzlOr5bzlnJtUv9PynGCAKvfQqjIXbvFdumPM/GxMDfyuGMJaJAU6TO4zc1Jf1i8Q==",
+ "version": "7.28.4",
+ "resolved": "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz",
+ "integrity": "sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==",
"license": "MIT",
"engines": {
"node": ">=6.9.0"
@@ -3059,9 +3059,9 @@
}
},
"node_modules/@internationalized/date": {
- "version": "3.8.2",
- "resolved": "https://registry.npmjs.org/@internationalized/date/-/date-3.8.2.tgz",
- "integrity": "sha512-/wENk7CbvLbkUvX1tu0mwq49CVkkWpkXubGel6birjRPyo6uQ4nQpnq5xZu823zRCwwn82zgHrvgF1vZyvmVgA==",
+ "version": "3.9.0",
+ "resolved": "https://registry.npmjs.org/@internationalized/date/-/date-3.9.0.tgz",
+ "integrity": "sha512-yaN3brAnHRD+4KyyOsJyk49XUvj2wtbNACSqg0bz3u8t2VuzhC8Q5dfRnrSxjnnbDb+ienBnkn1TzQfE154vyg==",
"license": "Apache-2.0",
"dependencies": {
"@swc/helpers": "^0.5.0"
@@ -4218,9 +4218,9 @@
}
},
"node_modules/@mui/core-downloads-tracker": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-7.2.0.tgz",
- "integrity": "sha512-d49s7kEgI5iX40xb2YPazANvo7Bx0BLg/MNRwv+7BVpZUzXj1DaVCKlQTDex3gy/0jsCb4w7AY2uH4t4AJvSog==",
+ "version": "7.3.3",
+ "resolved": "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-7.3.3.tgz",
+ "integrity": "sha512-iQzXRJpur0lMt0oV65rvPYopRlcrVy9wwNMPvjmbAe0nOrY2BF4gMBO+5lZc8MxFoUtPRNsEEQmndkGqdqjTEA==",
"license": "MIT",
"funding": {
"type": "opencollective",
@@ -4228,22 +4228,22 @@
}
},
"node_modules/@mui/material": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/@mui/material/-/material-7.2.0.tgz",
- "integrity": "sha512-NTuyFNen5Z2QY+I242MDZzXnFIVIR6ERxo7vntFi9K1wCgSwvIl0HcAO2OOydKqqKApE6omRiYhpny1ZhGuH7Q==",
+ "version": "7.3.3",
+ "resolved": "https://registry.npmjs.org/@mui/material/-/material-7.3.3.tgz",
+ "integrity": "sha512-MM+pqCPvVgnbzB2DLZkqfvHKzFTJMHcxCvuDhAJvHfJeqODScIn9SuG6GVuyhxAvnnhx+3DcUiwiR83tVET1cw==",
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.27.6",
- "@mui/core-downloads-tracker": "^7.2.0",
- "@mui/system": "^7.2.0",
- "@mui/types": "^7.4.4",
- "@mui/utils": "^7.2.0",
+ "@babel/runtime": "^7.28.4",
+ "@mui/core-downloads-tracker": "^7.3.3",
+ "@mui/system": "^7.3.3",
+ "@mui/types": "^7.4.7",
+ "@mui/utils": "^7.3.3",
"@popperjs/core": "^2.11.8",
"@types/react-transition-group": "^4.4.12",
"clsx": "^2.1.1",
"csstype": "^3.1.3",
"prop-types": "^15.8.1",
- "react-is": "^19.1.0",
+ "react-is": "^19.1.1",
"react-transition-group": "^4.4.5"
},
"engines": {
@@ -4256,7 +4256,7 @@
"peerDependencies": {
"@emotion/react": "^11.5.0",
"@emotion/styled": "^11.3.0",
- "@mui/material-pigment-css": "^7.2.0",
+ "@mui/material-pigment-css": "^7.3.3",
"@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0",
"react": "^17.0.0 || ^18.0.0 || ^19.0.0",
"react-dom": "^17.0.0 || ^18.0.0 || ^19.0.0"
@@ -4277,19 +4277,19 @@
}
},
"node_modules/@mui/material/node_modules/react-is": {
- "version": "19.1.0",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-19.1.0.tgz",
- "integrity": "sha512-Oe56aUPnkHyyDxxkvqtd7KkdQP5uIUfHxd5XTb3wE9d/kRnZLmKbDB0GWk919tdQ+mxxPtG6EAs6RMT6i1qtHg==",
+ "version": "19.1.1",
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-19.1.1.tgz",
+ "integrity": "sha512-tr41fA15Vn8p4X9ntI+yCyeGSf1TlYaY5vlTZfQmeLBrFo3psOPX6HhTDnFNL9uj3EhP0KAQ80cugCl4b4BERA==",
"license": "MIT"
},
"node_modules/@mui/private-theming": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-7.2.0.tgz",
- "integrity": "sha512-y6N1Yt3T5RMxVFnCh6+zeSWBuQdNDm5/UlM0EAYZzZR/1u+XKJWYQmbpx4e+F+1EpkYi3Nk8KhPiQDi83M3zIw==",
+ "version": "7.3.3",
+ "resolved": "https://registry.npmjs.org/@mui/private-theming/-/private-theming-7.3.3.tgz",
+ "integrity": "sha512-OJM+9nj5JIyPUvsZ5ZjaeC9PfktmK+W5YaVLToLR8L0lB/DGmv1gcKE43ssNLSvpoW71Hct0necfade6+kW3zQ==",
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.27.6",
- "@mui/utils": "^7.2.0",
+ "@babel/runtime": "^7.28.4",
+ "@mui/utils": "^7.3.3",
"prop-types": "^15.8.1"
},
"engines": {
@@ -4310,12 +4310,12 @@
}
},
"node_modules/@mui/styled-engine": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-7.2.0.tgz",
- "integrity": "sha512-yq08xynbrNYcB1nBcW9Fn8/h/iniM3ewRguGJXPIAbHvxEF7Pz95kbEEOAAhwzxMX4okhzvHmk0DFuC5ayvgIQ==",
+ "version": "7.3.3",
+ "resolved": "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-7.3.3.tgz",
+ "integrity": "sha512-CmFxvRJIBCEaWdilhXMw/5wFJ1+FT9f3xt+m2pPXhHPeVIbBg9MnMvNSJjdALvnQJMPw8jLhrUtXmN7QAZV2fw==",
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.27.6",
+ "@babel/runtime": "^7.28.4",
"@emotion/cache": "^11.14.0",
"@emotion/serialize": "^1.3.3",
"@emotion/sheet": "^1.4.0",
@@ -4344,16 +4344,16 @@
}
},
"node_modules/@mui/system": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/@mui/system/-/system-7.2.0.tgz",
- "integrity": "sha512-PG7cm/WluU6RAs+gNND2R9vDwNh+ERWxPkqTaiXQJGIFAyJ+VxhyKfzpdZNk0z0XdmBxxi9KhFOpgxjehf/O0A==",
+ "version": "7.3.3",
+ "resolved": "https://registry.npmjs.org/@mui/system/-/system-7.3.3.tgz",
+ "integrity": "sha512-Lqq3emZr5IzRLKaHPuMaLBDVaGvxoh6z7HMWd1RPKawBM5uMRaQ4ImsmmgXWtwJdfZux5eugfDhXJUo2mliS8Q==",
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.27.6",
- "@mui/private-theming": "^7.2.0",
- "@mui/styled-engine": "^7.2.0",
- "@mui/types": "^7.4.4",
- "@mui/utils": "^7.2.0",
+ "@babel/runtime": "^7.28.4",
+ "@mui/private-theming": "^7.3.3",
+ "@mui/styled-engine": "^7.3.3",
+ "@mui/types": "^7.4.7",
+ "@mui/utils": "^7.3.3",
"clsx": "^2.1.1",
"csstype": "^3.1.3",
"prop-types": "^15.8.1"
@@ -4384,12 +4384,12 @@
}
},
"node_modules/@mui/types": {
- "version": "7.4.4",
- "resolved": "https://registry.npmjs.org/@mui/types/-/types-7.4.4.tgz",
- "integrity": "sha512-p63yhbX52MO/ajXC7hDHJA5yjzJekvWD3q4YDLl1rSg+OXLczMYPvTuSuviPRCgRX8+E42RXz1D/dz9SxPSlWg==",
+ "version": "7.4.7",
+ "resolved": "https://registry.npmjs.org/@mui/types/-/types-7.4.7.tgz",
+ "integrity": "sha512-8vVje9rdEr1rY8oIkYgP+Su5Kwl6ik7O3jQ0wl78JGSmiZhRHV+vkjooGdKD8pbtZbutXFVTWQYshu2b3sG9zw==",
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.27.6"
+ "@babel/runtime": "^7.28.4"
},
"peerDependencies": {
"@types/react": "^17.0.0 || ^18.0.0 || ^19.0.0"
@@ -4401,17 +4401,17 @@
}
},
"node_modules/@mui/utils": {
- "version": "7.2.0",
- "resolved": "https://registry.npmjs.org/@mui/utils/-/utils-7.2.0.tgz",
- "integrity": "sha512-O0i1GQL6MDzhKdy9iAu5Yr0Sz1wZjROH1o3aoztuivdCXqEeQYnEjTDiRLGuFxI9zrUbTHBwobMyQH5sNtyacw==",
+ "version": "7.3.3",
+ "resolved": "https://registry.npmjs.org/@mui/utils/-/utils-7.3.3.tgz",
+ "integrity": "sha512-kwNAUh7bLZ7mRz9JZ+6qfRnnxbE4Zuc+RzXnhSpRSxjTlSTj7b4JxRLXpG+MVtPVtqks5k/XC8No1Vs3x4Z2gg==",
"license": "MIT",
"dependencies": {
- "@babel/runtime": "^7.27.6",
- "@mui/types": "^7.4.4",
+ "@babel/runtime": "^7.28.4",
+ "@mui/types": "^7.4.7",
"@types/prop-types": "^15.7.15",
"clsx": "^2.1.1",
"prop-types": "^15.8.1",
- "react-is": "^19.1.0"
+ "react-is": "^19.1.1"
},
"engines": {
"node": ">=14.0.0"
@@ -4431,9 +4431,9 @@
}
},
"node_modules/@mui/utils/node_modules/react-is": {
- "version": "19.1.0",
- "resolved": "https://registry.npmjs.org/react-is/-/react-is-19.1.0.tgz",
- "integrity": "sha512-Oe56aUPnkHyyDxxkvqtd7KkdQP5uIUfHxd5XTb3wE9d/kRnZLmKbDB0GWk919tdQ+mxxPtG6EAs6RMT6i1qtHg==",
+ "version": "19.1.1",
+ "resolved": "https://registry.npmjs.org/react-is/-/react-is-19.1.1.tgz",
+ "integrity": "sha512-tr41fA15Vn8p4X9ntI+yCyeGSf1TlYaY5vlTZfQmeLBrFo3psOPX6HhTDnFNL9uj3EhP0KAQ80cugCl4b4BERA==",
"license": "MIT"
},
"node_modules/@nestjs/common": {
@@ -4550,6 +4550,111 @@
"node": ">= 10"
}
},
+ "node_modules/@next/swc-darwin-x64": {
+ "version": "15.3.4",
+ "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-15.3.4.tgz",
+ "integrity": "sha512-Z0FYJM8lritw5Wq+vpHYuCIzIlEMjewG2aRkc3Hi2rcbULknYL/xqfpBL23jQnCSrDUGAo/AEv0Z+s2bff9Zkw==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "darwin"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-linux-arm64-gnu": {
+ "version": "15.3.4",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-15.3.4.tgz",
+ "integrity": "sha512-l8ZQOCCg7adwmsnFm8m5q9eIPAHdaB2F3cxhufYtVo84pymwKuWfpYTKcUiFcutJdp9xGHC+F1Uq3xnFU1B/7g==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-linux-arm64-musl": {
+ "version": "15.3.4",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-15.3.4.tgz",
+ "integrity": "sha512-wFyZ7X470YJQtpKot4xCY3gpdn8lE9nTlldG07/kJYexCUpX1piX+MBfZdvulo+t1yADFVEuzFfVHfklfEx8kw==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-linux-x64-gnu": {
+ "version": "15.3.4",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-15.3.4.tgz",
+ "integrity": "sha512-gEbH9rv9o7I12qPyvZNVTyP/PWKqOp8clvnoYZQiX800KkqsaJZuOXkWgMa7ANCCh/oEN2ZQheh3yH8/kWPSEg==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-linux-x64-musl": {
+ "version": "15.3.4",
+ "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-15.3.4.tgz",
+ "integrity": "sha512-Cf8sr0ufuC/nu/yQ76AnarbSAXcwG/wj+1xFPNbyNo8ltA6kw5d5YqO8kQuwVIxk13SBdtgXrNyom3ZosHAy4A==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "linux"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-win32-arm64-msvc": {
+ "version": "15.3.4",
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-15.3.4.tgz",
+ "integrity": "sha512-ay5+qADDN3rwRbRpEhTOreOn1OyJIXS60tg9WMYTWCy3fB6rGoyjLVxc4dR9PYjEdR2iDYsaF5h03NA+XuYPQQ==",
+ "cpu": [
+ "arm64"
+ ],
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
+ "node_modules/@next/swc-win32-x64-msvc": {
+ "version": "15.3.4",
+ "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-15.3.4.tgz",
+ "integrity": "sha512-4kDt31Bc9DGyYs41FTL1/kNpDeHyha2TC0j5sRRoKCyrhNcfZ/nRQkAUlF27mETwm8QyHqIjHJitfcza2Iykfg==",
+ "cpu": [
+ "x64"
+ ],
+ "optional": true,
+ "os": [
+ "win32"
+ ],
+ "engines": {
+ "node": ">= 10"
+ }
+ },
"node_modules/@neynar/nodejs-sdk": {
"version": "2.46.0",
"resolved": "https://registry.npmjs.org/@neynar/nodejs-sdk/-/nodejs-sdk-2.46.0.tgz",
@@ -9371,12 +9476,6 @@
"@tiptap/pm": "^2.7.0"
}
},
- "node_modules/@tiptap/extension-link/node_modules/linkifyjs": {
- "version": "4.3.1",
- "resolved": "https://registry.npmjs.org/linkifyjs/-/linkifyjs-4.3.1.tgz",
- "integrity": "sha512-DRSlB9DKVW04c4SUdGvKK5FR6be45lTU9M76JnngqPeeGDqPwYc0zdUErtsNVMtxPXgUWV4HbXbnC4sNyBxkYg==",
- "license": "MIT"
- },
"node_modules/@tiptap/extension-mention": {
"version": "2.24.0",
"resolved": "https://registry.npmjs.org/@tiptap/extension-mention/-/extension-mention-2.24.0.tgz",
@@ -19108,9 +19207,9 @@
}
},
"node_modules/linkifyjs": {
- "version": "4.1.1",
- "resolved": "https://registry.npmjs.org/linkifyjs/-/linkifyjs-4.1.1.tgz",
- "integrity": "sha512-zFN/CTVmbcVef+WaDXT63dNzzkfRBKT1j464NJQkV7iSgJU0sLBus9W0HBwnXK13/hf168pbrx/V/bjEHOXNHA==",
+ "version": "4.3.2",
+ "resolved": "https://registry.npmjs.org/linkifyjs/-/linkifyjs-4.3.2.tgz",
+ "integrity": "sha512-NT1CJtq3hHIreOianA8aSXn6Cw0JzYOuDQbOrSPe7gqFnCpKP++MQe3ODgO3oh2GJFORkAAdqredOa60z63GbA==",
"license": "MIT"
},
"node_modules/lint-staged": {
@@ -23190,9 +23289,9 @@
}
},
"node_modules/react-hook-form": {
- "version": "7.59.0",
- "resolved": "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.59.0.tgz",
- "integrity": "sha512-kmkek2/8grqarTJExFNjy+RXDIP8yM+QTl3QL6m6Q8b2bih4ltmiXxH7T9n+yXNK477xPh5yZT/6vD8sYGzJTA==",
+ "version": "7.63.0",
+ "resolved": "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.63.0.tgz",
+ "integrity": "sha512-ZwueDMvUeucovM2VjkCf7zIHcs1aAlDimZu2Hvel5C5907gUzMpm4xCrQXtRzCvsBqFjonB4m3x4LzCFI1ZKWA==",
"license": "MIT",
"engines": {
"node": ">=18.0.0"
@@ -27877,111 +27976,6 @@
"type": "github",
"url": "https://github.com/sponsors/wooorm"
}
- },
- "node_modules/@next/swc-darwin-x64": {
- "version": "15.3.4",
- "resolved": "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-15.3.4.tgz",
- "integrity": "sha512-Z0FYJM8lritw5Wq+vpHYuCIzIlEMjewG2aRkc3Hi2rcbULknYL/xqfpBL23jQnCSrDUGAo/AEv0Z+s2bff9Zkw==",
- "cpu": [
- "x64"
- ],
- "optional": true,
- "os": [
- "darwin"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@next/swc-linux-arm64-gnu": {
- "version": "15.3.4",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-15.3.4.tgz",
- "integrity": "sha512-l8ZQOCCg7adwmsnFm8m5q9eIPAHdaB2F3cxhufYtVo84pymwKuWfpYTKcUiFcutJdp9xGHC+F1Uq3xnFU1B/7g==",
- "cpu": [
- "arm64"
- ],
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@next/swc-linux-arm64-musl": {
- "version": "15.3.4",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-15.3.4.tgz",
- "integrity": "sha512-wFyZ7X470YJQtpKot4xCY3gpdn8lE9nTlldG07/kJYexCUpX1piX+MBfZdvulo+t1yADFVEuzFfVHfklfEx8kw==",
- "cpu": [
- "arm64"
- ],
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@next/swc-linux-x64-gnu": {
- "version": "15.3.4",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-15.3.4.tgz",
- "integrity": "sha512-gEbH9rv9o7I12qPyvZNVTyP/PWKqOp8clvnoYZQiX800KkqsaJZuOXkWgMa7ANCCh/oEN2ZQheh3yH8/kWPSEg==",
- "cpu": [
- "x64"
- ],
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@next/swc-linux-x64-musl": {
- "version": "15.3.4",
- "resolved": "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-15.3.4.tgz",
- "integrity": "sha512-Cf8sr0ufuC/nu/yQ76AnarbSAXcwG/wj+1xFPNbyNo8ltA6kw5d5YqO8kQuwVIxk13SBdtgXrNyom3ZosHAy4A==",
- "cpu": [
- "x64"
- ],
- "optional": true,
- "os": [
- "linux"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@next/swc-win32-arm64-msvc": {
- "version": "15.3.4",
- "resolved": "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-15.3.4.tgz",
- "integrity": "sha512-ay5+qADDN3rwRbRpEhTOreOn1OyJIXS60tg9WMYTWCy3fB6rGoyjLVxc4dR9PYjEdR2iDYsaF5h03NA+XuYPQQ==",
- "cpu": [
- "arm64"
- ],
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">= 10"
- }
- },
- "node_modules/@next/swc-win32-x64-msvc": {
- "version": "15.3.4",
- "resolved": "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-15.3.4.tgz",
- "integrity": "sha512-4kDt31Bc9DGyYs41FTL1/kNpDeHyha2TC0j5sRRoKCyrhNcfZ/nRQkAUlF27mETwm8QyHqIjHJitfcza2Iykfg==",
- "cpu": [
- "x64"
- ],
- "optional": true,
- "os": [
- "win32"
- ],
- "engines": {
- "node": ">= 10"
- }
}
}
}
diff --git a/src/common/components/organisms/TabBar.tsx b/src/common/components/organisms/TabBar.tsx
index aee496ff..18ed18cb 100644
--- a/src/common/components/organisms/TabBar.tsx
+++ b/src/common/components/organisms/TabBar.tsx
@@ -77,13 +77,45 @@ function TabBar({
/// State to control post-delete navigation
const [pendingTabSwitch, setPendingTabSwitch] = React.useState<string | null>(null);
+ // Function to determine the default tab for the current space type
+ const getDefaultTab = React.useCallback(() => {
+ if (inHomebase) {
+ return "Feed";
+ }
+
+ // For non-homebase spaces, determine the space type from URL pattern or props
+ if (isTokenPage || contractAddress) {
+ return "Token";
+ }
+
+ // Check URL pattern to identify space type
+ try {
+ const testUrl = getSpacePageUrl("test");
+ if (testUrl.includes("/p/")) {
+ return "Overview"; // Proposal space
+ }
+ if (testUrl.includes("/t/")) {
+ return "Token"; // Token space
+ }
+ if (testUrl.includes("/s/")) {
+ return "Profile"; // Profile space
+ }
+ } catch (error) {
+ // If getSpacePageUrl fails, fall back to Profile
+ console.warn("Could not determine space type from URL, falling back to Profile", error);
+ }
+
+ // Default fallback for profile spaces and unknown types
+ return "Profile";
+ }, [inHomebase, isTokenPage, contractAddress, getSpacePageUrl]);
+
// Function to calculate next tab after deletion
const nextClosestTab = React.useCallback((tabName: string) => {
const index = tabList.indexOf(tabName);
const futureTabList = tabList.filter(tab => tab !== tabName);
if (futureTabList.length === 0) {
- return inHomebase ? "Feed" : "Profile";
+ return getDefaultTab();
}
if (index === tabList.length - 1 && index > 0) {
@@ -96,9 +128,9 @@ function TabBar({
return futureTabList[futureTabList.length - 1];
}
else {
- return inHomebase ? "Feed" : "Profile";
+ return getDefaultTab();
}
- }, [tabList, inHomebase]);
+ }, [tabList, getDefaultTab]);
// Simple debounced functions without complex optimizations
const debouncedCreateTab = React.useCallback(
@@ -473,4 +505,4 @@ function TabBar({
);
}
-export default TabBar;
\ No newline at end of file
+export default TabBar;
diff --git a/yarn.lock b/yarn.lock
index 9fa0db89..76664542 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -73,9 +73,9 @@
dependencies:
"@babel/types" "^7.28.0"
-"@babel/runtime@^7.11.2", "@babel/runtime@^7.12.5", "@babel/runtime@^7.13.10", "@babel/runtime@^7.14.6", "@babel/runtime@^7.17.2", "@babel/runtime@^7.18.3", "@babel/runtime@^7.21.0", "@babel/runtime@^7.25.0", "@babel/runtime@^7.26.0", "@babel/runtime@^7.28.3", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.7":
+"@babel/runtime@^7.11.2", "@babel/runtime@^7.12.5", "@babel/runtime@^7.13.10", "@babel/runtime@^7.14.6", "@babel/runtime@^7.17.2", "@babel/runtime@^7.18.3", "@babel/runtime@^7.21.0", "@babel/runtime@^7.25.0", "@babel/runtime@^7.26.0", "@babel/runtime@^7.28.4", "@babel/runtime@^7.5.5", "@babel/runtime@^7.8.7":
version "7.28.4"
- resolved "https://registry.yarnpkg.com/@babel/runtime/-/runtime-7.28.4.tgz#a70226016fabe25c5783b2f22d3e1c9bc5ca3326"
+ resolved "https://registry.npmjs.org/@babel/runtime/-/runtime-7.28.4.tgz"
integrity sha512-Q/N6JNWvIvPnLDvjlE1OUBLPQHH6l3CltCEsHIujp45zQUSSh8K+gHnaEX45yAT1nyngnINhvWtzN+Nb9D8RAQ==
"@babel/template@^7.27.2":
@@ -110,7 +110,7 @@
"@base-org/account@1.1.1":
version "1.1.1"
- resolved "https://registry.yarnpkg.com/@base-org/account/-/account-1.1.1.tgz#779f1fa7d10501201c4b6d5e21bfe17580cfddbc"
+ resolved "https://registry.npmjs.org/@base-org/account/-/account-1.1.1.tgz"
integrity sha512-IfVJPrDPhHfqXRDb89472hXkpvJuQQR7FDI9isLPHEqSYt/45whIoBxSPgZ0ssTt379VhQo4+87PWI1DoLSfAQ==
dependencies:
"@noble/hashes" "1.4.0"
@@ -129,7 +129,7 @@
"@coinbase/onchainkit@^0.38.19":
version "0.38.19"
- resolved "https://registry.yarnpkg.com/@coinbase/onchainkit/-/onchainkit-0.38.19.tgz#7178aaabceab13e8ce1af244adc76f655c90611f"
+ resolved "https://registry.npmjs.org/@coinbase/onchainkit/-/onchainkit-0.38.19.tgz"
integrity sha512-4uiujoTO5/8/dpWVZoTlBC7z0Y1N5fgBYDR6pKN/r6a8pX83ObUuOSGhSzJ8Xbu8NpPU6TXX+VuzLiwiLg/irg==
dependencies:
"@farcaster/frame-sdk" "^0.1.8"
@@ -158,7 +158,7 @@
"@coinbase/wallet-sdk@4.3.6":
version "4.3.6"
- resolved "https://registry.yarnpkg.com/@coinbase/wallet-sdk/-/wallet-sdk-4.3.6.tgz#bf9935fea404ecaa4aa5f00ea508fa01c007b3a8"
+ resolved "https://registry.npmjs.org/@coinbase/wallet-sdk/-/wallet-sdk-4.3.6.tgz"
integrity sha512-4q8BNG1ViL4mSAAvPAtpwlOs1gpC+67eQtgIwNvT3xyeyFFd+guwkc8bcX5rTmQhXpqnhzC4f0obACbP9CqMSA==
dependencies:
"@noble/hashes" "1.4.0"
@@ -208,13 +208,6 @@
resolved "https://registry.npmjs.org/@ecies/ciphers/-/ciphers-0.2.3.tgz"
integrity sha512-tapn6XhOueMwht3E2UzY0ZZjYokdaw9XtL9kEyjhQ/Fb9vL9xTFbOaI+fV0AWvTpYu4BNloC6getKW6NtSg4mA==
-"@emnapi/runtime@^1.2.0", "@emnapi/runtime@^1.4.3":
- version "1.4.3"
- resolved "https://registry.npmjs.org/@emnapi/runtime/-/runtime-1.4.3.tgz"
- integrity sha512-pBPWdu6MLKROBX05wSNKcNb++m5Er+KQ9QkB+WVM+pW2Kx9hoSrVTnu3BdkI5eBLZoKu/J6mW/B6i6bJB2ytXQ==
- dependencies:
- tslib "^2.4.0"
-
"@emotion/babel-plugin@^11.13.5":
version "11.13.5"
resolved "https://registry.npmjs.org/@emotion/babel-plugin/-/babel-plugin-11.13.5.tgz"
@@ -248,13 +241,6 @@
resolved "https://registry.npmjs.org/@emotion/hash/-/hash-0.9.2.tgz"
integrity sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==
-"@emotion/is-prop-valid@1.2.2":
- version "1.2.2"
- resolved "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.2.tgz"
- integrity sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==
- dependencies:
- "@emotion/memoize" "^0.8.1"
-
"@emotion/is-prop-valid@^1.3.0":
version "1.3.1"
resolved "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.3.1.tgz"
@@ -262,6 +248,13 @@
dependencies:
"@emotion/memoize" "^0.9.0"
+"@emotion/is-prop-valid@1.2.2":
+ version "1.2.2"
+ resolved "https://registry.npmjs.org/@emotion/is-prop-valid/-/is-prop-valid-1.2.2.tgz"
+ integrity sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==
+ dependencies:
+ "@emotion/memoize" "^0.8.1"
+
"@emotion/memoize@^0.8.1":
version "0.8.1"
resolved "https://registry.npmjs.org/@emotion/memoize/-/memoize-0.8.1.tgz"
@@ -314,16 +307,16 @@
"@emotion/use-insertion-effect-with-fallbacks" "^1.2.0"
"@emotion/utils" "^1.4.2"
-"@emotion/unitless@0.8.1":
- version "0.8.1"
- resolved "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.1.tgz"
- integrity sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==
-
"@emotion/unitless@^0.10.0":
version "0.10.0"
resolved "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.10.0.tgz"
integrity sha512-dFoMUuQA20zvtVTuxZww6OHoJYgrzfKM1t52mVySDJnMSEa08ruEvdYQbhvyu6soU+NeLVd3yKfTfT0NeV6qGg==
+"@emotion/unitless@0.8.1":
+ version "0.8.1"
+ resolved "https://registry.npmjs.org/@emotion/unitless/-/unitless-0.8.1.tgz"
+ integrity sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==
+
"@emotion/use-insertion-effect-with-fallbacks@^1.2.0":
version "1.2.0"
resolved "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.2.0.tgz"
@@ -344,130 +337,10 @@
resolved "https://registry.npmjs.org/@ensdomains/eth-ens-namehash/-/eth-ens-namehash-2.0.15.tgz"
integrity sha512-JRDFP6+Hczb1E0/HhIg0PONgBYasfGfDheujmfxaZaAv/NAH4jE6Kf48WbqfRZdxt4IZI3jl3Ri7sZ1nP09lgw==
-"@esbuild/aix-ppc64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/aix-ppc64/-/aix-ppc64-0.25.0.tgz#499600c5e1757a524990d5d92601f0ac3ce87f64"
- integrity sha512-O7vun9Sf8DFjH2UtqK8Ku3LkquL9SZL8OLY1T5NZkA34+wG3OQF7cl4Ql8vdNzM6fzBbYfLaiRLIOZ+2FOCgBQ==
-
-"@esbuild/android-arm64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/android-arm64/-/android-arm64-0.25.0.tgz#b9b8231561a1dfb94eb31f4ee056b92a985c324f"
- integrity sha512-grvv8WncGjDSyUBjN9yHXNt+cq0snxXbDxy5pJtzMKGmmpPxeAmAhWxXI+01lU5rwZomDgD3kJwulEnhTRUd6g==
-
-"@esbuild/android-arm@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/android-arm/-/android-arm-0.25.0.tgz#ca6e7888942505f13e88ac9f5f7d2a72f9facd2b"
- integrity sha512-PTyWCYYiU0+1eJKmw21lWtC+d08JDZPQ5g+kFyxP0V+es6VPPSUhM6zk8iImp2jbV6GwjX4pap0JFbUQN65X1g==
-
-"@esbuild/android-x64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/android-x64/-/android-x64-0.25.0.tgz#e765ea753bac442dfc9cb53652ce8bd39d33e163"
- integrity sha512-m/ix7SfKG5buCnxasr52+LI78SQ+wgdENi9CqyCXwjVR2X4Jkz+BpC3le3AoBPYTC9NHklwngVXvbJ9/Akhrfg==
-
-"@esbuild/darwin-arm64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/darwin-arm64/-/darwin-arm64-0.25.0.tgz#fa394164b0d89d4fdc3a8a21989af70ef579fa2c"
- integrity sha512-mVwdUb5SRkPayVadIOI78K7aAnPamoeFR2bT5nszFUZ9P8UpK4ratOdYbZZXYSqPKMHfS1wdHCJk1P1EZpRdvw==
-
-"@esbuild/darwin-x64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/darwin-x64/-/darwin-x64-0.25.0.tgz#91979d98d30ba6e7d69b22c617cc82bdad60e47a"
- integrity sha512-DgDaYsPWFTS4S3nWpFcMn/33ZZwAAeAFKNHNa1QN0rI4pUjgqf0f7ONmXf6d22tqTY+H9FNdgeaAa+YIFUn2Rg==
-
-"@esbuild/freebsd-arm64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/freebsd-arm64/-/freebsd-arm64-0.25.0.tgz#b97e97073310736b430a07b099d837084b85e9ce"
- integrity sha512-VN4ocxy6dxefN1MepBx/iD1dH5K8qNtNe227I0mnTRjry8tj5MRk4zprLEdG8WPyAPb93/e4pSgi1SoHdgOa4w==
-
-"@esbuild/freebsd-x64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/freebsd-x64/-/freebsd-x64-0.25.0.tgz#f3b694d0da61d9910ec7deff794d444cfbf3b6e7"
- integrity sha512-mrSgt7lCh07FY+hDD1TxiTyIHyttn6vnjesnPoVDNmDfOmggTLXRv8Id5fNZey1gl/V2dyVK1VXXqVsQIiAk+A==
-
-"@esbuild/linux-arm64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-arm64/-/linux-arm64-0.25.0.tgz#f921f699f162f332036d5657cad9036f7a993f73"
- integrity sha512-9QAQjTWNDM/Vk2bgBl17yWuZxZNQIF0OUUuPZRKoDtqF2k4EtYbpyiG5/Dk7nqeK6kIJWPYldkOcBqjXjrUlmg==
-
-"@esbuild/linux-arm@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-arm/-/linux-arm-0.25.0.tgz#cc49305b3c6da317c900688995a4050e6cc91ca3"
- integrity sha512-vkB3IYj2IDo3g9xX7HqhPYxVkNQe8qTK55fraQyTzTX/fxaDtXiEnavv9geOsonh2Fd2RMB+i5cbhu2zMNWJwg==
-
-"@esbuild/linux-ia32@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-ia32/-/linux-ia32-0.25.0.tgz#3e0736fcfab16cff042dec806247e2c76e109e19"
- integrity sha512-43ET5bHbphBegyeqLb7I1eYn2P/JYGNmzzdidq/w0T8E2SsYL1U6un2NFROFRg1JZLTzdCoRomg8Rvf9M6W6Gg==
-
-"@esbuild/linux-loong64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-loong64/-/linux-loong64-0.25.0.tgz#ea2bf730883cddb9dfb85124232b5a875b8020c7"
- integrity sha512-fC95c/xyNFueMhClxJmeRIj2yrSMdDfmqJnyOY4ZqsALkDrrKJfIg5NTMSzVBr5YW1jf+l7/cndBfP3MSDpoHw==
-
-"@esbuild/linux-mips64el@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-mips64el/-/linux-mips64el-0.25.0.tgz#4cababb14eede09248980a2d2d8b966464294ff1"
- integrity sha512-nkAMFju7KDW73T1DdH7glcyIptm95a7Le8irTQNO/qtkoyypZAnjchQgooFUDQhNAy4iu08N79W4T4pMBwhPwQ==
-
-"@esbuild/linux-ppc64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-ppc64/-/linux-ppc64-0.25.0.tgz#8860a4609914c065373a77242e985179658e1951"
- integrity sha512-NhyOejdhRGS8Iwv+KKR2zTq2PpysF9XqY+Zk77vQHqNbo/PwZCzB5/h7VGuREZm1fixhs4Q/qWRSi5zmAiO4Fw==
-
-"@esbuild/linux-riscv64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-riscv64/-/linux-riscv64-0.25.0.tgz#baf26e20bb2d38cfb86ee282dff840c04f4ed987"
- integrity sha512-5S/rbP5OY+GHLC5qXp1y/Mx//e92L1YDqkiBbO9TQOvuFXM+iDqUNG5XopAnXoRH3FjIUDkeGcY1cgNvnXp/kA==
-
-"@esbuild/linux-s390x@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-s390x/-/linux-s390x-0.25.0.tgz#8323afc0d6cb1b6dc6e9fd21efd9e1542c3640a4"
- integrity sha512-XM2BFsEBz0Fw37V0zU4CXfcfuACMrppsMFKdYY2WuTS3yi8O1nFOhil/xhKTmE1nPmVyvQJjJivgDT+xh8pXJA==
-
-"@esbuild/linux-x64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/linux-x64/-/linux-x64-0.25.0.tgz#08fcf60cb400ed2382e9f8e0f5590bac8810469a"
- integrity sha512-9yl91rHw/cpwMCNytUDxwj2XjFpxML0y9HAOH9pNVQDpQrBxHy01Dx+vaMu0N1CKa/RzBD2hB4u//nfc+Sd3Cw==
-
-"@esbuild/netbsd-arm64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/netbsd-arm64/-/netbsd-arm64-0.25.0.tgz#935c6c74e20f7224918fbe2e6c6fe865b6c6ea5b"
- integrity sha512-RuG4PSMPFfrkH6UwCAqBzauBWTygTvb1nxWasEJooGSJ/NwRw7b2HOwyRTQIU97Hq37l3npXoZGYMy3b3xYvPw==
-
-"@esbuild/netbsd-x64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/netbsd-x64/-/netbsd-x64-0.25.0.tgz#414677cef66d16c5a4d210751eb2881bb9c1b62b"
- integrity sha512-jl+qisSB5jk01N5f7sPCsBENCOlPiS/xptD5yxOx2oqQfyourJwIKLRA2yqWdifj3owQZCL2sn6o08dBzZGQzA==
-
-"@esbuild/openbsd-arm64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/openbsd-arm64/-/openbsd-arm64-0.25.0.tgz#8fd55a4d08d25cdc572844f13c88d678c84d13f7"
- integrity sha512-21sUNbq2r84YE+SJDfaQRvdgznTD8Xc0oc3p3iW/a1EVWeNj/SdUCbm5U0itZPQYRuRTW20fPMWMpcrciH2EJw==
-
-"@esbuild/openbsd-x64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/openbsd-x64/-/openbsd-x64-0.25.0.tgz#0c48ddb1494bbc2d6bcbaa1429a7f465fa1dedde"
- integrity sha512-2gwwriSMPcCFRlPlKx3zLQhfN/2WjJ2NSlg5TKLQOJdV0mSxIcYNTMhk3H3ulL/cak+Xj0lY1Ym9ysDV1igceg==
-
-"@esbuild/sunos-x64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/sunos-x64/-/sunos-x64-0.25.0.tgz#86ff9075d77962b60dd26203d7352f92684c8c92"
- integrity sha512-bxI7ThgLzPrPz484/S9jLlvUAHYMzy6I0XiU1ZMeAEOBcS0VePBFxh1JjTQt3Xiat5b6Oh4x7UC7IwKQKIJRIg==
-
-"@esbuild/win32-arm64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/win32-arm64/-/win32-arm64-0.25.0.tgz#849c62327c3229467f5b5cd681bf50588442e96c"
- integrity sha512-ZUAc2YK6JW89xTbXvftxdnYy3m4iHIkDtK3CLce8wg8M2L+YZhIvO1DKpxrd0Yr59AeNNkTiic9YLf6FTtXWMw==
-
-"@esbuild/win32-ia32@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/win32-ia32/-/win32-ia32-0.25.0.tgz#f62eb480cd7cca088cb65bb46a6db25b725dc079"
- integrity sha512-eSNxISBu8XweVEWG31/JzjkIGbGIJN/TrRoiSVZwZ6pkC6VX4Im/WV2cz559/TXLcYbcrDN8JtKgd9DJVIo8GA==
-
-"@esbuild/win32-x64@0.25.0":
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/@esbuild/win32-x64/-/win32-x64-0.25.0.tgz#c8e119a30a7c8d60b9d2e22d2073722dde3b710b"
- integrity sha512-ZENoHJBxA20C2zFzh6AI4fT6RraMzjYw4xKWemRTRmRVtN9c5DcH9r/f2ihEkMjOW5eGgrwCslG/+Y/3bL+DHQ==
+"@esbuild/linux-x64@0.21.5":
+ version "0.21.5"
+ resolved "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.21.5.tgz"
+ integrity sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==
"@eslint-community/eslint-utils@^4.2.0", "@eslint-community/eslint-utils@^4.4.0", "@eslint-community/eslint-utils@^4.7.0":
version "4.7.0"
@@ -533,7 +406,7 @@
ethereum-cryptography "^2.0.0"
micro-ftch "^0.3.1"
-"@ethersproject/abi@5.8.0", "@ethersproject/abi@^5.6.4", "@ethersproject/abi@^5.7.0", "@ethersproject/abi@^5.8.0":
+"@ethersproject/abi@^5.6.4", "@ethersproject/abi@^5.7.0", "@ethersproject/abi@^5.8.0", "@ethersproject/abi@5.8.0":
version "5.8.0"
resolved "https://registry.npmjs.org/@ethersproject/abi/-/abi-5.8.0.tgz"
integrity sha512-b9YS/43ObplgyV6SlyQsG53/vkSal0MNA1fskSC4mbnCMi8R+NkcH8K9FPYNESf6jUefBUniE4SOKms0E/KK1Q==
@@ -548,7 +421,7 @@
"@ethersproject/properties" "^5.8.0"
"@ethersproject/strings" "^5.8.0"
-"@ethersproject/abstract-provider@5.8.0", "@ethersproject/abstract-provider@^5.8.0":
+"@ethersproject/abstract-provider@^5.8.0", "@ethersproject/abstract-provider@5.8.0":
version "5.8.0"
resolved "https://registry.npmjs.org/@ethersproject/abstract-provider/-/abstract-provider-5.8.0.tgz"
integrity sha512-wC9SFcmh4UK0oKuLJQItoQdzS/qZ51EJegK6EmAWlh+OptpQ/npECOR3QqECd8iGHC0RJb4WKbVdSfif4ammrg==
@@ -561,7 +434,7 @@
"@ethersproject/transactions" "^5.8.0"
"@ethersproject/web" "^5.8.0"
-"@ethersproject/abstract-signer@5.8.0", "@ethersproject/abstract-signer@^5.7.0", "@ethersproject/abstract-signer@^5.8.0":
+"@ethersproject/abstract-signer@^5.7.0", "@ethersproject/abstract-signer@^5.8.0", "@ethersproject/abstract-signer@5.8.0":
version "5.8.0"
resolved "https://registry.npmjs.org/@ethersproject/abstract-signer/-/abstract-signer-5.8.0.tgz"
integrity sha512-N0XhZTswXcmIZQdYtUnd79VJzvEwXQw6PK0dTl9VoYrEBxxCPXqS0Eod7q5TNKRxe1/5WUMuR0u0nqTF/avdCA==
@@ -572,7 +445,7 @@
"@ethersproject/logger" "^5.8.0"
"@ethersproject/properties" "^5.8.0"
-"@ethersproject/address@5.8.0", "@ethersproject/address@^5.6.1", "@ethersproject/address@^5.7.0", "@ethersproject/address@^5.8.0":
+"@ethersproject/address@^5.6.1", "@ethersproject/address@^5.7.0", "@ethersproject/address@^5.8.0", "@ethersproject/address@5.8.0":
version "5.8.0"
resolved "https://registry.npmjs.org/@ethersproject/address/-/address-5.8.0.tgz"
integrity sha512-GhH/abcC46LJwshoN+uBNoKVFPxUuZm6dA257z0vZkKmU1+t8xTn8oK7B9qrj8W2rFRMch4gbJl6PmVxjxBEBA==
@@ -583,14 +456,14 @@
"@ethersproject/logger" "^5.8.0"
"@ethersproject/rlp" "^5.8.0"
-"@ethersproject/base64@5.8.0", "@ethersproject/base64@^5.8.0":
+"@ethersproject/base64@^5.8.0", "@ethersproject/base64@5.8.0":
version "5.8.0"
resolved "https://registry.npmjs.org/@ethersproject/base64/-/base64-5.8.0.tgz"
integrity sha512-lN0oIwfkYj9LbPx4xEkie6rAMJtySbpOAFXSDVQaBnAzYfB4X2Qr+FXJGxMoc3Bxp2Sm8OwvzMrywxyw0gLjIQ==
dependencies:
"@ethersproject/bytes" "^5.8.0"
-"@ethersproject/basex@5.8.0", "@ethersproject/basex@^5.8.0":
+"@ethersproject/basex@^5.8.0", "@ethersproject/basex@5.8.0":
version "5.8.0"
resolved "https://registry.npmjs.org/@ethersproject/basex/-/basex-5.8.0.tgz"
integrity sha512-PIgTszMlDRmNwW9nhS6iqtVfdTAKosA7llYXNmGPw4YAI1PUyMv28988wAb41/gHF/WqGdoLv0erHaRcHRKW2Q==
@@ -598,7 +471,7 @@
"@ethersproject/bytes" "^5.8.0"
"@ethersproject/properties" "^5.8.0"
-"@ethersproject/bignumber@5.8.0", "@ethersproject/bignumber@^5.7.0", "@ethersproject/bignumber@^5.8.0":
+"@ethersproject/bignumber@^5.7.0", "@ethersproject/bignumber@^5.8.0", "@ethersproject/bignumber@5.8.0":
version "5.8.0"
resolved "https://registry.npmjs.org/@ethersproject/bignumber/-/bignumber-5.8.0.tgz"
integrity sha512-ZyaT24bHaSeJon2tGPKIiHszWjD/54Sz8t57Toch475lCLljC6MgPmxk7Gtzz+ddNN5LuHea9qhAe0x3D+uYPA==
@@ -607,21 +480,21 @@
"@ethersproject/logger" "^5.8.0"
bn.js "^5.2.1"
-"@ethersproject/bytes@5.8.0", "@ethersproject/bytes@^5.6.1", "@ethersproject/bytes@^5.7.0", "@ethersproject/bytes@^5.8.0":
+"@ethersproject/bytes@^5.6.1", "@ethersproject/bytes@^5.7.0", "@ethersproject/bytes@^5.8.0", "@ethersproject/bytes@5.8.0":
version "5.8.0"
resolved "https://registry.npmjs.org/@ethersproject/bytes/-/bytes-5.8.0.tgz"
integrity sha512-vTkeohgJVCPVHu5c25XWaWQOZ4v+DkGoC42/TS2ond+PARCxTJvgTFUNDZovyQ/uAQ4EcpqqowKydcdmRKjg7A==
dependencies:
"@ethersproject/logger" "^5.8.0"
-"@ethersproject/constants@5.8.0", "@ethersproject/constants@^5.8.0":
+"@ethersproject/constants@^5.8.0", "@ethersproject/constants@5.8.0":
version "5.8.0"
resolved "https://registry.npmjs.org/@ethersproject/constants/-/constants-5.8.0.tgz"
integrity sha512-wigX4lrf5Vu+axVTIvNsuL6YrV4O5AXl5ubcURKMEME5TnWBouUh0CDTWxZ2GpnRn1kcCgE7l8O5+VbV9QTTcg==
dependencies:
"@ethersproject/bignumber" "^5.8.0"
-"@ethersproject/contracts@5.8.0", "@ethersproject/contracts@^5.6.2", "@ethersproject/contracts@^5.7.0":
+"@ethersproject/contracts@^5.6.2", "@ethersproject/contracts@^5.7.0", "@ethersproject/contracts@5.8.0":
version "5.8.0"
resolved "https://registry.npmjs.org/@ethersproject/contracts/-/contracts-5.8.0.tgz"
integrity sha512-0eFjGz9GtuAi6MZwhb4uvUM216F38xiuR0yYCjKJpNfSEy4HUM8hvqqBj9Jmm0IUz8l0xKEhWwLIhPgxNY0yvQ==
@@ -637,7 +510,7 @@
"@ethersproject/properties" "^5.8.0"
"@ethersproject/transactions" "^5.8.0"
-"@ethersproject/hash@5.8.0", "@ethersproject/hash@^5.7.0", "@ethersproject/hash@^5.8.0":
+"@ethersproject/hash@^5.7.0", "@ethersproject/hash@^5.8.0", "@ethersproject/hash@5.8.0":
version "5.8.0"
resolved "https://registry.npmjs.org/@ethersproject/hash/-/hash-5.8.0.tgz"
integrity sha512-ac/lBcTbEWW/VGJij0CNSw/wPcw9bSRgCB0AIBz8CvED/jfvDoV9hsIIiWfvWmFEi8RcXtlNwp2jv6ozWOsooA==
@@ -652,7 +525,7 @@
"@ethersproject/properties" "^5.8.0"
"@ethersproject/strings" "^5.8.0"
-"@ethersproject/hdnode@5.8.0", "@ethersproject/hdnode@^5.8.0":
+"@ethersproject/hdnode@^5.8.0", "@ethersproject/hdnode@5.8.0":
version "5.8.0"
resolved "https://registry.npmjs.org/@ethersproject/hdnode/-/hdnode-5.8.0.tgz"
integrity sha512-4bK1VF6E83/3/Im0ERnnUeWOY3P1BZml4ZD3wcH8Ys0/d1h1xaFt6Zc+Dh9zXf9TapGro0T4wvO71UTCp3/uoA==
@@ -670,7 +543,7 @@
"@ethersproject/transactions" "^5.8.0"
"@ethersproject/wordlists" "^5.8.0"
-"@ethersproject/json-wallets@5.8.0", "@ethersproject/json-wallets@^5.8.0":
+"@ethersproject/json-wallets@^5.8.0", "@ethersproject/json-wallets@5.8.0":
version "5.8.0"
resolved "https://registry.npmjs.org/@ethersproject/json-wallets/-/json-wallets-5.8.0.tgz"
integrity sha512-HxblNck8FVUtNxS3VTEYJAcwiKYsBIF77W15HufqlBF9gGfhmYOJtYZp8fSDZtn9y5EaXTE87zDwzxRoTFk11w==
@@ -689,7 +562,7 @@
aes-js "3.0.0"
scrypt-js "3.0.1"
-"@ethersproject/keccak256@5.8.0", "@ethersproject/keccak256@^5.8.0":
+"@ethersproject/keccak256@^5.8.0", "@ethersproject/keccak256@5.8.0":
version "5.8.0"
resolved "https://registry.npmjs.org/@ethersproject/keccak256/-/keccak256-5.8.0.tgz"
integrity sha512-A1pkKLZSz8pDaQ1ftutZoaN46I6+jvuqugx5KYNeQOPqq+JZ0Txm7dlWesCHB5cndJSu5vP2VKptKf7cksERng==
@@ -697,19 +570,19 @@
"@ethersproject/bytes" "^5.8.0"
js-sha3 "0.8.0"
-"@ethersproject/logger@5.8.0", "@ethersproject/logger@^5.7.0", "@ethersproject/logger@^5.8.0":
+"@ethersproject/logger@^5.7.0", "@ethersproject/logger@^5.8.0", "@ethersproject/logger@5.8.0":
version "5.8.0"
resolved "https://registry.npmjs.org/@ethersproject/logger/-/logger-5.8.0.tgz"
integrity sha512-Qe6knGmY+zPPWTC+wQrpitodgBfH7XoceCGL5bJVejmH+yCS3R8jJm8iiWuvWbG76RUmyEG53oqv6GMVWqunjA==
-"@ethersproject/networks@5.8.0", "@ethersproject/networks@^5.8.0":
+"@ethersproject/networks@^5.8.0", "@ethersproject/networks@5.8.0":
version "5.8.0"
resolved "https://registry.npmjs.org/@ethersproject/networks/-/networks-5.8.0.tgz"
integrity sha512-egPJh3aPVAzbHwq8DD7Po53J4OUSsA1MjQp8Vf/OZPav5rlmWUaFLiq8cvQiGK0Z5K6LYzm29+VA/p4RL1FzNg==
dependencies:
"@ethersproject/logger" "^5.8.0"
-"@ethersproject/pbkdf2@5.8.0", "@ethersproject/pbkdf2@^5.8.0":
+"@ethersproject/pbkdf2@^5.8.0", "@ethersproject/pbkdf2@5.8.0":
version "5.8.0"
resolved "https://registry.npmjs.org/@ethersproject/pbkdf2/-/pbkdf2-5.8.0.tgz"
integrity sha512-wuHiv97BrzCmfEaPbUFpMjlVg/IDkZThp9Ri88BpjRleg4iePJaj2SW8AIyE8cXn5V1tuAaMj6lzvsGJkGWskg==
@@ -717,14 +590,14 @@
"@ethersproject/bytes" "^5.8.0"
"@ethersproject/sha2" "^5.8.0"
-"@ethersproject/properties@5.8.0", "@ethersproject/properties@^5.8.0":
+"@ethersproject/properties@^5.8.0", "@ethersproject/properties@5.8.0":
version "5.8.0"
resolved "https://registry.npmjs.org/@ethersproject/properties/-/properties-5.8.0.tgz"
integrity sha512-PYuiEoQ+FMaZZNGrStmN7+lWjlsoufGIHdww7454FIaGdbe/p5rnaCXTr5MtBYl3NkeoVhHZuyzChPeGeKIpQw==
dependencies:
"@ethersproject/logger" "^5.8.0"
-"@ethersproject/providers@5.8.0", "@ethersproject/providers@^5.6.8", "@ethersproject/providers@^5.7.1", "@ethersproject/providers@^5.7.2":
+"@ethersproject/providers@^5.6.8", "@ethersproject/providers@^5.7.1", "@ethersproject/providers@^5.7.2", "@ethersproject/providers@5.8.0":
version "5.8.0"
resolved "https://registry.npmjs.org/@ethersproject/providers/-/providers-5.8.0.tgz"
integrity sha512-3Il3oTzEx3o6kzcg9ZzbE+oCZYyY+3Zh83sKkn4s1DZfTUjIegHnN2Cm0kbn9YFy45FDVcuCLLONhU7ny0SsCw==
@@ -750,7 +623,7 @@
bech32 "1.1.4"
ws "8.18.0"
-"@ethersproject/random@5.8.0", "@ethersproject/random@^5.8.0":
+"@ethersproject/random@^5.8.0", "@ethersproject/random@5.8.0":
version "5.8.0"
resolved "https://registry.npmjs.org/@ethersproject/random/-/random-5.8.0.tgz"
integrity sha512-E4I5TDl7SVqyg4/kkA/qTfuLWAQGXmSOgYyO01So8hLfwgKvYK5snIlzxJMk72IFdG/7oh8yuSqY2KX7MMwg+A==
@@ -758,7 +631,7 @@
"@ethersproject/bytes" "^5.8.0"
"@ethersproject/logger" "^5.8.0"
-"@ethersproject/rlp@5.8.0", "@ethersproject/rlp@^5.8.0":
+"@ethersproject/rlp@^5.8.0", "@ethersproject/rlp@5.8.0":
version "5.8.0"
resolved "https://registry.npmjs.org/@ethersproject/rlp/-/rlp-5.8.0.tgz"
integrity sha512-LqZgAznqDbiEunaUvykH2JAoXTT9NV0Atqk8rQN9nx9SEgThA/WMx5DnW8a9FOufo//6FZOCHZ+XiClzgbqV9Q==
@@ -766,7 +639,7 @@
"@ethersproject/bytes" "^5.8.0"
"@ethersproject/logger" "^5.8.0"
-"@ethersproject/sha2@5.8.0", "@ethersproject/sha2@^5.8.0":
+"@ethersproject/sha2@^5.8.0", "@ethersproject/sha2@5.8.0":
version "5.8.0"
resolved "https://registry.npmjs.org/@ethersproject/sha2/-/sha2-5.8.0.tgz"
integrity sha512-dDOUrXr9wF/YFltgTBYS0tKslPEKr6AekjqDW2dbn1L1xmjGR+9GiKu4ajxovnrDbwxAKdHjW8jNcwfz8PAz4A==
@@ -775,7 +648,7 @@
"@ethersproject/logger" "^5.8.0"
hash.js "1.1.7"
-"@ethersproject/signing-key@5.8.0", "@ethersproject/signing-key@^5.8.0":
+"@ethersproject/signing-key@^5.8.0", "@ethersproject/signing-key@5.8.0":
version "5.8.0"
resolved "https://registry.npmjs.org/@ethersproject/signing-key/-/signing-key-5.8.0.tgz"
integrity sha512-LrPW2ZxoigFi6U6aVkFN/fa9Yx/+4AtIUe4/HACTvKJdhm0eeb107EVCIQcrLZkxaSIgc/eCrX8Q1GtbH+9n3w==
@@ -799,7 +672,7 @@
"@ethersproject/sha2" "^5.8.0"
"@ethersproject/strings" "^5.8.0"
-"@ethersproject/strings@5.8.0", "@ethersproject/strings@^5.7.0", "@ethersproject/strings@^5.8.0":
+"@ethersproject/strings@^5.7.0", "@ethersproject/strings@^5.8.0", "@ethersproject/strings@5.8.0":
version "5.8.0"
resolved "https://registry.npmjs.org/@ethersproject/strings/-/strings-5.8.0.tgz"
integrity sha512-qWEAk0MAvl0LszjdfnZ2uC8xbR2wdv4cDabyHiBh3Cldq/T8dPH3V4BbBsAYJUeonwD+8afVXld274Ls+Y1xXg==
@@ -808,7 +681,7 @@
"@ethersproject/constants" "^5.8.0"
"@ethersproject/logger" "^5.8.0"
-"@ethersproject/transactions@5.8.0", "@ethersproject/transactions@^5.6.2", "@ethersproject/transactions@^5.7.0", "@ethersproject/transactions@^5.8.0":
+"@ethersproject/transactions@^5.6.2", "@ethersproject/transactions@^5.7.0", "@ethersproject/transactions@^5.8.0", "@ethersproject/transactions@5.8.0":
version "5.8.0"
resolved "https://registry.npmjs.org/@ethersproject/transactions/-/transactions-5.8.0.tgz"
integrity sha512-UglxSDjByHG0TuU17bDfCemZ3AnKO2vYrL5/2n2oXvKzvb7Cz+W9gOWXKARjp2URVwcWlQlPOEQyAviKwT4AHg==
@@ -823,7 +696,7 @@
"@ethersproject/rlp" "^5.8.0"
"@ethersproject/signing-key" "^5.8.0"
-"@ethersproject/units@5.8.0", "@ethersproject/units@^5.7.0":
+"@ethersproject/units@^5.7.0", "@ethersproject/units@5.8.0":
version "5.8.0"
resolved "https://registry.npmjs.org/@ethersproject/units/-/units-5.8.0.tgz"
integrity sha512-lxq0CAnc5kMGIiWW4Mr041VT8IhNM+Pn5T3haO74XZWFulk7wH1Gv64HqE96hT4a7iiNMdOCFEBgaxWuk8ETKQ==
@@ -832,7 +705,7 @@
"@ethersproject/constants" "^5.8.0"
"@ethersproject/logger" "^5.8.0"
-"@ethersproject/wallet@5.8.0", "@ethersproject/wallet@^5.6.2", "@ethersproject/wallet@^5.7.0":
+"@ethersproject/wallet@^5.6.2", "@ethersproject/wallet@^5.7.0", "@ethersproject/wallet@5.8.0":
version "5.8.0"
resolved "https://registry.npmjs.org/@ethersproject/wallet/-/wallet-5.8.0.tgz"
integrity sha512-G+jnzmgg6UxurVKRKvw27h0kvG75YKXZKdlLYmAHeF32TGUzHkOFd7Zn6QHOTYRFWnfjtSSFjBowKo7vfrXzPA==
@@ -853,7 +726,7 @@
"@ethersproject/transactions" "^5.8.0"
"@ethersproject/wordlists" "^5.8.0"
-"@ethersproject/web@5.8.0", "@ethersproject/web@^5.8.0":
+"@ethersproject/web@^5.8.0", "@ethersproject/web@5.8.0":
version "5.8.0"
resolved "https://registry.npmjs.org/@ethersproject/web/-/web-5.8.0.tgz"
integrity sha512-j7+Ksi/9KfGviws6Qtf9Q7KCqRhpwrYKQPs+JBA/rKVFF/yaWLHJEH3zfVP2plVu+eys0d2DlFmhoQJayFewcw==
@@ -864,7 +737,7 @@
"@ethersproject/properties" "^5.8.0"
"@ethersproject/strings" "^5.8.0"
-"@ethersproject/wordlists@5.8.0", "@ethersproject/wordlists@^5.8.0":
+"@ethersproject/wordlists@^5.8.0", "@ethersproject/wordlists@5.8.0":
version "5.8.0"
resolved "https://registry.npmjs.org/@ethersproject/wordlists/-/wordlists-5.8.0.tgz"
integrity sha512-2df9bbXicZws2Sb5S6ET493uJ0Z84Fjr3pC4tu/qlnZERibZCeUVuqdtt+7Tv9xxhUxHoIekIA7avrKUWHrezg==
@@ -880,10 +753,10 @@
resolved "https://registry.npmjs.org/@faker-js/faker/-/faker-7.6.0.tgz"
integrity sha512-XK6BTq1NDMo9Xqw/YkYyGjSsg44fbNwYRx7QK2CuoQgyy+f1rrTDHoExVM5PsyXCtfl2vs2vVJ0MN0yN6LppRw==
-"@farcaster/core@0.18.5", "@farcaster/core@^0.18.5":
- version "0.18.5"
- resolved "https://registry.yarnpkg.com/@farcaster/core/-/core-0.18.5.tgz#0fe9a8f098d837f33c778682f458352d8628f2d6"
- integrity sha512-YlD3PxoYNUKRVe98J+Q9WcXK+8ZQY935WZ5xmNqYiOH+p1yW3H5oLvrVEglr+RLcxp7mJONYaFvtO5J473otbg==
+"@farcaster/core@^0.15.6":
+ version "0.15.6"
+ resolved "https://registry.npmjs.org/@farcaster/core/-/core-0.15.6.tgz"
+ integrity sha512-Vxq2JhqdZYEMjH4PIwPXQkalY46S4Mol2oCSHUafXenDx6WSoQJqF/4an4KyxGQbmA7Cf8+hl6zuNzkkHXEUyQ==
dependencies:
"@faker-js/faker" "^7.6.0"
"@noble/curves" "^1.0.0"
@@ -892,10 +765,10 @@
neverthrow "^6.0.0"
viem "^2.17.4"
-"@farcaster/core@^0.15.6":
- version "0.15.6"
- resolved "https://registry.npmjs.org/@farcaster/core/-/core-0.15.6.tgz"
- integrity sha512-Vxq2JhqdZYEMjH4PIwPXQkalY46S4Mol2oCSHUafXenDx6WSoQJqF/4an4KyxGQbmA7Cf8+hl6zuNzkkHXEUyQ==
+"@farcaster/core@^0.18.5", "@farcaster/core@0.18.5":
+ version "0.18.5"
+ resolved "https://registry.npmjs.org/@farcaster/core/-/core-0.18.5.tgz"
+ integrity sha512-YlD3PxoYNUKRVe98J+Q9WcXK+8ZQY935WZ5xmNqYiOH+p1yW3H5oLvrVEglr+RLcxp7mJONYaFvtO5J473otbg==
dependencies:
"@faker-js/faker" "^7.6.0"
"@noble/curves" "^1.0.0"
@@ -904,7 +777,7 @@
neverthrow "^6.0.0"
viem "^2.17.4"
-"@farcaster/frame-core@0.0.24", "@farcaster/frame-core@^0.0.24":
+"@farcaster/frame-core@^0.0.24", "@farcaster/frame-core@0.0.24":
version "0.0.24"
resolved "https://registry.npmjs.org/@farcaster/frame-core/-/frame-core-0.0.24.tgz"
integrity sha512-iO/Jxz6mZBVUoLIY753Id5Yhn6DHBakQkIBXf0mreAcnjPGCMvKx/0xKEM3ns3M801PqoX7VLYO4q+kKxYzQ0A==
@@ -942,7 +815,7 @@
"@farcaster/frame-sdk@^0.1.8":
version "0.1.9"
- resolved "https://registry.yarnpkg.com/@farcaster/frame-sdk/-/frame-sdk-0.1.9.tgz#2b45d675e5d6e0a031b5f0e64981deb4c3c55428"
+ resolved "https://registry.npmjs.org/@farcaster/frame-sdk/-/frame-sdk-0.1.9.tgz"
integrity sha512-r5cAKgHn4w8Q1jaCi84uKqItfNRd6h8Lk0YyQaz5kMoEIeJ4C0gXPpyqKPYP2TVDFuvaexg2KvzCO2CQdygWyQ==
dependencies:
"@farcaster/miniapp-sdk" "0.1.9"
@@ -953,7 +826,7 @@
"@farcaster/hub-nodejs@^0.15.5":
version "0.15.5"
- resolved "https://registry.yarnpkg.com/@farcaster/hub-nodejs/-/hub-nodejs-0.15.5.tgz#af6d83205896e956a0141b86e8f3fa7d29131a2a"
+ resolved "https://registry.npmjs.org/@farcaster/hub-nodejs/-/hub-nodejs-0.15.5.tgz"
integrity sha512-zi6TRSnyBoLZ8ftHFIjk0CMChbTiQCmxv39OFuk3HFGH9f4T0E50LqchDQnpea+pw6TwBl4I/j1UFB9nkl3IKw==
dependencies:
"@farcaster/core" "0.18.5"
@@ -963,7 +836,7 @@
"@farcaster/hub-web@^0.11.4":
version "0.11.4"
- resolved "https://registry.yarnpkg.com/@farcaster/hub-web/-/hub-web-0.11.4.tgz#7cd476bf157be95b052707566003f59a003379d1"
+ resolved "https://registry.npmjs.org/@farcaster/hub-web/-/hub-web-0.11.4.tgz"
integrity sha512-h4LiVsePvxdEAK7dCjTXOKh4kM4gQmONBT99u1tX1wYZVNWQ8g5iaobNSo7D0Q1vPFSEYHYUXGcXLnRmSie4aw==
dependencies:
"@farcaster/core" "^0.18.5"
@@ -972,7 +845,7 @@
"@farcaster/miniapp-core@0.3.6":
version "0.3.6"
- resolved "https://registry.yarnpkg.com/@farcaster/miniapp-core/-/miniapp-core-0.3.6.tgz#2f2c460506ef970b151cf95ac18e1384dd10bdd7"
+ resolved "https://registry.npmjs.org/@farcaster/miniapp-core/-/miniapp-core-0.3.6.tgz"
integrity sha512-PKQmDKVf/ljoscYHUgUiRgsQCrJ+etgdyFOLUlhDKWI5Rw9AyG43PKrSmee0RduvV4S9w4LAPoUcx3YwWmAsrw==
dependencies:
"@solana/web3.js" "^1.98.2"
@@ -981,30 +854,30 @@
"@farcaster/miniapp-core@0.3.8":
version "0.3.8"
- resolved "https://registry.yarnpkg.com/@farcaster/miniapp-core/-/miniapp-core-0.3.8.tgz#753aa7dc08b40573914367d4d07550c534c452c3"
+ resolved "https://registry.npmjs.org/@farcaster/miniapp-core/-/miniapp-core-0.3.8.tgz"
integrity sha512-LaRG1L3lxHqo5pP/E2CX9hNqusR0C8hX3QTV2+hzmQJz6IGvmSpH6Q9ivlLyDfbdqokiMFo5Y3Z1EX1zBHMEQQ==
dependencies:
"@solana/web3.js" "^1.98.2"
ox "^0.4.4"
zod "^3.25.0"
-"@farcaster/miniapp-sdk@0.1.9":
- version "0.1.9"
- resolved "https://registry.yarnpkg.com/@farcaster/miniapp-sdk/-/miniapp-sdk-0.1.9.tgz#b6b1999c3fedbe8a1f2b02e6b3a92bdb2818ecb2"
- integrity sha512-hn0dlIy0JP2Hx6PgKcn9bjYwyPS/SQgYJ/a0qjzG8ZsDfUdjsMPf3yI/jicBipTml/UUoKcbqXM68fsrsbNMKA==
+"@farcaster/miniapp-sdk@^0.1.7":
+ version "0.1.7"
+ resolved "https://registry.npmjs.org/@farcaster/miniapp-sdk/-/miniapp-sdk-0.1.7.tgz"
+ integrity sha512-6Ph/mlGCOYLVm1+3ORHW3rIVEceWxvJIHWfHp2NbKAeobna11lAV1zx2fpEXu+HIKJ614fg+UjmlK9JORCRgEw==
dependencies:
- "@farcaster/miniapp-core" "0.3.8"
+ "@farcaster/miniapp-core" "0.3.6"
"@farcaster/quick-auth" "^0.0.6"
comlink "^4.4.2"
eventemitter3 "^5.0.1"
ox "^0.4.4"
-"@farcaster/miniapp-sdk@^0.1.7":
- version "0.1.7"
- resolved "https://registry.yarnpkg.com/@farcaster/miniapp-sdk/-/miniapp-sdk-0.1.7.tgz#9cc667290df57a952ce78242e4d90feb4f85829c"
- integrity sha512-6Ph/mlGCOYLVm1+3ORHW3rIVEceWxvJIHWfHp2NbKAeobna11lAV1zx2fpEXu+HIKJ614fg+UjmlK9JORCRgEw==
+"@farcaster/miniapp-sdk@0.1.9":
+ version "0.1.9"
+ resolved "https://registry.npmjs.org/@farcaster/miniapp-sdk/-/miniapp-sdk-0.1.9.tgz"
+ integrity sha512-hn0dlIy0JP2Hx6PgKcn9bjYwyPS/SQgYJ/a0qjzG8ZsDfUdjsMPf3yI/jicBipTml/UUoKcbqXM68fsrsbNMKA==
dependencies:
- "@farcaster/miniapp-core" "0.3.6"
+ "@farcaster/miniapp-core" "0.3.8"
"@farcaster/quick-auth" "^0.0.6"
comlink "^4.4.2"
eventemitter3 "^5.0.1"
@@ -1012,7 +885,7 @@
"@farcaster/miniapp-wagmi-connector@^1.0.0":
version "1.0.0"
- resolved "https://registry.yarnpkg.com/@farcaster/miniapp-wagmi-connector/-/miniapp-wagmi-connector-1.0.0.tgz#77454ffd4c70772a40d2480b2d59cfe9439182d0"
+ resolved "https://registry.npmjs.org/@farcaster/miniapp-wagmi-connector/-/miniapp-wagmi-connector-1.0.0.tgz"
integrity sha512-vMRZbekUUctnAUvBFhNoEsJlujRRdxop94fDy5LrKiRR9ax0wtp8gCvLYO+LpaP2PtGs0HFpRwlHNDJWvBR8bg==
"@farcaster/quick-auth@^0.0.5":
@@ -1025,7 +898,7 @@
"@farcaster/quick-auth@^0.0.6":
version "0.0.6"
- resolved "https://registry.yarnpkg.com/@farcaster/quick-auth/-/quick-auth-0.0.6.tgz#f59583041ad3591afe4a27e3c196be11a7ab21fb"
+ resolved "https://registry.npmjs.org/@farcaster/quick-auth/-/quick-auth-0.0.6.tgz"
integrity sha512-tiZndhpfDtEhaKlkmS5cVDuS+A/tafqZT3y9I44rC69m3beJok6e8dIH2JhxVy3EvOWTyTBnrmNn6GOOh+qK6A==
dependencies:
jose "^5.2.3"
@@ -1127,7 +1000,7 @@
"@gemini-wallet/core@0.1.1":
version "0.1.1"
- resolved "https://registry.yarnpkg.com/@gemini-wallet/core/-/core-0.1.1.tgz#b191fec04c8c45d89eebec909b9ff58f520fba8a"
+ resolved "https://registry.npmjs.org/@gemini-wallet/core/-/core-0.1.1.tgz"
integrity sha512-97Ktv+vZszADHdu6hS/B5tRfOqebwGNyD2Pfvmo1kK8d54UsNZtC22D8LJEueXqgVbq5PeSn0jv88uav3t1fHg==
dependencies:
"@metamask/rpc-errors" "7.0.2"
@@ -1135,7 +1008,7 @@
"@gemini-wallet/core@0.2.0":
version "0.2.0"
- resolved "https://registry.yarnpkg.com/@gemini-wallet/core/-/core-0.2.0.tgz#6d7c82614d811f7f23b4018808684a39e0dd111f"
+ resolved "https://registry.npmjs.org/@gemini-wallet/core/-/core-0.2.0.tgz"
integrity sha512-vv9aozWnKrrPWQ3vIFcWk7yta4hQW1Ie0fsNNPeXnjAxkbXr2hqMagEptLuMxpEP2W3mnRu05VDNKzcvAuuZDw==
dependencies:
"@metamask/rpc-errors" "7.0.2"
@@ -1155,7 +1028,7 @@
"@grpc/grpc-js@~1.11.1":
version "1.11.3"
- resolved "https://registry.yarnpkg.com/@grpc/grpc-js/-/grpc-js-1.11.3.tgz#a33a472618d166fbb195012ae390dbfc277470ed"
+ resolved "https://registry.npmjs.org/@grpc/grpc-js/-/grpc-js-1.11.3.tgz"
integrity sha512-i9UraDzFHMR+Iz/MhFLljT+fCpgxZ3O6CxwGJ8YuNYHJItIHUzKJpW2LvoFZNnGPwqc9iWy9RAucxV0JoR9aUQ==
dependencies:
"@grpc/proto-loader" "^0.7.13"
@@ -1163,7 +1036,7 @@
"@grpc/proto-loader@^0.7.13":
version "0.7.15"
- resolved "https://registry.yarnpkg.com/@grpc/proto-loader/-/proto-loader-0.7.15.tgz#4cdfbf35a35461fc843abe8b9e2c0770b5095e60"
+ resolved "https://registry.npmjs.org/@grpc/proto-loader/-/proto-loader-0.7.15.tgz"
integrity sha512-tMXdRCfYVixjuFK+Hk0Q1s38gV9zDiDJfWL3h1rv4Qc39oILCu1TRTDt7+fGUI8K4G1Fj125Hx/ru3azECWTyQ==
dependencies:
lodash.camelcase "^4.3.0"
@@ -1213,242 +1086,6 @@
resolved "https://registry.npmjs.org/@humanwhocodes/object-schema/-/object-schema-2.0.3.tgz"
integrity sha512-93zYdMES/c1D69yZiKDBj0V24vqNzB/koF26KPaagAfd3P/4gUlh3Dys5ogAK+Exi9QyzlD8x/08Zt7wIKcDcA==
-"@img/sharp-darwin-arm64@0.33.5":
- version "0.33.5"
- resolved "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.33.5.tgz"
- integrity sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==
- optionalDependencies:
- "@img/sharp-libvips-darwin-arm64" "1.0.4"
-
-"@img/sharp-darwin-arm64@0.34.2":
- version "0.34.2"
- resolved "https://registry.npmjs.org/@img/sharp-darwin-arm64/-/sharp-darwin-arm64-0.34.2.tgz"
- integrity sha512-OfXHZPppddivUJnqyKoi5YVeHRkkNE2zUFT2gbpKxp/JZCFYEYubnMg+gOp6lWfasPrTS+KPosKqdI+ELYVDtg==
- optionalDependencies:
- "@img/sharp-libvips-darwin-arm64" "1.1.0"
-
-"@img/sharp-darwin-x64@0.33.5":
- version "0.33.5"
- resolved "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.33.5.tgz"
- integrity sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==
- optionalDependencies:
- "@img/sharp-libvips-darwin-x64" "1.0.4"
-
-"@img/sharp-darwin-x64@0.34.2":
- version "0.34.2"
- resolved "https://registry.npmjs.org/@img/sharp-darwin-x64/-/sharp-darwin-x64-0.34.2.tgz"
- integrity sha512-dYvWqmjU9VxqXmjEtjmvHnGqF8GrVjM2Epj9rJ6BUIXvk8slvNDJbhGFvIoXzkDhrJC2jUxNLz/GUjjvSzfw+g==
- optionalDependencies:
- "@img/sharp-libvips-darwin-x64" "1.1.0"
-
-"@img/sharp-libvips-darwin-arm64@1.0.4":
- version "1.0.4"
- resolved "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.0.4.tgz"
- integrity sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==
-
-"@img/sharp-libvips-darwin-arm64@1.1.0":
- version "1.1.0"
- resolved "https://registry.npmjs.org/@img/sharp-libvips-darwin-arm64/-/sharp-libvips-darwin-arm64-1.1.0.tgz"
- integrity sha512-HZ/JUmPwrJSoM4DIQPv/BfNh9yrOA8tlBbqbLz4JZ5uew2+o22Ik+tHQJcih7QJuSa0zo5coHTfD5J8inqj9DA==
-
-"@img/sharp-libvips-darwin-x64@1.0.4":
- version "1.0.4"
- resolved "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.0.4.tgz"
- integrity sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==
-
-"@img/sharp-libvips-darwin-x64@1.1.0":
- version "1.1.0"
- resolved "https://registry.npmjs.org/@img/sharp-libvips-darwin-x64/-/sharp-libvips-darwin-x64-1.1.0.tgz"
- integrity sha512-Xzc2ToEmHN+hfvsl9wja0RlnXEgpKNmftriQp6XzY/RaSfwD9th+MSh0WQKzUreLKKINb3afirxW7A0fz2YWuQ==
-
-"@img/sharp-libvips-linux-arm64@1.0.4":
- version "1.0.4"
- resolved "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.0.4.tgz"
- integrity sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==
-
-"@img/sharp-libvips-linux-arm64@1.1.0":
- version "1.1.0"
- resolved "https://registry.npmjs.org/@img/sharp-libvips-linux-arm64/-/sharp-libvips-linux-arm64-1.1.0.tgz"
- integrity sha512-IVfGJa7gjChDET1dK9SekxFFdflarnUB8PwW8aGwEoF3oAsSDuNUTYS+SKDOyOJxQyDC1aPFMuRYLoDInyV9Ew==
-
-"@img/sharp-libvips-linux-arm@1.0.5":
- version "1.0.5"
- resolved "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.0.5.tgz"
- integrity sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==
-
-"@img/sharp-libvips-linux-arm@1.1.0":
- version "1.1.0"
- resolved "https://registry.npmjs.org/@img/sharp-libvips-linux-arm/-/sharp-libvips-linux-arm-1.1.0.tgz"
- integrity sha512-s8BAd0lwUIvYCJyRdFqvsj+BJIpDBSxs6ivrOPm/R7piTs5UIwY5OjXrP2bqXC9/moGsyRa37eYWYCOGVXxVrA==
-
-"@img/sharp-libvips-linux-ppc64@1.1.0":
- version "1.1.0"
- resolved "https://registry.npmjs.org/@img/sharp-libvips-linux-ppc64/-/sharp-libvips-linux-ppc64-1.1.0.tgz"
- integrity sha512-tiXxFZFbhnkWE2LA8oQj7KYR+bWBkiV2nilRldT7bqoEZ4HiDOcePr9wVDAZPi/Id5fT1oY9iGnDq20cwUz8lQ==
-
-"@img/sharp-libvips-linux-s390x@1.0.4":
- version "1.0.4"
- resolved "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.0.4.tgz"
- integrity sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==
-
-"@img/sharp-libvips-linux-s390x@1.1.0":
- version "1.1.0"
- resolved "https://registry.npmjs.org/@img/sharp-libvips-linux-s390x/-/sharp-libvips-linux-s390x-1.1.0.tgz"
- integrity sha512-xukSwvhguw7COyzvmjydRb3x/09+21HykyapcZchiCUkTThEQEOMtBj9UhkaBRLuBrgLFzQ2wbxdeCCJW/jgJA==
-
-"@img/sharp-libvips-linux-x64@1.0.4":
- version "1.0.4"
- resolved "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.0.4.tgz"
- integrity sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==
-
-"@img/sharp-libvips-linux-x64@1.1.0":
- version "1.1.0"
- resolved "https://registry.npmjs.org/@img/sharp-libvips-linux-x64/-/sharp-libvips-linux-x64-1.1.0.tgz"
- integrity sha512-yRj2+reB8iMg9W5sULM3S74jVS7zqSzHG3Ol/twnAAkAhnGQnpjj6e4ayUz7V+FpKypwgs82xbRdYtchTTUB+Q==
-
-"@img/sharp-libvips-linuxmusl-arm64@1.0.4":
- version "1.0.4"
- resolved "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.0.4.tgz"
- integrity sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==
-
-"@img/sharp-libvips-linuxmusl-arm64@1.1.0":
- version "1.1.0"
- resolved "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-arm64/-/sharp-libvips-linuxmusl-arm64-1.1.0.tgz"
- integrity sha512-jYZdG+whg0MDK+q2COKbYidaqW/WTz0cc1E+tMAusiDygrM4ypmSCjOJPmFTvHHJ8j/6cAGyeDWZOsK06tP33w==
-
-"@img/sharp-libvips-linuxmusl-x64@1.0.4":
- version "1.0.4"
- resolved "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.0.4.tgz"
- integrity sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==
-
-"@img/sharp-libvips-linuxmusl-x64@1.1.0":
- version "1.1.0"
- resolved "https://registry.npmjs.org/@img/sharp-libvips-linuxmusl-x64/-/sharp-libvips-linuxmusl-x64-1.1.0.tgz"
- integrity sha512-wK7SBdwrAiycjXdkPnGCPLjYb9lD4l6Ze2gSdAGVZrEL05AOUJESWU2lhlC+Ffn5/G+VKuSm6zzbQSzFX/P65A==
-
-"@img/sharp-linux-arm64@0.33.5":
- version "0.33.5"
- resolved "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.33.5.tgz"
- integrity sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==
- optionalDependencies:
- "@img/sharp-libvips-linux-arm64" "1.0.4"
-
-"@img/sharp-linux-arm64@0.34.2":
- version "0.34.2"
- resolved "https://registry.npmjs.org/@img/sharp-linux-arm64/-/sharp-linux-arm64-0.34.2.tgz"
- integrity sha512-D8n8wgWmPDakc83LORcfJepdOSN6MvWNzzz2ux0MnIbOqdieRZwVYY32zxVx+IFUT8er5KPcyU3XXsn+GzG/0Q==
- optionalDependencies:
- "@img/sharp-libvips-linux-arm64" "1.1.0"
-
-"@img/sharp-linux-arm@0.33.5":
- version "0.33.5"
- resolved "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.33.5.tgz"
- integrity sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==
- optionalDependencies:
- "@img/sharp-libvips-linux-arm" "1.0.5"
-
-"@img/sharp-linux-arm@0.34.2":
- version "0.34.2"
- resolved "https://registry.npmjs.org/@img/sharp-linux-arm/-/sharp-linux-arm-0.34.2.tgz"
- integrity sha512-0DZzkvuEOqQUP9mo2kjjKNok5AmnOr1jB2XYjkaoNRwpAYMDzRmAqUIa1nRi58S2WswqSfPOWLNOr0FDT3H5RQ==
- optionalDependencies:
- "@img/sharp-libvips-linux-arm" "1.1.0"
-
-"@img/sharp-linux-s390x@0.33.5":
- version "0.33.5"
- resolved "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.33.5.tgz"
- integrity sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==
- optionalDependencies:
- "@img/sharp-libvips-linux-s390x" "1.0.4"
-
-"@img/sharp-linux-s390x@0.34.2":
- version "0.34.2"
- resolved "https://registry.npmjs.org/@img/sharp-linux-s390x/-/sharp-linux-s390x-0.34.2.tgz"
- integrity sha512-EGZ1xwhBI7dNISwxjChqBGELCWMGDvmxZXKjQRuqMrakhO8QoMgqCrdjnAqJq/CScxfRn+Bb7suXBElKQpPDiw==
- optionalDependencies:
- "@img/sharp-libvips-linux-s390x" "1.1.0"
-
-"@img/sharp-linux-x64@0.33.5":
- version "0.33.5"
- resolved "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.33.5.tgz"
- integrity sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==
- optionalDependencies:
- "@img/sharp-libvips-linux-x64" "1.0.4"
-
-"@img/sharp-linux-x64@0.34.2":
- version "0.34.2"
- resolved "https://registry.npmjs.org/@img/sharp-linux-x64/-/sharp-linux-x64-0.34.2.tgz"
- integrity sha512-sD7J+h5nFLMMmOXYH4DD9UtSNBD05tWSSdWAcEyzqW8Cn5UxXvsHAxmxSesYUsTOBmUnjtxghKDl15EvfqLFbQ==
- optionalDependencies:
- "@img/sharp-libvips-linux-x64" "1.1.0"
-
-"@img/sharp-linuxmusl-arm64@0.33.5":
- version "0.33.5"
- resolved "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.33.5.tgz"
- integrity sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==
- optionalDependencies:
- "@img/sharp-libvips-linuxmusl-arm64" "1.0.4"
-
-"@img/sharp-linuxmusl-arm64@0.34.2":
- version "0.34.2"
- resolved "https://registry.npmjs.org/@img/sharp-linuxmusl-arm64/-/sharp-linuxmusl-arm64-0.34.2.tgz"
- integrity sha512-NEE2vQ6wcxYav1/A22OOxoSOGiKnNmDzCYFOZ949xFmrWZOVII1Bp3NqVVpvj+3UeHMFyN5eP/V5hzViQ5CZNA==
- optionalDependencies:
- "@img/sharp-libvips-linuxmusl-arm64" "1.1.0"
-
-"@img/sharp-linuxmusl-x64@0.33.5":
- version "0.33.5"
- resolved "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.33.5.tgz"
- integrity sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==
- optionalDependencies:
- "@img/sharp-libvips-linuxmusl-x64" "1.0.4"
-
-"@img/sharp-linuxmusl-x64@0.34.2":
- version "0.34.2"
- resolved "https://registry.npmjs.org/@img/sharp-linuxmusl-x64/-/sharp-linuxmusl-x64-0.34.2.tgz"
- integrity sha512-DOYMrDm5E6/8bm/yQLCWyuDJwUnlevR8xtF8bs+gjZ7cyUNYXiSf/E8Kp0Ss5xasIaXSHzb888V1BE4i1hFhAA==
- optionalDependencies:
- "@img/sharp-libvips-linuxmusl-x64" "1.1.0"
-
-"@img/sharp-wasm32@0.33.5":
- version "0.33.5"
- resolved "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.33.5.tgz"
- integrity sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==
- dependencies:
- "@emnapi/runtime" "^1.2.0"
-
-"@img/sharp-wasm32@0.34.2":
- version "0.34.2"
- resolved "https://registry.npmjs.org/@img/sharp-wasm32/-/sharp-wasm32-0.34.2.tgz"
- integrity sha512-/VI4mdlJ9zkaq53MbIG6rZY+QRN3MLbR6usYlgITEzi4Rpx5S6LFKsycOQjkOGmqTNmkIdLjEvooFKwww6OpdQ==
- dependencies:
- "@emnapi/runtime" "^1.4.3"
-
-"@img/sharp-win32-arm64@0.34.2":
- version "0.34.2"
- resolved "https://registry.npmjs.org/@img/sharp-win32-arm64/-/sharp-win32-arm64-0.34.2.tgz"
- integrity sha512-cfP/r9FdS63VA5k0xiqaNaEoGxBg9k7uE+RQGzuK9fHt7jib4zAVVseR9LsE4gJcNWgT6APKMNnCcnyOtmSEUQ==
-
-"@img/sharp-win32-ia32@0.33.5":
- version "0.33.5"
- resolved "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.33.5.tgz"
- integrity sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==
-
-"@img/sharp-win32-ia32@0.34.2":
- version "0.34.2"
- resolved "https://registry.npmjs.org/@img/sharp-win32-ia32/-/sharp-win32-ia32-0.34.2.tgz"
- integrity sha512-QLjGGvAbj0X/FXl8n1WbtQ6iVBpWU7JO94u/P2M4a8CFYsvQi4GW2mRy/JqkRx0qpBzaOdKJKw8uc930EX2AHw==
-
-"@img/sharp-win32-x64@0.33.5":
- version "0.33.5"
- resolved "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.33.5.tgz"
- integrity sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==
-
-"@img/sharp-win32-x64@0.34.2":
- version "0.34.2"
- resolved "https://registry.npmjs.org/@img/sharp-win32-x64/-/sharp-win32-x64-0.34.2.tgz"
- integrity sha512-aUdT6zEYtDKCaxkofmmJDJYGCf0+pJg3eU9/oBuqvEeoB9dKI6ZLc/1iLJCTuJQDO4ptntAlkUmHgGjyuobZbw==
-
"@improbable-eng/grpc-web@^0.15.0":
version "0.15.0"
resolved "https://registry.npmjs.org/@improbable-eng/grpc-web/-/grpc-web-0.15.0.tgz"
@@ -1458,7 +1095,7 @@
"@internationalized/date@^3.8.2", "@internationalized/date@^3.9.0":
version "3.9.0"
- resolved "https://registry.yarnpkg.com/@internationalized/date/-/date-3.9.0.tgz#cf241989b5dd07a2a9f1c91aabd2ad93968a0cc3"
+ resolved "https://registry.npmjs.org/@internationalized/date/-/date-3.9.0.tgz"
integrity sha512-yaN3brAnHRD+4KyyOsJyk49XUvj2wtbNACSqg0bz3u8t2VuzhC8Q5dfRnrSxjnnbDb+ienBnkn1TzQfE154vyg==
dependencies:
"@swc/helpers" "^0.5.0"
@@ -1551,7 +1188,7 @@
"@js-sdsl/ordered-map@^4.4.2":
version "4.4.2"
- resolved "https://registry.yarnpkg.com/@js-sdsl/ordered-map/-/ordered-map-4.4.2.tgz#9299f82874bab9e4c7f9c48d865becbfe8d6907c"
+ resolved "https://registry.npmjs.org/@js-sdsl/ordered-map/-/ordered-map-4.4.2.tgz"
integrity sha512-iUKgm52T8HOE/makSxjqoWhe95ZJA1/G1sYsGev2JDKUSS14KAgg1LHb+Ba+IPow0xflbnSkOsZcO08C7w1gYw==
"@lens-protocol/blockchain-bindings@0.10.2":
@@ -1913,14 +1550,6 @@
readable-stream "^3.6.2"
webextension-polyfill "^0.10.0"
-"@metamask/rpc-errors@7.0.2":
- version "7.0.2"
- resolved "https://registry.yarnpkg.com/@metamask/rpc-errors/-/rpc-errors-7.0.2.tgz#d07b2ebfcf111556dfe93dc78699742ebe755359"
- integrity sha512-YYYHsVYd46XwY2QZzpGeU4PSdRhHdxnzkB8piWGvJW2xbikZ3R+epAYEL4q/K8bh9JPTucsUdwRFnACor1aOYw==
- dependencies:
- "@metamask/utils" "^11.0.1"
- fast-safe-stringify "^2.0.6"
-
"@metamask/rpc-errors@^6.2.1":
version "6.4.0"
resolved "https://registry.npmjs.org/@metamask/rpc-errors/-/rpc-errors-6.4.0.tgz"
@@ -1929,6 +1558,14 @@
"@metamask/utils" "^9.0.0"
fast-safe-stringify "^2.0.6"
+"@metamask/rpc-errors@7.0.2":
+ version "7.0.2"
+ resolved "https://registry.npmjs.org/@metamask/rpc-errors/-/rpc-errors-7.0.2.tgz"
+ integrity sha512-YYYHsVYd46XwY2QZzpGeU4PSdRhHdxnzkB8piWGvJW2xbikZ3R+epAYEL4q/K8bh9JPTucsUdwRFnACor1aOYw==
+ dependencies:
+ "@metamask/utils" "^11.0.1"
+ fast-safe-stringify "^2.0.6"
+
"@metamask/safe-event-emitter@^2.0.0":
version "2.0.0"
resolved "https://registry.npmjs.org/@metamask/safe-event-emitter/-/safe-event-emitter-2.0.0.tgz"
@@ -1989,7 +1626,7 @@
"@metamask/utils@^11.0.1":
version "11.4.2"
- resolved "https://registry.yarnpkg.com/@metamask/utils/-/utils-11.4.2.tgz#8c83e1a962dbd1e451c4f607e8356dc2d189c24b"
+ resolved "https://registry.npmjs.org/@metamask/utils/-/utils-11.4.2.tgz"
integrity sha512-TygCcGmUbhmpxjYMm+mx68kRiJ80jYV54/Aa8gUFBv4cTX7ulX2XZKr8CJoJAw3K3FN5ZvCRmU0IzWZFaonwhA==
dependencies:
"@ethereumjs/tx" "^4.2.0"
@@ -2013,7 +1650,18 @@
semver "^7.3.8"
superstruct "^1.0.3"
-"@metamask/utils@^5.0.1", "@metamask/utils@^5.0.2":
+"@metamask/utils@^5.0.1":
+ version "5.0.2"
+ resolved "https://registry.npmjs.org/@metamask/utils/-/utils-5.0.2.tgz"
+ integrity sha512-yfmE79bRQtnMzarnKfX7AEJBwFTxvTyw3nBQlu/5rmGXrjAeAMltoGxO62TFurxrQAFMNa/fEjIHNvungZp0+g==
+ dependencies:
+ "@ethereumjs/tx" "^4.1.2"
+ "@types/debug" "^4.1.7"
+ debug "^4.3.4"
+ semver "^7.3.8"
+ superstruct "^1.0.3"
+
+"@metamask/utils@^5.0.2":
version "5.0.2"
resolved "https://registry.npmjs.org/@metamask/utils/-/utils-5.0.2.tgz"
integrity sha512-yfmE79bRQtnMzarnKfX7AEJBwFTxvTyw3nBQlu/5rmGXrjAeAMltoGxO62TFurxrQAFMNa/fEjIHNvungZp0+g==
@@ -2210,21 +1858,21 @@
resolved "https://registry.npmjs.org/@msgpack/msgpack/-/msgpack-3.1.2.tgz"
integrity sha512-JEW4DEtBzfe8HvUYecLU9e6+XJnKDlUAIve8FvPzF3Kzs6Xo/KuZkZJsDH0wJXl/qEZbeeE7edxDNY3kMs39hQ==
-"@mui/core-downloads-tracker@^7.3.2":
- version "7.3.2"
- resolved "https://registry.yarnpkg.com/@mui/core-downloads-tracker/-/core-downloads-tracker-7.3.2.tgz#896a7890864d619093dc79541ec1ecfa3b507ad2"
- integrity sha512-AOyfHjyDKVPGJJFtxOlept3EYEdLoar/RvssBTWVAvDJGIE676dLi2oT/Kx+FoVXFoA/JdV7DEMq/BVWV3KHRw==
+"@mui/core-downloads-tracker@^7.3.3":
+ version "7.3.3"
+ resolved "https://registry.npmjs.org/@mui/core-downloads-tracker/-/core-downloads-tracker-7.3.3.tgz"
+ integrity sha512-iQzXRJpur0lMt0oV65rvPYopRlcrVy9wwNMPvjmbAe0nOrY2BF4gMBO+5lZc8MxFoUtPRNsEEQmndkGqdqjTEA==
"@mui/material@^7.3.2":
- version "7.3.2"
- resolved "https://registry.yarnpkg.com/@mui/material/-/material-7.3.2.tgz#21ad66bba695e2cd36e4a93e2e4ff5e04d8636a1"
- integrity sha512-qXvbnawQhqUVfH1LMgMaiytP+ZpGoYhnGl7yYq2x57GYzcFL/iPzSZ3L30tlbwEjSVKNYcbiKO8tANR1tadjUg==
- dependencies:
- "@babel/runtime" "^7.28.3"
- "@mui/core-downloads-tracker" "^7.3.2"
- "@mui/system" "^7.3.2"
- "@mui/types" "^7.4.6"
- "@mui/utils" "^7.3.2"
+ version "7.3.3"
+ resolved "https://registry.npmjs.org/@mui/material/-/material-7.3.3.tgz"
+ integrity sha512-MM+pqCPvVgnbzB2DLZkqfvHKzFTJMHcxCvuDhAJvHfJeqODScIn9SuG6GVuyhxAvnnhx+3DcUiwiR83tVET1cw==
+ dependencies:
+ "@babel/runtime" "^7.28.4"
+ "@mui/core-downloads-tracker" "^7.3.3"
+ "@mui/system" "^7.3.3"
+ "@mui/types" "^7.4.7"
+ "@mui/utils" "^7.3.3"
"@popperjs/core" "^2.11.8"
"@types/react-transition-group" "^4.4.12"
clsx "^2.1.1"
@@ -2233,55 +1881,55 @@
react-is "^19.1.1"
react-transition-group "^4.4.5"
-"@mui/private-theming@^7.3.2":
- version "7.3.2"
- resolved "https://registry.yarnpkg.com/@mui/private-theming/-/private-theming-7.3.2.tgz#9b883ac9ec9288327de038da6ddf8ffa179be831"
- integrity sha512-ha7mFoOyZGJr75xeiO9lugS3joRROjc8tG1u4P50dH0KR7bwhHznVMcYg7MouochUy0OxooJm/OOSpJ7gKcMvg==
+"@mui/private-theming@^7.3.3":
+ version "7.3.3"
+ resolved "https://registry.npmjs.org/@mui/private-theming/-/private-theming-7.3.3.tgz"
+ integrity sha512-OJM+9nj5JIyPUvsZ5ZjaeC9PfktmK+W5YaVLToLR8L0lB/DGmv1gcKE43ssNLSvpoW71Hct0necfade6+kW3zQ==
dependencies:
- "@babel/runtime" "^7.28.3"
- "@mui/utils" "^7.3.2"
+ "@babel/runtime" "^7.28.4"
+ "@mui/utils" "^7.3.3"
prop-types "^15.8.1"
-"@mui/styled-engine@^7.3.2":
- version "7.3.2"
- resolved "https://registry.yarnpkg.com/@mui/styled-engine/-/styled-engine-7.3.2.tgz#cac6acb9480d6eaf60d9c99a7d24503e53236b32"
- integrity sha512-PkJzW+mTaek4e0nPYZ6qLnW5RGa0KN+eRTf5FA2nc7cFZTeM+qebmGibaTLrgQBy3UpcpemaqfzToBNkzuxqew==
+"@mui/styled-engine@^7.3.3":
+ version "7.3.3"
+ resolved "https://registry.npmjs.org/@mui/styled-engine/-/styled-engine-7.3.3.tgz"
+ integrity sha512-CmFxvRJIBCEaWdilhXMw/5wFJ1+FT9f3xt+m2pPXhHPeVIbBg9MnMvNSJjdALvnQJMPw8jLhrUtXmN7QAZV2fw==
dependencies:
- "@babel/runtime" "^7.28.3"
+ "@babel/runtime" "^7.28.4"
"@emotion/cache" "^11.14.0"
"@emotion/serialize" "^1.3.3"
"@emotion/sheet" "^1.4.0"
csstype "^3.1.3"
prop-types "^15.8.1"
-"@mui/system@^7.3.2":
- version "7.3.2"
- resolved "https://registry.yarnpkg.com/@mui/system/-/system-7.3.2.tgz#e838097fc6cb0a2e4c1822478950db89affb116a"
- integrity sha512-9d8JEvZW+H6cVkaZ+FK56R53vkJe3HsTpcjMUtH8v1xK6Y1TjzHdZ7Jck02mGXJsE6MQGWVs3ogRHTQmS9Q/rA==
- dependencies:
- "@babel/runtime" "^7.28.3"
- "@mui/private-theming" "^7.3.2"
- "@mui/styled-engine" "^7.3.2"
- "@mui/types" "^7.4.6"
- "@mui/utils" "^7.3.2"
+"@mui/system@^7.3.3":
+ version "7.3.3"
+ resolved "https://registry.npmjs.org/@mui/system/-/system-7.3.3.tgz"
+ integrity sha512-Lqq3emZr5IzRLKaHPuMaLBDVaGvxoh6z7HMWd1RPKawBM5uMRaQ4ImsmmgXWtwJdfZux5eugfDhXJUo2mliS8Q==
+ dependencies:
+ "@babel/runtime" "^7.28.4"
+ "@mui/private-theming" "^7.3.3"
+ "@mui/styled-engine" "^7.3.3"
+ "@mui/types" "^7.4.7"
+ "@mui/utils" "^7.3.3"
clsx "^2.1.1"
csstype "^3.1.3"
prop-types "^15.8.1"
-"@mui/types@^7.4.6":
- version "7.4.6"
- resolved "https://registry.yarnpkg.com/@mui/types/-/types-7.4.6.tgz#1432e0814cf155287283f6bbd1e95976a148ef07"
- integrity sha512-NVBbIw+4CDMMppNamVxyTccNv0WxtDb7motWDlMeSC8Oy95saj1TIZMGynPpFLePt3yOD8TskzumeqORCgRGWw==
+"@mui/types@^7.4.7":
+ version "7.4.7"
+ resolved "https://registry.npmjs.org/@mui/types/-/types-7.4.7.tgz"
+ integrity sha512-8vVje9rdEr1rY8oIkYgP+Su5Kwl6ik7O3jQ0wl78JGSmiZhRHV+vkjooGdKD8pbtZbutXFVTWQYshu2b3sG9zw==
dependencies:
- "@babel/runtime" "^7.28.3"
+ "@babel/runtime" "^7.28.4"
-"@mui/utils@^7.3.2":
- version "7.3.2"
- resolved "https://registry.yarnpkg.com/@mui/utils/-/utils-7.3.2.tgz#361775d72c557a03115150e8aec4329c7ef14563"
- integrity sha512-4DMWQGenOdLnM3y/SdFQFwKsCLM+mqxzvoWp9+x2XdEzXapkznauHLiXtSohHs/mc0+5/9UACt1GdugCX2te5g==
+"@mui/utils@^7.3.3":
+ version "7.3.3"
+ resolved "https://registry.npmjs.org/@mui/utils/-/utils-7.3.3.tgz"
+ integrity sha512-kwNAUh7bLZ7mRz9JZ+6qfRnnxbE4Zuc+RzXnhSpRSxjTlSTj7b4JxRLXpG+MVtPVtqks5k/XC8No1Vs3x4Z2gg==
dependencies:
- "@babel/runtime" "^7.28.3"
- "@mui/types" "^7.4.6"
+ "@babel/runtime" "^7.28.4"
+ "@mui/types" "^7.4.7"
"@types/prop-types" "^15.7.15"
clsx "^2.1.1"
prop-types "^15.8.1"
@@ -2297,27 +1945,27 @@
resolved "https://registry.npmjs.org/@nestjs/common/-/common-11.1.3.tgz"
integrity sha512-ogEK+GriWodIwCw6buQ1rpcH4Kx+G7YQ9EwuPySI3rS05pSdtQ++UhucjusSI9apNidv+QURBztJkRecwwJQXg==
dependencies:
- uid "2.0.2"
file-type "21.0.0"
iterare "1.2.1"
load-esm "1.0.2"
tslib "2.8.1"
+ uid "2.0.2"
"@nestjs/core@11.1.3":
version "11.1.3"
resolved "https://registry.npmjs.org/@nestjs/core/-/core-11.1.3.tgz"
integrity sha512-5lTni0TCh8x7bXETRD57pQFnKnEg1T6M+VLE7wAmyQRIecKQU+2inRGZD+A4v2DC1I04eA0WffP0GKLxjOKlzw==
dependencies:
- uid "2.0.2"
"@nuxt/opencollective" "0.4.1"
fast-safe-stringify "2.1.1"
iterare "1.2.1"
path-to-regexp "8.2.0"
tslib "2.8.1"
+ uid "2.0.2"
"@next/bundle-analyzer@^15.4.2":
version "15.4.2"
- resolved "https://registry.yarnpkg.com/@next/bundle-analyzer/-/bundle-analyzer-15.4.2.tgz#af4d0da02afc7b673f88309652a22baac9d2324d"
+ resolved "https://registry.npmjs.org/@next/bundle-analyzer/-/bundle-analyzer-15.4.2.tgz"
integrity sha512-kgjecwKDgJ50DZXjVllawD6MuTyxaREB5EUBKbG9NLBHjYu10O/OPL5JqKrBrYdQ9BNVxjGEQoDGcHB76ZjViQ==
dependencies:
webpack-bundle-analyzer "4.10.1"
@@ -2334,26 +1982,6 @@
dependencies:
glob "10.3.10"
-"@next/swc-darwin-arm64@15.3.4":
- version "15.3.4"
- resolved "https://registry.npmjs.org/@next/swc-darwin-arm64/-/swc-darwin-arm64-15.3.4.tgz"
- integrity sha512-z0qIYTONmPRbwHWvpyrFXJd5F9YWLCsw3Sjrzj2ZvMYy9NPQMPZ1NjOJh4ojr4oQzcGYwgJKfidzehaNa1BpEg==
-
-"@next/swc-darwin-x64@15.3.4":
- version "15.3.4"
- resolved "https://registry.npmjs.org/@next/swc-darwin-x64/-/swc-darwin-x64-15.3.4.tgz"
- integrity sha512-Z0FYJM8lritw5Wq+vpHYuCIzIlEMjewG2aRkc3Hi2rcbULknYL/xqfpBL23jQnCSrDUGAo/AEv0Z+s2bff9Zkw==
-
-"@next/swc-linux-arm64-gnu@15.3.4":
- version "15.3.4"
- resolved "https://registry.npmjs.org/@next/swc-linux-arm64-gnu/-/swc-linux-arm64-gnu-15.3.4.tgz"
- integrity sha512-l8ZQOCCg7adwmsnFm8m5q9eIPAHdaB2F3cxhufYtVo84pymwKuWfpYTKcUiFcutJdp9xGHC+F1Uq3xnFU1B/7g==
-
-"@next/swc-linux-arm64-musl@15.3.4":
- version "15.3.4"
- resolved "https://registry.npmjs.org/@next/swc-linux-arm64-musl/-/swc-linux-arm64-musl-15.3.4.tgz"
- integrity sha512-wFyZ7X470YJQtpKot4xCY3gpdn8lE9nTlldG07/kJYexCUpX1piX+MBfZdvulo+t1yADFVEuzFfVHfklfEx8kw==
-
"@next/swc-linux-x64-gnu@15.3.4":
version "15.3.4"
resolved "https://registry.npmjs.org/@next/swc-linux-x64-gnu/-/swc-linux-x64-gnu-15.3.4.tgz"
@@ -2364,16 +1992,6 @@
resolved "https://registry.npmjs.org/@next/swc-linux-x64-musl/-/swc-linux-x64-musl-15.3.4.tgz"
integrity sha512-Cf8sr0ufuC/nu/yQ76AnarbSAXcwG/wj+1xFPNbyNo8ltA6kw5d5YqO8kQuwVIxk13SBdtgXrNyom3ZosHAy4A==
-"@next/swc-win32-arm64-msvc@15.3.4":
- version "15.3.4"
- resolved "https://registry.npmjs.org/@next/swc-win32-arm64-msvc/-/swc-win32-arm64-msvc-15.3.4.tgz"
- integrity sha512-ay5+qADDN3rwRbRpEhTOreOn1OyJIXS60tg9WMYTWCy3fB6rGoyjLVxc4dR9PYjEdR2iDYsaF5h03NA+XuYPQQ==
-
-"@next/swc-win32-x64-msvc@15.3.4":
- version "15.3.4"
- resolved "https://registry.npmjs.org/@next/swc-win32-x64-msvc/-/swc-win32-x64-msvc-15.3.4.tgz"
- integrity sha512-4kDt31Bc9DGyYs41FTL1/kNpDeHyha2TC0j5sRRoKCyrhNcfZ/nRQkAUlF27mETwm8QyHqIjHJitfcza2Iykfg==
-
"@neynar/nodejs-sdk@^2.23.0":
version "2.46.0"
resolved "https://registry.npmjs.org/@neynar/nodejs-sdk/-/nodejs-sdk-2.46.0.tgz"
@@ -2383,33 +2001,119 @@
semver "^7.6.3"
viem "^2.21.44"
+"@noble/ciphers@^1.3.0", "@noble/ciphers@1.3.0":
+ version "1.3.0"
+ resolved "https://registry.npmjs.org/@noble/ciphers/-/ciphers-1.3.0.tgz"
+ integrity sha512-2I0gnIVPtfnMw9ee9h1dJG7tp81+8Ob3OJb3Mv37rx5L40/b0i7djjCVvGOVqc9AEIQyvyu1i6ypKdFw8R8gQw==
+
"@noble/ciphers@1.2.1":
version "1.2.1"
resolved "https://registry.npmjs.org/@noble/ciphers/-/ciphers-1.2.1.tgz"
integrity sha512-rONPWMC7PeExE077uLE4oqWrZ1IvAfz3oH9LibVAcVCopJiA9R62uavnbEzdkVmJYI6M6Zgkbeb07+tWjlq2XA==
-"@noble/ciphers@1.3.0", "@noble/ciphers@^1.3.0":
- version "1.3.0"
- resolved "https://registry.npmjs.org/@noble/ciphers/-/ciphers-1.3.0.tgz"
- integrity sha512-2I0gnIVPtfnMw9ee9h1dJG7tp81+8Ob3OJb3Mv37rx5L40/b0i7djjCVvGOVqc9AEIQyvyu1i6ypKdFw8R8gQw==
-
-"@noble/curves@1.4.2", "@noble/curves@1.7.0", "@noble/curves@1.8.0", "@noble/curves@1.8.1", "@noble/curves@1.9.2", "@noble/curves@1.9.6", "@noble/curves@^1.0.0", "@noble/curves@^1.3.0", "@noble/curves@^1.4.2", "@noble/curves@^1.6.0", "@noble/curves@^1.8.0", "@noble/curves@^1.9.1", "@noble/curves@~1.4.0", "@noble/curves@~1.7.0", "@noble/curves@~1.8.1", "@noble/curves@~1.9.0":
+"@noble/curves@^1.0.0", "@noble/curves@^1.3.0", "@noble/curves@^1.4.2", "@noble/curves@^1.6.0", "@noble/curves@^1.8.0", "@noble/curves@^1.9.1", "@noble/curves@~1.9.0", "@noble/curves@1.9.6":
version "1.9.6"
- resolved "https://registry.yarnpkg.com/@noble/curves/-/curves-1.9.6.tgz#b45ebedca85bb75782f6be7e7f120f0c423c99e0"
+ resolved "https://registry.npmjs.org/@noble/curves/-/curves-1.9.6.tgz"
integrity sha512-GIKz/j99FRthB8icyJQA51E8Uk5hXmdyThjgQXRKiv9h0zeRlzSCLIzFw6K1LotZ3XuB7yzlf76qk7uBmTdFqA==
dependencies:
"@noble/hashes" "1.8.0"
+"@noble/curves@~1.4.0", "@noble/curves@1.4.2":
+ version "1.4.2"
+ resolved "https://registry.npmjs.org/@noble/curves/-/curves-1.4.2.tgz"
+ integrity sha512-TavHr8qycMChk8UwMld0ZDRvatedkzWfH8IiaeGCfymOP5i0hSCozz9vHOL0nkwk7HRMlFnAiKpS2jrUmSybcw==
+ dependencies:
+ "@noble/hashes" "1.4.0"
+
+"@noble/curves@~1.7.0":
+ version "1.7.0"
+ resolved "https://registry.npmjs.org/@noble/curves/-/curves-1.7.0.tgz"
+ integrity sha512-UTMhXK9SeDhFJVrHeUJ5uZlI6ajXg10O6Ddocf9S6GjbSBVZsJo88HzKwXznNfGpMTRDyJkqMjNDPYgf0qFWnw==
+ dependencies:
+ "@noble/hashes" "1.6.0"
+
+"@noble/curves@~1.8.1":
+ version "1.8.2"
+ resolved "https://registry.npmjs.org/@noble/curves/-/curves-1.8.2.tgz"
+ integrity sha512-vnI7V6lFNe0tLAuJMu+2sX+FcL14TaCWy1qiczg1VwRmPrpQCdq5ESXQMqUc2tluRNf6irBXrWbl1mGN8uaU/g==
+ dependencies:
+ "@noble/hashes" "1.7.2"
+
+"@noble/curves@1.7.0":
+ version "1.7.0"
+ resolved "https://registry.npmjs.org/@noble/curves/-/curves-1.7.0.tgz"
+ integrity sha512-UTMhXK9SeDhFJVrHeUJ5uZlI6ajXg10O6Ddocf9S6GjbSBVZsJo88HzKwXznNfGpMTRDyJkqMjNDPYgf0qFWnw==
+ dependencies:
+ "@noble/hashes" "1.6.0"
+
+"@noble/curves@1.8.0":
+ version "1.8.0"
+ resolved "https://registry.npmjs.org/@noble/curves/-/curves-1.8.0.tgz"
+ integrity sha512-j84kjAbzEnQHaSIhRPUmB3/eVXu2k3dKPl2LOrR8fSOIL+89U+7lV117EWHtq/GHM3ReGHM46iRBdZfpc4HRUQ==
+ dependencies:
+ "@noble/hashes" "1.7.0"
+
+"@noble/curves@1.8.1":
+ version "1.8.1"
+ resolved "https://registry.npmjs.org/@noble/curves/-/curves-1.8.1.tgz"
+ integrity sha512-warwspo+UYUPep0Q+vtdVB4Ugn8GGQj8iyB3gnRWsztmUHTI3S1nhdiWNsPUGL0vud7JlRRk1XEu7Lq1KGTnMQ==
+ dependencies:
+ "@noble/hashes" "1.7.1"
+
+"@noble/curves@1.9.1":
+ version "1.9.1"
+ resolved "https://registry.npmjs.org/@noble/curves/-/curves-1.9.1.tgz"
+ integrity sha512-k11yZxZg+t+gWvBbIswW0yoJlu8cHOC7dhunwOzoWH/mXGBiYyR4YY6hAEK/3EUs4UpB8la1RfdRpeGsFHkWsA==
+ dependencies:
+ "@noble/hashes" "1.8.0"
+
+"@noble/curves@1.9.2":
+ version "1.9.2"
+ resolved "https://registry.npmjs.org/@noble/curves/-/curves-1.9.2.tgz"
+ integrity sha512-HxngEd2XUcg9xi20JkwlLCtYwfoFw4JGkuZpT+WlsPD4gB/cxkvTD8fSsoAnphGZhFdZYKeQIPCuFlWPm1uE0g==
+ dependencies:
+ "@noble/hashes" "1.8.0"
+
"@noble/ed25519@^2.0.0", "@noble/ed25519@^2.2.3":
version "2.3.0"
resolved "https://registry.npmjs.org/@noble/ed25519/-/ed25519-2.3.0.tgz"
integrity sha512-M7dvXL2B92/M7dw9+gzuydL8qn/jiqNHaoR3Q+cb1q1GHV7uwE17WCyFMG+Y+TZb5izcaXk5TdJRrDUxHXL78A==
-"@noble/hashes@1.4.0", "@noble/hashes@1.6.0", "@noble/hashes@1.7.0", "@noble/hashes@1.7.1", "@noble/hashes@1.8.0", "@noble/hashes@^1.1.2", "@noble/hashes@^1.3.0", "@noble/hashes@^1.3.1", "@noble/hashes@^1.4.0", "@noble/hashes@^1.5.0", "@noble/hashes@^1.7.1", "@noble/hashes@^1.8.0", "@noble/hashes@~1.4.0", "@noble/hashes@~1.6.0", "@noble/hashes@~1.7.1", "@noble/hashes@~1.8.0":
+"@noble/hashes@^1.1.2", "@noble/hashes@^1.3.0", "@noble/hashes@^1.3.1", "@noble/hashes@^1.4.0", "@noble/hashes@^1.5.0", "@noble/hashes@^1.7.1", "@noble/hashes@^1.8.0", "@noble/hashes@~1.8.0", "@noble/hashes@1.8.0":
version "1.8.0"
resolved "https://registry.npmjs.org/@noble/hashes/-/hashes-1.8.0.tgz"
integrity sha512-jCs9ldd7NwzpgXDIf6P3+NrHh9/sD6CQdxHyjQI+h/6rDNo88ypBxxz45UDuZHz9r3tNz7N/VInSVoVdtXEI4A==
+"@noble/hashes@~1.4.0", "@noble/hashes@1.4.0":
+ version "1.4.0"
+ resolved "https://registry.npmjs.org/@noble/hashes/-/hashes-1.4.0.tgz"
+ integrity sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==
+
+"@noble/hashes@~1.6.0":
+ version "1.6.1"
+ resolved "https://registry.npmjs.org/@noble/hashes/-/hashes-1.6.1.tgz"
+ integrity sha512-pq5D8h10hHBjyqX+cfBm0i8JUXJ0UhczFc4r74zbuT9XgewFo2E3J1cOaGtdZynILNmQ685YWGzGE1Zv6io50w==
+
+"@noble/hashes@~1.7.1", "@noble/hashes@1.7.2":
+ version "1.7.2"
+ resolved "https://registry.npmjs.org/@noble/hashes/-/hashes-1.7.2.tgz"
+ integrity sha512-biZ0NUSxyjLLqo6KxEJ1b+C2NAx0wtDoFvCaXHGgUkeHzf3Xc1xKumFKREuT7f7DARNZ/slvYUwFG6B0f2b6hQ==
+
+"@noble/hashes@1.6.0":
+ version "1.6.0"
+ resolved "https://registry.npmjs.org/@noble/hashes/-/hashes-1.6.0.tgz"
+ integrity sha512-YUULf0Uk4/mAA89w+k3+yUYh6NrEvxZa5T6SY3wlMvE2chHkxFUUIDI8/XW1QSC357iA5pSnqt7XEhvFOqmDyQ==
+
+"@noble/hashes@1.7.0":
+ version "1.7.0"
+ resolved "https://registry.npmjs.org/@noble/hashes/-/hashes-1.7.0.tgz"
+ integrity sha512-HXydb0DgzTpDPwbVeDGCG1gIu7X6+AuU6Zl6av/E/KG8LMsvPntvq+w17CHRpKBmN6Ybdrt1eP3k4cj8DJa78w==
+
+"@noble/hashes@1.7.1":
+ version "1.7.1"
+ resolved "https://registry.npmjs.org/@noble/hashes/-/hashes-1.7.1.tgz"
+ integrity sha512-B8XBPsn4vT/KJAGqDzbwztd+6Yte3P4V7iafm24bxgDe/mlRuK6xmWPuCNrKt2vDafZ8MfJLlchDG/vYafQEjQ==
+
"@nodelib/fs.scandir@2.1.5":
version "2.1.5"
resolved "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz"
@@ -2418,7 +2122,7 @@
"@nodelib/fs.stat" "2.0.5"
run-parallel "^1.1.9"
-"@nodelib/fs.stat@2.0.5", "@nodelib/fs.stat@^2.0.2":
+"@nodelib/fs.stat@^2.0.2", "@nodelib/fs.stat@2.0.5":
version "2.0.5"
resolved "https://registry.npmjs.org/@nodelib/fs.stat/-/fs.stat-2.0.5.tgz"
integrity sha512-RkhPPp2zrqDAQA/2jNhnztcPAlv64XdhIp7a7454A5ovI7Bukxgt7MX7udwAu3zg1DcpPU0rz3VV1SeaqvY4+A==
@@ -2496,13 +2200,6 @@
resolved "https://registry.npmjs.org/@primer/octicons-react/-/octicons-react-19.15.3.tgz"
integrity sha512-rCYa/6urKmRWjLiVSDpV8//Oqy6UP1cybAA2mOI90EzXvFsqIWY4b+gUCIR+yUbPxERI9l4nbdQNO1fY5tUf8w==
-"@privy-io/api-base@1.4.1":
- version "1.4.1"
- resolved "https://registry.npmjs.org/@privy-io/api-base/-/api-base-1.4.1.tgz"
- integrity sha512-q98uQGVBIY5SBHjJWL/udpbxM9ISpZl8Lwwjd0p0XHSMJMOgEhS4GLjcO7l3clfNrqL0fAuinQaa+seCaYOzng==
- dependencies:
- zod "^3.21.4"
-
"@privy-io/api-base@^1.4.1":
version "1.5.2"
resolved "https://registry.npmjs.org/@privy-io/api-base/-/api-base-1.5.2.tgz"
@@ -2510,6 +2207,13 @@
dependencies:
zod "^3.24.3"
+"@privy-io/api-base@1.4.1":
+ version "1.4.1"
+ resolved "https://registry.npmjs.org/@privy-io/api-base/-/api-base-1.4.1.tgz"
+ integrity sha512-q98uQGVBIY5SBHjJWL/udpbxM9ISpZl8Lwwjd0p0XHSMJMOgEhS4GLjcO7l3clfNrqL0fAuinQaa+seCaYOzng==
+ dependencies:
+ zod "^3.21.4"
+
"@privy-io/js-sdk-core@0.37.1":
version "0.37.1"
resolved "https://registry.npmjs.org/@privy-io/js-sdk-core/-/js-sdk-core-0.37.1.tgz"
@@ -2729,27 +2433,6 @@
resolved "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.1.2.tgz"
integrity sha512-jCi/QKUM2r1Ju5a3J64TH2A5SpKAgh0LpknyqdQ4m6DCV0xJ2HG1xARRwNGPQfi1SLdLWZ1OJz6F4OMBBNiGJA==
-"@radix-ui/react-dialog@1.0.0":
- version "1.0.0"
- resolved "https://registry.npmjs.org/@radix-ui/react-dialog/-/react-dialog-1.0.0.tgz"
- integrity sha512-Yn9YU+QlHYLWwV1XfKiqnGVpWYWk6MeBVM6x/bcoyPvxgjQGoeT35482viLPctTMWoMw0PoHgqfSox7Ig+957Q==
- dependencies:
- "@babel/runtime" "^7.13.10"
- "@radix-ui/primitive" "1.0.0"
- "@radix-ui/react-compose-refs" "1.0.0"
- "@radix-ui/react-context" "1.0.0"
- "@radix-ui/react-dismissable-layer" "1.0.0"
- "@radix-ui/react-focus-guards" "1.0.0"
- "@radix-ui/react-focus-scope" "1.0.0"
- "@radix-ui/react-id" "1.0.0"
- "@radix-ui/react-portal" "1.0.0"
- "@radix-ui/react-presence" "1.0.0"
- "@radix-ui/react-primitive" "1.0.0"
- "@radix-ui/react-slot" "1.0.0"
- "@radix-ui/react-use-controllable-state" "1.0.0"
- aria-hidden "^1.1.1"
- react-remove-scroll "2.5.4"
-
"@radix-ui/react-dialog@^1.0.5":
version "1.1.14"
resolved "https://registry.npmjs.org/@radix-ui/react-dialog/-/react-dialog-1.1.14.tgz"
@@ -2770,6 +2453,27 @@
aria-hidden "^1.2.4"
react-remove-scroll "^2.6.3"
+"@radix-ui/react-dialog@1.0.0":
+ version "1.0.0"
+ resolved "https://registry.npmjs.org/@radix-ui/react-dialog/-/react-dialog-1.0.0.tgz"
+ integrity sha512-Yn9YU+QlHYLWwV1XfKiqnGVpWYWk6MeBVM6x/bcoyPvxgjQGoeT35482viLPctTMWoMw0PoHgqfSox7Ig+957Q==
+ dependencies:
+ "@babel/runtime" "^7.13.10"
+ "@radix-ui/primitive" "1.0.0"
+ "@radix-ui/react-compose-refs" "1.0.0"
+ "@radix-ui/react-context" "1.0.0"
+ "@radix-ui/react-dismissable-layer" "1.0.0"
+ "@radix-ui/react-focus-guards" "1.0.0"
+ "@radix-ui/react-focus-scope" "1.0.0"
+ "@radix-ui/react-id" "1.0.0"
+ "@radix-ui/react-portal" "1.0.0"
+ "@radix-ui/react-presence" "1.0.0"
+ "@radix-ui/react-primitive" "1.0.0"
+ "@radix-ui/react-slot" "1.0.0"
+ "@radix-ui/react-use-controllable-state" "1.0.0"
+ aria-hidden "^1.1.1"
+ react-remove-scroll "2.5.4"
+
"@radix-ui/react-direction@1.1.1":
version "1.1.1"
resolved "https://registry.npmjs.org/@radix-ui/react-direction/-/react-direction-1.1.1.tgz"
@@ -3065,6 +2769,13 @@
dependencies:
"@radix-ui/react-primitive" "2.1.3"
+"@radix-ui/react-slot@^1.0.2", "@radix-ui/react-slot@1.2.3":
+ version "1.2.3"
+ resolved "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.2.3.tgz"
+ integrity sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==
+ dependencies:
+ "@radix-ui/react-compose-refs" "1.1.2"
+
"@radix-ui/react-slot@1.0.0":
version "1.0.0"
resolved "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.0.0.tgz"
@@ -3073,13 +2784,6 @@
"@babel/runtime" "^7.13.10"
"@radix-ui/react-compose-refs" "1.0.0"
-"@radix-ui/react-slot@1.2.3", "@radix-ui/react-slot@^1.0.2":
- version "1.2.3"
- resolved "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.2.3.tgz"
- integrity sha512-aeNmHnBxbi2St0au6VBVC7JXFlhLlOnvIIlePNniyUNAClzmtAUEY8/pBiK3iHjufOlwA+c20/8jngo7xcrg8A==
- dependencies:
- "@radix-ui/react-compose-refs" "1.1.2"
-
"@radix-ui/react-switch@^1.0.3":
version "1.2.5"
resolved "https://registry.npmjs.org/@radix-ui/react-switch/-/react-switch-1.2.5.tgz"
@@ -4492,106 +4196,6 @@
resolved "https://registry.npmjs.org/@resvg/resvg-wasm/-/resvg-wasm-2.4.0.tgz"
integrity sha512-C7c51Nn4yTxXFKvgh2txJFNweaVcfUPQxwEUFw4aWsCmfiBDJsTSwviIF8EcwjQ6k8bPyMWCl1vw4BdxE569Cg==
-"@rollup/rollup-android-arm-eabi@4.44.1":
- version "4.44.1"
- resolved "https://registry.npmjs.org/@rollup/rollup-android-arm-eabi/-/rollup-android-arm-eabi-4.44.1.tgz"
- integrity sha512-JAcBr1+fgqx20m7Fwe1DxPUl/hPkee6jA6Pl7n1v2EFiktAHenTaXl5aIFjUIEsfn9w3HE4gK1lEgNGMzBDs1w==
-
-"@rollup/rollup-android-arm64@4.44.1":
- version "4.44.1"
- resolved "https://registry.npmjs.org/@rollup/rollup-android-arm64/-/rollup-android-arm64-4.44.1.tgz"
- integrity sha512-RurZetXqTu4p+G0ChbnkwBuAtwAbIwJkycw1n6GvlGlBuS4u5qlr5opix8cBAYFJgaY05TWtM+LaoFggUmbZEQ==
-
-"@rollup/rollup-darwin-arm64@4.44.1":
- version "4.44.1"
- resolved "https://registry.npmjs.org/@rollup/rollup-darwin-arm64/-/rollup-darwin-arm64-4.44.1.tgz"
- integrity sha512-fM/xPesi7g2M7chk37LOnmnSTHLG/v2ggWqKj3CCA1rMA4mm5KVBT1fNoswbo1JhPuNNZrVwpTvlCVggv8A2zg==
-
-"@rollup/rollup-darwin-x64@4.44.1":
- version "4.44.1"
- resolved "https://registry.npmjs.org/@rollup/rollup-darwin-x64/-/rollup-darwin-x64-4.44.1.tgz"
- integrity sha512-gDnWk57urJrkrHQ2WVx9TSVTH7lSlU7E3AFqiko+bgjlh78aJ88/3nycMax52VIVjIm3ObXnDL2H00e/xzoipw==
-
-"@rollup/rollup-freebsd-arm64@4.44.1":
- version "4.44.1"
- resolved "https://registry.npmjs.org/@rollup/rollup-freebsd-arm64/-/rollup-freebsd-arm64-4.44.1.tgz"
- integrity sha512-wnFQmJ/zPThM5zEGcnDcCJeYJgtSLjh1d//WuHzhf6zT3Md1BvvhJnWoy+HECKu2bMxaIcfWiu3bJgx6z4g2XA==
-
-"@rollup/rollup-freebsd-x64@4.44.1":
- version "4.44.1"
- resolved "https://registry.npmjs.org/@rollup/rollup-freebsd-x64/-/rollup-freebsd-x64-4.44.1.tgz"
- integrity sha512-uBmIxoJ4493YATvU2c0upGz87f99e3wop7TJgOA/bXMFd2SvKCI7xkxY/5k50bv7J6dw1SXT4MQBQSLn8Bb/Uw==
-
-"@rollup/rollup-linux-arm-gnueabihf@4.44.1":
- version "4.44.1"
- resolved "https://registry.npmjs.org/@rollup/rollup-linux-arm-gnueabihf/-/rollup-linux-arm-gnueabihf-4.44.1.tgz"
- integrity sha512-n0edDmSHlXFhrlmTK7XBuwKlG5MbS7yleS1cQ9nn4kIeW+dJH+ExqNgQ0RrFRew8Y+0V/x6C5IjsHrJmiHtkxQ==
-
-"@rollup/rollup-linux-arm-musleabihf@4.44.1":
- version "4.44.1"
- resolved "https://registry.npmjs.org/@rollup/rollup-linux-arm-musleabihf/-/rollup-linux-arm-musleabihf-4.44.1.tgz"
- integrity sha512-8WVUPy3FtAsKSpyk21kV52HCxB+me6YkbkFHATzC2Yd3yuqHwy2lbFL4alJOLXKljoRw08Zk8/xEj89cLQ/4Nw==
-
-"@rollup/rollup-linux-arm64-gnu@4.44.1":
- version "4.44.1"
- resolved "https://registry.npmjs.org/@rollup/rollup-linux-arm64-gnu/-/rollup-linux-arm64-gnu-4.44.1.tgz"
- integrity sha512-yuktAOaeOgorWDeFJggjuCkMGeITfqvPgkIXhDqsfKX8J3jGyxdDZgBV/2kj/2DyPaLiX6bPdjJDTu9RB8lUPQ==
-
-"@rollup/rollup-linux-arm64-musl@4.44.1":
- version "4.44.1"
- resolved "https://registry.npmjs.org/@rollup/rollup-linux-arm64-musl/-/rollup-linux-arm64-musl-4.44.1.tgz"
- integrity sha512-W+GBM4ifET1Plw8pdVaecwUgxmiH23CfAUj32u8knq0JPFyK4weRy6H7ooxYFD19YxBulL0Ktsflg5XS7+7u9g==
-
-"@rollup/rollup-linux-loongarch64-gnu@4.44.1":
- version "4.44.1"
- resolved "https://registry.npmjs.org/@rollup/rollup-linux-loongarch64-gnu/-/rollup-linux-loongarch64-gnu-4.44.1.tgz"
- integrity sha512-1zqnUEMWp9WrGVuVak6jWTl4fEtrVKfZY7CvcBmUUpxAJ7WcSowPSAWIKa/0o5mBL/Ij50SIf9tuirGx63Ovew==
-
-"@rollup/rollup-linux-powerpc64le-gnu@4.44.1":
- version "4.44.1"
- resolved "https://registry.npmjs.org/@rollup/rollup-linux-powerpc64le-gnu/-/rollup-linux-powerpc64le-gnu-4.44.1.tgz"
- integrity sha512-Rl3JKaRu0LHIx7ExBAAnf0JcOQetQffaw34T8vLlg9b1IhzcBgaIdnvEbbsZq9uZp3uAH+JkHd20Nwn0h9zPjA==
-
-"@rollup/rollup-linux-riscv64-gnu@4.44.1":
- version "4.44.1"
- resolved "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-gnu/-/rollup-linux-riscv64-gnu-4.44.1.tgz"
- integrity sha512-j5akelU3snyL6K3N/iX7otLBIl347fGwmd95U5gS/7z6T4ftK288jKq3A5lcFKcx7wwzb5rgNvAg3ZbV4BqUSw==
-
-"@rollup/rollup-linux-riscv64-musl@4.44.1":
- version "4.44.1"
- resolved "https://registry.npmjs.org/@rollup/rollup-linux-riscv64-musl/-/rollup-linux-riscv64-musl-4.44.1.tgz"
- integrity sha512-ppn5llVGgrZw7yxbIm8TTvtj1EoPgYUAbfw0uDjIOzzoqlZlZrLJ/KuiE7uf5EpTpCTrNt1EdtzF0naMm0wGYg==
-
-"@rollup/rollup-linux-s390x-gnu@4.44.1":
- version "4.44.1"
- resolved "https://registry.npmjs.org/@rollup/rollup-linux-s390x-gnu/-/rollup-linux-s390x-gnu-4.44.1.tgz"
- integrity sha512-Hu6hEdix0oxtUma99jSP7xbvjkUM/ycke/AQQ4EC5g7jNRLLIwjcNwaUy95ZKBJJwg1ZowsclNnjYqzN4zwkAw==
-
-"@rollup/rollup-linux-x64-gnu@4.44.1":
- version "4.44.1"
- resolved "https://registry.npmjs.org/@rollup/rollup-linux-x64-gnu/-/rollup-linux-x64-gnu-4.44.1.tgz"
- integrity sha512-EtnsrmZGomz9WxK1bR5079zee3+7a+AdFlghyd6VbAjgRJDbTANJ9dcPIPAi76uG05micpEL+gPGmAKYTschQw==
-
-"@rollup/rollup-linux-x64-musl@4.44.1":
- version "4.44.1"
- resolved "https://registry.npmjs.org/@rollup/rollup-linux-x64-musl/-/rollup-linux-x64-musl-4.44.1.tgz"
- integrity sha512-iAS4p+J1az6Usn0f8xhgL4PaU878KEtutP4hqw52I4IO6AGoyOkHCxcc4bqufv1tQLdDWFx8lR9YlwxKuv3/3g==
-
-"@rollup/rollup-win32-arm64-msvc@4.44.1":
- version "4.44.1"
- resolved "https://registry.npmjs.org/@rollup/rollup-win32-arm64-msvc/-/rollup-win32-arm64-msvc-4.44.1.tgz"
- integrity sha512-NtSJVKcXwcqozOl+FwI41OH3OApDyLk3kqTJgx8+gp6On9ZEt5mYhIsKNPGuaZr3p9T6NWPKGU/03Vw4CNU9qg==
-
-"@rollup/rollup-win32-ia32-msvc@4.44.1":
- version "4.44.1"
- resolved "https://registry.npmjs.org/@rollup/rollup-win32-ia32-msvc/-/rollup-win32-ia32-msvc-4.44.1.tgz"
- integrity sha512-JYA3qvCOLXSsnTR3oiyGws1Dm0YTuxAAeaYGVlGpUsHqloPcFjPg+X0Fj2qODGLNwQOAcCiQmHub/V007kiH5A==
-
-"@rollup/rollup-win32-x64-msvc@4.44.1":
- version "4.44.1"
- resolved "https://registry.npmjs.org/@rollup/rollup-win32-x64-msvc/-/rollup-win32-x64-msvc-4.44.1.tgz"
- integrity sha512-J8o22LuF0kTe7m+8PvW9wk3/bRq5+mRo5Dqo6+vXb7otCm3TPhYOJqOaQtGU9YMWQSL3krMnoOxMr0+9E6F3Ug==
-
"@safe-global/safe-apps-provider@0.18.6":
version "0.18.6"
resolved "https://registry.npmjs.org/@safe-global/safe-apps-provider/-/safe-apps-provider-0.18.6.tgz"
@@ -4600,7 +4204,7 @@
"@safe-global/safe-apps-sdk" "^9.1.0"
events "^3.3.0"
-"@safe-global/safe-apps-sdk@9.1.0", "@safe-global/safe-apps-sdk@^9.1.0":
+"@safe-global/safe-apps-sdk@^9.1.0", "@safe-global/safe-apps-sdk@9.1.0":
version "9.1.0"
resolved "https://registry.npmjs.org/@safe-global/safe-apps-sdk/-/safe-apps-sdk-9.1.0.tgz"
integrity sha512-N5p/ulfnnA2Pi2M3YeWjULeWbjo7ei22JwU/IXnhoHzKq3pYCN6ynL9mJBOlvDVv892EgLPCWCOwQk/uBT2v0Q==
@@ -4613,12 +4217,7 @@
resolved "https://registry.npmjs.org/@safe-global/safe-gateway-typescript-sdk/-/safe-gateway-typescript-sdk-3.23.1.tgz"
integrity sha512-6ORQfwtEJYpalCeVO21L4XXGSdbEMfyp2hEv6cP82afKXSwvse6d3sdelgaPWUxHIsFRkWvHDdzh8IyyKHZKxw==
-"@scure/base@1.2.1":
- version "1.2.1"
- resolved "https://registry.npmjs.org/@scure/base/-/base-1.2.1.tgz"
- integrity sha512-DGmGtC8Tt63J5GfHgfl5CuAXh96VF/LD8K9Hr/Gv0J2lAoRGlPOMpqMpMbCTOoOJMZCk2Xt+DskdDyn6dEFdzQ==
-
-"@scure/base@1.2.6", "@scure/base@^1.1.3", "@scure/base@~1.2.2", "@scure/base@~1.2.4", "@scure/base@~1.2.5":
+"@scure/base@^1.1.3", "@scure/base@~1.2.2", "@scure/base@~1.2.4", "@scure/base@~1.2.5", "@scure/base@1.2.6":
version "1.2.6"
resolved "https://registry.npmjs.org/@scure/base/-/base-1.2.6.tgz"
integrity sha512-g/nm5FgUa//MCj1gV09zTJTaM6KBAHqLN907YVQqf7zC49+DcO4B1so4ZX07Ef10Twr6nuqYEH9GEggFXA4Fmg==
@@ -4628,16 +4227,21 @@
resolved "https://registry.npmjs.org/@scure/base/-/base-1.1.9.tgz"
integrity sha512-8YKhl8GHiNI/pU2VMaofa2Tor7PJRAjwQLBBuilkJ9L5+13yVbC7JO/wS7piioAvPSwR3JKM1IJ/u4xQzbcXKg==
-"@scure/bip32@1.4.0":
- version "1.4.0"
- resolved "https://registry.npmjs.org/@scure/bip32/-/bip32-1.4.0.tgz"
- integrity sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg==
+"@scure/base@1.2.1":
+ version "1.2.1"
+ resolved "https://registry.npmjs.org/@scure/base/-/base-1.2.1.tgz"
+ integrity sha512-DGmGtC8Tt63J5GfHgfl5CuAXh96VF/LD8K9Hr/Gv0J2lAoRGlPOMpqMpMbCTOoOJMZCk2Xt+DskdDyn6dEFdzQ==
+
+"@scure/bip32@^1.5.0", "@scure/bip32@1.6.2":
+ version "1.6.2"
+ resolved "https://registry.npmjs.org/@scure/bip32/-/bip32-1.6.2.tgz"
+ integrity sha512-t96EPDMbtGgtb7onKKqxRLfE5g05k7uHnHRM2xdE6BP/ZmxaLtPek4J4KfVn/90IQNrU1IOAqMgiDtUdtbe3nw==
dependencies:
- "@noble/curves" "~1.4.0"
- "@noble/hashes" "~1.4.0"
- "@scure/base" "~1.1.6"
+ "@noble/curves" "~1.8.1"
+ "@noble/hashes" "~1.7.1"
+ "@scure/base" "~1.2.2"
-"@scure/bip32@1.7.0", "@scure/bip32@^1.7.0":
+"@scure/bip32@^1.7.0", "@scure/bip32@1.7.0":
version "1.7.0"
resolved "https://registry.npmjs.org/@scure/bip32/-/bip32-1.7.0.tgz"
integrity sha512-E4FFX/N3f4B80AKWp5dP6ow+flD1LQZo/w8UnLGYZO674jS6YnYeepycOOksv+vLPSpgN35wgKgy+ybfTb2SMw==
@@ -4646,24 +4250,24 @@
"@noble/hashes" "~1.8.0"
"@scure/base" "~1.2.5"
-"@scure/bip32@^1.5.0":
- version "1.6.2"
- resolved "https://registry.npmjs.org/@scure/bip32/-/bip32-1.6.2.tgz"
- integrity sha512-t96EPDMbtGgtb7onKKqxRLfE5g05k7uHnHRM2xdE6BP/ZmxaLtPek4J4KfVn/90IQNrU1IOAqMgiDtUdtbe3nw==
- dependencies:
- "@noble/curves" "~1.8.1"
- "@noble/hashes" "~1.7.1"
- "@scure/base" "~1.2.2"
-
-"@scure/bip39@1.3.0":
- version "1.3.0"
- resolved "https://registry.npmjs.org/@scure/bip39/-/bip39-1.3.0.tgz"
- integrity sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ==
+"@scure/bip32@1.4.0":
+ version "1.4.0"
+ resolved "https://registry.npmjs.org/@scure/bip32/-/bip32-1.4.0.tgz"
+ integrity sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg==
dependencies:
+ "@noble/curves" "~1.4.0"
"@noble/hashes" "~1.4.0"
"@scure/base" "~1.1.6"
-"@scure/bip39@1.6.0", "@scure/bip39@^1.6.0":
+"@scure/bip39@^1.4.0", "@scure/bip39@1.5.4":
+ version "1.5.4"
+ resolved "https://registry.npmjs.org/@scure/bip39/-/bip39-1.5.4.tgz"
+ integrity sha512-TFM4ni0vKvCfBpohoh+/lY05i9gRbSwXWngAsF4CABQxoaOHijxuaZ2R6cStDQ5CHtHO9aGJTr4ksVJASRRyMA==
+ dependencies:
+ "@noble/hashes" "~1.7.1"
+ "@scure/base" "~1.2.4"
+
+"@scure/bip39@^1.6.0", "@scure/bip39@1.6.0":
version "1.6.0"
resolved "https://registry.npmjs.org/@scure/bip39/-/bip39-1.6.0.tgz"
integrity sha512-+lF0BbLiJNwVlev4eKelw1WWLaiKXw7sSl8T6FvBlWkdX+94aGJ4o8XjUdlyhTCjd8c+B3KT3JfS8P0bLRNU6A==
@@ -4671,13 +4275,13 @@
"@noble/hashes" "~1.8.0"
"@scure/base" "~1.2.5"
-"@scure/bip39@^1.4.0":
- version "1.5.4"
- resolved "https://registry.npmjs.org/@scure/bip39/-/bip39-1.5.4.tgz"
- integrity sha512-TFM4ni0vKvCfBpohoh+/lY05i9gRbSwXWngAsF4CABQxoaOHijxuaZ2R6cStDQ5CHtHO9aGJTr4ksVJASRRyMA==
+"@scure/bip39@1.3.0":
+ version "1.3.0"
+ resolved "https://registry.npmjs.org/@scure/bip39/-/bip39-1.3.0.tgz"
+ integrity sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ==
dependencies:
- "@noble/hashes" "~1.7.1"
- "@scure/base" "~1.2.4"
+ "@noble/hashes" "~1.4.0"
+ "@scure/base" "~1.1.6"
"@scure/starknet@1.1.0":
version "1.1.0"
@@ -4752,28 +4356,28 @@
dependencies:
"@segment/isodate" "^1.0.3"
-"@segment/isodate@1.0.3", "@segment/isodate@^1.0.3":
+"@segment/isodate@^1.0.3", "@segment/isodate@1.0.3":
version "1.0.3"
resolved "https://registry.npmjs.org/@segment/isodate/-/isodate-1.0.3.tgz"
integrity sha512-BtanDuvJqnACFkeeYje7pWULVv8RgZaqKHWwGFnL/g/TH/CcZjkIVTfGDp/MAxmilYHUkrX70SqwnYSTNEaN7A==
"@sentry-internal/browser-utils@10.0.0":
version "10.0.0"
- resolved "https://registry.yarnpkg.com/@sentry-internal/browser-utils/-/browser-utils-10.0.0.tgz#a2c6938afa5e80f9dab082a323dd4b818f345abf"
+ resolved "https://registry.npmjs.org/@sentry-internal/browser-utils/-/browser-utils-10.0.0.tgz"
integrity sha512-qLZ2uguBhjGUsuq1mLF6Oe6vK3I1IDYVukNuJwbsWb/t7hQXNNyhzNIENWQw4v+Iotq6ocZPiGpLN4ZB9FuX5Q==
dependencies:
"@sentry/core" "10.0.0"
"@sentry-internal/feedback@10.0.0":
version "10.0.0"
- resolved "https://registry.yarnpkg.com/@sentry-internal/feedback/-/feedback-10.0.0.tgz#354a8b9b813292efc952b91c951ee8b00f36cb1b"
+ resolved "https://registry.npmjs.org/@sentry-internal/feedback/-/feedback-10.0.0.tgz"
integrity sha512-vv5+cEXUjL68vgMA1YkY81RNGnQUurgsy4Cy/2/pL9p+n9q736jq+lFfKlOMPwGQDXEQmouSNLgyhlg4nSvGcg==
dependencies:
"@sentry/core" "10.0.0"
"@sentry-internal/replay-canvas@10.0.0":
version "10.0.0"
- resolved "https://registry.yarnpkg.com/@sentry-internal/replay-canvas/-/replay-canvas-10.0.0.tgz#32450bca427ce439d44ced49b93ccdfdb76993e6"
+ resolved "https://registry.npmjs.org/@sentry-internal/replay-canvas/-/replay-canvas-10.0.0.tgz"
integrity sha512-iPNgsSTdB55NtHq24WoHLRYtTeE0zF5shx+eJVCmvVti9OTwRLRAPcQ8vnCQzt5sAKPUo6kAAnY5EPiTNMP5+w==
dependencies:
"@sentry-internal/replay" "10.0.0"
@@ -4781,7 +4385,7 @@
"@sentry-internal/replay@10.0.0":
version "10.0.0"
- resolved "https://registry.yarnpkg.com/@sentry-internal/replay/-/replay-10.0.0.tgz#7d3f0d43567ea8d1a69a0a8ef5d4e8ee2cf5f778"
+ resolved "https://registry.npmjs.org/@sentry-internal/replay/-/replay-10.0.0.tgz"
integrity sha512-3rjFH30hClxn65e2afjVom1tud8qYkyQq0o+IkskTCA0iUHrsgDKAh1mhyU7Ph26btynJGIfJtMu53zKJW/ncg==
dependencies:
"@sentry-internal/browser-utils" "10.0.0"
@@ -4789,7 +4393,7 @@
"@sentry/browser@10.0.0":
version "10.0.0"
- resolved "https://registry.yarnpkg.com/@sentry/browser/-/browser-10.0.0.tgz#9062dd3b1436bee0592faabbb45c2c38f481e575"
+ resolved "https://registry.npmjs.org/@sentry/browser/-/browser-10.0.0.tgz"
integrity sha512-heta2gqiVBOPN59H4PRPS956ZNagXlqrTUeoaQdcLa8AVmPBFZqkkBbZIogieHDMGp/m1M6WqdOcV6rAb26NHw==
dependencies:
"@sentry-internal/browser-utils" "10.0.0"
@@ -4800,12 +4404,12 @@
"@sentry/core@10.0.0":
version "10.0.0"
- resolved "https://registry.yarnpkg.com/@sentry/core/-/core-10.0.0.tgz#9fd3b2db4349a9f09743478a57fbafbe42bd14a7"
+ resolved "https://registry.npmjs.org/@sentry/core/-/core-10.0.0.tgz"
integrity sha512-UvkPzWVcXVSB6GOmETlEXlBumquFWCve0VnR2SqQIAyJPcj7mO6BvYrpuyit4c4XXaChaJe+bPZ6+4XQbUHnAA==
"@sentry/react@^10.0.0":
version "10.0.0"
- resolved "https://registry.yarnpkg.com/@sentry/react/-/react-10.0.0.tgz#f7585af95c5f69e0f6eedad2ca397c8cc7e33ee6"
+ resolved "https://registry.npmjs.org/@sentry/react/-/react-10.0.0.tgz"
integrity sha512-/vmHGVaHL+TO5h116fo63qiJJc9OhrFKXM797E+BYVRE4WsawaCfbbT/UQjFgw21LsxyyY+LB9CuQwviNAjQ1Q==
dependencies:
"@sentry/browser" "10.0.0"
@@ -4839,7 +4443,7 @@
"@snapshot-labs/snapshot.js@^0.14.9":
version "0.14.9"
- resolved "https://registry.yarnpkg.com/@snapshot-labs/snapshot.js/-/snapshot.js-0.14.9.tgz#5205f052bfadb88a350da4f1769f87031910db14"
+ resolved "https://registry.npmjs.org/@snapshot-labs/snapshot.js/-/snapshot.js-0.14.9.tgz"
integrity sha512-u3Wuc186T+ds1b3hhG2mNi4zADwBr3WX/r+rXbIslMd7W0vDLCvOX9+Q8yH0EeLlGgA3uOjY1qUVZ9KshGGRZA==
dependencies:
"@ensdomains/eth-ens-namehash" "^2.0.15"
@@ -4973,13 +4577,6 @@
rpc-websockets "^9.0.2"
superstruct "^2.0.2"
-"@spruceid/siwe-parser@1.1.3":
- version "1.1.3"
- resolved "https://registry.npmjs.org/@spruceid/siwe-parser/-/siwe-parser-1.1.3.tgz"
- integrity sha512-oQ8PcwDqjGWJvLmvAF2yzd6iniiWxK0Qtz+Dw+gLD/W5zOQJiKIUXwslHOm8VB8OOOKW9vfR3dnPBhHaZDvRsw==
- dependencies:
- apg-js "^4.1.1"
-
"@spruceid/siwe-parser@^2.1.2":
version "2.1.2"
resolved "https://registry.npmjs.org/@spruceid/siwe-parser/-/siwe-parser-2.1.2.tgz"
@@ -4990,6 +4587,13 @@
uri-js "^4.4.1"
valid-url "^1.0.9"
+"@spruceid/siwe-parser@1.1.3":
+ version "1.1.3"
+ resolved "https://registry.npmjs.org/@spruceid/siwe-parser/-/siwe-parser-1.1.3.tgz"
+ integrity sha512-oQ8PcwDqjGWJvLmvAF2yzd6iniiWxK0Qtz+Dw+gLD/W5zOQJiKIUXwslHOm8VB8OOOKW9vfR3dnPBhHaZDvRsw==
+ dependencies:
+ apg-js "^4.1.1"
+
"@stablelib/binary@^1.0.1":
version "1.0.1"
resolved "https://registry.npmjs.org/@stablelib/binary/-/binary-1.0.1.tgz"
@@ -5040,7 +4644,7 @@
dependencies:
"@supabase/node-fetch" "^2.6.14"
-"@supabase/node-fetch@2.6.15", "@supabase/node-fetch@^2.6.13", "@supabase/node-fetch@^2.6.14":
+"@supabase/node-fetch@^2.6.13", "@supabase/node-fetch@^2.6.14", "@supabase/node-fetch@2.6.15":
version "2.6.15"
resolved "https://registry.npmjs.org/@supabase/node-fetch/-/node-fetch-2.6.15.tgz"
integrity sha512-1ibVeYUacxWYi9i0cf5efil6adJ9WRyZBLivgjs+AUpewx1F3xPi7gLgaASI2SmIQxPoCEjAsLAzKPgMJVgOUQ==
@@ -5097,13 +4701,6 @@
resolved "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz"
integrity sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==
-"@swc/helpers@0.5.15":
- version "0.5.15"
- resolved "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz"
- integrity sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==
- dependencies:
- tslib "^2.8.0"
-
"@swc/helpers@^0.5.0", "@swc/helpers@^0.5.11", "@swc/helpers@^0.5.3":
version "0.5.17"
resolved "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.17.tgz"
@@ -5111,6 +4708,13 @@
dependencies:
tslib "^2.8.0"
+"@swc/helpers@0.5.15":
+ version "0.5.15"
+ resolved "https://registry.npmjs.org/@swc/helpers/-/helpers-0.5.15.tgz"
+ integrity sha512-JQ5TuMi45Owi4/BIMAJBoSQoOJu12oOk/gADqlcUL9JEdHB8vyjUSsxqeNXnmXHjYKMi2WcYtezGEEhqUI/E2g==
+ dependencies:
+ tslib "^2.8.0"
+
"@tailwindcss/typography@^0.5.10":
version "0.5.16"
resolved "https://registry.npmjs.org/@tailwindcss/typography/-/typography-0.5.16.tgz"
@@ -5128,12 +4732,12 @@
"@tanstack/query-core@5.85.5":
version "5.85.5"
- resolved "https://registry.yarnpkg.com/@tanstack/query-core/-/query-core-5.85.5.tgz#c4adc126bb3a927e4d60280bf3cf62210700147c"
+ resolved "https://registry.npmjs.org/@tanstack/query-core/-/query-core-5.85.5.tgz"
integrity sha512-KO0WTob4JEApv69iYp1eGvfMSUkgw//IpMnq+//cORBzXf0smyRwPLrUvEe5qtAEGjwZTXrjxg+oJNP/C00t6w==
"@tanstack/react-query@^5":
version "5.85.5"
- resolved "https://registry.yarnpkg.com/@tanstack/react-query/-/react-query-5.85.5.tgz#50a1c02b50a59f93eba8f0d91d54d39c6c534c5e"
+ resolved "https://registry.npmjs.org/@tanstack/react-query/-/react-query-5.85.5.tgz"
integrity sha512-/X4EFNcnPiSs8wM2v+b6DqS5mmGeuJQvxBglmDxl6ZQb5V26ouD2SJYAcC3VjbNwqhY2zjxVD15rDA5nGbMn3A==
dependencies:
"@tanstack/query-core" "5.85.5"
@@ -5313,7 +4917,7 @@
dependencies:
"@types/estree" "*"
-"@types/estree@*", "@types/estree@1.0.8", "@types/estree@^1.0.0":
+"@types/estree@*", "@types/estree@^1.0.0", "@types/estree@1.0.8":
version "1.0.8"
resolved "https://registry.npmjs.org/@types/estree/-/estree-1.0.8.tgz"
integrity sha512-dWHzHa2WqEXI/O1E9OjrocMTKJl2mSrEolh1Iomrv6U+JuNwaHXsXx9bLu5gG7BUWFIN0skIQJQ/L1rIex4X6w==
@@ -5397,14 +5001,19 @@
resolved "https://registry.npmjs.org/@types/ms/-/ms-2.1.0.tgz"
integrity sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==
-"@types/node@*", "@types/node@>=13.7.0", "@types/node@^24.0.2":
+"@types/node@*", "@types/node@^24.0.2", "@types/node@>=13.7.0":
version "24.0.10"
resolved "https://registry.npmjs.org/@types/node/-/node-24.0.10.tgz"
integrity sha512-ENHwaH+JIRTDIEEbDK6QSQntAYGtbvdDXnMXnZaZ6k13Du1dPMmprkEHIL7ok2Wl2aZevetwTAb5S+7yIF+enA==
dependencies:
undici-types "~7.8.0"
-"@types/node@^12.12.54", "@types/node@^12.12.6":
+"@types/node@^12.12.54":
+ version "12.20.55"
+ resolved "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz"
+ integrity sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==
+
+"@types/node@^12.12.6":
version "12.20.55"
resolved "https://registry.npmjs.org/@types/node/-/node-12.20.55.tgz"
integrity sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==
@@ -5446,7 +5055,7 @@
"@types/react-transition-group@^4.4.12":
version "4.4.12"
- resolved "https://registry.yarnpkg.com/@types/react-transition-group/-/react-transition-group-4.4.12.tgz#b5d76568485b02a307238270bfe96cb51ee2a044"
+ resolved "https://registry.npmjs.org/@types/react-transition-group/-/react-transition-group-4.4.12.tgz"
integrity sha512-8TV6R3h2j7a91c+1DXdJi3Syo69zzIZbz7Lg5tORM5LEJG7X/E6a1V3drRyBRZq7/utz7A+c4OgYLiLcYGHG6w==
"@types/react@^18.3.3":
@@ -5489,7 +5098,12 @@
resolved "https://registry.npmjs.org/@types/unist/-/unist-3.0.3.tgz"
integrity sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==
-"@types/unist@^2", "@types/unist@^2.0.0":
+"@types/unist@^2":
+ version "2.0.11"
+ resolved "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz"
+ integrity sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==
+
+"@types/unist@^2.0.0":
version "2.0.11"
resolved "https://registry.npmjs.org/@types/unist/-/unist-2.0.11.tgz"
integrity sha512-CmBKiL6NNo/OqgmMn95Fk9Whlp2mtvIv+KNpQKN2F4SjvrEesubTRWGYSg+BnWZOnlCaSTU1sMpsBOzgbYhnsA==
@@ -5569,7 +5183,7 @@
"@typescript-eslint/types" "8.35.1"
"@typescript-eslint/visitor-keys" "8.35.1"
-"@typescript-eslint/tsconfig-utils@8.35.1", "@typescript-eslint/tsconfig-utils@^8.35.1":
+"@typescript-eslint/tsconfig-utils@^8.35.1", "@typescript-eslint/tsconfig-utils@8.35.1":
version "8.35.1"
resolved "https://registry.npmjs.org/@typescript-eslint/tsconfig-utils/-/tsconfig-utils-8.35.1.tgz"
integrity sha512-K5/U9VmT9dTHoNowWZpz+/TObS3xqC5h0xAIjXPw+MNcKV9qg6eSatEnmeAwkjHijhACH0/N7bkhKvbt1+DXWQ==
@@ -5584,12 +5198,17 @@
debug "^4.3.4"
ts-api-utils "^1.3.0"
+"@typescript-eslint/types@^8.35.1":
+ version "8.35.1"
+ resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.35.1.tgz"
+ integrity sha512-q/O04vVnKHfrrhNAscndAn1tuQhIkwqnaW+eu5waD5IPts2eX1dgJxgqcPx5BX109/qAz7IG6VrEPTOYKCNfRQ==
+
"@typescript-eslint/types@7.18.0":
version "7.18.0"
resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.18.0.tgz"
integrity sha512-iZqi+Ds1y4EDYUtlOOC+aUmxnE9xS/yCigkjA7XpTKV6nCBd3Hp/PRGGmdwnfkV2ThMyYldP1wRpm/id99spTQ==
-"@typescript-eslint/types@8.35.1", "@typescript-eslint/types@^8.35.1":
+"@typescript-eslint/types@8.35.1":
version "8.35.1"
resolved "https://registry.npmjs.org/@typescript-eslint/types/-/types-8.35.1.tgz"
integrity sha512-q/O04vVnKHfrrhNAscndAn1tuQhIkwqnaW+eu5waD5IPts2eX1dgJxgqcPx5BX109/qAz7IG6VrEPTOYKCNfRQ==
@@ -5624,16 +5243,6 @@
semver "^7.6.0"
ts-api-utils "^2.1.0"
-"@typescript-eslint/utils@7.18.0":
- version "7.18.0"
- resolved "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.18.0.tgz"
- integrity sha512-kK0/rNa2j74XuHVcoCZxdFBMF+aq/vH83CXAOHieC+2Gis4mF8jJXT5eAfyD3K0sAxtPuwxaIOIOvhwzVDt/kw==
- dependencies:
- "@eslint-community/eslint-utils" "^4.4.0"
- "@typescript-eslint/scope-manager" "7.18.0"
- "@typescript-eslint/types" "7.18.0"
- "@typescript-eslint/typescript-estree" "7.18.0"
-
"@typescript-eslint/utils@^8.13.0":
version "8.35.1"
resolved "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-8.35.1.tgz"
@@ -5644,6 +5253,16 @@
"@typescript-eslint/types" "8.35.1"
"@typescript-eslint/typescript-estree" "8.35.1"
+"@typescript-eslint/utils@7.18.0":
+ version "7.18.0"
+ resolved "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.18.0.tgz"
+ integrity sha512-kK0/rNa2j74XuHVcoCZxdFBMF+aq/vH83CXAOHieC+2Gis4mF8jJXT5eAfyD3K0sAxtPuwxaIOIOvhwzVDt/kw==
+ dependencies:
+ "@eslint-community/eslint-utils" "^4.4.0"
+ "@typescript-eslint/scope-manager" "7.18.0"
+ "@typescript-eslint/types" "7.18.0"
+ "@typescript-eslint/typescript-estree" "7.18.0"
+
"@typescript-eslint/visitor-keys@7.18.0":
version "7.18.0"
resolved "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.18.0.tgz"
@@ -5686,7 +5305,7 @@
"@uiw/react-md-editor@^4.0.8":
version "4.0.8"
- resolved "https://registry.yarnpkg.com/@uiw/react-md-editor/-/react-md-editor-4.0.8.tgz#40b37e1e26966bccb4ee3dab33239da66bc698dd"
+ resolved "https://registry.npmjs.org/@uiw/react-md-editor/-/react-md-editor-4.0.8.tgz"
integrity sha512-S3mOzZeGmJNhzdXJxRTCwsFMDp8nBWeQUf59cK3L6QHzDUHnRoHpcmWpfVRyKGKSg8zaI2+meU5cYWf8kYn3mQ==
dependencies:
"@babel/runtime" "^7.14.6"
@@ -5825,7 +5444,7 @@
"@wagmi/connectors@5.9.3":
version "5.9.3"
- resolved "https://registry.yarnpkg.com/@wagmi/connectors/-/connectors-5.9.3.tgz#f59ec2b043f9d6a7590758cbd704509743937640"
+ resolved "https://registry.npmjs.org/@wagmi/connectors/-/connectors-5.9.3.tgz"
integrity sha512-HmSRFB3SFE1jAPs1E28I6/VOyA82i4KzC0OyG1JLEkOkyLlGsakPxtwXVdw/7kv9L4ppADWWktvwOjvhvpRmdQ==
dependencies:
"@base-org/account" "1.1.1"
@@ -5839,7 +5458,7 @@
"@wagmi/connectors@5.9.6":
version "5.9.6"
- resolved "https://registry.yarnpkg.com/@wagmi/connectors/-/connectors-5.9.6.tgz#00e9a00b3508c788781113090b7da5f84091d907"
+ resolved "https://registry.npmjs.org/@wagmi/connectors/-/connectors-5.9.6.tgz"
integrity sha512-rnztC3UnNvVEvUHZAfbUi/vUeRQug7DZlhKbK0nG34w/22mpd9whYVPVuGLrWek/z0wBBOH96cJic+hcsz9+pA==
dependencies:
"@base-org/account" "1.1.1"
@@ -5851,19 +5470,19 @@
"@walletconnect/ethereum-provider" "2.21.1"
cbw-sdk "npm:@coinbase/wallet-sdk@3.9.3"
-"@wagmi/core@2.19.0":
- version "2.19.0"
- resolved "https://registry.yarnpkg.com/@wagmi/core/-/core-2.19.0.tgz#3c498a0cbe764642b378b2b1efb34797c54bb989"
- integrity sha512-lI57q6refAtNU6xnk/oyOpbEtEiwQ6g4rR+C9FEx8Gn2hZlfoyyksndrl6hIKlMBK+UkkKso3VwR5DI65j/5XQ==
+"@wagmi/core@^2.16.7", "@wagmi/core@2.20.1":
+ version "2.20.1"
+ resolved "https://registry.npmjs.org/@wagmi/core/-/core-2.20.1.tgz"
+ integrity sha512-uuwc+rlqwyxrpDiw17pdL1YXv0Cx3y1R2SoBF/SuxrYZqTGMNDx00sVcvB51p+orXCcEWsDwZsCwUpaPkOHqqw==
dependencies:
eventemitter3 "5.0.1"
mipd "0.0.7"
zustand "5.0.0"
-"@wagmi/core@2.20.1", "@wagmi/core@^2.16.7":
- version "2.20.1"
- resolved "https://registry.yarnpkg.com/@wagmi/core/-/core-2.20.1.tgz#a7c271fb3902b404c134c488087d24b660606d57"
- integrity sha512-uuwc+rlqwyxrpDiw17pdL1YXv0Cx3y1R2SoBF/SuxrYZqTGMNDx00sVcvB51p+orXCcEWsDwZsCwUpaPkOHqqw==
+"@wagmi/core@2.19.0":
+ version "2.19.0"
+ resolved "https://registry.npmjs.org/@wagmi/core/-/core-2.19.0.tgz"
+ integrity sha512-lI57q6refAtNU6xnk/oyOpbEtEiwQ6g4rR+C9FEx8Gn2hZlfoyyksndrl6hIKlMBK+UkkKso3VwR5DI65j/5XQ==
dependencies:
eventemitter3 "5.0.1"
mipd "0.0.7"
@@ -5971,10 +5590,10 @@
dependencies:
tslib "1.14.1"
-"@walletconnect/ethereum-provider@2.21.1":
- version "2.21.1"
- resolved "https://registry.npmjs.org/@walletconnect/ethereum-provider/-/ethereum-provider-2.21.1.tgz"
- integrity sha512-SSlIG6QEVxClgl1s0LMk4xr2wg4eT3Zn/Hb81IocyqNSGfXpjtawWxKxiC5/9Z95f1INyBD6MctJbL/R1oBwIw==
+"@walletconnect/ethereum-provider@^2.1.2", "@walletconnect/ethereum-provider@^2.15.1", "@walletconnect/ethereum-provider@^2.4.7":
+ version "2.21.4"
+ resolved "https://registry.npmjs.org/@walletconnect/ethereum-provider/-/ethereum-provider-2.21.4.tgz"
+ integrity sha512-PZBJKcoPfaHiGBXlVwXZEHSXuivqzflzHv+3fpXr6MvHYW/uho5ZdgnHw54EE0jJ0j4Z9h+07PnMjiDFuKjKWA==
dependencies:
"@reown/appkit" "1.7.8"
"@walletconnect/jsonrpc-http-connection" "1.0.8"
@@ -5982,16 +5601,16 @@
"@walletconnect/jsonrpc-types" "1.0.4"
"@walletconnect/jsonrpc-utils" "1.0.8"
"@walletconnect/keyvaluestorage" "1.1.1"
- "@walletconnect/sign-client" "2.21.1"
- "@walletconnect/types" "2.21.1"
- "@walletconnect/universal-provider" "2.21.1"
- "@walletconnect/utils" "2.21.1"
+ "@walletconnect/sign-client" "2.21.4"
+ "@walletconnect/types" "2.21.4"
+ "@walletconnect/universal-provider" "2.21.4"
+ "@walletconnect/utils" "2.21.4"
events "3.3.0"
-"@walletconnect/ethereum-provider@^2.1.2", "@walletconnect/ethereum-provider@^2.15.1", "@walletconnect/ethereum-provider@^2.4.7":
- version "2.21.4"
- resolved "https://registry.npmjs.org/@walletconnect/ethereum-provider/-/ethereum-provider-2.21.4.tgz"
- integrity sha512-PZBJKcoPfaHiGBXlVwXZEHSXuivqzflzHv+3fpXr6MvHYW/uho5ZdgnHw54EE0jJ0j4Z9h+07PnMjiDFuKjKWA==
+"@walletconnect/ethereum-provider@2.21.1":
+ version "2.21.1"
+ resolved "https://registry.npmjs.org/@walletconnect/ethereum-provider/-/ethereum-provider-2.21.1.tgz"
+ integrity sha512-SSlIG6QEVxClgl1s0LMk4xr2wg4eT3Zn/Hb81IocyqNSGfXpjtawWxKxiC5/9Z95f1INyBD6MctJbL/R1oBwIw==
dependencies:
"@reown/appkit" "1.7.8"
"@walletconnect/jsonrpc-http-connection" "1.0.8"
@@ -5999,13 +5618,13 @@
"@walletconnect/jsonrpc-types" "1.0.4"
"@walletconnect/jsonrpc-utils" "1.0.8"
"@walletconnect/keyvaluestorage" "1.1.1"
- "@walletconnect/sign-client" "2.21.4"
- "@walletconnect/types" "2.21.4"
- "@walletconnect/universal-provider" "2.21.4"
- "@walletconnect/utils" "2.21.4"
+ "@walletconnect/sign-client" "2.21.1"
+ "@walletconnect/types" "2.21.1"
+ "@walletconnect/universal-provider" "2.21.1"
+ "@walletconnect/utils" "2.21.1"
events "3.3.0"
-"@walletconnect/events@1.0.1", "@walletconnect/events@^1.0.1":
+"@walletconnect/events@^1.0.1", "@walletconnect/events@1.0.1":
version "1.0.1"
resolved "https://registry.npmjs.org/@walletconnect/events/-/events-1.0.1.tgz"
integrity sha512-NPTqaoi0oPBVNuLv7qPaJazmGHs5JGyO8eEAk5VGKmJzDR7AHzD4k6ilox5kxk1iwiOnFopBOOMLs86Oa76HpQ==
@@ -6041,7 +5660,7 @@
"@walletconnect/safe-json" "^1.0.2"
events "^3.3.0"
-"@walletconnect/jsonrpc-types@1.0.4", "@walletconnect/jsonrpc-types@^1.0.2", "@walletconnect/jsonrpc-types@^1.0.3":
+"@walletconnect/jsonrpc-types@^1.0.2", "@walletconnect/jsonrpc-types@^1.0.3", "@walletconnect/jsonrpc-types@1.0.4":
version "1.0.4"
resolved "https://registry.npmjs.org/@walletconnect/jsonrpc-types/-/jsonrpc-types-1.0.4.tgz"
integrity sha512-P6679fG/M+wuWg9TY8mh6xFSdYnFyFjwFelxyISxMDrlbXokorEVXYOxiqEbrU3x1BmBoCAJJ+vtEaEoMlpCBQ==
@@ -6049,7 +5668,7 @@
events "^3.3.0"
keyvaluestorage-interface "^1.0.0"
-"@walletconnect/jsonrpc-utils@1.0.8", "@walletconnect/jsonrpc-utils@^1.0.6", "@walletconnect/jsonrpc-utils@^1.0.8":
+"@walletconnect/jsonrpc-utils@^1.0.6", "@walletconnect/jsonrpc-utils@^1.0.8", "@walletconnect/jsonrpc-utils@1.0.8":
version "1.0.8"
resolved "https://registry.npmjs.org/@walletconnect/jsonrpc-utils/-/jsonrpc-utils-1.0.8.tgz"
integrity sha512-vdeb03bD8VzJUL6ZtzRYsFMq1eZQcM3EAzT0a3st59dyLfJ0wq+tKMpmGH7HlB7waD858UWgfIcudbPFsbzVdw==
@@ -6128,7 +5747,7 @@
"@walletconnect/time" "^1.0.2"
uint8arrays "^3.0.0"
-"@walletconnect/safe-json@1.0.2", "@walletconnect/safe-json@^1.0.1", "@walletconnect/safe-json@^1.0.2":
+"@walletconnect/safe-json@^1.0.1", "@walletconnect/safe-json@^1.0.2", "@walletconnect/safe-json@1.0.2":
version "1.0.2"
resolved "https://registry.npmjs.org/@walletconnect/safe-json/-/safe-json-1.0.2.tgz"
integrity sha512-Ogb7I27kZ3LPC3ibn8ldyUr5544t3/STow9+lzz7Sfo808YD7SBWk7SAsdBFlYgP2zDRy2hS3sKRcuSRM0OTmA==
@@ -6180,7 +5799,7 @@
"@walletconnect/utils" "2.21.4"
events "3.3.0"
-"@walletconnect/time@1.0.2", "@walletconnect/time@^1.0.2":
+"@walletconnect/time@^1.0.2", "@walletconnect/time@1.0.2":
version "1.0.2"
resolved "https://registry.npmjs.org/@walletconnect/time/-/time-1.0.2.tgz"
integrity sha512-uzdd9woDcJ1AaBZRhqy5rNC9laqWGErfc4dxA9a87mPdKOgWMD85mcFo9dIYIts/Jwocfwn07EC6EzclKubk/g==
@@ -6349,7 +5968,7 @@
uint8arrays "3.1.1"
viem "2.31.0"
-"@walletconnect/window-getters@1.0.1", "@walletconnect/window-getters@^1.0.1":
+"@walletconnect/window-getters@^1.0.1", "@walletconnect/window-getters@1.0.1":
version "1.0.1"
resolved "https://registry.npmjs.org/@walletconnect/window-getters/-/window-getters-1.0.1.tgz"
integrity sha512-vHp+HqzGxORPAN8gY03qnbTMnhqIwjeRJNOMOAzePRg4xVEEE2WvYsI9G2NMjOknA8hnuYbU3/hwLcKbjhc8+Q==
@@ -6399,7 +6018,7 @@ abi-wan-kanabi@^2.2.3:
fs-extra "^10.0.0"
yargs "^17.7.2"
-abitype@1.0.8, abitype@^1.0.6, abitype@^1.0.8:
+abitype@^1.0.6, abitype@^1.0.8, abitype@1.0.8:
version "1.0.8"
resolved "https://registry.npmjs.org/abitype/-/abitype-1.0.8.tgz"
integrity sha512-ZeiI6h3GnW06uYDLx0etQtX/p8E24UaHHBj57RSjK7YBFe7iuVn07EDpOeP451D06sF27VOz9JJPlIKJmXgkEg==
@@ -6528,7 +6147,17 @@ ansi-styles@^5.0.0:
resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz"
integrity sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==
-ansi-styles@^6.0.0, ansi-styles@^6.1.0, ansi-styles@^6.2.1:
+ansi-styles@^6.0.0:
+ version "6.2.1"
+ resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz"
+ integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==
+
+ansi-styles@^6.1.0:
+ version "6.2.1"
+ resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz"
+ integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==
+
+ansi-styles@^6.2.1:
version "6.2.1"
resolved "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz"
integrity sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==
@@ -6726,6 +6355,15 @@ available-typed-arrays@^1.0.7:
dependencies:
possible-typed-array-names "^1.0.0"
+axios@^1.8.3:
+ version "1.11.0"
+ resolved "https://registry.npmjs.org/axios/-/axios-1.11.0.tgz"
+ integrity sha512-1Lx3WLFQWm3ooKDYZD1eXmoGO9fxYQjrycfHFC8P0sCfQVXyROp0p9PFWBehewBOdCwHc+f/b8I0fMto5eSfwA==
+ dependencies:
+ follow-redirects "^1.15.6"
+ form-data "^4.0.4"
+ proxy-from-env "^1.1.0"
+
axios@1.10.0:
version "1.10.0"
resolved "https://registry.npmjs.org/axios/-/axios-1.10.0.tgz"
@@ -6735,15 +6373,6 @@ axios@1.10.0:
form-data "^4.0.0"
proxy-from-env "^1.1.0"
-axios@^1.8.3:
- version "1.11.0"
- resolved "https://registry.yarnpkg.com/axios/-/axios-1.11.0.tgz#c2ec219e35e414c025b2095e8b8280278478fdb6"
- integrity sha512-1Lx3WLFQWm3ooKDYZD1eXmoGO9fxYQjrycfHFC8P0sCfQVXyROp0p9PFWBehewBOdCwHc+f/b8I0fMto5eSfwA==
- dependencies:
- follow-redirects "^1.15.6"
- form-data "^4.0.4"
- proxy-from-env "^1.1.0"
-
babel-plugin-macros@^3.1.0:
version "3.1.0"
resolved "https://registry.npmjs.org/babel-plugin-macros/-/babel-plugin-macros-3.1.0.tgz"
@@ -6785,16 +6414,16 @@ base64-arraybuffer@^1.0.2:
resolved "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-1.0.2.tgz"
integrity sha512-I3yl4r9QB5ZRY3XuJVEPfc2XhZO6YweFPI+UovAzn+8/hb3oJ6lnysaFcjVpkCPfVWFUDvoZ8kmVDP7WyRtYtQ==
-base64-js@0.0.8:
- version "0.0.8"
- resolved "https://registry.npmjs.org/base64-js/-/base64-js-0.0.8.tgz"
- integrity sha512-3XSA2cR/h/73EzlXXdU6YNycmYI7+kicTxks4eJg2g39biHR84slg2+des+p7iHYhbRg/udIS4TD53WabcOUkw==
-
base64-js@^1.3.0, base64-js@^1.3.1, base64-js@^1.5.1:
version "1.5.1"
resolved "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz"
integrity sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==
+base64-js@0.0.8:
+ version "0.0.8"
+ resolved "https://registry.npmjs.org/base64-js/-/base64-js-0.0.8.tgz"
+ integrity sha512-3XSA2cR/h/73EzlXXdU6YNycmYI7+kicTxks4eJg2g39biHR84slg2+des+p7iHYhbRg/udIS4TD53WabcOUkw==
+
basic-ftp@^5.0.2:
version "5.0.5"
resolved "https://registry.npmjs.org/basic-ftp/-/basic-ftp-5.0.5.tgz"
@@ -6850,12 +6479,12 @@ blakejs@1.2.1:
resolved "https://registry.npmjs.org/blakejs/-/blakejs-1.2.1.tgz"
integrity sha512-QXUSXI3QVc/gJME0dBpXrag1kbzOqCjCX8/b54ntNyW6sjtoqxqRk3LTmXzaJoh71zMsDCjM+47jS7XiwN/+fQ==
-bn.js@4.11.6:
- version "4.11.6"
- resolved "https://registry.npmjs.org/bn.js/-/bn.js-4.11.6.tgz"
- integrity sha512-XWwnNNFCuuSQ0m3r3C4LE3EiORltHd9M05pq6FOlVeiophzRbMo50Sbz1ehl8K3Z+jw9+vmgnXefY1hz8X+2wA==
+bn.js@^4.0.0:
+ version "4.12.2"
+ resolved "https://registry.npmjs.org/bn.js/-/bn.js-4.12.2.tgz"
+ integrity sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw==
-bn.js@^4.0.0, bn.js@^4.11.9:
+bn.js@^4.11.9:
version "4.12.2"
resolved "https://registry.npmjs.org/bn.js/-/bn.js-4.12.2.tgz"
integrity sha512-n4DSx829VRTRByMRGdjQ9iqsN0Bh4OolPsFnaZBLcbi8iXcB+kJ9s7EnRt4wILZNV3kPLHkRVfOc/HvhC3ovDw==
@@ -6865,6 +6494,11 @@ bn.js@^5.2.0, bn.js@^5.2.1:
resolved "https://registry.npmjs.org/bn.js/-/bn.js-5.2.2.tgz"
integrity sha512-v2YAxEmKaBLahNwE1mjp4WON6huMNeuDvagFZW+ASCuA/ku0bXR9hSMw0XpiqMoA3+rmnyck/tPRSFQkoC9Cuw==
+bn.js@4.11.6:
+ version "4.11.6"
+ resolved "https://registry.npmjs.org/bn.js/-/bn.js-4.11.6.tgz"
+ integrity sha512-XWwnNNFCuuSQ0m3r3C4LE3EiORltHd9M05pq6FOlVeiophzRbMo50Sbz1ehl8K3Z+jw9+vmgnXefY1hz8X+2wA==
+
boolbase@^1.0.0:
version "1.0.0"
resolved "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz"
@@ -6926,14 +6560,14 @@ browserslist@^4.24.4:
node-releases "^2.0.19"
update-browserslist-db "^1.1.3"
-bs58@6.0.0:
- version "6.0.0"
- resolved "https://registry.npmjs.org/bs58/-/bs58-6.0.0.tgz"
- integrity sha512-PD0wEnEYg6ijszw/u8s+iI3H17cTymlrwkKhDhPZq+Sokl3AU4htyBFTjAeNAlCCmg0f53g6ih3jATyCKftTfw==
+bs58@^4.0.0:
+ version "4.0.1"
+ resolved "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz"
+ integrity sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==
dependencies:
- base-x "^5.0.0"
+ base-x "^3.0.2"
-bs58@^4.0.0, bs58@^4.0.1:
+bs58@^4.0.1:
version "4.0.1"
resolved "https://registry.npmjs.org/bs58/-/bs58-4.0.1.tgz"
integrity sha512-Ok3Wdf5vOIlBrgCvTq96gBkJw+JUEzdBgyaza5HLtPm7yTHkjRy8+JzNyHF7BHa0bNWOQIp3m5YF0nnFcOIKLw==
@@ -6947,19 +6581,18 @@ bs58@^5.0.0:
dependencies:
base-x "^4.0.0"
+bs58@6.0.0:
+ version "6.0.0"
+ resolved "https://registry.npmjs.org/bs58/-/bs58-6.0.0.tgz"
+ integrity sha512-PD0wEnEYg6ijszw/u8s+iI3H17cTymlrwkKhDhPZq+Sokl3AU4htyBFTjAeNAlCCmg0f53g6ih3jATyCKftTfw==
+ dependencies:
+ base-x "^5.0.0"
+
buffer-equal-constant-time@^1.0.1:
version "1.0.1"
resolved "https://registry.npmjs.org/buffer-equal-constant-time/-/buffer-equal-constant-time-1.0.1.tgz"
integrity sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==
-buffer@6.0.3, buffer@^6.0.3, buffer@~6.0.3:
- version "6.0.3"
- resolved "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz"
- integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==
- dependencies:
- base64-js "^1.3.1"
- ieee754 "^1.2.1"
-
buffer@^5.5.0:
version "5.7.1"
resolved "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz"
@@ -6968,6 +6601,14 @@ buffer@^5.5.0:
base64-js "^1.3.1"
ieee754 "^1.1.13"
+buffer@^6.0.3, buffer@~6.0.3, buffer@6.0.3:
+ version "6.0.3"
+ resolved "https://registry.npmjs.org/buffer/-/buffer-6.0.3.tgz"
+ integrity sha512-FTiCpNxtwiZZHEZbcbTIcZjERVICn9yq/pDFkTl95/AxzD1naBctN7YO68riM/gLSDY7sdrMby8hofADYuuqOA==
+ dependencies:
+ base64-js "^1.3.1"
+ ieee754 "^1.2.1"
+
bufferutil@^4.0.1, bufferutil@^4.0.8:
version "4.0.9"
resolved "https://registry.npmjs.org/bufferutil/-/bufferutil-4.0.9.tgz"
@@ -7079,7 +6720,7 @@ chai@^4.3.10:
pathval "^1.1.1"
type-detect "^4.1.0"
-chalk@4.1.2, chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.1:
+chalk@^4.0.0, chalk@^4.1.0, chalk@^4.1.1, chalk@4.1.2:
version "4.1.2"
resolved "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz"
integrity sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==
@@ -7261,22 +6902,27 @@ clone@^1.0.2:
resolved "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz"
integrity sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==
-clsx@1.2.1, clsx@^1.2.1:
+clsx@^1.2.1:
version "1.2.1"
resolved "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz"
integrity sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==
-clsx@2.1.1, clsx@^2.0.0, clsx@^2.1.1:
+clsx@^2.0.0, clsx@^2.1.1, clsx@2.1.1:
version "2.1.1"
resolved "https://registry.npmjs.org/clsx/-/clsx-2.1.1.tgz"
integrity sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==
+clsx@1.2.1:
+ version "1.2.1"
+ resolved "https://registry.npmjs.org/clsx/-/clsx-1.2.1.tgz"
+ integrity sha512-EcR6r5a8bj6pu3ycsa/E/cKVGuTgZJZdsyUYHOksG/UHIiKfjxzRxYJpyVBwYaQeOvghal9fcc4PidlgzugAQg==
+
cmd-shim@^7.0.0:
version "7.0.0"
resolved "https://registry.npmjs.org/cmd-shim/-/cmd-shim-7.0.0.tgz"
integrity sha512-rtpaCbr164TPPh+zFdkWpCyZuKkjpAzODfaZCf/SVJZzJN+4bHQb/LP3Jzq5/+84um3XXY8r548XiWKSborwVw==
-cmdk@0.2.1, cmdk@^0.2.0:
+cmdk@^0.2.0, cmdk@0.2.1:
version "0.2.1"
resolved "https://registry.npmjs.org/cmdk/-/cmdk-0.2.1.tgz"
integrity sha512-U6//9lQ6JvT47+6OF6Gi8BvkxYQ8SCRRSKIJkthIMsFsLZRG0cKvTtuTaefyIKMQb8rvvXy0wGdpTNq/jPtm+g==
@@ -7333,11 +6979,6 @@ comma-separated-tokens@^2.0.0:
resolved "https://registry.npmjs.org/comma-separated-tokens/-/comma-separated-tokens-2.0.3.tgz"
integrity sha512-Fu4hJdvzeylCfQPp9SGWidpzrMs7tTrlu6Vb8XGaRGck8QSNZJJp538Wrb60Lax4fPwR64ViY468OIUTbRlGZg==
-commander@8.3.0:
- version "8.3.0"
- resolved "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz"
- integrity sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==
-
commander@^13.1.0:
version "13.1.0"
resolved "https://registry.npmjs.org/commander/-/commander-13.1.0.tgz"
@@ -7358,6 +6999,11 @@ commander@^7.2.0:
resolved "https://registry.npmjs.org/commander/-/commander-7.2.0.tgz"
integrity sha512-QrWXB+ZQSVPmIWIhtEO9H+gwHaMGYiF5ChvoJ+K9ZGHG/sVsa6yiesAD1GC/x46sET00Xlwo1u49RVVVzvcSkw==
+commander@8.3.0:
+ version "8.3.0"
+ resolved "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz"
+ integrity sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==
+
compare-versions@4.1.4:
version "4.1.4"
resolved "https://registry.npmjs.org/compare-versions/-/compare-versions-4.1.4.tgz"
@@ -7414,10 +7060,10 @@ cookie-es@^1.2.2:
resolved "https://registry.npmjs.org/cookie-es/-/cookie-es-1.2.2.tgz"
integrity sha512-+W7VmiVINB+ywl1HGXJXmrqkOhpKrIiVZV6tQuV54ZyQC7MMuBt81Vc336GMLoHBq5hV/F9eXgt5Mnx0Rha5Fg==
-cookie@0.7.0, cookie@^0.5.0:
- version "0.7.0"
- resolved "https://registry.yarnpkg.com/cookie/-/cookie-0.7.0.tgz#2148f68a77245d5c2c0005d264bc3e08cfa0655d"
- integrity sha512-qCf+V4dtlNhSRXGAZatc1TasyFO6GjohcOul807YOb5ik3+kQSnb4d7iajeCL8QHaJ4uZEjCgiCJerKXwdRVlQ==
+cookie@^0.5.0:
+ version "0.5.0"
+ resolved "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz"
+ integrity sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==
core-util-is@~1.0.0:
version "1.0.3"
@@ -7523,7 +7169,7 @@ css-selector-parser@^3.0.0:
resolved "https://registry.npmjs.org/css-selector-parser/-/css-selector-parser-3.1.3.tgz"
integrity sha512-gJMigczVZqYAk0hPVzx/M4Hm1D9QOtqkdQk9005TNzDIUGzo5cnHEDiKUT7jGPximL/oYb+LIitcHFQ4aKupxg==
-css-to-react-native@3.2.0, css-to-react-native@^3.0.0:
+css-to-react-native@^3.0.0, css-to-react-native@3.2.0:
version "3.2.0"
resolved "https://registry.npmjs.org/css-to-react-native/-/css-to-react-native-3.2.0.tgz"
integrity sha512-e8RKaLXMOFii+02mOlqwjbD00KSEKqblnpO9e++1aXS1fPQOpS1YoqdVHBqPjHNoxeF2mimzVqawm2KCbEdtHQ==
@@ -7550,7 +7196,7 @@ cssstyle@^4.2.1:
"@asamuzakjp/css-color" "^3.2.0"
rrweb-cssom "^0.8.0"
-csstype@3.1.3, csstype@^3.0.2, csstype@^3.0.7, csstype@^3.1.3:
+csstype@^3.0.2, csstype@^3.0.7, csstype@^3.1.3, csstype@3.1.3:
version "3.1.3"
resolved "https://registry.npmjs.org/csstype/-/csstype-3.1.3.tgz"
integrity sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==
@@ -7562,7 +7208,7 @@ cuer@0.0.2:
dependencies:
qr "~0"
-d@1, d@^1.0.1, d@^1.0.2:
+d@^1.0.1, d@^1.0.2, d@1:
version "1.0.2"
resolved "https://registry.npmjs.org/d/-/d-1.0.2.tgz"
integrity sha512-MOqHvMWF9/9MX6nza0KgvFH4HpMU0EF5uUDXqX/BtxtU8NfB0QzRtJ8Oe/6SuS4kbhyzVJwjd97EA4PKrzJ8bw==
@@ -7637,21 +7283,28 @@ debounce@^1.2.1:
resolved "https://registry.npmjs.org/debounce/-/debounce-1.2.1.tgz"
integrity sha512-XRRe6Glud4rd/ZGQfiV1ruXSfbvfJedlV9Y6zOlP+2K04vBYiJEte6stfFkCP03aMnY5tsipamumUjL14fofug==
-debug@4, debug@^4.0.0, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4, debug@^4.4.0:
+debug@^2.2.0:
+ version "2.6.9"
+ resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"
+ integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
+ dependencies:
+ ms "2.0.0"
+
+debug@^4.0.0, debug@^4.3.1, debug@^4.3.2, debug@^4.3.4, debug@^4.4.0, debug@4:
version "4.4.1"
resolved "https://registry.npmjs.org/debug/-/debug-4.4.1.tgz"
integrity sha512-KcKCqiftBJcZr++7ykoDIEwSa3XWowTfNPo92BYxjXiyYEVrUQh2aLyhxBCwww+heortUFxEJYcRzosstTEBYQ==
dependencies:
ms "^2.1.3"
-debug@^2.2.0:
- version "2.6.9"
- resolved "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz"
- integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==
+debug@~4.3.1:
+ version "4.3.7"
+ resolved "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz"
+ integrity sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==
dependencies:
- ms "2.0.0"
+ ms "^2.1.3"
-debug@~4.3.1, debug@~4.3.2:
+debug@~4.3.2:
version "4.3.7"
resolved "https://registry.npmjs.org/debug/-/debug-4.3.7.tgz"
integrity sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==
@@ -7771,7 +7424,7 @@ destr@^2.0.3, destr@^2.0.5:
resolved "https://registry.npmjs.org/destr/-/destr-2.0.5.tgz"
integrity sha512-ugFTXCtDZunbzasqBxrK93Ik/DRYsO6S/fedkWEMKqt04xZ4csmnmwGDBAb07QWNaGMAmnTIemsYZCksjATwsA==
-detect-browser@5.3.0, detect-browser@^5.2.0:
+detect-browser@^5.2.0, detect-browser@5.3.0:
version "5.3.0"
resolved "https://registry.npmjs.org/detect-browser/-/detect-browser-5.3.0.tgz"
integrity sha512-53rsFbGdwMwlF7qvCt0ypLM5V5/Mbl0szB7GPN8y9NCcbknYOeVVXdrXEq+90IwAfrrzt6Hd+u2E2ntakICU8w==
@@ -7935,7 +7588,7 @@ easy-table@1.1.0:
optionalDependencies:
wcwidth ">=1.0.1"
-ecdsa-sig-formatter@1.0.11, ecdsa-sig-formatter@^1.0.11:
+ecdsa-sig-formatter@^1.0.11, ecdsa-sig-formatter@1.0.11:
version "1.0.11"
resolved "https://registry.npmjs.org/ecdsa-sig-formatter/-/ecdsa-sig-formatter-1.0.11.tgz"
integrity sha512-nagl3RYrbNv6kQkeJIpt6NJZy8twLB/2vtz6yN9Z4vRKHN4/QZJIEbqohALSgwKdnksuY3k5Addp5lg8sVoVcQ==
@@ -8236,36 +7889,34 @@ es6-symbol@^3.1.1, es6-symbol@^3.1.3:
d "^1.0.2"
ext "^1.7.0"
-esbuild@0.25.0, esbuild@^0.21.3:
- version "0.25.0"
- resolved "https://registry.yarnpkg.com/esbuild/-/esbuild-0.25.0.tgz#0de1787a77206c5a79eeb634a623d39b5006ce92"
- integrity sha512-BXq5mqc8ltbaN34cDqWuYKyNhX8D/Z0J1xdtdQ8UcIIIyJyz+ZMKUt58tF3SrZ85jcfN/PZYhjR5uDQAYNVbuw==
+esbuild@^0.21.3:
+ version "0.21.5"
+ resolved "https://registry.npmjs.org/esbuild/-/esbuild-0.21.5.tgz"
+ integrity sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==
optionalDependencies:
- "@esbuild/aix-ppc64" "0.25.0"
- "@esbuild/android-arm" "0.25.0"
- "@esbuild/android-arm64" "0.25.0"
- "@esbuild/android-x64" "0.25.0"
- "@esbuild/darwin-arm64" "0.25.0"
- "@esbuild/darwin-x64" "0.25.0"
- "@esbuild/freebsd-arm64" "0.25.0"
- "@esbuild/freebsd-x64" "0.25.0"
- "@esbuild/linux-arm" "0.25.0"
- "@esbuild/linux-arm64" "0.25.0"
- "@esbuild/linux-ia32" "0.25.0"
- "@esbuild/linux-loong64" "0.25.0"
- "@esbuild/linux-mips64el" "0.25.0"
- "@esbuild/linux-ppc64" "0.25.0"
- "@esbuild/linux-riscv64" "0.25.0"
- "@esbuild/linux-s390x" "0.25.0"
- "@esbuild/linux-x64" "0.25.0"
- "@esbuild/netbsd-arm64" "0.25.0"
- "@esbuild/netbsd-x64" "0.25.0"
- "@esbuild/openbsd-arm64" "0.25.0"
- "@esbuild/openbsd-x64" "0.25.0"
- "@esbuild/sunos-x64" "0.25.0"
- "@esbuild/win32-arm64" "0.25.0"
- "@esbuild/win32-ia32" "0.25.0"
- "@esbuild/win32-x64" "0.25.0"
+ "@esbuild/aix-ppc64" "0.21.5"
+ "@esbuild/android-arm" "0.21.5"
+ "@esbuild/android-arm64" "0.21.5"
+ "@esbuild/android-x64" "0.21.5"
+ "@esbuild/darwin-arm64" "0.21.5"
+ "@esbuild/darwin-x64" "0.21.5"
+ "@esbuild/freebsd-arm64" "0.21.5"
+ "@esbuild/freebsd-x64" "0.21.5"
+ "@esbuild/linux-arm" "0.21.5"
+ "@esbuild/linux-arm64" "0.21.5"
+ "@esbuild/linux-ia32" "0.21.5"
+ "@esbuild/linux-loong64" "0.21.5"
+ "@esbuild/linux-mips64el" "0.21.5"
+ "@esbuild/linux-ppc64" "0.21.5"
+ "@esbuild/linux-riscv64" "0.21.5"
+ "@esbuild/linux-s390x" "0.21.5"
+ "@esbuild/linux-x64" "0.21.5"
+ "@esbuild/netbsd-x64" "0.21.5"
+ "@esbuild/openbsd-x64" "0.21.5"
+ "@esbuild/sunos-x64" "0.21.5"
+ "@esbuild/win32-arm64" "0.21.5"
+ "@esbuild/win32-ia32" "0.21.5"
+ "@esbuild/win32-x64" "0.21.5"
escalade@^3.1.1, escalade@^3.2.0:
version "3.2.0"
@@ -8592,17 +8243,17 @@ eventemitter2@^6.4.9:
resolved "https://registry.npmjs.org/eventemitter2/-/eventemitter2-6.4.9.tgz"
integrity sha512-JEPTiaOt9f04oa6NOkc4aH+nVp5I3wEjpHbIPqfgCdD5v5bUzy7xQqwcVO2aDQgOWhI28da57HksMrzK9HlRxg==
+eventemitter3@^5.0.1, eventemitter3@5.0.1:
+ version "5.0.1"
+ resolved "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz"
+ integrity sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==
+
eventemitter3@4.0.4:
version "4.0.4"
resolved "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.4.tgz"
integrity sha512-rlaVLnVxtxvoyLsQQFBx53YmXHDxRIzzTLbdfxqi4yocpSjAxXwkU0cScM5JgSKMqEhrZpnvQ2D9gjylR0AimQ==
-eventemitter3@5.0.1, eventemitter3@^5.0.1:
- version "5.0.1"
- resolved "https://registry.npmjs.org/eventemitter3/-/eventemitter3-5.0.1.tgz"
- integrity sha512-GWkBvjiSZK87ELrYOSESUYeVIc9mvLLf/nXalMOS5dYrgZq9o5OVkbZAVM06CVxYsCwH9BDZFPlQTlPA1j4ahA==
-
-events@3.3.0, events@^3.3.0:
+events@^3.3.0, events@3.3.0:
version "3.3.0"
resolved "https://registry.npmjs.org/events/-/events-3.3.0.tgz"
integrity sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==
@@ -8709,7 +8360,7 @@ fast-redact@^3.0.0:
resolved "https://registry.npmjs.org/fast-redact/-/fast-redact-3.5.0.tgz"
integrity sha512-dwsoQlS7h9hMeYUq1W++23NDcBLV4KqONnITDV9DjfS3q1SgDGVrBdvvTLUotWtPSD7asWDV9/CmsZPy8Hf70A==
-fast-safe-stringify@2.1.1, fast-safe-stringify@^2.0.6, fast-safe-stringify@^2.1.1:
+fast-safe-stringify@^2.0.6, fast-safe-stringify@^2.1.1, fast-safe-stringify@2.1.1:
version "2.1.1"
resolved "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-2.1.1.tgz"
integrity sha512-W+KJc2dmILlPplD/H4K9l9LcAHAfPtP6BY84uVLXQ6Evcz9Lcg33Y2z1IVblT6xdY54PXYVHEv+0Wpq8Io6zkA==
@@ -8871,7 +8522,7 @@ form-data@^4.0.0:
form-data@^4.0.4:
version "4.0.4"
- resolved "https://registry.yarnpkg.com/form-data/-/form-data-4.0.4.tgz#784cdcce0669a9d68e94d11ac4eea98088edd2c4"
+ resolved "https://registry.npmjs.org/form-data/-/form-data-4.0.4.tgz"
integrity sha512-KrGhL9Q4zjj0kiUt5OO4Mr/A/jlI2jDYs5eHBpYHPcBEVSiipAvn2Ko2HnPe20rmcuuvMHNdZFp+4IlGTMF0Ow==
dependencies:
asynckit "^0.4.0"
@@ -8927,19 +8578,19 @@ frames.js@^0.22.0:
viem "^2.7.8"
zod "^3.24.1"
-fs-extra@11.3.0:
- version "11.3.0"
- resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.0.tgz"
- integrity sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==
+fs-extra@^10.0.0:
+ version "10.1.0"
+ resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz"
+ integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==
dependencies:
graceful-fs "^4.2.0"
jsonfile "^6.0.1"
universalify "^2.0.0"
-fs-extra@^10.0.0:
- version "10.1.0"
- resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz"
- integrity sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==
+fs-extra@11.3.0:
+ version "11.3.0"
+ resolved "https://registry.npmjs.org/fs-extra/-/fs-extra-11.3.0.tgz"
+ integrity sha512-Z4XaCL6dUDHfP/jT25jJKMmtxvuwbkrD1vNSMFlo9lNLY2c5FHYSQgHPRZUjAB26TpDEoW9HCOgplrdbaPV/ew==
dependencies:
graceful-fs "^4.2.0"
jsonfile "^6.0.1"
@@ -8950,11 +8601,6 @@ fs.realpath@^1.0.0:
resolved "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz"
integrity sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==
-fsevents@~2.3.2, fsevents@~2.3.3:
- version "2.3.3"
- resolved "https://registry.npmjs.org/fsevents/-/fsevents-2.3.3.tgz"
- integrity sha512-5xoDfX+fL7faATnagmWPpbFtwh/R77WmMMqqHGS65C3vvB0YHrgF+B1YmZ3441tMj5n63k0212XNoJwzlhffQw==
-
function-bind@^1.1.2:
version "1.1.2"
resolved "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz"
@@ -9083,7 +8729,7 @@ glob-parent@^6.0.2:
dependencies:
is-glob "^4.0.3"
-glob@10.3.10, glob@^10.3.10:
+glob@^10.3.10, glob@10.3.10:
version "10.3.10"
resolved "https://registry.npmjs.org/glob/-/glob-10.3.10.tgz"
integrity sha512-fa46+tv1Ak0UPK1TOy/pZrIybNNt4HCv7SDzwyfiOZkvZLEbjsZkJBPtDHVshZjbecAoAGSC20MjLDG/qr679g==
@@ -9094,18 +8740,6 @@ glob@10.3.10, glob@^10.3.10:
minipass "^5.0.0 || ^6.0.2 || ^7.0.0"
path-scurry "^1.10.1"
-glob@11.0.3:
- version "11.0.3"
- resolved "https://registry.npmjs.org/glob/-/glob-11.0.3.tgz"
- integrity sha512-2Nim7dha1KVkaiF4q6Dj+ngPPMdfvLJEOpZk/jKiUAkqKebpGAWQXAq9z1xu9HKu5lWfqw/FASuccEjyznjPaA==
- dependencies:
- foreground-child "^3.3.1"
- jackspeak "^4.1.1"
- minimatch "^10.0.3"
- minipass "^7.1.2"
- package-json-from-dist "^1.0.0"
- path-scurry "^2.0.0"
-
glob@^7.1.3:
version "7.2.3"
resolved "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz"
@@ -9118,7 +8752,19 @@ glob@^7.1.3:
once "^1.3.0"
path-is-absolute "^1.0.0"
-global@4.4.0, global@^4.3.1, global@^4.4.0, global@~4.4.0:
+glob@11.0.3:
+ version "11.0.3"
+ resolved "https://registry.npmjs.org/glob/-/glob-11.0.3.tgz"
+ integrity sha512-2Nim7dha1KVkaiF4q6Dj+ngPPMdfvLJEOpZk/jKiUAkqKebpGAWQXAq9z1xu9HKu5lWfqw/FASuccEjyznjPaA==
+ dependencies:
+ foreground-child "^3.3.1"
+ jackspeak "^4.1.1"
+ minimatch "^10.0.3"
+ minipass "^7.1.2"
+ package-json-from-dist "^1.0.0"
+ path-scurry "^2.0.0"
+
+global@^4.3.1, global@^4.4.0, global@~4.4.0, global@4.4.0:
version "4.4.0"
resolved "https://registry.npmjs.org/global/-/global-4.4.0.tgz"
integrity sha512-wv/LAoHdRE3BeTGz53FAamhGlPLhlssK45usmGFThIi4XqnBmjKQ16u+RNbP7WvigRZDxUsM0J3gcQ5yicaL0w==
@@ -9293,7 +8939,7 @@ has-tostringtag@^1.0.2:
dependencies:
has-symbols "^1.0.3"
-hash.js@1.1.7, hash.js@^1.0.0, hash.js@^1.0.3:
+hash.js@^1.0.0, hash.js@^1.0.3, hash.js@1.1.7:
version "1.1.7"
resolved "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz"
integrity sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==
@@ -9581,6 +9227,11 @@ htmlparser2@^10.0.0:
domutils "^3.2.1"
entities "^6.0.0"
+http_ece@1.2.0:
+ version "1.2.0"
+ resolved "https://registry.npmjs.org/http_ece/-/http_ece-1.2.0.tgz"
+ integrity sha512-JrF8SSLVmcvc5NducxgyOrKXe3EsyHMgBFgSaIUGmArKe+rwr0uphRkRXvwiom3I+fpIfoItveHrfudL8/rxuA==
+
http-https@^1.0.0:
version "1.0.0"
resolved "https://registry.npmjs.org/http-https/-/http-https-1.0.0.tgz"
@@ -9594,11 +9245,6 @@ http-proxy-agent@^7.0.0, http-proxy-agent@^7.0.1, http-proxy-agent@^7.0.2:
agent-base "^7.1.0"
debug "^4.3.4"
-http_ece@1.2.0:
- version "1.2.0"
- resolved "https://registry.npmjs.org/http_ece/-/http_ece-1.2.0.tgz"
- integrity sha512-JrF8SSLVmcvc5NducxgyOrKXe3EsyHMgBFgSaIUGmArKe+rwr0uphRkRXvwiom3I+fpIfoItveHrfudL8/rxuA==
-
https-proxy-agent@^7.0.0, https-proxy-agent@^7.0.1, https-proxy-agent@^7.0.2, https-proxy-agent@^7.0.6:
version "7.0.6"
resolved "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.6.tgz"
@@ -9624,13 +9270,6 @@ husky@^9.0.11:
resolved "https://registry.npmjs.org/husky/-/husky-9.1.7.tgz"
integrity sha512-5gs5ytaNjBrh5Ow3zrvdUUY+0VxIuWVL4i9irt6friV+BqdCfmV11CQTWMiBYWHbXhco+J1kHfTOUkePhCDvMA==
-iconv-lite@0.6.3, iconv-lite@^0.6.2, iconv-lite@^0.6.3:
- version "0.6.3"
- resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz"
- integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==
- dependencies:
- safer-buffer ">= 2.1.2 < 3.0.0"
-
iconv-lite@^0.4.24:
version "0.4.24"
resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz"
@@ -9638,16 +9277,23 @@ iconv-lite@^0.4.24:
dependencies:
safer-buffer ">= 2.1.2 < 3"
-idb-keyval@6.2.1:
- version "6.2.1"
- resolved "https://registry.yarnpkg.com/idb-keyval/-/idb-keyval-6.2.1.tgz#94516d625346d16f56f3b33855da11bfded2db33"
- integrity sha512-8Sb3veuYCyrZL+VBt9LJfZjLUPWVvqn8tG28VqYNFCo43KHcKuq+b4EiXGeuaLAQWL2YmyDgMp2aSpH9JHsEQg==
+iconv-lite@^0.6.2, iconv-lite@^0.6.3, iconv-lite@0.6.3:
+ version "0.6.3"
+ resolved "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz"
+ integrity sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==
+ dependencies:
+ safer-buffer ">= 2.1.2 < 3.0.0"
idb-keyval@^6.2.1:
version "6.2.2"
resolved "https://registry.npmjs.org/idb-keyval/-/idb-keyval-6.2.2.tgz"
integrity sha512-yjD9nARJ/jb1g+CvD0tlhUHOrJ9Sy0P8T9MF3YaLlHnSRpwPfpTX0XIvpmw3gAJUmEu3FiICLBDPXVwyEvrleg==
+idb-keyval@6.2.1:
+ version "6.2.1"
+ resolved "https://registry.npmjs.org/idb-keyval/-/idb-keyval-6.2.1.tgz"
+ integrity sha512-8Sb3veuYCyrZL+VBt9LJfZjLUPWVvqn8tG28VqYNFCo43KHcKuq+b4EiXGeuaLAQWL2YmyDgMp2aSpH9JHsEQg==
+
ieee754@^1.1.13, ieee754@^1.2.1:
version "1.2.1"
resolved "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz"
@@ -9684,7 +9330,7 @@ inflight@^1.0.4:
once "^1.3.0"
wrappy "1"
-inherits@2, inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3:
+inherits@^2.0.1, inherits@^2.0.3, inherits@^2.0.4, inherits@~2.0.3, inherits@2:
version "2.0.4"
resolved "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz"
integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==
@@ -10095,11 +9741,16 @@ isomorphic-ws@^4.0.1:
resolved "https://registry.npmjs.org/isomorphic-ws/-/isomorphic-ws-4.0.1.tgz"
integrity sha512-BhBvN2MBpWTaSHdWRb/bwdZJ1WaehQ2L1KngkCkfLUGF0mAWAT1sQUQacEmQ0jXkFw/czDXPNQSL5u2/Krsz1w==
-isows@1.0.7, isows@^1.0.7:
+isows@^1.0.7, isows@1.0.7:
version "1.0.7"
resolved "https://registry.npmjs.org/isows/-/isows-1.0.7.tgz"
integrity sha512-I1fSfDCZL5P0v33sVqeTDSpcstAg/N+wF5HS033mogOVIp4B+oHC7oOCsA3axAbBSGTJ8QubbNmnIRN/h8U7hg==
+isows@1.0.6:
+ version "1.0.6"
+ resolved "https://registry.npmjs.org/isows/-/isows-1.0.6.tgz"
+ integrity sha512-lPHCayd40oW98/I0uvgaHKWCSvkzY27LjWLbtzOm64yQ+G3Q5npjjbdppU65iZXkK1Zt+kH9pfegli0AYfwYYw==
+
iterare@1.2.1:
version "1.2.1"
resolved "https://registry.npmjs.org/iterare/-/iterare-1.2.1.tgz"
@@ -10171,16 +9822,16 @@ joycon@^3.1.1:
resolved "https://registry.npmjs.org/joycon/-/joycon-3.1.1.tgz"
integrity sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==
-js-cookie@3.0.1:
- version "3.0.1"
- resolved "https://registry.npmjs.org/js-cookie/-/js-cookie-3.0.1.tgz"
- integrity sha512-+0rgsUXZu4ncpPxRL+lNEptWMOWl9etvPHc/koSRp6MPwpRYAhmk0dUG00J4bxVV3r9uUzfo24wW0knS07SKSw==
-
js-cookie@^3.0.5:
version "3.0.5"
resolved "https://registry.npmjs.org/js-cookie/-/js-cookie-3.0.5.tgz"
integrity sha512-cEiJEAEoIbWfCZYKWhVwFuvPX1gETRYPw6LlaTKoxD3s2AkXzkCjnp6h0V77ozyqj0jakteJ4YqDJT830+lVGw==
+js-cookie@3.0.1:
+ version "3.0.1"
+ resolved "https://registry.npmjs.org/js-cookie/-/js-cookie-3.0.1.tgz"
+ integrity sha512-+0rgsUXZu4ncpPxRL+lNEptWMOWl9etvPHc/koSRp6MPwpRYAhmk0dUG00J4bxVV3r9uUzfo24wW0knS07SKSw==
+
js-sha3@0.8.0:
version "0.8.0"
resolved "https://registry.npmjs.org/js-sha3/-/js-sha3-0.8.0.tgz"
@@ -10430,18 +10081,13 @@ linkify-it@^5.0.0:
uc.micro "^2.0.0"
linkify-react@^4.1.1:
- version "4.3.1"
- resolved "https://registry.npmjs.org/linkify-react/-/linkify-react-4.3.1.tgz"
- integrity sha512-w8ahBdCwF9C/doS4V3nE93QF1oyORmosvi8UEUbpHYws077eGzhkxUzJQcE2/SU5Q2K7SD80M4ybwwZGHErx5Q==
-
-linkifyjs@^4.2.0:
- version "4.3.1"
- resolved "https://registry.npmjs.org/linkifyjs/-/linkifyjs-4.3.1.tgz"
- integrity sha512-DRSlB9DKVW04c4SUdGvKK5FR6be45lTU9M76JnngqPeeGDqPwYc0zdUErtsNVMtxPXgUWV4HbXbnC4sNyBxkYg==
+ version "4.1.1"
+ resolved "https://registry.npmjs.org/linkify-react/-/linkify-react-4.1.1.tgz"
+ integrity sha512-2K9Y1cUdvq40dFWqCJ//X+WP19nlzIVITFGI93RjLnA0M7KbnxQ/ffC3AZIZaEIrLangF9Hjt3i0GQ9/anEG5A==
-linkifyjs@^4.3.2:
+linkifyjs@^4.2.0, linkifyjs@^4.3.2:
version "4.3.2"
- resolved "https://registry.yarnpkg.com/linkifyjs/-/linkifyjs-4.3.2.tgz#d97eb45419aabf97ceb4b05a7adeb7b8c8ade2b1"
+ resolved "https://registry.npmjs.org/linkifyjs/-/linkifyjs-4.3.2.tgz"
integrity sha512-NT1CJtq3hHIreOianA8aSXn6Cw0JzYOuDQbOrSPe7gqFnCpKP++MQe3ODgO3oh2GJFORkAAdqredOa60z63GbA==
lint-staged@^15.2.5:
@@ -10572,7 +10218,7 @@ locate-path@^6.0.0:
lodash.camelcase@^4.3.0:
version "4.3.0"
- resolved "https://registry.yarnpkg.com/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz#b28aa6288a2b9fc651035c7711f65ab6190331a6"
+ resolved "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz"
integrity sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==
lodash.castarray@^4.4.0:
@@ -10607,7 +10253,7 @@ lodash.mapvalues@^4.6.0:
lodash.memoize@^4.1.2:
version "4.1.2"
- resolved "https://registry.yarnpkg.com/lodash.memoize/-/lodash.memoize-4.1.2.tgz#bcc6c49a42a2840ed997f323eada5ecd182e0bfe"
+ resolved "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz"
integrity sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==
lodash.merge@^4.6.2:
@@ -10615,9 +10261,9 @@ lodash.merge@^4.6.2:
resolved "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz"
integrity sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==
-lodash.set@4.3.2, lodash.set@^4.3.2:
+lodash.set@^4.3.2:
version "4.3.2"
- resolved "https://registry.yarnpkg.com/lodash.set/-/lodash.set-4.3.2.tgz#d8757b1da807dde24816b0d6a84bea1a76230b23"
+ resolved "https://registry.npmjs.org/lodash.set/-/lodash.set-4.3.2.tgz"
integrity sha512-4hNPN5jlm/N/HLMCO43v8BXKq9Z7QdAGc/VGrRD61w8gN9g/6jF9A4L1pbUgBLCffi0w9VsXfTOij5x8iTyFvg==
lodash.throttle@^4.1.1:
@@ -10635,7 +10281,7 @@ lodash.tostring@^4.1.4:
resolved "https://registry.npmjs.org/lodash.tostring/-/lodash.tostring-4.1.4.tgz"
integrity sha512-xWHJ0LY7cSz/C/4ghNNiYA1Ong0VLdzAzrjDHvOzN+eJHzDEHme2+k+w/9Pk8dtdwcASMUbxN1/mtj6mFI25Ng==
-lodash@4.17.21, lodash@^4.17.21:
+lodash@^4.17.21, lodash@4.17.21:
version "4.17.21"
resolved "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz"
integrity sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==
@@ -11316,7 +10962,14 @@ minimatch@^3.0.5, minimatch@^3.1.1, minimatch@^3.1.2:
dependencies:
brace-expansion "^1.1.7"
-minimatch@^9.0.1, minimatch@^9.0.4:
+minimatch@^9.0.1:
+ version "9.0.5"
+ resolved "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz"
+ integrity sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==
+ dependencies:
+ brace-expansion "^2.0.1"
+
+minimatch@^9.0.4:
version "9.0.5"
resolved "https://registry.npmjs.org/minimatch/-/minimatch-9.0.5.tgz"
integrity sha512-G6T0ZX48xgozx7587koeX9Ys2NYy6Gmv//P89sEte9V9whIapMNF4idKxnW2QtCcLiTWlb/wfCabAtAFWhhBow==
@@ -11340,7 +10993,7 @@ minizlib@^3.0.1:
dependencies:
minipass "^7.1.2"
-mipd@0.0.7, mipd@^0.0.7:
+mipd@^0.0.7, mipd@0.0.7:
version "0.0.7"
resolved "https://registry.npmjs.org/mipd/-/mipd-0.0.7.tgz"
integrity sha512-aAPZPNDQ3uMTdKbuO2YmAw2TxLHO0moa4YKAyETM/DTj5FloZo+a+8tU+iv4GmW+sOxKLSRwcSFuczk+Cpt6fg==
@@ -11409,16 +11062,16 @@ mrmime@^2.0.0:
resolved "https://registry.npmjs.org/mrmime/-/mrmime-2.0.1.tgz"
integrity sha512-Y3wQdFg2Va6etvQ5I82yUhGdsKrcYox6p7FfL1LbK2J4V01F9TGlepTIhnK24t7koZibmg82KGglhA1XK5IsLQ==
-ms@2.0.0:
- version "2.0.0"
- resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"
- integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==
-
ms@^2.0.0, ms@^2.1.3:
version "2.1.3"
resolved "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz"
integrity sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==
+ms@2.0.0:
+ version "2.0.0"
+ resolved "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz"
+ integrity sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==
+
multiformats@^9.4.2:
version "9.9.0"
resolved "https://registry.npmjs.org/multiformats/-/multiformats-9.9.0.tgz"
@@ -11434,7 +11087,7 @@ mute-stream@0.0.8:
resolved "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.8.tgz"
integrity sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==
-mux.js@7.1.0, mux.js@^7.0.1:
+mux.js@^7.0.1, mux.js@7.1.0:
version "7.1.0"
resolved "https://registry.npmjs.org/mux.js/-/mux.js-7.1.0.tgz"
integrity sha512-NTxawK/BBELJrYsZThEulyUMDVlLizKdxyAsMuzoCD1eFj97BVaA8D/CvKsKu6FOLYkFojN5CbM9h++ZTZtknA==
@@ -11780,9 +11433,35 @@ own-keys@^1.0.1:
object-keys "^1.1.1"
safe-push-apply "^1.0.0"
+ox@^0.4.4:
+ version "0.4.4"
+ resolved "https://registry.npmjs.org/ox/-/ox-0.4.4.tgz"
+ integrity sha512-oJPEeCDs9iNiPs6J0rTx+Y0KGeCGyCAA3zo94yZhm8G5WpOxrwUtn2Ie/Y8IyARSqqY/j9JTKA3Fc1xs1DvFnw==
+ dependencies:
+ "@adraffy/ens-normalize" "^1.10.1"
+ "@noble/curves" "^1.6.0"
+ "@noble/hashes" "^1.5.0"
+ "@scure/bip32" "^1.5.0"
+ "@scure/bip39" "^1.4.0"
+ abitype "^1.0.6"
+ eventemitter3 "5.0.1"
+
+ox@0.6.7:
+ version "0.6.7"
+ resolved "https://registry.npmjs.org/ox/-/ox-0.6.7.tgz"
+ integrity sha512-17Gk/eFsFRAZ80p5eKqv89a57uXjd3NgIf1CaXojATPBuujVc/fQSVhBeAU9JCRB+k7J50WQAyWTxK19T9GgbA==
+ dependencies:
+ "@adraffy/ens-normalize" "^1.10.1"
+ "@noble/curves" "^1.6.0"
+ "@noble/hashes" "^1.5.0"
+ "@scure/bip32" "^1.5.0"
+ "@scure/bip39" "^1.4.0"
+ abitype "^1.0.6"
+ eventemitter3 "5.0.1"
+
ox@0.6.9:
version "0.6.9"
- resolved "https://registry.yarnpkg.com/ox/-/ox-0.6.9.tgz#da1ee04fa10de30c8d04c15bfb80fe58b1f554bd"
+ resolved "https://registry.npmjs.org/ox/-/ox-0.6.9.tgz"
integrity sha512-wi5ShvzE4eOcTwQVsIPdFr+8ycyX+5le/96iAJutaZAvCes1J0+RvpEPg5QDPDiaR0XQQAvZVl7AwqQcINuUug==
dependencies:
"@adraffy/ens-normalize" "^1.10.1"
@@ -11793,9 +11472,23 @@ ox@0.6.9:
abitype "^1.0.6"
eventemitter3 "5.0.1"
+ox@0.7.1:
+ version "0.7.1"
+ resolved "https://registry.npmjs.org/ox/-/ox-0.7.1.tgz"
+ integrity sha512-+k9fY9PRNuAMHRFIUbiK9Nt5seYHHzSQs9Bj+iMETcGtlpS7SmBzcGSVUQO3+nqGLEiNK4598pHNFlVRaZbRsg==
+ dependencies:
+ "@adraffy/ens-normalize" "^1.10.1"
+ "@noble/ciphers" "^1.3.0"
+ "@noble/curves" "^1.6.0"
+ "@noble/hashes" "^1.5.0"
+ "@scure/bip32" "^1.5.0"
+ "@scure/bip39" "^1.4.0"
+ abitype "^1.0.6"
+ eventemitter3 "5.0.1"
+
ox@0.8.7:
version "0.8.7"
- resolved "https://registry.yarnpkg.com/ox/-/ox-0.8.7.tgz#234812627f931aaf5bd45728a50c9a42a26e76db"
+ resolved "https://registry.npmjs.org/ox/-/ox-0.8.7.tgz"
integrity sha512-W1f0FiMf9NZqtHPEDEAEkyzZDwbIKfmH2qmQx8NNiQ/9JhxrSblmtLJsSfTtQG5YKowLOnBlLVguCyxm/7ztxw==
dependencies:
"@adraffy/ens-normalize" "^1.11.0"
@@ -11807,19 +11500,6 @@ ox@0.8.7:
abitype "^1.0.8"
eventemitter3 "5.0.1"
-ox@^0.4.4:
- version "0.4.4"
- resolved "https://registry.npmjs.org/ox/-/ox-0.4.4.tgz"
- integrity sha512-oJPEeCDs9iNiPs6J0rTx+Y0KGeCGyCAA3zo94yZhm8G5WpOxrwUtn2Ie/Y8IyARSqqY/j9JTKA3Fc1xs1DvFnw==
- dependencies:
- "@adraffy/ens-normalize" "^1.10.1"
- "@noble/curves" "^1.6.0"
- "@noble/hashes" "^1.5.0"
- "@scure/bip32" "^1.5.0"
- "@scure/bip39" "^1.4.0"
- abitype "^1.0.6"
- eventemitter3 "5.0.1"
-
p-limit@^2.2.0:
version "2.3.0"
resolved "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz"
@@ -12193,14 +11873,6 @@ postcss-nested@^6.2.0:
dependencies:
postcss-selector-parser "^6.1.1"
-postcss-selector-parser@6.0.10:
- version "6.0.10"
- resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz"
- integrity sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==
- dependencies:
- cssesc "^3.0.0"
- util-deprecate "^1.0.2"
-
postcss-selector-parser@^6.1.1, postcss-selector-parser@^6.1.2:
version "6.1.2"
resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.1.2.tgz"
@@ -12209,11 +11881,28 @@ postcss-selector-parser@^6.1.1, postcss-selector-parser@^6.1.2:
cssesc "^3.0.0"
util-deprecate "^1.0.2"
+postcss-selector-parser@6.0.10:
+ version "6.0.10"
+ resolved "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz"
+ integrity sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==
+ dependencies:
+ cssesc "^3.0.0"
+ util-deprecate "^1.0.2"
+
postcss-value-parser@^4.0.0, postcss-value-parser@^4.0.2, postcss-value-parser@^4.2.0:
version "4.2.0"
resolved "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz"
integrity sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==
+postcss@^8.4.43, postcss@^8.4.47, postcss@^8.5.6:
+ version "8.5.6"
+ resolved "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz"
+ integrity sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==
+ dependencies:
+ nanoid "^3.3.11"
+ picocolors "^1.1.1"
+ source-map-js "^1.2.1"
+
postcss@8.4.31:
version "8.4.31"
resolved "https://registry.npmjs.org/postcss/-/postcss-8.4.31.tgz"
@@ -12232,25 +11921,16 @@ postcss@8.4.49:
picocolors "^1.1.1"
source-map-js "^1.2.1"
-postcss@^8.4.43, postcss@^8.4.47, postcss@^8.5.6:
- version "8.5.6"
- resolved "https://registry.npmjs.org/postcss/-/postcss-8.5.6.tgz"
- integrity sha512-3Ybi1tAuwAP9s0r1UQ2J4n5Y0G05bJkpUIO0/bI9MhwmD70S5aTWbXGBwxHrelT+XM1k6dM0pk+SwNkpTRN7Pg==
- dependencies:
- nanoid "^3.3.11"
- picocolors "^1.1.1"
- source-map-js "^1.2.1"
-
-preact@10.24.2:
- version "10.24.2"
- resolved "https://registry.yarnpkg.com/preact/-/preact-10.24.2.tgz#42179771d3b06e7adb884e3f8127ddd3d99b78f6"
- integrity sha512-1cSoF0aCC8uaARATfrlz4VCBqE8LwZwRfLgkxJOQwAlQt6ayTmi0D9OF7nXid1POI5SZidFuG9CnlXbDfLqY/Q==
-
preact@^10.16.0:
version "10.26.9"
resolved "https://registry.npmjs.org/preact/-/preact-10.26.9.tgz"
integrity sha512-SSjF9vcnF27mJK1XyFMNJzFd5u3pQiATFqoaDy03XuN00u4ziveVVEGt5RKJrDR8MHE/wJo9Nnad56RLzS2RMA==
+preact@10.24.2:
+ version "10.24.2"
+ resolved "https://registry.npmjs.org/preact/-/preact-10.24.2.tgz"
+ integrity sha512-1cSoF0aCC8uaARATfrlz4VCBqE8LwZwRfLgkxJOQwAlQt6ayTmi0D9OF7nXid1POI5SZidFuG9CnlXbDfLqY/Q==
+
prelude-ls@^1.2.1:
version "1.2.1"
resolved "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz"
@@ -12290,7 +11970,7 @@ process@^0.11.10:
resolved "https://registry.npmjs.org/process/-/process-0.11.10.tgz"
integrity sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==
-prop-types@15.x, prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.1:
+prop-types@^15.6.2, prop-types@^15.7.2, prop-types@^15.8.1, prop-types@15.x:
version "15.8.1"
resolved "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz"
integrity sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==
@@ -12483,7 +12163,7 @@ protobufjs@^7.0.0, protobufjs@^7.2.6:
protobufjs@^7.2.5:
version "7.5.4"
- resolved "https://registry.yarnpkg.com/protobufjs/-/protobufjs-7.5.4.tgz#885d31fe9c4b37f25d1bb600da30b1c5b37d286a"
+ resolved "https://registry.npmjs.org/protobufjs/-/protobufjs-7.5.4.tgz"
integrity sha512-CvexbZtbov6jW2eXAvLukXjXUW1TzFaivC46BpWc/3BpcCysb5Vffu+B3XHMm8lVEuy2Mm4XGex8hBSg1yapPg==
dependencies:
"@protobufjs/aspromise" "^1.1.2"
@@ -12563,17 +12243,16 @@ qr@~0:
resolved "https://registry.npmjs.org/qr/-/qr-0.5.0.tgz"
integrity sha512-LtnyJsepKCMzfmHBZKVNo1g29kS+8ZbuxE9294EsRhHgVVpy4x8eFw9o4J9SIolDHoDYuaEIY+z8UjiCv/eudA==
-qrcode@1.5.3:
- version "1.5.3"
- resolved "https://registry.npmjs.org/qrcode/-/qrcode-1.5.3.tgz"
- integrity sha512-puyri6ApkEHYiVl4CFzo1tDkAZ+ATcnbJrJ6RiBM1Fhctdn/ix9MTE3hRph33omisEbC/2fcfemsseiKgBPKZg==
+qrcode@^1.5.1:
+ version "1.5.4"
+ resolved "https://registry.npmjs.org/qrcode/-/qrcode-1.5.4.tgz"
+ integrity sha512-1ca71Zgiu6ORjHqFBDpnSMTR2ReToX4l1Au1VFLyVeBTFavzQnv5JxMFr3ukHVKpSrSA2MCk0lNJSykjUfz7Zg==
dependencies:
dijkstrajs "^1.0.1"
- encode-utf8 "^1.0.3"
pngjs "^5.0.0"
yargs "^15.3.1"
-qrcode@^1.5.1, qrcode@^1.5.4:
+qrcode@^1.5.4:
version "1.5.4"
resolved "https://registry.npmjs.org/qrcode/-/qrcode-1.5.4.tgz"
integrity sha512-1ca71Zgiu6ORjHqFBDpnSMTR2ReToX4l1Au1VFLyVeBTFavzQnv5JxMFr3ukHVKpSrSA2MCk0lNJSykjUfz7Zg==
@@ -12582,6 +12261,16 @@ qrcode@^1.5.1, qrcode@^1.5.4:
pngjs "^5.0.0"
yargs "^15.3.1"
+qrcode@1.5.3:
+ version "1.5.3"
+ resolved "https://registry.npmjs.org/qrcode/-/qrcode-1.5.3.tgz"
+ integrity sha512-puyri6ApkEHYiVl4CFzo1tDkAZ+ATcnbJrJ6RiBM1Fhctdn/ix9MTE3hRph33omisEbC/2fcfemsseiKgBPKZg==
+ dependencies:
+ dijkstrajs "^1.0.1"
+ encode-utf8 "^1.0.3"
+ pngjs "^5.0.0"
+ yargs "^15.3.1"
+
qs@^6.7.0:
version "6.14.0"
resolved "https://registry.npmjs.org/qs/-/qs-6.14.0.tgz"
@@ -12734,9 +12423,9 @@ react-grid-layout@^1.4.4:
resize-observer-polyfill "^1.5.1"
react-hook-form@^7.62.0:
- version "7.62.0"
- resolved "https://registry.yarnpkg.com/react-hook-form/-/react-hook-form-7.62.0.tgz#2d81e13c2c6b6d636548e440818341ca753218d0"
- integrity sha512-7KWFejc98xqG/F4bAxpL41NB3o1nnvQO1RWZT3TqRZYL8RryQETGfEdVnJN2fy1crCiBLLjkRBVK05j24FxJGA==
+ version "7.63.0"
+ resolved "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.63.0.tgz"
+ integrity sha512-ZwueDMvUeucovM2VjkCf7zIHcs1aAlDimZu2Hvel5C5907gUzMpm4xCrQXtRzCvsBqFjonB4m3x4LzCFI1ZKWA==
react-icons@^5.0.1:
version "5.5.0"
@@ -12753,14 +12442,19 @@ react-is@^16.13.1, react-is@^16.7.0:
resolved "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz"
integrity sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==
-react-is@^18.0.0, react-is@^18.2.0:
+react-is@^18.0.0:
+ version "18.3.1"
+ resolved "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz"
+ integrity sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==
+
+react-is@^18.2.0:
version "18.3.1"
resolved "https://registry.npmjs.org/react-is/-/react-is-18.3.1.tgz"
integrity sha512-/LLMVyas0ljjAtoYiPqYiL8VWXzUUdThrmU5+n20DZv+a+ClRoevUzw5JxU+Ieh5/c87ytoTBV9G1FiKfNJdmg==
react-is@^19.1.1:
version "19.1.1"
- resolved "https://registry.yarnpkg.com/react-is/-/react-is-19.1.1.tgz#038ebe313cf18e1fd1235d51c87360eb87f7c36a"
+ resolved "https://registry.npmjs.org/react-is/-/react-is-19.1.1.tgz"
integrity sha512-tr41fA15Vn8p4X9ntI+yCyeGSf1TlYaY5vlTZfQmeLBrFo3psOPX6HhTDnFNL9uj3EhP0KAQ80cugCl4b4BERA==
react-loader-spinner@^6.1.6:
@@ -12831,6 +12525,17 @@ react-remove-scroll-bar@^2.3.3, react-remove-scroll-bar@^2.3.7:
react-style-singleton "^2.2.2"
tslib "^2.0.0"
+react-remove-scroll@^2.6.3:
+ version "2.7.1"
+ resolved "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.7.1.tgz"
+ integrity sha512-HpMh8+oahmIdOuS5aFKKY6Pyog+FNaZV/XyJOq7b4YFwsFHe5yYfdbIalI4k3vU2nSDql7YskmUseHsRrJqIPA==
+ dependencies:
+ react-remove-scroll-bar "^2.3.7"
+ react-style-singleton "^2.2.3"
+ tslib "^2.1.0"
+ use-callback-ref "^1.3.3"
+ use-sidecar "^1.1.3"
+
react-remove-scroll@2.5.4:
version "2.5.4"
resolved "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.5.4.tgz"
@@ -12853,17 +12558,6 @@ react-remove-scroll@2.6.2:
use-callback-ref "^1.3.3"
use-sidecar "^1.1.2"
-react-remove-scroll@^2.6.3:
- version "2.7.1"
- resolved "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.7.1.tgz"
- integrity sha512-HpMh8+oahmIdOuS5aFKKY6Pyog+FNaZV/XyJOq7b4YFwsFHe5yYfdbIalI4k3vU2nSDql7YskmUseHsRrJqIPA==
- dependencies:
- react-remove-scroll-bar "^2.3.7"
- react-style-singleton "^2.2.3"
- tslib "^2.1.0"
- use-callback-ref "^1.3.3"
- use-sidecar "^1.1.3"
-
react-resizable@^3.0.5:
version "3.0.5"
resolved "https://registry.npmjs.org/react-resizable/-/react-resizable-3.0.5.tgz"
@@ -12950,7 +12644,7 @@ read-cmd-shim@^5.0.0:
resolved "https://registry.npmjs.org/read-cmd-shim/-/read-cmd-shim-5.0.0.tgz"
integrity sha512-SEbJV7tohp3DAAILbEMPXavBjAnMN0tVnh4+9G8ihV4Pq3HYF9h8QNez9zkJ1ILkv9G2BjdzwctznGZXgu/HGw==
-readable-stream@^2.3.3, readable-stream@~2.3.6:
+readable-stream@^2.3.3:
version "2.3.8"
resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz"
integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==
@@ -12972,7 +12666,18 @@ readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.6.0, readable
string_decoder "^1.1.1"
util-deprecate "^1.0.1"
-"readable-stream@^3.6.2 || ^4.4.2", readable-stream@^4.0.0:
+"readable-stream@^3.6.2 || ^4.4.2":
+ version "4.7.0"
+ resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-4.7.0.tgz"
+ integrity sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==
+ dependencies:
+ abort-controller "^3.0.0"
+ buffer "^6.0.3"
+ events "^3.3.0"
+ process "^0.11.10"
+ string_decoder "^1.3.0"
+
+readable-stream@^4.0.0:
version "4.7.0"
resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-4.7.0.tgz"
integrity sha512-oIGGmcpTLwPga8Bn6/Z75SVaH1z5dUut2ibSyAMVhmUggWpmDn2dapB0n7f8nwaSiRtepAsfJyfXIO5DCVAODg==
@@ -12983,6 +12688,19 @@ readable-stream@^3.1.1, readable-stream@^3.4.0, readable-stream@^3.6.0, readable
process "^0.11.10"
string_decoder "^1.3.0"
+readable-stream@~2.3.6:
+ version "2.3.8"
+ resolved "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz"
+ integrity sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==
+ dependencies:
+ core-util-is "~1.0.0"
+ inherits "~2.0.3"
+ isarray "~1.0.0"
+ process-nextick-args "~2.0.0"
+ safe-buffer "~5.1.1"
+ string_decoder "~1.1.1"
+ util-deprecate "~1.0.1"
+
readdirp@^4.0.1:
version "4.1.2"
resolved "https://registry.npmjs.org/readdirp/-/readdirp-4.1.2.tgz"
@@ -13086,10 +12804,10 @@ rehype-parse@^9.0.0:
hast-util-from-html "^2.0.0"
unified "^11.0.0"
-rehype-prism-plus@2.0.0:
- version "2.0.0"
- resolved "https://registry.npmjs.org/rehype-prism-plus/-/rehype-prism-plus-2.0.0.tgz"
- integrity sha512-FeM/9V2N7EvDZVdR2dqhAzlw5YI49m9Tgn7ZrYJeYHIahM6gcXpH0K1y2gNnKanZCydOMluJvX2cB9z3lhY8XQ==
+rehype-prism-plus@~2.0.0:
+ version "2.0.1"
+ resolved "https://registry.npmjs.org/rehype-prism-plus/-/rehype-prism-plus-2.0.1.tgz"
+ integrity sha512-Wglct0OW12tksTUseAPyWPo3srjBOY7xKlql/DPKi7HbsdZTyaLCAoO58QBKSczFQxElTsQlOY3JDOFzB/K++Q==
dependencies:
hast-util-to-string "^3.0.0"
parse-numeric-range "^1.3.0"
@@ -13098,10 +12816,10 @@ rehype-prism-plus@2.0.0:
unist-util-filter "^5.0.0"
unist-util-visit "^5.0.0"
-rehype-prism-plus@~2.0.0:
- version "2.0.1"
- resolved "https://registry.npmjs.org/rehype-prism-plus/-/rehype-prism-plus-2.0.1.tgz"
- integrity sha512-Wglct0OW12tksTUseAPyWPo3srjBOY7xKlql/DPKi7HbsdZTyaLCAoO58QBKSczFQxElTsQlOY3JDOFzB/K++Q==
+rehype-prism-plus@2.0.0:
+ version "2.0.0"
+ resolved "https://registry.npmjs.org/rehype-prism-plus/-/rehype-prism-plus-2.0.0.tgz"
+ integrity sha512-FeM/9V2N7EvDZVdR2dqhAzlw5YI49m9Tgn7ZrYJeYHIahM6gcXpH0K1y2gNnKanZCydOMluJvX2cB9z3lhY8XQ==
dependencies:
hast-util-to-string "^3.0.0"
parse-numeric-range "^1.3.0"
@@ -13392,13 +13110,6 @@ run-parallel@^1.1.9:
dependencies:
queue-microtask "^1.2.2"
-rxjs@7.8.2, rxjs@^7.5.5, rxjs@^7.8.0:
- version "7.8.2"
- resolved "https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz"
- integrity sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==
- dependencies:
- tslib "^2.1.0"
-
rxjs@^6.6.3:
version "6.6.7"
resolved "https://registry.npmjs.org/rxjs/-/rxjs-6.6.7.tgz"
@@ -13406,6 +13117,13 @@ rxjs@^6.6.3:
dependencies:
tslib "^1.9.0"
+rxjs@^7.5.5, rxjs@^7.8.0, rxjs@7.8.2:
+ version "7.8.2"
+ resolved "https://registry.npmjs.org/rxjs/-/rxjs-7.8.2.tgz"
+ integrity sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==
+ dependencies:
+ tslib "^2.1.0"
+
safe-array-concat@^1.1.3:
version "1.1.3"
resolved "https://registry.npmjs.org/safe-array-concat/-/safe-array-concat-1.1.3.tgz"
@@ -13422,7 +13140,12 @@ safe-buffer@^5.0.1, safe-buffer@^5.1.0, safe-buffer@^5.2.1, safe-buffer@~5.2.0:
resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz"
integrity sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==
-safe-buffer@~5.1.0, safe-buffer@~5.1.1:
+safe-buffer@~5.1.0:
+ version "5.1.2"
+ resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz"
+ integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
+
+safe-buffer@~5.1.1:
version "5.1.2"
resolved "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz"
integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==
@@ -13449,7 +13172,7 @@ safe-stable-stringify@^2.1.0:
resolved "https://registry.npmjs.org/safe-stable-stringify/-/safe-stable-stringify-2.5.0.tgz"
integrity sha512-b3rppTKm9T+PsVCBEOUR46GWI7fdOs00VKZ1+9c1EWDaDMvjQc6tUwuFyIprgGgTcWoVHSKrU8H31ZHA2e0RHA==
-"safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0", safer-buffer@^2.1.0:
+safer-buffer@^2.1.0, "safer-buffer@>= 2.1.2 < 3", "safer-buffer@>= 2.1.2 < 3.0.0":
version "2.1.2"
resolved "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz"
integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==
@@ -13928,6 +13651,20 @@ strict-uri-encode@^2.0.0:
resolved "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-2.0.0.tgz"
integrity sha512-QwiXZgpRcKkhTj2Scnn++4PKtWsH0kpzZ62L2R6c/LUVYv7hVnZqcg2+sMuT6R7Jusu1vviK/MFsu6kNJfWlEQ==
+string_decoder@^1.1.1, string_decoder@~1.1.1:
+ version "1.1.1"
+ resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz"
+ integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==
+ dependencies:
+ safe-buffer "~5.1.0"
+
+string_decoder@^1.3.0:
+ version "1.3.0"
+ resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz"
+ integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==
+ dependencies:
+ safe-buffer "~5.2.0"
+
string-argv@^0.3.2:
version "0.3.2"
resolved "https://registry.npmjs.org/string-argv/-/string-argv-0.3.2.tgz"
@@ -14033,20 +13770,6 @@ string.prototype.trimstart@^1.0.8:
define-properties "^1.2.1"
es-object-atoms "^1.0.0"
-string_decoder@^1.1.1, string_decoder@~1.1.1:
- version "1.1.1"
- resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz"
- integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==
- dependencies:
- safe-buffer "~5.1.0"
-
-string_decoder@^1.3.0:
- version "1.3.0"
- resolved "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz"
- integrity sha512-hkRX8U1WjJFd8LsDJ2yQ/wWWxaopEsABU1XfkM8A+j0+85JAGppt16cr1Whg6KIbb4okU6Mql6BOj+uup/wKeA==
- dependencies:
- safe-buffer "~5.2.0"
-
stringify-entities@^4.0.0:
version "4.0.4"
resolved "https://registry.npmjs.org/stringify-entities/-/stringify-entities-4.0.4.tgz"
@@ -14069,7 +13792,14 @@ strip-ansi@^6.0.0, strip-ansi@^6.0.1:
dependencies:
ansi-regex "^5.0.1"
-strip-ansi@^7.0.1, strip-ansi@^7.1.0:
+strip-ansi@^7.0.1:
+ version "7.1.0"
+ resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz"
+ integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==
+ dependencies:
+ ansi-regex "^6.0.1"
+
+strip-ansi@^7.1.0:
version "7.1.0"
resolved "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz"
integrity sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==
@@ -14148,6 +13878,11 @@ styled-jsx@5.1.6:
dependencies:
client-only "0.0.1"
+stylis@^4.3.4:
+ version "4.3.6"
+ resolved "https://registry.npmjs.org/stylis/-/stylis-4.3.6.tgz"
+ integrity sha512-yQ3rwFWRfwNUY7H5vpU0wfdkNSnvnJinhF9830Swlaxl03zsOjCfmX0ugac+3LtK0lYSgwL/KXc8oYL3mG4YFQ==
+
stylis@4.2.0:
version "4.2.0"
resolved "https://registry.npmjs.org/stylis/-/stylis-4.2.0.tgz"
@@ -14158,11 +13893,6 @@ stylis@4.3.2:
resolved "https://registry.npmjs.org/stylis/-/stylis-4.3.2.tgz"
integrity sha512-bhtUjWd/z6ltJiQwg0dUfxEJ+W+jdqQd8TbWLWyeIJHlnsqmGLRFFd8e5mA0AZi/zx90smXRlN66YMTcaSFifg==
-stylis@^4.3.4:
- version "4.3.6"
- resolved "https://registry.npmjs.org/stylis/-/stylis-4.3.6.tgz"
- integrity sha512-yQ3rwFWRfwNUY7H5vpU0wfdkNSnvnJinhF9830Swlaxl03zsOjCfmX0ugac+3LtK0lYSgwL/KXc8oYL3mG4YFQ==
-
sucrase@^3.35.0:
version "3.35.0"
resolved "https://registry.npmjs.org/sucrase/-/sucrase-3.35.0.tgz"
@@ -14240,7 +13970,7 @@ tailwind-merge@^1.14.0:
tailwind-merge@^2.3.0:
version "2.6.0"
- resolved "https://registry.yarnpkg.com/tailwind-merge/-/tailwind-merge-2.6.0.tgz#ac5fb7e227910c038d458f396b7400d93a3142d5"
+ resolved "https://registry.npmjs.org/tailwind-merge/-/tailwind-merge-2.6.0.tgz"
integrity sha512-P+Vu1qXfzediirmHOC3xKGAYeZtPcV9g76X+xg2FD4tYgR71ewMA35Y3sCz3zhiN/dwefRpJX0yBcgwi1fXNQA==
tailwind-merge@^3.3.0:
@@ -14346,16 +14076,16 @@ tinybench@^2.5.1:
resolved "https://registry.npmjs.org/tinybench/-/tinybench-2.9.0.tgz"
integrity sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==
-tinycolor2@1.4.2:
- version "1.4.2"
- resolved "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.2.tgz"
- integrity sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA==
-
tinycolor2@^1.6.0:
version "1.6.0"
resolved "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.6.0.tgz"
integrity sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==
+tinycolor2@1.4.2:
+ version "1.4.2"
+ resolved "https://registry.npmjs.org/tinycolor2/-/tinycolor2-1.4.2.tgz"
+ integrity sha512-vJhccZPs965sV/L2sU4oRQVAos0pQXwsvTLkWYdqJ+a8Q5kPFzJTuOFwy7UniPli44NKQGAglksjvOcpo95aZA==
+
tinypool@^0.8.3:
version "0.8.4"
resolved "https://registry.npmjs.org/tinypool/-/tinypool-0.8.4.tgz"
@@ -14494,7 +14224,17 @@ ts-mixer@^6.0.3:
resolved "https://registry.npmjs.org/ts-mixer/-/ts-mixer-6.0.4.tgz"
integrity sha512-ufKpbmrugz5Aou4wcr5Wc1UUFWOLhq+Fm6qa6P0w0K5Qw2yhaUoiWszhCVuNQyNwrlGiscHOmqYoAox1PtvgjA==
-tslib@1.14.1, tslib@^1.9.0:
+tslib@^1.9.0:
+ version "1.14.1"
+ resolved "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz"
+ integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
+
+tslib@^2.0.0, tslib@^2.0.1, tslib@^2.1.0, tslib@^2.3.0, tslib@^2.3.1, tslib@^2.4.0, tslib@^2.4.1, tslib@^2.6.0, tslib@^2.6.2, tslib@^2.8.0, tslib@2.8.1:
+ version "2.8.1"
+ resolved "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz"
+ integrity sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==
+
+tslib@1.14.1:
version "1.14.1"
resolved "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz"
integrity sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==
@@ -14504,11 +14244,6 @@ tslib@2.6.2:
resolved "https://registry.npmjs.org/tslib/-/tslib-2.6.2.tgz"
integrity sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==
-tslib@2.8.1, tslib@^2.0.0, tslib@^2.0.1, tslib@^2.1.0, tslib@^2.3.0, tslib@^2.3.1, tslib@^2.4.0, tslib@^2.4.1, tslib@^2.6.0, tslib@^2.6.2, tslib@^2.8.0:
- version "2.8.1"
- resolved "https://registry.npmjs.org/tslib/-/tslib-2.8.1.tgz"
- integrity sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==
-
tweetnacl-util@^0.13.3:
version "0.13.5"
resolved "https://registry.npmjs.org/tweetnacl-util/-/tweetnacl-util-0.13.5.tgz"
@@ -14654,6 +14389,13 @@ uint8array-extras@^1.4.0:
resolved "https://registry.npmjs.org/uint8array-extras/-/uint8array-extras-1.4.0.tgz"
integrity sha512-ZPtzy0hu4cZjv3z5NW9gfKnNLjoz4y6uv4HlelAjDK7sY/xOkKZv9xK/WQpcsBB3jEybChz9DPC2U/+cusjJVQ==
+uint8arrays@^3.0.0:
+ version "3.1.1"
+ resolved "https://registry.npmjs.org/uint8arrays/-/uint8arrays-3.1.1.tgz"
+ integrity sha512-+QJa8QRnbdXVpHYjLoTpJIdCTiw9Ir62nocClWuXIq2JIh4Uta0cQsTSpFL678p2CN8B+XSApwcU+pQEqVpKWg==
+ dependencies:
+ multiformats "^9.4.2"
+
uint8arrays@3.1.0:
version "3.1.0"
resolved "https://registry.npmjs.org/uint8arrays/-/uint8arrays-3.1.0.tgz"
@@ -14661,7 +14403,7 @@ uint8arrays@3.1.0:
dependencies:
multiformats "^9.4.2"
-uint8arrays@3.1.1, uint8arrays@^3.0.0:
+uint8arrays@3.1.1:
version "3.1.1"
resolved "https://registry.npmjs.org/uint8arrays/-/uint8arrays-3.1.1.tgz"
integrity sha512-+QJa8QRnbdXVpHYjLoTpJIdCTiw9Ir62nocClWuXIq2JIh4Uta0cQsTSpFL678p2CN8B+XSApwcU+pQEqVpKWg==
@@ -14845,6 +14587,11 @@ use-sidecar@^1.1.2, use-sidecar@^1.1.3:
detect-node-es "^1.1.0"
tslib "^2.0.0"
+use-sync-external-store@^1, use-sync-external-store@^1.2.2, use-sync-external-store@^1.4.0, use-sync-external-store@^1.5.0:
+ version "1.5.0"
+ resolved "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.5.0.tgz"
+ integrity sha512-Rb46I4cGGVBmjamjphe8L/UnvJD+uPPtTkNvX5mZgqdbavhI4EbgIWJiIHXJ8bc/i9EQGPRh4DwEURJ552Do0A==
+
use-sync-external-store@1.2.0:
version "1.2.0"
resolved "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.2.0.tgz"
@@ -14855,11 +14602,6 @@ use-sync-external-store@1.4.0:
resolved "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.4.0.tgz"
integrity sha512-9WXSPC5fMv61vaupRkCKCxsPxBocVnwakBEkMIHHpkTTg6icbJtg6jzgtLDm4bl3cSHAca52rYWih0k4K3PfHw==
-use-sync-external-store@^1, use-sync-external-store@^1.2.2, use-sync-external-store@^1.4.0, use-sync-external-store@^1.5.0:
- version "1.5.0"
- resolved "https://registry.npmjs.org/use-sync-external-store/-/use-sync-external-store-1.5.0.tgz"
- integrity sha512-Rb46I4cGGVBmjamjphe8L/UnvJD+uPPtTkNvX5mZgqdbavhI4EbgIWJiIHXJ8bc/i9EQGPRh4DwEURJ552Do0A==
-
utf-8-validate@^5.0.2:
version "5.0.10"
resolved "https://registry.npmjs.org/utf-8-validate/-/utf-8-validate-5.0.10.tgz"
@@ -14895,16 +14637,16 @@ utrie@^1.0.2:
dependencies:
base64-arraybuffer "^1.0.2"
-"uuid@>=8 <10", uuid@^9.0.0, uuid@^9.0.1:
- version "9.0.1"
- resolved "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz"
- integrity sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==
-
uuid@^8.3.2:
version "8.3.2"
resolved "https://registry.npmjs.org/uuid/-/uuid-8.3.2.tgz"
integrity sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==
+uuid@^9.0.0, uuid@^9.0.1, "uuid@>=8 <10":
+ version "9.0.1"
+ resolved "https://registry.npmjs.org/uuid/-/uuid-9.0.1.tgz"
+ integrity sha512-b+1eJOlsR9K8HJpow9Ok3fiWOWSIcIzXodvv0rQjVoOVNpWMpxf1wZNpt4y9h10odCNrqnYp1OBzRktckBe3sA==
+
valid-url@^1.0.9:
version "1.0.9"
resolved "https://registry.npmjs.org/valid-url/-/valid-url-1.0.9.tgz"
@@ -14988,9 +14730,9 @@ videojs-vtt.js@0.15.5:
dependencies:
global "^4.3.1"
-viem@2.23.2, viem@2.31.0, viem@2.35.1, viem@>=2.29.0, viem@^2.1.1, viem@^2.16.5, viem@^2.17.4, viem@^2.21.44, viem@^2.21.9, viem@^2.27.2, viem@^2.31.7, viem@^2.35.1, viem@^2.7.8:
+viem@^2.1.1, viem@^2.16.5, viem@^2.17.4, viem@^2.21.44, viem@^2.21.9, viem@^2.27.2, viem@^2.31.7, viem@^2.35.1, viem@^2.7.8, viem@>=2.29.0:
version "2.35.1"
- resolved "https://registry.yarnpkg.com/viem/-/viem-2.35.1.tgz#8555c6cbe645048d172e162d50b8f6d91f63d64e"
+ resolved "https://registry.npmjs.org/viem/-/viem-2.35.1.tgz"
integrity sha512-BVGrI2xzMa+cWaUhhMuq+RV6t/8aHN08QAPG07OMFb3PBWc0AYubRMyIuxMKncFe8lJdxfRWNRYv1agoM/xSlQ==
dependencies:
"@noble/curves" "1.9.6"
@@ -15002,6 +14744,34 @@ viem@2.23.2, viem@2.31.0, viem@2.35.1, viem@>=2.29.0, viem@^2.1.1, viem@^2.16.5,
ox "0.8.7"
ws "8.18.3"
+viem@2.23.2:
+ version "2.23.2"
+ resolved "https://registry.npmjs.org/viem/-/viem-2.23.2.tgz"
+ integrity sha512-NVmW/E0c5crMOtbEAqMF0e3NmvQykFXhLOc/CkLIXOlzHSA6KXVz3CYVmaKqBF8/xtjsjHAGjdJN3Ru1kFJLaA==
+ dependencies:
+ "@noble/curves" "1.8.1"
+ "@noble/hashes" "1.7.1"
+ "@scure/bip32" "1.6.2"
+ "@scure/bip39" "1.5.4"
+ abitype "1.0.8"
+ isows "1.0.6"
+ ox "0.6.7"
+ ws "8.18.0"
+
+viem@2.31.0:
+ version "2.31.0"
+ resolved "https://registry.npmjs.org/viem/-/viem-2.31.0.tgz"
+ integrity sha512-U7OMQ6yqK+bRbEIarf2vqxL7unSEQvNxvML/1zG7suAmKuJmipqdVTVJGKBCJiYsm/EremyO2FS4dHIPpGv+eA==
+ dependencies:
+ "@noble/curves" "1.9.1"
+ "@noble/hashes" "1.8.0"
+ "@scure/bip32" "1.7.0"
+ "@scure/bip39" "1.6.0"
+ abitype "1.0.8"
+ isows "1.0.7"
+ ox "0.7.1"
+ ws "8.18.2"
+
vite-node@1.6.1:
version "1.6.1"
resolved "https://registry.npmjs.org/vite-node/-/vite-node-1.6.1.tgz"
@@ -15064,7 +14834,7 @@ w3c-xmlserializer@^5.0.0:
wagmi@^2.16.0:
version "2.16.6"
- resolved "https://registry.yarnpkg.com/wagmi/-/wagmi-2.16.6.tgz#a91b7810a9ef8aaf0ebee7d8ef1d4399103aa42b"
+ resolved "https://registry.npmjs.org/wagmi/-/wagmi-2.16.6.tgz"
integrity sha512-hhKxyL53cR1OWHkakNC2b6osMgPP6ZWe16nHEhgAvjZNxq/AhO66I/5HAWIrtgSSjSFvhC2a3tTm/Ed1Z4qxdQ==
dependencies:
"@wagmi/connectors" "5.9.6"
@@ -15073,14 +14843,14 @@ wagmi@^2.16.0:
wagmi@^2.16.3:
version "2.16.3"
- resolved "https://registry.yarnpkg.com/wagmi/-/wagmi-2.16.3.tgz#14a43d95c96c428f99c5bd5e2362da0b84356a0d"
+ resolved "https://registry.npmjs.org/wagmi/-/wagmi-2.16.3.tgz"
integrity sha512-CJkt6e+PKM7sNQOVcExY2SWHoDNNMdS1L5q5gLujiu8Ngi6T2V4YlHj0Sm40nVC+NsW4MZOfscsx12FbVJ0iug==
dependencies:
"@wagmi/connectors" "5.9.3"
"@wagmi/core" "2.19.0"
use-sync-external-store "1.4.0"
-wcwidth@>=1.0.1, wcwidth@^1.0.1:
+wcwidth@^1.0.1, wcwidth@>=1.0.1:
version "1.0.1"
resolved "https://registry.npmjs.org/wcwidth/-/wcwidth-1.0.1.tgz"
integrity sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==
@@ -15113,7 +14883,7 @@ web-vitals@^3.0.4:
resolved "https://registry.npmjs.org/web-vitals/-/web-vitals-3.5.2.tgz"
integrity sha512-c0rhqNcHXRkY/ogGDJQxZ9Im9D19hDihbzSQJrsioex+KnFgmMzBiy57Z1EjkhX/+OjyBpclDCzz2ITtjokFmg==
-web3-core-helpers@1.10.4, web3-core-helpers@^1.8.0:
+web3-core-helpers@^1.8.0, web3-core-helpers@1.10.4:
version "1.10.4"
resolved "https://registry.npmjs.org/web3-core-helpers/-/web3-core-helpers-1.10.4.tgz"
integrity sha512-r+L5ylA17JlD1vwS8rjhWr0qg7zVoVMDvWhajWA5r5+USdh91jRUYosp19Kd1m2vE034v7Dfqe1xYRoH2zvG0g==
@@ -15220,7 +14990,7 @@ web3-utils@1.10.4:
randombytes "^2.1.0"
utf8 "3.0.0"
-"webextension-polyfill@>=0.10.0 <1.0", webextension-polyfill@^0.10.0:
+webextension-polyfill@^0.10.0, "webextension-polyfill@>=0.10.0 <1.0":
version "0.10.0"
resolved "https://registry.npmjs.org/webextension-polyfill/-/webextension-polyfill-0.10.0.tgz"
integrity sha512-c5s35LgVa5tFaHhrZDnr3FpQpjj1BB+RXhLTYUxGqBVN460HkbM8TBtEqdXWbpTKfzwCcjAZVF7zXCYSKtcp9g==
@@ -15435,26 +15205,46 @@ write-file-atomic@^6.0.0:
imurmurhash "^0.1.4"
signal-exit "^4.0.1"
-ws@8.18.0, ws@^8.18.0, ws@^8.5.0:
+ws@^7.3.1, ws@^7.5.1, ws@^7.5.10:
+ version "7.5.10"
+ resolved "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz"
+ integrity sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==
+
+ws@^8.18.0:
version "8.18.0"
resolved "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz"
integrity sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==
-ws@8.18.3, ws@^8.18.2:
+ws@^8.18.2:
version "8.18.3"
resolved "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz"
integrity sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==
-ws@^7.3.1, ws@^7.5.1, ws@^7.5.10:
- version "7.5.10"
- resolved "https://registry.npmjs.org/ws/-/ws-7.5.10.tgz"
- integrity sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==
+ws@^8.5.0:
+ version "8.18.0"
+ resolved "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz"
+ integrity sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==
ws@~8.17.1:
version "8.17.1"
resolved "https://registry.npmjs.org/ws/-/ws-8.17.1.tgz"
integrity sha512-6XQFvXTkbfUOZOKKILFG1PDK2NDQs4azKQl26T0YS5CxqWLgXajbPZ+h4gZekJyRqFU8pvnbAbbs/3TgRPy+GQ==
+ws@8.18.0:
+ version "8.18.0"
+ resolved "https://registry.npmjs.org/ws/-/ws-8.18.0.tgz"
+ integrity sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==
+
+ws@8.18.2:
+ version "8.18.2"
+ resolved "https://registry.npmjs.org/ws/-/ws-8.18.2.tgz"
+ integrity sha512-DMricUmwGZUVr++AEAe2uiVM7UoO9MAVZMDu05UQOaUII0lp+zOzLLU4Xqh/JvTqklB1T4uELaaPBKyjE1r4fQ==
+
+ws@8.18.3:
+ version "8.18.3"
+ resolved "https://registry.npmjs.org/ws/-/ws-8.18.3.tgz"
+ integrity sha512-PEIGCY5tSlUt50cqyMXfCzX+oOPqN0vuGqWzbcJ2xvnkzkq46oOpz7dQaTDBdfICb4N14+GARUDw2XV2N4tvzg==
+
xml-name-validator@^5.0.0:
version "5.0.0"
resolved "https://registry.npmjs.org/xml-name-validator/-/xml-name-validator-5.0.0.tgz"
@@ -15589,16 +15379,11 @@ yocto-queue@^1.0.0:
resolved "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.2.1.tgz"
integrity sha512-AyeEbWOu/TAXdxlV9wmGcR0+yh2j3vYPGOECcIj2S7MkrLyC7ne+oye2BKTItt0ii2PHk4cDy+95+LshzbXnGg==
-yoga-wasm-web@0.3.3, yoga-wasm-web@^0.3.3:
+yoga-wasm-web@^0.3.3, yoga-wasm-web@0.3.3:
version "0.3.3"
resolved "https://registry.npmjs.org/yoga-wasm-web/-/yoga-wasm-web-0.3.3.tgz"
integrity sha512-N+d4UJSJbt/R3wqY7Coqs5pcV0aUj2j9IaQ3rNj9bVCLld8tTGKRa2USARjnvZJWVx1NDmQev8EknoczaOQDOA==
-zod@3.22.4:
- version "3.22.4"
- resolved "https://registry.npmjs.org/zod/-/zod-3.22.4.tgz"
- integrity sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==
-
zod@^3.21.4, zod@^3.22.4, zod@^3.24.1, zod@^3.24.3, zod@^3.25.1:
version "3.25.71"
resolved "https://registry.npmjs.org/zod/-/zod-3.25.71.tgz"
@@ -15606,18 +15391,13 @@ zod@^3.21.4, zod@^3.22.4, zod@^3.24.1, zod@^3.24.3, zod@^3.25.1:
zod@^3.25.0:
version "3.25.76"
- resolved "https://registry.yarnpkg.com/zod/-/zod-3.25.76.tgz#26841c3f6fd22a6a2760e7ccb719179768471e34"
+ resolved "https://registry.npmjs.org/zod/-/zod-3.25.76.tgz"
integrity sha512-gzUt/qt81nXsFGKIFcC3YnfEAx5NkunCfnDlvuBSSFS02bcXu4Lmea0AFIUwbLWxWPx3d9p8S5QoaujKcNQxcQ==
-zustand@5.0.0:
- version "5.0.0"
- resolved "https://registry.npmjs.org/zustand/-/zustand-5.0.0.tgz"
- integrity sha512-LE+VcmbartOPM+auOjCCLQOsQ05zUTp8RkgwRzefUk+2jISdMMFnxvyTjA4YNWr5ZGXYbVsEMZosttuxUBkojQ==
-
-zustand@5.0.3:
- version "5.0.3"
- resolved "https://registry.yarnpkg.com/zustand/-/zustand-5.0.3.tgz#b323435b73d06b2512e93c77239634374b0e407f"
- integrity sha512-14fwWQtU3pH4dE0dOpdMiWjddcH+QzKIgk1cl8epwSE7yag43k/AD/m4L6+K7DytAOr9gGBe3/EXj9g7cdostg==
+zod@3.22.4:
+ version "3.22.4"
+ resolved "https://registry.npmjs.org/zod/-/zod-3.22.4.tgz"
+ integrity sha512-iC+8Io04lddc+mVqQ9AZ7OQ2MrUKGN+oIQyq1vemgt46jwCwLfhq7/pwnBnNXXXZb8VTVLKwp9EDkx+ryxIWmg==
zustand@^4.5.2:
version "4.5.7"
@@ -15631,6 +15411,16 @@ zustand@^5.0.0:
resolved "https://registry.npmjs.org/zustand/-/zustand-5.0.6.tgz"
integrity sha512-ihAqNeUVhe0MAD+X8M5UzqyZ9k3FFZLBTtqo6JLPwV53cbRB/mJwBI0PxcIgqhBBHlEs8G45OTDTMq3gNcLq3A==
+zustand@5.0.0:
+ version "5.0.0"
+ resolved "https://registry.npmjs.org/zustand/-/zustand-5.0.0.tgz"
+ integrity sha512-LE+VcmbartOPM+auOjCCLQOsQ05zUTp8RkgwRzefUk+2jISdMMFnxvyTjA4YNWr5ZGXYbVsEMZosttuxUBkojQ==
+
+zustand@5.0.3:
+ version "5.0.3"
+ resolved "https://registry.npmjs.org/zustand/-/zustand-5.0.3.tgz"
+ integrity sha512-14fwWQtU3pH4dE0dOpdMiWjddcH+QzKIgk1cl8epwSE7yag43k/AD/m4L6+K7DytAOr9gGBe3/EXj9g7cdostg==
+
zwitch@^2.0.0, zwitch@^2.0.4:
version "2.0.4"
resolved "https://registry.npmjs.org/zwitch/-/zwitch-2.0.4.tgz"
Analysis
TabBar nextClosestTab function hardcodes incorrect fallback tabs for token and proposal spaces
What fails: In src/common/components/organisms/TabBar.tsx, the nextClosestTab function hardcodes "Profile" as the fallback tab for all non-homebase spaces, but token spaces should fallback to "Token" and proposal spaces should fallback to "Overview"
How to reproduce:
- Navigate to a token space (e.g.,
/t/base/0x123/Token) - Delete all tabs until only one remains
- Delete the last tab
- User gets redirected to non-existent "Profile" tab instead of "Token" tab
Result: Navigation fails with "Profile" tab not found. Same issue occurs in proposal spaces where fallback should be "Overview" tab.
Expected: Token spaces should fallback to "Token" tab, proposal spaces to "Overview" tab, profile spaces to "Profile" tab (as per initial space configurations in src/constants/initialTokenSpace.ts, src/constants/initialProposalSpace.ts, and src/constants/initialProfileSpace.ts)
Fix: Enhanced nextClosestTab to determine correct fallback tab based on space type using URL pattern detection and existing props (isTokenPage, contractAddress)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Actionable comments posted: 1
Caution
Some comments are outside the diff and can’t be posted inline due to platform limitations.
⚠️ Outside diff range comments (3)
src/app/(spaces)/PublicSpace.tsx (2)
286-304: Background tab preload never runs (inverted condition).You set
initialDataLoadRef.current = trueon Line 290, then gate background loading with!initialDataLoadRef.current(Lines 300–303). That condition is always false, so remaining tabs never preload.Apply one of these:
- // Load remaining tabs in the background if necessary - if (currentSpaceId && !initialDataLoadRef.current) { - void loadRemainingTabs(currentSpaceId); - } + // Load remaining tabs in the background + if (currentSpaceId) { + void loadRemainingTabs(currentSpaceId); + }or, if you prefer to explicitly key off the first-load completion:
- if (currentSpaceId && !initialDataLoadRef.current) { + if (currentSpaceId && initialDataLoadRef.current) { void loadRemainingTabs(currentSpaceId); }
121-133: Avoid logging wallet addresses and sensitive context in production logs.PII/security posture: current log includes wallet addresses and FIDs.
Guard under a dev flag or remove:
- console.log('[PublicSpace] Editability check:', { ...walletAddresses: wallets.map((w) => w.address), ... }); + if (process.env.NODE_ENV === 'development') { + console.log('[PublicSpace] Editability check:', { /* omit wallet addresses in prod */ }); + }src/common/components/organisms/TabBar.tsx (1)
17-34: Async handler types must allow Promise; callers await them.Props are typed as returning
voidbut youawaitthem (e.g., Line 175). This breaks type‑safety and can releaseisOperatingtoo early if not awaited.Update types:
interface TabBarProps { ... - updateTabOrder: (newOrder: string[]) => void; - commitTabOrder: () => void; - switchTabTo: (tabName: string, shouldSave?: boolean) => void; - deleteTab: (tabName: string) => void; - createTab: (tabName: string) => Promise<{ tabName: string } | undefined>; - renameTab: (tabName: string, newName: string) => void; - commitTab: (tabName: string) => void; + updateTabOrder: (newOrder: string[]) => Promise<void> | void; + commitTabOrder: () => Promise<void> | void; + switchTabTo: (tabName: string, shouldSave?: boolean) => Promise<void> | void; + deleteTab: (tabName: string) => Promise<void> | void; + createTab: (tabName: string) => Promise<{ tabName: string } | undefined>; + renameTab: (tabName: string, newName: string) => Promise<void> | void; + commitTab: (tabName: string) => Promise<void> | void; }Then wrap calls with
await Promise.resolve(...)where needed (see comments below).
♻️ Duplicate comments (5)
src/common/components/organisms/TabBar.tsx (5)
354-362: Centralize navigation; remove local history.pushState and avoid double‑encoding.This pushes URL here and
switchTabTo(PublicSpace) also navigates; plusencodeURIComponentrisks double‑encoding.- try { - if (typeof getSpacePageUrl === 'function') { - const url = getSpacePageUrl(encodeURIComponent(tabName)); - window.history.pushState({}, '', url); - } - } catch (error) { - console.error("Error updating URL:", error); - } + // Defer URL updates to switchTabTo (source of truth). Pass raw tabName.
317-335: Post‑delete navigation: switch immediately and remove URL push.Current effect waits and manually pushes URL (with
encodeURIComponent). This duplicates navigation and can be racy.Simplify to immediate switch after delete (and drop the effect entirely), or at minimum remove the URL push:
- const timeoutId = setTimeout(() => { - try { - try { - if (typeof getSpacePageUrl === 'function') { - const url = getSpacePageUrl(encodeURIComponent(pendingTabSwitch)); - if (url && typeof url === 'string') { - window.history.pushState({}, '', url); - } - } - } catch (urlError) { - // Ignore error when updating URL after tab deletion - } - safeSwitchTabTo(pendingTabSwitch); - setPendingTabSwitch(null); - } catch (error) { - setPendingTabSwitch(null); - } - }, 50); + const timeoutId = setTimeout(() => { + safeSwitchTabTo(pendingTabSwitch); + setPendingTabSwitch(null); + }, 50);And in the delete handler, consider switching immediately after delete:
- if (currentTab === tabName) { - const nextTab = nextClosestTab(tabName); - setPendingTabSwitch(nextTab); - } + if (currentTab === tabName) { + switchTabTo(nextClosestTab(tabName)); + }
375-387: Stale closures + leaking timers in debounced reorder.Debounced callback recreates on each render (deps include
isOperating) and lacks cleanup.Use a stable debouncer (refs) and cancel on unmount (pattern you used elsewhere):
- const debouncedReorder = React.useCallback( - debounce((newOrder) => { + const latest = React.useRef({ updateTabOrder, commitTabOrder, isOperating }); + React.useEffect(() => { latest.current = { updateTabOrder, commitTabOrder, isOperating }; }, [updateTabOrder, commitTabOrder, isOperating]); + const debouncedReorder = React.useMemo( + () => debounce((newOrder: string[]) => { - if (isOperating) return; + if (latest.current.isOperating) return; setIsOperating(true); - updateTabOrder(newOrder); + latest.current.updateTabOrder(newOrder); setTimeout(() => { - commitTabOrder(); + latest.current.commitTabOrder(); setIsOperating(false); }, 50); }, 300), - [isOperating, updateTabOrder, commitTabOrder] + [] ); + React.useEffect(() => () => debouncedReorder.cancel(), [debouncedReorder]);
294-301: Don't block navigation to permanent tabs like “Feed”.
safeSwitchTabTorejects any tab not intabList. “Feed” isn’t intabListbut is a valid permanent tab.- const safeSwitchTabTo = React.useCallback((tabName: string, shouldSave?: boolean) => { - if (!tabName || typeof tabName !== 'string' || !tabList.includes(tabName)) { + const safeSwitchTabTo = React.useCallback((tabName: string, shouldSave?: boolean) => { + if ( + !tabName || + typeof tabName !== 'string' || + (!tabList.includes(tabName) && !PERMANENT_TABS.includes(tabName)) + ) { console.warn('Attempted navigation to invalid tab:', tabName); return; } switchTabTo(tabName, shouldSave); }, [switchTabTo, tabList]);
189-227: Rename flow: await each async op to avoid race conditions.You call
renameTab,updateTabOrder,commitTab,commitTabOrderwithout await—can lead to interleaving and lost commits.- renameTab(tabName, uniqueName); + await Promise.resolve(renameTab(tabName, uniqueName)); const newOrder = tabList.map((name) => (name === tabName ? uniqueName : name)); - updateTabOrder(newOrder); + await Promise.resolve(updateTabOrder(newOrder)); switchTabTo(uniqueName); - commitTab(uniqueName); - commitTabOrder(); + await Promise.resolve(commitTab(uniqueName)); + await Promise.resolve(commitTabOrder());
🧹 Nitpick comments (7)
src/app/(spaces)/PublicSpace.tsx (4)
582-590: Don'tawaita plain object; drop the unnecessary await.
configisn’t a Promise.await config(Line 582) is misleading and can hide type errors.- const resolvedConfig = await config; + const resolvedConfig = config;
457-459: Duplicate router.replace calls for profile spaces.You replace once after FID registration (Lines 457–459) and again after
newSpaceId(Lines 483–485). This causes double navigation.Remove the earlier replace:
- const newUrl = getSpacePageUrl(spacePageData.defaultTab); - router.replace(newUrl);Also applies to: 483-485
642-647: Double-debouncing tab navigation.
debouncedSwitchTabToadds 150ms debounce here, while TabBar also debounces create/delete/rename flows. This stacks delays and can feel unresponsive.Keep debouncing in one place (prefer TabBar for user actions) and make
switchTabTohere immediate.- const debouncedSwitchTabTo = useMemo( - () => debounce((tabName: string, shouldSave: boolean = true) => { - switchTabTo(tabName, shouldSave); - }, 150), - [switchTabTo] - ); + const debouncedSwitchTabTo = switchTabTo; // immediate; TabBar already debounces ops
568-625: Order of operations: save/commit the previous tab before updating URL.Current flow sets
setCurrentTabName(tabName)then saves/commits the prior tab via capturedcurrentTabName. It works but is fragile ifgetCurrentTabNamechanges between renders.Capture
prevTabNamebefore callingsetCurrentTabNameand usecurrentConfig.tabs[prevTabName]directly to avoid staleconfigcoupling.src/common/components/organisms/TabBar.tsx (3)
155-186: Delete flow: await the async handler.
await deleteTab(tabName)is correct, but only if the prop type allows Promise (see types fix). Ensure commit/order updates that depend on deletion also await as needed.No diff beyond types change; keep the await to gate
isOperating.
392-392: TooltipProvider wrapper misuse and nesting.Provider is used as a generic wrapper; also nested Providers are unnecessary here.
Remove the outermost Provider or replace with a simple div; keep a single Provider at app root if required.
Also applies to: 465-469
17-22: Unused prop (inHome).
inHomeis declared but never used.Remove it from props and call sites to reduce surface area.
Also applies to: 48-64
📜 Review details
Configuration used: CodeRabbit UI
Review profile: CHILL
Plan: Pro
📒 Files selected for processing (2)
src/app/(spaces)/PublicSpace.tsx(10 hunks)src/common/components/organisms/TabBar.tsx(8 hunks)
🧰 Additional context used
🧬 Code graph analysis (2)
src/app/(spaces)/PublicSpace.tsx (3)
src/common/types/spaceData.ts (1)
isTokenSpace(71-73)src/common/components/organisms/Sidebar.tsx (1)
useSidebarContext(50-52)src/constants/etherscanChainIds.ts (1)
EtherScanChainName(1-1)
src/common/components/organisms/TabBar.tsx (4)
src/common/lib/hooks/useIsMobile.optimized.ts (1)
useIsMobile(6-36)src/common/lib/hooks/useIsMobile.ts (1)
useIsMobile(5-8)src/common/components/organisms/Sidebar.tsx (1)
useSidebarContext(50-52)src/common/data/stores/app/homebase/homebaseTabsStore.ts (3)
createTab(257-337)deleteTab(338-375)renameTab(376-420)
⏰ Context from checks skipped due to timeout of 90000ms. You can increase the timeout in your CodeRabbit configuration to a maximum of 15 minutes (900000ms). (1)
- GitHub Check: Vercel Agent Review
🔇 Additional comments (2)
src/app/(spaces)/PublicSpace.tsx (1)
369-509: AC check: new tab should auto‑navigate.The create flow calls
switchTabTo(finalTabName, true)(from TabBar), which invokesrouter.push(getSpacePageUrl(tabName))here—should satisfy AC. The double-debouncing and duplicate push logic in TabBar can still mask it.Please verify quickly in the UI:
- Open any space; click “Customize” → “Tab”.
- On creation, confirm URL updates to the new tab within <300ms and content loads.
- Repeat rapidly twice; confirm no stuck operation state.
If it fails, apply the TabBar fixes in my comments (centralize navigation and await async ops).
src/common/components/organisms/TabBar.tsx (1)
103-152: Commit flow: refactorcommitTabOrderto return a Promise if you need to await persistence
commitTabOrder()is typed to returnvoid, so wrapping it inawait Promise.resolve(...)has no effect. Either leave the calls as-is or refactorcommitTabOrder(and its upstream API/store method) to return aPromise<void>that resolves once the order is persisted—then you canawait commitTabOrder()before/afterswitchTabTo.Likely an incorrect or invalid review comment.
| <Reorder.Group | ||
| as="ol" | ||
| axis="x" | ||
| onReorder={updateTabOrder} | ||
| onReorder={debouncedReorder} | ||
| className="flex flex-nowrap gap-5 md:gap-4 items-start ml-2 my-4 mr-4 tabs" | ||
| values={tabList} | ||
| > |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix Reorder.Group values–children mismatch (“Feed”).
You render children for ["Feed", ...tabList] but values={tabList}. This desyncs DnD.
Render “Feed” outside the group:
- <div className="overflow-x-auto scrollbar-hide" style={{ scrollbarWidth: 'none', msOverflowStyle: 'none' }}>
- <Reorder.Group
+ <div className="overflow-x-auto scrollbar-hide" style={{ scrollbarWidth: 'none', msOverflowStyle: 'none' }}>
+ {inHomebase && (
+ <Tab
+ key="tab-Feed"
+ getSpacePageUrl={getSpacePageUrl}
+ tabName="Feed"
+ inEditMode={inEditMode}
+ isSelected={currentTab === "Feed"}
+ onClick={() => handleTabClick("Feed")}
+ removeable={false}
+ draggable={false}
+ renameable={false}
+ preloadTabData={preloadTabData}
+ />
+ )}
+ <Reorder.Group
as="ol"
axis="x"
onReorder={debouncedReorder}
className="flex flex-nowrap gap-5 md:gap-4 items-start ml-2 my-4 mr-4 tabs"
values={tabList}
>
- {map(
- inHomebase ? ["Feed", ...tabList] : tabList,
- (tabName: string) => (
+ {map(tabList, (tabName: string) => (
<Tab
key={`tab-${tabName}`}
getSpacePageUrl={getSpacePageUrl}
tabName={tabName}
inEditMode={inEditMode}
isSelected={currentTab === tabName}
onClick={() => handleTabClick(tabName)}
removeable={isEditableTab(tabName)}
draggable={inEditMode}
renameable={isEditableTab(tabName)}
onRemove={() => debouncedDeleteTab(tabName)}
renameTab={(tab, newName) => debouncedRenameTab(tab, newName)}
preloadTabData={preloadTabData}
/>
- )
- )}
+ ))}
</Reorder.Group>
</div>Also applies to: 410-429
🤖 Prompt for AI Agents
In src/common/components/organisms/TabBar.tsx around lines 403–409 (and also
apply the same fix for the similar block at 410–429): the Reorder.Group is
rendering children that include the "Feed" tab but values={tabList} does not
include "Feed", causing a values–children mismatch for drag-and-drop; fix by
rendering the "Feed" tab element outside of the Reorder.Group (before the group)
so the group only contains items that correspond to tabList, and ensure the
onReorder handler and values prop align with the children inside the group (or
alternatively include "Feed" in values if you intentionally want it draggable) —
apply this change to both occurrences mentioned.
Summary by CodeRabbit
New Features
Improvements
Bug Fixes