diff --git a/packages/commonwealth/client/scripts/helpers/launchpad.ts b/packages/commonwealth/client/scripts/helpers/launchpad.ts
index 394b832e726..7868642563d 100644
--- a/packages/commonwealth/client/scripts/helpers/launchpad.ts
+++ b/packages/commonwealth/client/scripts/helpers/launchpad.ts
@@ -18,7 +18,7 @@ export const calculateTokenPricing = (
);
const marketCapCurrent = currentPrice * token.initial_supply;
const marketCapGoal = token.eth_market_cap_target * ethToUsdRate;
- const isMarketCapGoalReached = false; // TODO: https://github.com/hicommonwealth/commonwealth/issues/9887
+ const isMarketCapGoalReached = marketCapCurrent >= marketCapGoal;
return {
currentPrice: parseFloat(`${currentPrice.toFixed(8)}`),
diff --git a/packages/commonwealth/client/scripts/views/components/TokenCard/MarketCapProgress.tsx b/packages/commonwealth/client/scripts/views/components/TokenCard/MarketCapProgress.tsx
index 244123fcaea..4facb3bfdba 100644
--- a/packages/commonwealth/client/scripts/views/components/TokenCard/MarketCapProgress.tsx
+++ b/packages/commonwealth/client/scripts/views/components/TokenCard/MarketCapProgress.tsx
@@ -8,7 +8,7 @@ import './MarketCapProgress.scss';
interface MarketCapProgressProps {
currency?: SupportedCurrencies;
- marketCap: { current: number; goal: number };
+ marketCap: { current: number; goal: number; isCapped: boolean };
onBodyClick?: (e: React.MouseEvent) => void;
}
@@ -18,7 +18,6 @@ const MarketCapProgress = ({
onBodyClick,
}: MarketCapProgressProps) => {
const currencySymbol = currencyNameToSymbolMap[currency];
- const isCapped = marketCap.current === marketCap.goal;
const progressPercentage = Math.floor(
(marketCap.current / marketCap.goal) * 100,
);
@@ -26,7 +25,7 @@ const MarketCapProgress = ({
return (
@@ -36,7 +35,7 @@ const MarketCapProgress = ({
{numeral(marketCap.current).format('0.0a')} | Goal {currencySymbol}
{numeral(marketCap.goal).format('0.0a')}
- {isCapped && (
+ {marketCap.isCapped && (
)}
diff --git a/packages/commonwealth/client/scripts/views/components/TokenCard/TokenCard.tsx b/packages/commonwealth/client/scripts/views/components/TokenCard/TokenCard.tsx
index 5bcea28d1e9..1a0a8493cae 100644
--- a/packages/commonwealth/client/scripts/views/components/TokenCard/TokenCard.tsx
+++ b/packages/commonwealth/client/scripts/views/components/TokenCard/TokenCard.tsx
@@ -1,6 +1,7 @@
import clsx from 'clsx';
import { currencyNameToSymbolMap, SupportedCurrencies } from 'helpers/currency';
import React, { ReactNode } from 'react';
+import { TradingMode } from '../../modals/TradeTokenModel';
import { CWText } from '../component_kit/cw_text';
import { CWButton } from '../component_kit/new_designs/CWButton';
import { CWTooltip } from '../component_kit/new_designs/CWTooltip';
@@ -14,12 +15,12 @@ interface TokenCardProps {
symbol: string;
iconURL: string;
currency?: SupportedCurrencies;
- marketCap: { current: number; goal: number };
+ marketCap: { current: number; goal: number; isCapped: boolean };
price: number;
pricePercentage24HourChange: number;
- mode: 'buy' | 'swap';
+ mode: TradingMode.Buy | TradingMode.Swap;
className?: string;
- onCTAClick?: () => void;
+ onCTAClick?: (mode: TradingMode) => void;
onCardBodyClick?: () => void;
}
@@ -129,7 +130,7 @@ const TokenCard = ({
buttonWidth="full"
buttonType="secondary"
buttonAlt="green"
- onClick={onCTAClick}
+ onClick={() => onCTAClick?.(mode)}
/>
);
diff --git a/packages/commonwealth/client/scripts/views/components/sidebar/CommunitySection/TokenTradeWidget/TokenTradeWidget.scss b/packages/commonwealth/client/scripts/views/components/sidebar/CommunitySection/TokenTradeWidget/TokenTradeWidget.scss
index 49b2dd1e357..d840a84c8db 100644
--- a/packages/commonwealth/client/scripts/views/components/sidebar/CommunitySection/TokenTradeWidget/TokenTradeWidget.scss
+++ b/packages/commonwealth/client/scripts/views/components/sidebar/CommunitySection/TokenTradeWidget/TokenTradeWidget.scss
@@ -25,11 +25,18 @@
.action-btns {
display: grid;
- grid-template-columns: 1fr 1fr;
gap: 8px;
width: 100%;
padding: 8px;
+ &.cols-1 {
+ grid-template-columns: 1fr;
+ }
+
+ &.cols-2 {
+ grid-template-columns: 1fr 1fr;
+ }
+
button {
text-transform: capitalize;
}
diff --git a/packages/commonwealth/client/scripts/views/components/sidebar/CommunitySection/TokenTradeWidget/TokenTradeWidget.tsx b/packages/commonwealth/client/scripts/views/components/sidebar/CommunitySection/TokenTradeWidget/TokenTradeWidget.tsx
index bb88f2bddb6..60e876763e6 100644
--- a/packages/commonwealth/client/scripts/views/components/sidebar/CommunitySection/TokenTradeWidget/TokenTradeWidget.tsx
+++ b/packages/commonwealth/client/scripts/views/components/sidebar/CommunitySection/TokenTradeWidget/TokenTradeWidget.tsx
@@ -1,15 +1,18 @@
import { TokenView } from '@hicommonwealth/schemas';
import { ChainBase } from '@hicommonwealth/shared';
+import clsx from 'clsx';
import { currencyNameToSymbolMap, SupportedCurrencies } from 'helpers/currency';
import { calculateTokenPricing } from 'helpers/launchpad';
+import useDeferredConditionTriggerCallback from 'hooks/useDeferredConditionTriggerCallback';
import React, { useState } from 'react';
import app from 'state';
import { useFetchTokenUsdRateQuery } from 'state/api/communityStake';
-import TradeTokenModal from 'views/modals/TradeTokenModel';
-import {
+import useUserStore from 'state/ui/user';
+import { AuthModal } from 'views/modals/AuthModal';
+import TradeTokenModal, {
TokenWithCommunity,
TradingMode,
-} from 'views/modals/TradeTokenModel/TradeTokenForm';
+} from 'views/modals/TradeTokenModel';
import { z } from 'zod';
import { CWDivider } from '../../../component_kit/cw_divider';
import { CWIconButton } from '../../../component_kit/cw_icon_button';
@@ -32,6 +35,7 @@ export const TokenTradeWidget = ({
token,
currency = SupportedCurrencies.USD,
}: TokenTradeWidgetProps) => {
+ const user = useUserStore();
const currencySymbol = currencyNameToSymbolMap[currency];
const [isWidgetExpanded, setIsWidgetExpanded] = useState(true);
@@ -44,6 +48,11 @@ export const TokenTradeWidget = ({
};
}>({ isOpen: false, tradeConfig: undefined });
+ const [isAuthModalOpen, setIsAuthModalOpen] = useState(false);
+ const { register, trigger } = useDeferredConditionTriggerCallback({
+ shouldRunTrigger: user.isLoggedIn,
+ });
+
const { data: ethToCurrencyRateData, isLoading: isLoadingETHToCurrencyRate } =
useFetchTokenUsdRateQuery({
tokenSymbol: 'ETH',
@@ -53,7 +62,19 @@ export const TokenTradeWidget = ({
);
const tokenPricing = calculateTokenPricing(token, ethToUsdRate);
+ const openAuthModalOrTriggerCallback = () => {
+ if (user.isLoggedIn) {
+ trigger();
+ } else {
+ setIsAuthModalOpen(!user.isLoggedIn);
+ }
+ };
+
const handleCTAClick = (mode: TradingMode) => {
+ if (!user.isLoggedIn) {
+ setIsAuthModalOpen(true);
+ }
+
setTokenLaunchModalConfig({
isOpen: true,
tradeConfig: {
@@ -108,23 +129,57 @@ export const TokenTradeWidget = ({
marketCap={{
current: tokenPricing.marketCapCurrent,
goal: tokenPricing.marketCapGoal,
+ isCapped: tokenPricing.isMarketCapGoalReached,
}}
/>
-
- {[TradingMode.Buy, TradingMode.Sell].map((mode) => (
+
+ {!tokenPricing.isMarketCapGoalReached ? (
+ [TradingMode.Buy, TradingMode.Sell].map((mode) => (
+ {
+ register({
+ cb: () => {
+ handleCTAClick(mode);
+ },
+ });
+ openAuthModalOrTriggerCallback();
+ }}
+ />
+ ))
+ ) : (
handleCTAClick(mode)}
+ onClick={() => {
+ register({
+ cb: () => {
+ handleCTAClick(TradingMode.Swap);
+ },
+ });
+ openAuthModalOrTriggerCallback();
+ }}
/>
- ))}
+ )}
>
)}
+
setIsAuthModalOpen(false)}
+ />
{tokenLaunchModalConfig.tradeConfig && (
{
+ const { trading, addresses, isActionPending, onCTAClick } =
+ useCommonTradeTokenForm({
+ tradeConfig: {
+ ...tradeConfig,
+ currency: TRADING_CURRENCY,
+ buyTokenPresetAmounts: [100, 300, 1000],
+ sellTokenPresetAmounts: ['Max'],
+ },
+ addressType: tradeConfig.addressType,
+ onTradeComplete: () => onModalClose?.(),
+ });
+
+ useBeforeUnload(isActionPending);
+
+ return (
+ !isActionPending && onModalClose?.()}
+ size="medium"
+ className="CommonTradeModal"
+ content={
+ <>
+
+ Trade Token - {tradeConfig.token.symbol}{' '}
+ {trading.token.icon_url && (
+
+ )}
+
+ }
+ onModalClose={() => !isActionPending && onModalClose?.()}
+ />
+
+
+
+
+ <>>
+
+ >
+ }
+ />
+ );
+};
+
+export default CommonTradeModal;
diff --git a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/AddressBalance/AddressBalance.scss b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/AddressBalance/AddressBalance.scss
similarity index 67%
rename from packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/AddressBalance/AddressBalance.scss
rename to packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/AddressBalance/AddressBalance.scss
index 9892dd19ac0..28c9e13ce11 100644
--- a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/AddressBalance/AddressBalance.scss
+++ b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/AddressBalance/AddressBalance.scss
@@ -1,4 +1,4 @@
-@import '../../../../../styles/shared.scss';
+@import '../../../../../../styles/shared.scss';
.AddressBalance {
display: flex;
diff --git a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/AddressBalance/AddressBalance.tsx b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/AddressBalance/AddressBalance.tsx
similarity index 88%
rename from packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/AddressBalance/AddressBalance.tsx
rename to packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/AddressBalance/AddressBalance.tsx
index e104abfb85e..bea39eb71b1 100644
--- a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/AddressBalance/AddressBalance.tsx
+++ b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/AddressBalance/AddressBalance.tsx
@@ -2,8 +2,9 @@ import React from 'react';
import { Skeleton } from 'views/components/Skeleton';
import { CWIcon } from 'views/components/component_kit/cw_icons/cw_icon';
import { CWText } from 'views/components/component_kit/cw_text';
-import TokenIcon from '../../TokenIcon';
-import { AddressBalanceProps, TradingMode } from '../types';
+import TokenIcon from '../../../TokenIcon';
+import { TradingMode } from '../../../types';
+import { AddressBalanceProps } from '../types';
import './AddressBalance.scss';
const AddressBalance = ({ trading, addresses }: AddressBalanceProps) => {
diff --git a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/AddressBalance/index.ts b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/AddressBalance/index.ts
similarity index 100%
rename from packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/AddressBalance/index.ts
rename to packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/AddressBalance/index.ts
diff --git a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/AmountSelections/AmountSelections.scss b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/AmountSelections/AmountSelections.scss
similarity index 96%
rename from packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/AmountSelections/AmountSelections.scss
rename to packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/AmountSelections/AmountSelections.scss
index 6bdb2cd5a3d..86b886b242b 100644
--- a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/AmountSelections/AmountSelections.scss
+++ b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/AmountSelections/AmountSelections.scss
@@ -1,4 +1,4 @@
-@import '../../../../../styles/shared.scss';
+@import '../../../../../../styles/shared.scss';
.AmountSelections {
display: flex;
diff --git a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/AmountSelections/BuyAmountSelection.tsx b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/AmountSelections/BuyAmountSelection.tsx
similarity index 98%
rename from packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/AmountSelections/BuyAmountSelection.tsx
rename to packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/AmountSelections/BuyAmountSelection.tsx
index 55c50fd0bce..36eeefd832b 100644
--- a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/AmountSelections/BuyAmountSelection.tsx
+++ b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/AmountSelections/BuyAmountSelection.tsx
@@ -8,7 +8,7 @@ import { CWIcon } from 'views/components/component_kit/cw_icons/cw_icon';
import { CWText } from 'views/components/component_kit/cw_text';
import { CWTag } from 'views/components/component_kit/new_designs/CWTag';
import { CWTextInput } from 'views/components/component_kit/new_designs/CWTextInput';
-import TokenIcon from '../../TokenIcon';
+import TokenIcon from '../../../TokenIcon';
import { BuyAmountSelectionProps } from '../types';
import './AmountSelections.scss';
diff --git a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/AmountSelections/SellAmountSelection.tsx b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/AmountSelections/SellAmountSelection.tsx
similarity index 100%
rename from packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/AmountSelections/SellAmountSelection.tsx
rename to packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/AmountSelections/SellAmountSelection.tsx
diff --git a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/TradeTokenForm.scss b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/CommonTradeTokenForm.scss
similarity index 86%
rename from packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/TradeTokenForm.scss
rename to packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/CommonTradeTokenForm.scss
index ea56ad1fe1d..0eb51cee2d4 100644
--- a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/TradeTokenForm.scss
+++ b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/CommonTradeTokenForm.scss
@@ -1,10 +1,16 @@
-@import '../../../../styles/shared.scss';
+@import '../../../../../styles/shared.scss';
-.TradeTokenForm {
+.CommonTradeTokenForm {
display: flex;
flex-direction: column;
gap: 12px;
+ .Tab {
+ .Text {
+ text-transform: capitalize;
+ }
+ }
+
.balance-row {
display: flex;
justify-content: space-between;
diff --git a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/TradeTokenForm.tsx b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/CommonTradeTokenForm.tsx
similarity index 91%
rename from packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/TradeTokenForm.tsx
rename to packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/CommonTradeTokenForm.tsx
index b1cfb80e193..91237c1aeb2 100644
--- a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/TradeTokenForm.tsx
+++ b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/CommonTradeTokenForm.tsx
@@ -11,22 +11,23 @@ import { CWTooltip } from 'views/components/component_kit/new_designs/CWTooltip'
import {
CustomAddressOption,
CustomAddressOptionElement,
-} from '../../ManageCommunityStakeModal/StakeExchangeForm/CustomAddressOption';
+} from '../../../ManageCommunityStakeModal/StakeExchangeForm/CustomAddressOption';
+import { TradingMode } from '../../types';
import AddressBalance from './AddressBalance';
import BuyAmountSelection from './AmountSelections/BuyAmountSelection';
import SellAmountSelection from './AmountSelections/SellAmountSelection';
+import './CommonTradeTokenForm.scss';
import BuyReceipt from './ReceiptDetails/BuyReceipt';
import SellReceipt from './ReceiptDetails/SellReceipt';
-import './TradeTokenForm.scss';
import { convertAddressToDropdownOption } from './helpers';
-import { TradeTokenFormProps, TradingMode } from './types';
+import { CommonTradeTokenFormProps } from './types';
-const TradeTokenForm = ({
+const CommonTradeTokenForm = ({
trading,
addresses,
onCTAClick,
isActionPending,
-}: TradeTokenFormProps) => {
+}: CommonTradeTokenFormProps) => {
const [isReceiptDetailOpen, setIsReceiptDetailOpen] = useState(false);
const getCTADisabledTooltipText = () => {
@@ -78,14 +79,14 @@ const TradeTokenForm = ({
};
return (
-
+
- {Object.keys(TradingMode).map((mode) => (
+ {[TradingMode.Buy, TradingMode.Sell].map((mode) => (
trading.mode.onChange(TradingMode[mode])}
- isSelected={trading.mode.value === TradingMode[mode]}
+ onClick={() => trading.mode.onChange(mode)}
+ isSelected={trading.mode.value === mode}
/>
))}
@@ -181,4 +182,4 @@ const TradeTokenForm = ({
);
};
-export default TradeTokenForm;
+export default CommonTradeTokenForm;
diff --git a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/ReceiptDetails/BuyReceipt.tsx b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/ReceiptDetails/BuyReceipt.tsx
similarity index 100%
rename from packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/ReceiptDetails/BuyReceipt.tsx
rename to packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/ReceiptDetails/BuyReceipt.tsx
diff --git a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/ReceiptDetails/ReceiptDetails.scss b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/ReceiptDetails/ReceiptDetails.scss
similarity index 86%
rename from packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/ReceiptDetails/ReceiptDetails.scss
rename to packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/ReceiptDetails/ReceiptDetails.scss
index dec9e66de56..ceb2883efe1 100644
--- a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/ReceiptDetails/ReceiptDetails.scss
+++ b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/ReceiptDetails/ReceiptDetails.scss
@@ -1,4 +1,4 @@
-@import '../../../../../styles/shared.scss';
+@import '../../../../../../styles/shared.scss';
.ReceiptDetails {
display: flex;
diff --git a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/ReceiptDetails/SellReceipt.tsx b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/ReceiptDetails/SellReceipt.tsx
similarity index 100%
rename from packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/ReceiptDetails/SellReceipt.tsx
rename to packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/ReceiptDetails/SellReceipt.tsx
diff --git a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/helpers.ts b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/helpers.ts
similarity index 100%
rename from packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/helpers.ts
rename to packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/helpers.ts
diff --git a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/index.ts b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/index.ts
new file mode 100644
index 00000000000..c2158d3faca
--- /dev/null
+++ b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/index.ts
@@ -0,0 +1,6 @@
+import CommonTradeTokenForm from './CommonTradeTokenForm';
+import useCommonTradeTokenForm from './useCommonTradeTokenForm';
+export * from './types';
+export * from './useCommonTradeTokenForm';
+export { useCommonTradeTokenForm };
+export default CommonTradeTokenForm;
diff --git a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/types.ts b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/types.ts
similarity index 56%
rename from packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/types.ts
rename to packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/types.ts
index dadf7f017e6..651c67c0b58 100644
--- a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/types.ts
+++ b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/types.ts
@@ -1,28 +1,14 @@
-import { ExtendedCommunity, TokenView } from '@hicommonwealth/schemas';
+import { ExtendedCommunity } from '@hicommonwealth/schemas';
import { ChainBase } from '@hicommonwealth/shared';
import { SupportedCurrencies } from 'helpers/currency';
import NodeInfo from 'models/NodeInfo';
import { z } from 'zod';
-import useTradeTokenForm from './useTradeTokenForm';
-
-export enum TradingMode {
- Buy = 'buy',
- Sell = 'sell',
-}
-
-export const TokenWithCommunity = TokenView.extend({
- community_id: z.string(),
-});
-
-export type TradingConfig = {
- mode: TradingMode;
- token: z.infer;
- addressType: ChainBase;
-};
+import { TradingConfig } from '../../types';
+import useCommonTradeTokenFormProps from './useCommonTradeTokenForm';
export type TokenPresetAmounts = number | 'Max';
-export type UseTradeTokenFormProps = {
+export type UseCommonTradeTokenFormProps = {
tradeConfig: TradingConfig & {
currency: SupportedCurrencies;
buyTokenPresetAmounts?: TokenPresetAmounts[];
@@ -32,7 +18,7 @@ export type UseTradeTokenFormProps = {
onTradeComplete?: () => void;
};
-export type UseBuyTradeProps = UseTradeTokenFormProps & {
+export type UseBuyTradeProps = UseCommonTradeTokenFormProps & {
enabled: boolean;
chainNode: NodeInfo;
tokenCommunity?: z.infer;
@@ -42,24 +28,26 @@ export type UseBuyTradeProps = UseTradeTokenFormProps & {
export type UseSellTradeProps = UseBuyTradeProps;
-export type TradeTokenFormProps = ReturnType;
+export type CommonTradeTokenFormProps = ReturnType<
+ typeof useCommonTradeTokenFormProps
+>;
export type AddressBalanceProps = Pick<
- ReturnType,
+ ReturnType,
'trading' | 'addresses'
>;
export type BuyAmountSelectionProps = Pick<
- ReturnType,
+ ReturnType,
'trading'
>;
export type SellAmountSelectionProps = Pick<
- ReturnType,
+ ReturnType,
'trading'
>;
export type ReceiptDetailsProps = Pick<
- ReturnType,
+ ReturnType,
'trading'
>;
diff --git a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/useBuyTrade.ts b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/useBuyTrade.ts
similarity index 100%
rename from packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/useBuyTrade.ts
rename to packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/useBuyTrade.ts
diff --git a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/useTradeTokenForm.ts b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/useCommonTradeTokenForm.ts
similarity index 93%
rename from packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/useTradeTokenForm.ts
rename to packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/useCommonTradeTokenForm.ts
index f1fe0ee51aa..ef542478f28 100644
--- a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/useTradeTokenForm.ts
+++ b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/useCommonTradeTokenForm.ts
@@ -7,17 +7,18 @@ import { useGetCommunityByIdQuery } from 'state/api/communities';
import { fetchCachedNodes } from 'state/api/nodes';
import useUserStore from 'state/ui/user';
import { z } from 'zod';
-import { TradingMode, UseTradeTokenFormProps } from './types';
+import { TradingMode } from '../../types';
+import { UseCommonTradeTokenFormProps } from './types';
import useBuyTrade from './useBuyTrade';
import useSellTrade from './useSellTrade';
const COMMON_PLATFORM_FEE_PERCENTAGE = 5; // make configurable when needed
-const useTradeTokenForm = ({
+const useCommonTradeTokenForm = ({
tradeConfig,
addressType,
onTradeComplete,
-}: UseTradeTokenFormProps) => {
+}: UseCommonTradeTokenFormProps) => {
const [tradingMode, setTradingMode] = useState(
tradeConfig.mode || TradingMode.Buy,
);
@@ -106,7 +107,7 @@ const useTradeTokenForm = ({
handleTokenSell().catch(console.error);
break;
default:
- console.error('Trading mode not selected');
+ console.error(`Trading mode:${tradingMode} not implemented.`);
break;
}
};
@@ -145,4 +146,4 @@ const useTradeTokenForm = ({
};
};
-export default useTradeTokenForm;
+export default useCommonTradeTokenForm;
diff --git a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/useSellTrade.ts b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/useSellTrade.ts
similarity index 100%
rename from packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/useSellTrade.ts
rename to packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/CommonTradeTokenForm/useSellTrade.ts
diff --git a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/index.ts b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/index.ts
new file mode 100644
index 00000000000..7ade23eb06c
--- /dev/null
+++ b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/CommonTradeModal/index.ts
@@ -0,0 +1,3 @@
+import CommonTradeModal from './CommonTradeModal';
+
+export default CommonTradeModal;
diff --git a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/index.ts b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/index.ts
deleted file mode 100644
index b0f0d32965c..00000000000
--- a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenForm/index.ts
+++ /dev/null
@@ -1,6 +0,0 @@
-import TradeTokenForm from './TradeTokenForm';
-import useTradeTokenForm from './useTradeTokenForm';
-export * from './types';
-export * from './useTradeTokenForm';
-export { useTradeTokenForm };
-export default TradeTokenForm;
diff --git a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenModal.tsx b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenModal.tsx
index cf9872d92c6..1bfea2e2340 100644
--- a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenModal.tsx
+++ b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/TradeTokenModal.tsx
@@ -1,80 +1,28 @@
-import { SupportedCurrencies } from 'helpers/currency';
-import useBeforeUnload from 'hooks/useBeforeUnload';
import React from 'react';
-import { CWText } from '../../components/component_kit/cw_text';
-import {
- CWModal,
- CWModalBody,
- CWModalFooter,
- CWModalHeader,
-} from '../../components/component_kit/new_designs/CWModal';
-import TokenIcon from './TokenIcon';
-import TradeTokenForm, {
- TradingConfig,
- useTradeTokenForm,
-} from './TradeTokenForm';
-import './TradeTokenModal.scss';
-
-const TRADING_CURRENCY = SupportedCurrencies.USD; // make configurable when needed
-
-type TradeTokenModalProps = {
- isOpen: boolean;
- onModalClose?: () => void;
- tradeConfig: TradingConfig;
-};
+import CommonTradeModal from './CommonTradeModal';
+import UniswapTradeModal from './UniswapTradeModal/UniswapTradeModal';
+import { TradeTokenModalProps, TradingMode } from './types';
const TradeTokenModal = ({
isOpen,
onModalClose,
tradeConfig,
}: TradeTokenModalProps) => {
- const { trading, addresses, isActionPending, onCTAClick } = useTradeTokenForm(
- {
- tradeConfig: {
- ...tradeConfig,
- currency: TRADING_CURRENCY,
- buyTokenPresetAmounts: [100, 300, 1000],
- sellTokenPresetAmounts: ['Max'],
- },
- addressType: tradeConfig.addressType,
- onTradeComplete: () => onModalClose?.(),
- },
- );
-
- useBeforeUnload(isActionPending);
+ if (tradeConfig.mode === TradingMode.Swap) {
+ return (
+
+ );
+ }
return (
- !isActionPending && onModalClose?.()}
- size="medium"
- className="TradeTokenModal"
- content={
- <>
-
- Trade Token - {tradeConfig.token.symbol}{' '}
- {trading.token.icon_url && (
-
- )}
-
- }
- onModalClose={() => !isActionPending && onModalClose?.()}
- />
-
-
-
-
- <>>
-
- >
- }
+
);
};
diff --git a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/UniswapTradeModal/UniswapTradeModal.scss b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/UniswapTradeModal/UniswapTradeModal.scss
new file mode 100644
index 00000000000..5720fd21360
--- /dev/null
+++ b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/UniswapTradeModal/UniswapTradeModal.scss
@@ -0,0 +1,47 @@
+@import '../../../../styles/shared.scss';
+
+.UniswapTradeModal {
+ overflow-y: scroll;
+ padding-left: 8px;
+
+ .CWModalBody {
+ max-height: 500px;
+ }
+
+ .token-info {
+ display: flex;
+ align-items: center;
+ justify-self: flex-end;
+ gap: 4px;
+ }
+
+ .Uniswap {
+ .uniswap-widget-wrapper {
+ border: none !important;
+ box-shadow: none !important;
+ margin: auto;
+ width: 100%;
+
+ button[color='interactive'] {
+ color: $white !important;
+
+ svg {
+ stroke: $white !important;
+ }
+ }
+
+ button[color='accent'],
+ button[color='accentSoft'] {
+ div {
+ color: $white !important;
+ }
+ }
+
+ [class^='TokenOptions__OnHover'] {
+ // fixes a css hover bug with uniswap widget where an extra hover div
+ // appeared before the active hover element
+ display: none !important;
+ }
+ }
+ }
+}
diff --git a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/UniswapTradeModal/UniswapTradeModal.tsx b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/UniswapTradeModal/UniswapTradeModal.tsx
new file mode 100644
index 00000000000..4ff1b42a54d
--- /dev/null
+++ b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/UniswapTradeModal/UniswapTradeModal.tsx
@@ -0,0 +1,80 @@
+import { SwapWidget } from '@uniswap/widgets';
+import '@uniswap/widgets/fonts.css';
+import { notifySuccess } from 'controllers/app/notifications';
+import React from 'react';
+import { CWText } from 'views/components/component_kit/cw_text';
+import CWCircleMultiplySpinner from 'views/components/component_kit/new_designs/CWCircleMultiplySpinner';
+import {
+ CWModal,
+ CWModalBody,
+ CWModalFooter,
+ CWModalHeader,
+} from 'views/components/component_kit/new_designs/CWModal';
+import TokenIcon from '../TokenIcon';
+import { TradeTokenModalProps } from '../types';
+import './UniswapTradeModal.scss';
+import useUniswapTradeModal from './useUniswapTradeModal';
+
+const UniswapTradeModal = ({
+ isOpen,
+ onModalClose,
+ tradeConfig,
+}: TradeTokenModalProps) => {
+ const { uniswapWidget } = useUniswapTradeModal({ tradeConfig });
+
+ return (
+ onModalClose?.()}
+ size="medium"
+ className="UniswapTradeModal"
+ content={
+ <>
+
+ Swap Token - {tradeConfig.token.symbol}{' '}
+ {tradeConfig.token.icon_url && (
+
+ )}
+
+ }
+ onModalClose={() => onModalClose?.()}
+ />
+
+
+ {!uniswapWidget.isReady ? (
+
+ ) : (
+ notifySuccess('Transaction successful!')}
+ />
+ )}
+
+
+
+ <>>
+
+ >
+ }
+ />
+ );
+};
+
+export default UniswapTradeModal;
diff --git a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/UniswapTradeModal/index.ts b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/UniswapTradeModal/index.ts
new file mode 100644
index 00000000000..41a8ff371f9
--- /dev/null
+++ b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/UniswapTradeModal/index.ts
@@ -0,0 +1,3 @@
+import UniswapTradeModal from './UniswapTradeModal';
+
+export default UniswapTradeModal;
diff --git a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/UniswapTradeModal/types.ts b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/UniswapTradeModal/types.ts
new file mode 100644
index 00000000000..db4fe03f86c
--- /dev/null
+++ b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/UniswapTradeModal/types.ts
@@ -0,0 +1,14 @@
+import { TradingConfig } from '../types';
+
+export type UseUniswapTradeModalProps = {
+ tradeConfig: TradingConfig;
+};
+
+export type UniswapToken = {
+ name: string;
+ address: string;
+ symbol: string;
+ decimals: number;
+ chainId: number;
+ logoURI: string;
+};
diff --git a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/UniswapTradeModal/useUniswapTradeModal.ts b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/UniswapTradeModal/useUniswapTradeModal.ts
new file mode 100644
index 00000000000..c67fa38e501
--- /dev/null
+++ b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/UniswapTradeModal/useUniswapTradeModal.ts
@@ -0,0 +1,163 @@
+import { commonProtocol } from '@hicommonwealth/evm-protocols';
+import { ChainBase } from '@hicommonwealth/shared';
+import { Theme } from '@uniswap/widgets';
+import WebWalletController from 'controllers/app/web_wallets';
+import { ethers } from 'ethers';
+import useRunOnceOnCondition from 'hooks/useRunOnceOnCondition';
+import NodeInfo from 'models/NodeInfo';
+import { useState } from 'react';
+import { fetchCachedNodes } from 'state/api/nodes';
+import { UniswapToken, UseUniswapTradeModalProps } from './types';
+
+// Maintainance Notes:
+// - Anywhere a `UNISWAP_WIDGET_HACK` label is applied, its a workaround to get the uniswap widget
+// to work with our stack
+
+// UNISWAP_WIDGET_HACK: Pricing calculation calls fail when adding a token to swap in the uniswap widget. This hack
+// method definition hack fixes a bug with a dependent pkg of the uniswap widget package.
+// See: https://github.com/Uniswap/widgets/issues/627#issuecomment-1930627298 for more context
+// eslint-disable-next-line @typescript-eslint/no-explicit-any
+const tempWindow = window as any;
+tempWindow.Browser = {
+ T: () => {},
+};
+
+const uniswapTokenListConfig = {
+ default: {
+ // UNISWAP_WIDGET_HACK: By default the widget uses https://gateway.ipfs.io/ipns/tokens.uniswap.org for tokens
+ // list, but it doesn't work (DNS_PROBE_FINISHED_NXDOMAIN) for me (@malik). The original
+ // url resolved to https://ipfs.io/ipns/tokens.uniswap.org, i am passing this as a param to
+ // the uniswap widget. See: https://github.com/Uniswap/widgets/issues/580#issuecomment-2086094025
+ // for more context.
+ chains: { 1: { url: 'https://ipfs.io/ipns/tokens.uniswap.org' } },
+ },
+ custom: {
+ chains: {
+ 8453: {
+ list: [
+ {
+ name: 'Tether USD',
+ address: '0xfde4C96c8593536E31F229EA8f37b2ADa2699bb2',
+ symbol: 'USDT',
+ decimals: 6,
+ chainId: 8453,
+ logoURI:
+ // eslint-disable-next-line max-len
+ 'https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/ethereum/assets/0xdAC17F958D2ee523a2206206994597C13D831ec7/logo.png',
+ },
+ {
+ name: 'USD Coin',
+ address: '0xec267c53f53807c2337c257f8ac3fc3cc07cc0ed',
+ symbol: 'USDC',
+ decimals: 6,
+ chainId: 8453,
+ logoURI:
+ // eslint-disable-next-line max-len
+ 'https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/ethereum/assets/0xA0b86991c6218b36c1d19D4a2e9Eb0cE3606eB48/logo.png',
+ },
+ {
+ name: 'Wrapped Ether',
+ address: '0x4200000000000000000000000000000000000006',
+ symbol: 'WETH',
+ decimals: 18,
+ chainId: 8453,
+ logoURI:
+ // eslint-disable-next-line max-len
+ 'https://raw.githubusercontent.com/trustwallet/assets/master/blockchains/ethereum/assets/0x4200000000000000000000000000000000000006/logo.png',
+ },
+ ],
+ },
+ },
+ },
+};
+
+const uniswapRouterURLs = {
+ // UNISWAP_WIDGET_HACK: the widget doesn't call any pricing endpoints if this router url isn't enforced
+ // see: https://github.com/Uniswap/widgets/issues/637#issuecomment-2253135676 for more context
+ default: 'https://api.uniswap.org/v1/',
+};
+
+// custom theme to make the widget match common's style
+const uniswapWidgetTheme: Theme = {
+ container: '#ffffff',
+ dialog: '#ffffff',
+ module: '#e7e7e7',
+ outline: '#e0dfe1',
+ fontFamily: 'Silka',
+ accent: '#514e52', // primary actions color
+ accentSoft: '#514e52', // primary actions color with soft tone
+ interactive: '#3d3a3e', // secondary actions color
+ primary: '#282729', // primary text color
+ secondary: '#666666', // secondary text color
+};
+
+const useUniswapTradeModal = ({ tradeConfig }: UseUniswapTradeModalProps) => {
+ const [isLoadingInitialState, setIsLoadingInitialState] = useState(true);
+ const [uniswapProvider, setUniswapProvider] =
+ useState();
+ const [uniswapTokensList, setUniswapTokensList] = useState();
+
+ // base chain node info
+ const nodes = fetchCachedNodes();
+ const baseNode = nodes?.find(
+ (n) => n.ethChainId === commonProtocol.ValidChains.Base,
+ ) as NodeInfo; // this is expected to exist
+
+ useRunOnceOnCondition({
+ callback: () => {
+ const handleAsync = async () => {
+ setIsLoadingInitialState(true);
+
+ // adding this to avoid ts issues
+ if (!baseNode?.ethChainId) return;
+
+ // set tokens list with add our custom token
+ setUniswapTokensList([
+ ...(uniswapTokenListConfig.custom.chains?.[baseNode.ethChainId]
+ ?.list || []),
+ {
+ name: tradeConfig.token.name,
+ address: tradeConfig.token.token_address,
+ symbol: tradeConfig.token.symbol,
+ decimals: 18,
+ chainId: baseNode.ethChainId,
+ logoURI: tradeConfig.token.icon_url || '',
+ },
+ ]);
+
+ // switch chain network on wallet
+ {
+ const wallet = WebWalletController.Instance.availableWallets(
+ ChainBase.Ethereum,
+ );
+ const selectedWallet = wallet[0];
+ await selectedWallet.enable(`${baseNode.ethChainId}`);
+ const tempProvider = new ethers.providers.Web3Provider(
+ selectedWallet.api.givenProvider,
+ );
+ setUniswapProvider(tempProvider);
+ }
+ };
+ handleAsync()
+ .catch(console.error)
+ .finally(() => setIsLoadingInitialState(false));
+ },
+ shouldRun: !!baseNode.ethChainId,
+ });
+
+ return {
+ uniswapWidget: {
+ isReady: !isLoadingInitialState,
+ provider: uniswapProvider,
+ theme: uniswapWidgetTheme,
+ tokensList: uniswapTokensList,
+ defaultTokenAddress: {
+ input: 'NATIVE', // special address for native token of default chain
+ output: tradeConfig.token.token_address,
+ },
+ routerURLs: uniswapRouterURLs,
+ },
+ };
+};
+
+export default useUniswapTradeModal;
diff --git a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/index.ts b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/index.ts
index 5067a2ebc9b..578d3c9d4cb 100644
--- a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/index.ts
+++ b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/index.ts
@@ -1,3 +1,4 @@
import TradeTokenModal from './TradeTokenModal';
+export * from './types';
export default TradeTokenModal;
diff --git a/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/types.ts b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/types.ts
new file mode 100644
index 00000000000..3e25a6b6ce0
--- /dev/null
+++ b/packages/commonwealth/client/scripts/views/modals/TradeTokenModel/types.ts
@@ -0,0 +1,25 @@
+import { TokenView } from '@hicommonwealth/schemas';
+import { ChainBase } from '@hicommonwealth/shared';
+import { z } from 'zod';
+
+export enum TradingMode {
+ Buy = 'buy', // for trade on common
+ Sell = 'sell', // for trade on common
+ Swap = 'swap', // for trade via uniswap
+}
+
+export const TokenWithCommunity = TokenView.extend({
+ community_id: z.string(),
+});
+
+export type TradingConfig = {
+ mode: TradingMode;
+ token: z.infer;
+ addressType: ChainBase;
+};
+
+export type TradeTokenModalProps = {
+ isOpen: boolean;
+ onModalClose?: () => void;
+ tradeConfig: TradingConfig;
+};
diff --git a/packages/commonwealth/client/scripts/views/pages/Communities/TokensList/TokensList.tsx b/packages/commonwealth/client/scripts/views/pages/Communities/TokensList/TokensList.tsx
index a093607c927..85eb937723c 100644
--- a/packages/commonwealth/client/scripts/views/pages/Communities/TokensList/TokensList.tsx
+++ b/packages/commonwealth/client/scripts/views/pages/Communities/TokensList/TokensList.tsx
@@ -2,17 +2,19 @@ import { TokenView } from '@hicommonwealth/schemas';
import { ChainBase } from '@hicommonwealth/shared';
import clsx from 'clsx';
import { calculateTokenPricing } from 'helpers/launchpad';
+import useDeferredConditionTriggerCallback from 'hooks/useDeferredConditionTriggerCallback';
import { useFlag } from 'hooks/useFlag';
import { navigateToCommunity, useCommonNavigate } from 'navigation/helpers';
import React, { useState } from 'react';
import { Link } from 'react-router-dom';
import { useFetchTokenUsdRateQuery } from 'state/api/communityStake';
import { useFetchTokensQuery } from 'state/api/tokens';
+import useUserStore from 'state/ui/user';
import { CWText } from 'views/components/component_kit/cw_text';
import { CWButton } from 'views/components/component_kit/new_designs/CWButton';
import CWCircleMultiplySpinner from 'views/components/component_kit/new_designs/CWCircleMultiplySpinner';
-import TradeTokenModal from 'views/modals/TradeTokenModel';
-import { TradingMode } from 'views/modals/TradeTokenModel/TradeTokenForm/types';
+import { AuthModal } from 'views/modals/AuthModal';
+import TradeTokenModal, { TradingMode } from 'views/modals/TradeTokenModel';
import { z } from 'zod';
import TokenCard from '../../../components/TokenCard';
import {
@@ -31,8 +33,10 @@ type TokensListProps = {
};
const TokensList = ({ filters }: TokensListProps) => {
+ const user = useUserStore();
const navigate = useCommonNavigate();
const tokenizedCommunityEnabled = useFlag('tokenizedCommunity');
+
const [tokenLaunchModalConfig, setTokenLaunchModalConfig] = useState<{
isOpen: boolean;
tradeConfig?: {
@@ -42,6 +46,11 @@ const TokensList = ({ filters }: TokensListProps) => {
};
}>({ isOpen: false, tradeConfig: undefined });
+ const [isAuthModalOpen, setIsAuthModalOpen] = useState(false);
+ const { register, trigger } = useDeferredConditionTriggerCallback({
+ shouldRunTrigger: user.isLoggedIn,
+ });
+
const {
data: tokensList,
isInitialLoading,
@@ -85,6 +94,28 @@ const TokensList = ({ filters }: TokensListProps) => {
}
};
+ const openAuthModalOrTriggerCallback = () => {
+ if (user.isLoggedIn) {
+ trigger();
+ } else {
+ setIsAuthModalOpen(!user.isLoggedIn);
+ }
+ };
+
+ const handleCTAClick = (
+ mode: TradingMode,
+ token: z.infer,
+ ) => {
+ setTokenLaunchModalConfig({
+ isOpen: true,
+ tradeConfig: {
+ mode: mode,
+ token: token,
+ addressType: ChainBase.Ethereum,
+ },
+ });
+ };
+
if (!tokenizedCommunityEnabled) return <>>;
return (
@@ -124,20 +155,24 @@ const TokensList = ({ filters }: TokensListProps) => {
marketCap={{
current: pricing.marketCapCurrent,
goal: pricing.marketCapGoal,
+ isCapped: pricing.isMarketCapGoalReached,
}}
- mode={pricing.isMarketCapGoalReached ? 'swap' : 'buy'}
+ mode={
+ pricing.isMarketCapGoalReached
+ ? TradingMode.Swap
+ : TradingMode.Buy
+ }
iconURL={token.icon_url || ''}
- onCTAClick={() => {
- if (pricing.isMarketCapGoalReached) return;
-
- setTokenLaunchModalConfig({
- isOpen: true,
- tradeConfig: {
- mode: TradingMode.Buy,
- token: token as z.infer,
- addressType: ChainBase.Ethereum,
+ onCTAClick={(mode) => {
+ register({
+ cb: () => {
+ handleCTAClick(
+ mode,
+ token as z.infer,
+ );
},
});
+ openAuthModalOrTriggerCallback();
}}
onCardBodyClick={() =>
navigateToCommunity({
@@ -165,6 +200,11 @@ const TokensList = ({ filters }: TokensListProps) => {
) : (
<>>
)}
+ setIsAuthModalOpen(false)}
+ showWalletsFor={ChainBase.Ethereum}
+ />
{tokenLaunchModalConfig.tradeConfig && (
{
},
build: {
outDir: '../build',
+ // UNISWAP_WIDGET_HACK: this is needed by @uniswap to resolved multiple dependencies issues with peer-deps
+ commonjsOptions: {
+ transformMixedEsModules: true,
+ },
},
server: {
port: 8080,
@@ -150,6 +154,31 @@ export default defineConfig(({ mode }) => {
},
resolve: {
alias: [
+ {
+ // UNISWAP_WIDGET_HACK: 'jsbi' is needed by @uniswap pkg for pricing calculations, this is
+ // not documented by the uniswap pkg or atleast i couldn't find it.
+ // adding this here for internal uniswap widget import resolution
+ // see: https://github.com/Uniswap/sdk-core/issues/20 and
+ // https://github.com/Uniswap/widgets/issues/586#issuecomment-1777323003
+ // for more details
+ find: 'jsbi',
+ replacement: path.resolve(
+ __dirname,
+ '../node_modules/jsbi/dist/jsbi-cjs.js',
+ ),
+ },
+ {
+ // UNISWAP_WIDGET_HACK: needed by @uniswap pkg for path resolution
+ // see: https://github.com/Uniswap/widgets/issues/593#issuecomment-1777415001 for more details
+ find: '~@fontsource/ibm-plex-mono',
+ replacement: '@fontsource/ibm-plex-mono',
+ },
+ {
+ // UNISWAP_WIDGET_HACK: needed by @uniswap pkg for path resolution
+ // see: https://github.com/Uniswap/widgets/issues/593#issuecomment-1777415001 for more details
+ find: '~@fontsource/inter',
+ replacement: '@fontsource/inter',
+ },
{
// matches only non-relative paths that end with .scss
find: /^([^.].*)\.scss$/,
diff --git a/packages/commonwealth/package.json b/packages/commonwealth/package.json
index e579e10fc4b..dc984962e94 100644
--- a/packages/commonwealth/package.json
+++ b/packages/commonwealth/package.json
@@ -109,12 +109,12 @@
"@hicommonwealth/adapters": "workspace:*",
"@hicommonwealth/chains": "workspace:*",
"@hicommonwealth/core": "workspace:*",
+ "@hicommonwealth/evm-protocols": "workspace:*",
"@hicommonwealth/evm-testing": "workspace:*",
"@hicommonwealth/model": "workspace:*",
"@hicommonwealth/schemas": "workspace:*",
"@hicommonwealth/shared": "workspace:*",
"@hicommonwealth/sitemaps": "workspace:*",
- "@hicommonwealth/evm-protocols": "workspace:*",
"@hookform/resolvers": "^3.3.1",
"@ipld/dag-json": "^10.2.0",
"@keplr-wallet/types": "^0.12.23",
@@ -157,6 +157,7 @@
"@trpc/client": "^10.45.1",
"@trpc/react-query": "^10.45.1",
"@types/react-helmet-async": "^1.0.3",
+ "@uniswap/widgets": "^2.59.0",
"@viem/anvil": "^0.0.10",
"@walletconnect/ethereum-provider": "^2.10.1",
"@walletconnect/modal": "^2.4.6",
@@ -203,6 +204,7 @@
"is-ipfs": "^8.0.1",
"is-my-json-valid": "^2.20.6",
"jdenticon": "^2.1.1",
+ "jsbi": "^4.3.0",
"jsdom-global": "^3.0.2",
"jsonwebtoken": "^9.0.0",
"lexical": "^0.17.0",
@@ -252,6 +254,7 @@
"react-loading-skeleton": "^3.3.1",
"react-modern-drawer": "^1.2.2",
"react-quill": "^2.0.0",
+ "react-redux": "^9.1.2",
"react-router": "^6.9.0",
"react-router-dom": "^6.9.0",
"react-select": "^5.7.0",
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 8ba7ed69a68..189fb160899 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -350,7 +350,7 @@ importers:
version: 2.30.1
node-fetch:
specifier: '2'
- version: 2.7.0
+ version: 2.7.0(encoding@0.1.13)
openapi-types:
specifier: '=12.1.3'
version: 12.1.3
@@ -533,13 +533,13 @@ importers:
version: 9.0.0
web3:
specifier: ^4.7.0
- version: 4.8.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.3)(zod@3.23.6)
+ version: 4.8.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@6.0.3)(zod@3.23.6)
web3-core:
specifier: ^4.3.2
- version: 4.3.2(bufferutil@4.0.8)(utf-8-validate@6.0.3)
+ version: 4.3.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.3)
web3-eth:
specifier: ^4.6.0
- version: 4.6.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.3)(zod@3.23.6)
+ version: 4.6.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@6.0.3)(zod@3.23.6)
web3-utils:
specifier: ^4.2.2
version: 4.2.3
@@ -561,7 +561,7 @@ importers:
dependencies:
'@alchemy/aa-alchemy':
specifier: ^3.17.0
- version: 3.19.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(@types/react@18.3.3)(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-i18next@13.5.0(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.26.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6))
+ version: 3.19.0(57iqhoij7dc4xburxyatopnzli)
'@alchemy/aa-core':
specifier: ^3.16.0
version: 3.19.0(typescript@5.4.5)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6))
@@ -603,13 +603,13 @@ importers:
version: link:../shared
'@neynar/nodejs-sdk':
specifier: ^1.55.0
- version: 1.66.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
+ version: 1.66.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
'@solana/spl-token':
specifier: ^0.4.6
- version: 0.4.6(@solana/web3.js@1.91.8(bufferutil@4.0.8)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(fastestsmallesttextencoderdecoder@1.0.22)(utf-8-validate@5.0.10)
+ version: 0.4.6(@solana/web3.js@1.91.8(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(utf-8-validate@5.0.10)
'@solana/web3.js':
specifier: ^1.91.6
- version: 1.91.8(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ version: 1.91.8(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
async-mutex:
specifier: ^0.5.0
version: 0.5.0
@@ -633,13 +633,13 @@ importers:
version: 2.30.1
node-fetch:
specifier: '2'
- version: 2.7.0
+ version: 2.7.0(encoding@0.1.13)
node-object-hash:
specifier: ^3.0.0
version: 3.0.0
openai:
specifier: ^4.0.0
- version: 4.42.0
+ version: 4.42.0(encoding@0.1.13)
pg:
specifier: ^8.11.3
version: 8.11.5
@@ -660,10 +660,10 @@ importers:
version: 2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
web3:
specifier: ^4.7.0
- version: 4.8.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
+ version: 4.8.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
web3-core:
specifier: ^4.3.2
- version: 4.3.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ version: 4.3.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
web3-eth-abi:
specifier: ^4.2.1
version: 4.2.1(typescript@5.4.5)(zod@3.23.6)
@@ -709,10 +709,10 @@ importers:
version: 0.12.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@canvas-js/chain-solana':
specifier: ^0.12.1
- version: 0.12.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ version: 0.12.1(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@canvas-js/chain-substrate':
specifier: ^0.12.1
- version: 0.12.1(@polkadot/api@6.0.5)(@polkadot/util@12.6.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ version: 0.12.1(@polkadot/api@6.0.5(encoding@0.1.13))(@polkadot/util@12.6.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@canvas-js/core':
specifier: ^0.12.1
version: 0.12.1(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10)
@@ -793,10 +793,10 @@ importers:
version: 0.12.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@canvas-js/chain-solana':
specifier: ^0.12.1
- version: 0.12.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ version: 0.12.1(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@canvas-js/chain-substrate':
specifier: ^0.12.1
- version: 0.12.1(@polkadot/api@6.0.5)(@polkadot/util@12.6.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ version: 0.12.1(@polkadot/api@6.0.5(encoding@0.1.13))(@polkadot/util@12.6.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@canvas-js/core':
specifier: ^0.12.1
version: 0.12.1(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10)
@@ -943,7 +943,7 @@ importers:
version: 9.16.0
'@magic-sdk/admin':
specifier: ^2.4.1
- version: 2.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ version: 2.4.1(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@metamask/detect-provider':
specifier: ^2.0.0
version: 2.0.0
@@ -955,7 +955,7 @@ importers:
version: 5.0.0-beta.5(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@neynar/nodejs-sdk':
specifier: ^1.55.0
- version: 1.66.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
+ version: 1.66.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
'@noble/hashes':
specifier: ^1.4.0
version: 1.4.0
@@ -976,10 +976,10 @@ importers:
version: 2.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@polkadot/extension-dapp':
specifier: 0.40.3
- version: 0.40.3(@polkadot/api@6.0.5)(@polkadot/util-crypto@12.6.2(@polkadot/util@12.6.2))(@polkadot/util@12.6.2)
+ version: 0.40.3(@polkadot/api@6.0.5(encoding@0.1.13))(@polkadot/util-crypto@12.6.2(@polkadot/util@12.6.2))(@polkadot/util@12.6.2)
'@polkadot/extension-inject':
specifier: 0.47.4
- version: 0.47.4(@polkadot/api@6.0.5)(@polkadot/util@12.6.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ version: 0.47.4(@polkadot/api@6.0.5(encoding@0.1.13))(@polkadot/util@12.6.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@polkadot/util':
specifier: 12.6.2
version: 12.6.2
@@ -994,16 +994,16 @@ importers:
version: 6.5.5
'@snapshot-labs/snapshot.js':
specifier: ^0.4.35
- version: 0.4.110(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ version: 0.4.110(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@solana/web3.js':
specifier: ^1.30.2
- version: 1.91.8(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ version: 1.91.8(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@tanstack/react-query':
specifier: ^4.29.7
- version: 4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)
+ version: 4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)
'@tanstack/react-query-devtools':
specifier: ^4.29.7
- version: 4.36.1(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 4.36.1(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@tanstack/react-table':
specifier: ^8.9.7
version: 8.16.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -1018,16 +1018,19 @@ importers:
version: 10.45.2(@trpc/server@10.45.2)
'@trpc/react-query':
specifier: ^10.45.1
- version: 10.45.2(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1))(@trpc/client@10.45.2(@trpc/server@10.45.2))(@trpc/server@10.45.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 10.45.2(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1))(@trpc/client@10.45.2(@trpc/server@10.45.2))(@trpc/server@10.45.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@types/react-helmet-async':
specifier: ^1.0.3
version: 1.0.3(react@18.3.1)
+ '@uniswap/widgets':
+ specifier: ^2.59.0
+ version: 2.59.0(@babel/core@7.25.7)(@babel/runtime@7.26.0)(@babel/template@7.25.9)(@ethersproject/abi@5.7.0)(@ethersproject/bignumber@5.7.0)(@ethersproject/contracts@5.7.0)(@types/react@18.3.3)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.17(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.12))(@types/node@20.17.6)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(react-dom@18.3.1(react@18.3.1))(react-redux@9.1.2(@types/react@18.3.3)(react@18.3.1)(redux@4.2.1))(react@18.3.1)(redux@4.2.1)(styled-components@6.1.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(valtio@1.11.2(@types/react@18.3.3)(react@18.3.1))
'@viem/anvil':
specifier: ^0.0.10
version: 0.0.10(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@walletconnect/ethereum-provider':
specifier: ^2.10.1
- version: 2.12.2(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10)
+ version: 2.12.2(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
'@walletconnect/modal':
specifier: ^2.4.6
version: 2.6.2(@types/react@18.3.3)(react@18.3.1)
@@ -1141,7 +1144,7 @@ importers:
version: 10.12.2
frames.js:
specifier: ^0.19.3
- version: 0.19.4(@cloudflare/workers-types@4.20241022.0)(@lens-protocol/client@2.3.1(@lens-protocol/metadata@1.2.0(zod@3.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react@18.3.1)(utf-8-validate@5.0.10))(@types/express@4.17.21)(@xmtp/frames-validator@0.6.2(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6))(bufferutil@4.0.8)(next@14.2.16(@babel/core@7.25.7)(@opentelemetry/api@1.9.0)(@playwright/test@1.44.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
+ version: 0.19.4(@cloudflare/workers-types@4.20241022.0)(@lens-protocol/client@2.3.1(@lens-protocol/metadata@1.2.0(zod@3.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react@18.3.1)(utf-8-validate@5.0.10))(@types/express@4.17.21)(@xmtp/frames-validator@0.6.2(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6))(bufferutil@4.0.8)(next@14.2.16(@babel/core@7.25.7)(@opentelemetry/api@1.9.0)(@playwright/test@1.44.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
graphql:
specifier: ^16.9.0
version: 16.9.0
@@ -1160,6 +1163,9 @@ importers:
jdenticon:
specifier: ^2.1.1
version: 2.2.0
+ jsbi:
+ specifier: ^4.3.0
+ version: 4.3.0
jsdom-global:
specifier: ^3.0.2
version: 3.0.2(jsdom@24.0.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))
@@ -1198,7 +1204,7 @@ importers:
version: 2.30.1
node-fetch:
specifier: '2'
- version: 2.7.0
+ version: 2.7.0(encoding@0.1.13)
node-jose:
specifier: ^2.2.0
version: 2.2.0
@@ -1213,7 +1219,7 @@ importers:
version: 4.0.2
openai:
specifier: ^4.0.0
- version: 4.42.0
+ version: 4.42.0(encoding@0.1.13)
os-browserify:
specifier: ^0.3.0
version: 0.3.0
@@ -1228,7 +1234,7 @@ importers:
version: 4.0.1
passport-magic:
specifier: ^1.0.0
- version: 1.0.0
+ version: 1.0.0(encoding@0.1.13)
path-browserify:
specifier: ^1.0.1
version: 1.0.1
@@ -1267,7 +1273,7 @@ importers:
version: 18.3.1
react-beautiful-dnd:
specifier: ^13.1.1
- version: 13.1.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)
+ version: 13.1.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)
react-device-detect:
specifier: ^2.2.3
version: 2.2.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -1297,7 +1303,7 @@ importers:
version: 1.1.0(react@18.3.1)
react-json-view:
specifier: ^1.21.3
- version: 1.21.3(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 1.21.3(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react-loading-skeleton:
specifier: ^3.3.1
version: 3.4.0(react@18.3.1)
@@ -1307,6 +1313,9 @@ importers:
react-quill:
specifier: ^2.0.0
version: 2.0.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react-redux:
+ specifier: ^9.1.2
+ version: 9.1.2(@types/react@18.3.3)(react@18.3.1)(redux@4.2.1)
react-router:
specifier: ^6.9.0
version: 6.23.0(react@18.3.1)
@@ -1381,10 +1390,10 @@ importers:
version: 1.1.2
web3:
specifier: ^4.7.0
- version: 4.8.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
+ version: 4.8.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
web3-core:
specifier: ^4.3.2
- version: 4.3.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ version: 4.3.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
web3-utils:
specifier: ^4.2.2
version: 4.2.3
@@ -1399,7 +1408,7 @@ importers:
version: 3.23.6
zustand:
specifier: ^4.3.8
- version: 4.5.2(@types/react@18.3.3)(react@18.3.1)
+ version: 4.5.2(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1)
devDependencies:
'@ethersproject/keccak256':
specifier: 5.7.0
@@ -3109,15 +3118,38 @@ packages:
'@emotion/babel-plugin@11.11.0':
resolution: {integrity: sha512-m4HEDZleaaCH+XgDDsPF15Ht6wTLsgDTeR3WYj9Q/k76JtWhrJjcP4+/XlG8LGT/Rol9qUfOIztXeA84ATpqPQ==}
+ '@emotion/cache@10.0.29':
+ resolution: {integrity: sha512-fU2VtSVlHiF27empSbxi1O2JFdNWZO+2NFHfwO0pxgTep6Xa3uGb+3pVKfLww2l/IBGLNEZl5Xf/++A4wAYDYQ==}
+
'@emotion/cache@11.11.0':
resolution: {integrity: sha512-P34z9ssTCBi3e9EI1ZsWpNHcfY1r09ZO0rZbRO2ob3ZQMnFI35jB536qoXbkdesr5EUhYi22anuEJuyxifaqAQ==}
+ '@emotion/core@10.3.1':
+ resolution: {integrity: sha512-447aUEjPIm0MnE6QYIaFz9VQOHSXf4Iu6EWOIqq11EAPqinkSZmfymPTmlOE3QjLv846lH4JVZBUOtwGbuQoww==}
+ peerDependencies:
+ react: '>=16.3.0'
+
+ '@emotion/css@10.0.27':
+ resolution: {integrity: sha512-6wZjsvYeBhyZQYNrGoR5yPMYbMBNEnanDrqmsqS1mzDm1cOTu12shvl2j4QHNS36UaTE0USIJawCH9C8oW34Zw==}
+
+ '@emotion/hash@0.8.0':
+ resolution: {integrity: sha512-kBJtf7PH6aWwZ6fka3zQ0p6SBYzx4fl1LoZXE2RrnYST9Xljm7WfKJrU4g/Xr3Beg72MLrp1AWNUmuYJTL7Cow==}
+
'@emotion/hash@0.9.1':
resolution: {integrity: sha512-gJB6HLm5rYwSLI6PQa+X1t5CFGrv1J1TWG+sOyMCeKz2ojaj6Fnl/rZEspogG+cvqbt4AE/2eIyD2QfLKTBNlQ==}
+ '@emotion/is-prop-valid@0.8.8':
+ resolution: {integrity: sha512-u5WtneEAr5IDG2Wv65yhunPSMLIpuKsbuOktRojfrEiEvRyC85LgPMZI63cr7NUqT8ZIGdSVg8ZKGxIug4lXcA==}
+
'@emotion/is-prop-valid@1.2.2':
resolution: {integrity: sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==}
+ '@emotion/memoize@0.7.4':
+ resolution: {integrity: sha512-Ja/Vfqe3HpuzRsG1oBtWTHk2PGZ7GR+2Vz5iYGelAw8dx32K0y7PjVuxK6z1nMpZOqAFsRUPCkK1YjJ56qJlgw==}
+
+ '@emotion/memoize@0.7.5':
+ resolution: {integrity: sha512-igX9a37DR2ZPGYtV6suZ6whr8pTFtyHL3K/oLUotxpSVO2ASaprmAe2Dkq7tBo7CRY7MMDrAa9nuQP9/YG8FxQ==}
+
'@emotion/memoize@0.8.1':
resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==}
@@ -3130,12 +3162,36 @@ packages:
'@types/react':
optional: true
+ '@emotion/serialize@0.11.16':
+ resolution: {integrity: sha512-G3J4o8by0VRrO+PFeSc3js2myYNOXVJ3Ya+RGVxnshRYgsvErfAOglKAiy1Eo1vhzxqtUvjCyS5gtewzkmvSSg==}
+
'@emotion/serialize@1.1.4':
resolution: {integrity: sha512-RIN04MBT8g+FnDwgvIUi8czvr1LU1alUMI05LekWB5DGyTm8cCBMCRpq3GqaiyEDRptEXOyXnvZ58GZYu4kBxQ==}
+ '@emotion/sheet@0.9.4':
+ resolution: {integrity: sha512-zM9PFmgVSqBw4zL101Q0HrBVTGmpAxFZH/pYx/cjJT5advXguvcgjHFTCaIO3enL/xr89vK2bh0Mfyj9aa0ANA==}
+
'@emotion/sheet@1.2.2':
resolution: {integrity: sha512-0QBtGvaqtWi+nx6doRwDdBIzhNdZrXUppvTM4dtZZWEGTXL/XE/yJxLMGlDT1Gt+UHH5IX1n+jkXyytE/av7OA==}
+ '@emotion/styled-base@10.3.0':
+ resolution: {integrity: sha512-PBRqsVKR7QRNkmfH78hTSSwHWcwDpecH9W6heujWAcyp2wdz/64PP73s7fWS1dIPm8/Exc8JAzYS8dEWXjv60w==}
+ peerDependencies:
+ '@emotion/core': ^10.0.28
+ react: '>=16.3.0'
+
+ '@emotion/styled@10.3.0':
+ resolution: {integrity: sha512-GgcUpXBBEU5ido+/p/mCT2/Xx+Oqmp9JzQRuC+a4lYM4i4LBBn/dWvc0rQ19N9ObA8/T4NWMrPNe79kMBDJqoQ==}
+ peerDependencies:
+ '@emotion/core': ^10.0.27
+ react: '>=16.3.0'
+
+ '@emotion/stylis@0.8.5':
+ resolution: {integrity: sha512-h6KtPihKFn3T9fuIrwvXXUOwlx3rfUvfZIcP5a6rh8Y7zjE3O06hT5Ss4S/YI1AYhuZ1kjaE/5EaOOI2NqSylQ==}
+
+ '@emotion/unitless@0.7.5':
+ resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==}
+
'@emotion/unitless@0.8.1':
resolution: {integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==}
@@ -3144,9 +3200,15 @@ packages:
peerDependencies:
react: '>=16.8.0'
+ '@emotion/utils@0.11.3':
+ resolution: {integrity: sha512-0o4l6pZC+hI88+bzuaX/6BgOvQVhbt2PfmxauVaYOGgbsAw14wdKyvMCZXnsnsHys94iadcF+RG/wZyx6+ZZBw==}
+
'@emotion/utils@1.2.1':
resolution: {integrity: sha512-Y2tGf3I+XVnajdItskUCn6LX+VUDmP6lTL4fcqsXAv43dnlbZiuW4MWQW38rW/BVWSE7Q/7+XQocmpnRYILUmg==}
+ '@emotion/weak-memoize@0.2.5':
+ resolution: {integrity: sha512-6U71C2Wp7r5XtFtQzYrW5iKFT67OixrSxjI4MptCHzdSVlgabczzqLe0ZSgnub/5Kp4hSbpDB1tMytZY9pwxxA==}
+
'@emotion/weak-memoize@0.3.1':
resolution: {integrity: sha512-EsBwpc7hBUJWAsNPBmJy4hxWx12v6bshQsldrVmjxJoc3isbxhOrF2IcCpaXxfvq03NwkI7sbsOLXbYuqF/8Ww==}
@@ -3721,6 +3783,22 @@ packages:
resolution: {integrity: sha512-Ys+3g2TaW7gADOJzPt83SJtCDhMjndcDMFVQ/Tj9iA1BfJzFKD9mAUXT3OenpuPHbI6P/myECxRJrofUsDx/5g==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ '@eth-optimism/contracts@0.6.0':
+ resolution: {integrity: sha512-vQ04wfG9kMf1Fwy3FEMqH2QZbgS0gldKhcBeBUPfO8zu68L61VI97UDXmsMQXzTsEAxK8HnokW3/gosl4/NW3w==}
+ peerDependencies:
+ ethers: ^5
+
+ '@eth-optimism/core-utils@0.12.0':
+ resolution: {integrity: sha512-qW+7LZYCz7i8dRa7SRlUKIo1VBU8lvN0HeXCxJR+z+xtMzMQpPds20XJNCMclszxYQHkXY00fOT6GvFw9ZL6nw==}
+
+ '@eth-optimism/core-utils@0.13.2':
+ resolution: {integrity: sha512-u7TOKm1RxH1V5zw7dHmfy91bOuEAZU68LT/9vJPkuWEjaTl+BgvPDRDTurjzclHzN0GbWdcpOqPZg4ftjkJGaw==}
+
+ '@eth-optimism/sdk@3.3.3':
+ resolution: {integrity: sha512-I8xjchsZL6L66N/0Q14QvGZpsIiVfpuXBu+OX4HB3HXGvF7NQxXSRfOXzrQKj3ikhoJUpASsR4gL/yQsH+Vh3Q==}
+ peerDependencies:
+ ethers: ^5
+
'@ethereumjs/common@2.6.5':
resolution: {integrity: sha512-lRyVQOeCDaIVtgfbowla32pzeDv2Obr8oR8Put5RdUBNRGr1VGPGQNGP6elWIpgK3YdpzqTOh4GyUGOureVeeA==}
@@ -4042,6 +4120,12 @@ packages:
'@floating-ui/utils@0.2.2':
resolution: {integrity: sha512-J4yDIIthosAsRZ5CPYP/jQvUAQtlZTTD/4suA08/FEnlxqW3sKS9iAhgsa9VYLZ6vDHn/ixJgIqRQPotoBjxIw==}
+ '@fontsource/ibm-plex-mono@4.5.13':
+ resolution: {integrity: sha512-KAE7X2LgCV4X6p7vj1h2phRnhPX4YUa8FBAB0Jj9xW7Q+p+k2ce4HEAMJJ2RFHI075ClgQx+KZuDBNuiKgp5yw==}
+
+ '@fontsource/inter@4.5.15':
+ resolution: {integrity: sha512-FzleM9AxZQK2nqsTDtBiY0PMEVWvnKnuu2i09+p6DHvrHsuucoV2j0tmw+kAT3L4hvsLdAIDv6MdGehsPIdT+Q==}
+
'@glidejs/glide@3.6.0':
resolution: {integrity: sha512-47Aa+JmYjY4xTFpTtYCwrqirmI1arnp1UZETwtWpbTPisXUAuxrdJxKJLH8KHFWMsSrLi9+AcfyfzDIuO75rEA==}
@@ -4155,6 +4239,50 @@ packages:
resolution: {integrity: sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
+ '@jimp/bmp@0.16.13':
+ resolution: {integrity: sha512-9edAxu7N2FX7vzkdl5Jo1BbACfycUtBQX+XBMcHA2bk62P8R0otgkHg798frgAk/WxQIzwxqOH6wMiCwrlAzdQ==}
+ peerDependencies:
+ '@jimp/custom': '>=0.3.5'
+
+ '@jimp/core@0.16.13':
+ resolution: {integrity: sha512-qXpA1tzTnlkTku9yqtuRtS/wVntvE6f3m3GNxdTdtmc+O+Wcg9Xo2ABPMh7Nc0AHbMKzwvwgB2JnjZmlmJEObg==}
+
+ '@jimp/custom@0.16.13':
+ resolution: {integrity: sha512-LTATglVUPGkPf15zX1wTMlZ0+AU7cGEGF6ekVF1crA8eHUWsGjrYTB+Ht4E3HTrCok8weQG+K01rJndCp/l4XA==}
+
+ '@jimp/gif@0.16.13':
+ resolution: {integrity: sha512-yFAMZGv3o+YcjXilMWWwS/bv1iSqykFahFMSO169uVMtfQVfa90kt4/kDwrXNR6Q9i6VHpFiGZMlF2UnHClBvg==}
+ peerDependencies:
+ '@jimp/custom': '>=0.3.5'
+
+ '@jimp/jpeg@0.16.13':
+ resolution: {integrity: sha512-BJHlDxzTlCqP2ThqP8J0eDrbBfod7npWCbJAcfkKqdQuFk0zBPaZ6KKaQKyKxmWJ87Z6ohANZoMKEbtvrwz1AA==}
+ peerDependencies:
+ '@jimp/custom': '>=0.3.5'
+
+ '@jimp/plugin-resize@0.16.13':
+ resolution: {integrity: sha512-qoqtN8LDknm3fJm9nuPygJv30O3vGhSBD2TxrsCnhtOsxKAqVPJtFVdGd/qVuZ8nqQANQmTlfqTiK9mVWQ7MiQ==}
+ peerDependencies:
+ '@jimp/custom': '>=0.3.5'
+
+ '@jimp/png@0.16.13':
+ resolution: {integrity: sha512-8cGqINvbWJf1G0Her9zbq9I80roEX0A+U45xFby3tDWfzn+Zz8XKDF1Nv9VUwVx0N3zpcG1RPs9hfheG4Cq2kg==}
+ peerDependencies:
+ '@jimp/custom': '>=0.3.5'
+
+ '@jimp/tiff@0.16.13':
+ resolution: {integrity: sha512-oJY8d9u95SwW00VPHuCNxPap6Q1+E/xM5QThb9Hu+P6EGuu6lIeLaNBMmFZyblwFbwrH+WBOZlvIzDhi4Dm/6Q==}
+ peerDependencies:
+ '@jimp/custom': '>=0.3.5'
+
+ '@jimp/types@0.16.13':
+ resolution: {integrity: sha512-mC0yVNUobFDjoYLg4hoUwzMKgNlxynzwt3cDXzumGvRJ7Kb8qQGOWJQjQFo5OxmGExqzPphkirdbBF88RVLBCg==}
+ peerDependencies:
+ '@jimp/custom': '>=0.3.5'
+
+ '@jimp/utils@0.16.13':
+ resolution: {integrity: sha512-VyCpkZzFTHXtKgVO35iKN0sYR10psGpV6SkcSeV4oF7eSYlR8Bl6aQLCzVeFjvESF7mxTmIiI3/XrMobVrtxDA==}
+
'@jitl/quickjs-ffi-types@0.29.2':
resolution: {integrity: sha512-069uQTiEla2PphXg6UpyyJ4QXHkTj3S9TeXgaMCd8NDYz3ODBw5U/rkg6fhuU8SMpoDrWjEzybmV5Mi2Pafb5w==}
@@ -4578,6 +4706,10 @@ packages:
resolution: {integrity: sha512-ywPsQFJKqrESDJWmvVvSnSjliY7vOOEUkkUunV3A6crsTem7Ymo6FhaNsJWpU5DpkpzcU7kUQXZXoW3i8Nj+fw==}
engines: {node: '>=16'}
+ '@metamask/detect-provider@1.2.0':
+ resolution: {integrity: sha512-ocA76vt+8D0thgXZ7LxFPyqw3H7988qblgzddTDA6B8a/yU0uKV42QR/DhA+Jh11rJjxW0jKvwb5htA6krNZDQ==}
+ engines: {node: '>= 10'}
+
'@metamask/detect-provider@2.0.0':
resolution: {integrity: sha512-sFpN+TX13E9fdBDh9lvQeZdJn4qYoRb/6QF2oZZK/Pn559IhCFacPMU1rMuqyXoFQF3JSJfii2l98B87QDPeCQ==}
engines: {node: '>=14.0.0'}
@@ -4779,6 +4911,9 @@ packages:
'@types/react':
optional: true
+ '@multiformats/base-x@4.0.1':
+ resolution: {integrity: sha512-eMk0b9ReBbV23xXU693TAIrLyeO5iTgBZGSJfpqriG8UkYvr/hC9u9pyMlAakDNHWmbhMZCDs6KQO0jzKD8OTw==}
+
'@multiformats/dns@1.0.6':
resolution: {integrity: sha512-nt/5UqjMPtyvkG9BQYdJ4GfLK3nMqGpFZOzf4hAmIa0sJh2LlS9YKXZ4FgwBDsaHvzZqR/rUFIywIc7pkHNNuw==}
@@ -4954,6 +5089,96 @@ packages:
resolution: {integrity: sha512-oGB+UxlgWcgQkgwo8GcEGwemoTFt3FIO9ababBmaGwXIoBKZ+GTy0pP185beGg7Llih/NSHSV2XAs1lnznocSg==}
engines: {node: '>= 8'}
+ '@nomicfoundation/edr-darwin-arm64@0.6.5':
+ resolution: {integrity: sha512-A9zCCbbNxBpLgjS1kEJSpqxIvGGAX4cYbpDYCU2f3jVqOwaZ/NU761y1SvuCRVpOwhoCXqByN9b7HPpHi0L4hw==}
+ engines: {node: '>= 18'}
+
+ '@nomicfoundation/edr-darwin-x64@0.6.5':
+ resolution: {integrity: sha512-x3zBY/v3R0modR5CzlL6qMfFMdgwd6oHrWpTkuuXnPFOX8SU31qq87/230f4szM+ukGK8Hi+mNq7Ro2VF4Fj+w==}
+ engines: {node: '>= 18'}
+
+ '@nomicfoundation/edr-linux-arm64-gnu@0.6.5':
+ resolution: {integrity: sha512-HGpB8f1h8ogqPHTyUpyPRKZxUk2lu061g97dOQ/W4CxevI0s/qiw5DB3U3smLvSnBHKOzYS1jkxlMeGN01ky7A==}
+ engines: {node: '>= 18'}
+
+ '@nomicfoundation/edr-linux-arm64-musl@0.6.5':
+ resolution: {integrity: sha512-ESvJM5Y9XC03fZg9KaQg3Hl+mbx7dsSkTIAndoJS7X2SyakpL9KZpOSYrDk135o8s9P9lYJdPOyiq+Sh+XoCbQ==}
+ engines: {node: '>= 18'}
+
+ '@nomicfoundation/edr-linux-x64-gnu@0.6.5':
+ resolution: {integrity: sha512-HCM1usyAR1Ew6RYf5AkMYGvHBy64cPA5NMbaeY72r0mpKaH3txiMyydcHibByOGdQ8iFLWpyUdpl1egotw+Tgg==}
+ engines: {node: '>= 18'}
+
+ '@nomicfoundation/edr-linux-x64-musl@0.6.5':
+ resolution: {integrity: sha512-nB2uFRyczhAvWUH7NjCsIO6rHnQrof3xcCe6Mpmnzfl2PYcGyxN7iO4ZMmRcQS7R1Y670VH6+8ZBiRn8k43m7A==}
+ engines: {node: '>= 18'}
+
+ '@nomicfoundation/edr-win32-x64-msvc@0.6.5':
+ resolution: {integrity: sha512-B9QD/4DSSCFtWicO8A3BrsnitO1FPv7axB62wq5Q+qeJ50yJlTmyeGY3cw62gWItdvy2mh3fRM6L1LpnHiB77A==}
+ engines: {node: '>= 18'}
+
+ '@nomicfoundation/edr@0.6.5':
+ resolution: {integrity: sha512-tAqMslLP+/2b2sZP4qe9AuGxG3OkQ5gGgHE4isUuq6dUVjwCRPFhAOhpdFl+OjY5P3yEv3hmq9HjUGRa2VNjng==}
+ engines: {node: '>= 18'}
+
+ '@nomicfoundation/ethereumjs-common@4.0.4':
+ resolution: {integrity: sha512-9Rgb658lcWsjiicr5GzNCjI1llow/7r0k50dLL95OJ+6iZJcVbi15r3Y0xh2cIO+zgX0WIHcbzIu6FeQf9KPrg==}
+
+ '@nomicfoundation/ethereumjs-rlp@5.0.4':
+ resolution: {integrity: sha512-8H1S3s8F6QueOc/X92SdrA4RDenpiAEqMg5vJH99kcQaCy/a3Q6fgseo75mgWlbanGJXSlAPtnCeG9jvfTYXlw==}
+ engines: {node: '>=18'}
+ hasBin: true
+
+ '@nomicfoundation/ethereumjs-tx@5.0.4':
+ resolution: {integrity: sha512-Xjv8wAKJGMrP1f0n2PeyfFCCojHd7iS3s/Ab7qzF1S64kxZ8Z22LCMynArYsVqiFx6rzYy548HNVEyI+AYN/kw==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ c-kzg: ^2.1.2
+ peerDependenciesMeta:
+ c-kzg:
+ optional: true
+
+ '@nomicfoundation/ethereumjs-util@9.0.4':
+ resolution: {integrity: sha512-sLOzjnSrlx9Bb9EFNtHzK/FJFsfg2re6bsGqinFinH1gCqVfz9YYlXiMWwDM4C/L4ywuHFCYwfKTVr/QHQcU0Q==}
+ engines: {node: '>=18'}
+ peerDependencies:
+ c-kzg: ^2.1.2
+ peerDependenciesMeta:
+ c-kzg:
+ optional: true
+
+ '@nomicfoundation/solidity-analyzer-darwin-arm64@0.1.2':
+ resolution: {integrity: sha512-JaqcWPDZENCvm++lFFGjrDd8mxtf+CtLd2MiXvMNTBD33dContTZ9TWETwNFwg7JTJT5Q9HEecH7FA+HTSsIUw==}
+ engines: {node: '>= 12'}
+
+ '@nomicfoundation/solidity-analyzer-darwin-x64@0.1.2':
+ resolution: {integrity: sha512-fZNmVztrSXC03e9RONBT+CiksSeYcxI1wlzqyr0L7hsQlK1fzV+f04g2JtQ1c/Fe74ZwdV6aQBdd6Uwl1052sw==}
+ engines: {node: '>= 12'}
+
+ '@nomicfoundation/solidity-analyzer-linux-arm64-gnu@0.1.2':
+ resolution: {integrity: sha512-3d54oc+9ZVBuB6nbp8wHylk4xh0N0Gc+bk+/uJae+rUgbOBwQSfuGIbAZt1wBXs5REkSmynEGcqx6DutoK0tPA==}
+ engines: {node: '>= 12'}
+
+ '@nomicfoundation/solidity-analyzer-linux-arm64-musl@0.1.2':
+ resolution: {integrity: sha512-iDJfR2qf55vgsg7BtJa7iPiFAsYf2d0Tv/0B+vhtnI16+wfQeTbP7teookbGvAo0eJo7aLLm0xfS/GTkvHIucA==}
+ engines: {node: '>= 12'}
+
+ '@nomicfoundation/solidity-analyzer-linux-x64-gnu@0.1.2':
+ resolution: {integrity: sha512-9dlHMAt5/2cpWyuJ9fQNOUXFB/vgSFORg1jpjX1Mh9hJ/MfZXlDdHQ+DpFCs32Zk5pxRBb07yGvSHk9/fezL+g==}
+ engines: {node: '>= 12'}
+
+ '@nomicfoundation/solidity-analyzer-linux-x64-musl@0.1.2':
+ resolution: {integrity: sha512-GzzVeeJob3lfrSlDKQw2bRJ8rBf6mEYaWY+gW0JnTDHINA0s2gPR4km5RLIj1xeZZOYz4zRw+AEeYgLRqB2NXg==}
+ engines: {node: '>= 12'}
+
+ '@nomicfoundation/solidity-analyzer-win32-x64-msvc@0.1.2':
+ resolution: {integrity: sha512-Fdjli4DCcFHb4Zgsz0uEJXZ2K7VEO+w5KVv7HmT7WO10iODdU9csC2az4jrhEsRtiR9Gfd74FlG0NYlw1BMdyA==}
+ engines: {node: '>= 12'}
+
+ '@nomicfoundation/solidity-analyzer@0.1.2':
+ resolution: {integrity: sha512-q4n32/FNKIhQ3zQGGw5CvPF6GTvDCpYwIf7bEY/dZTZbgfDsHyjJwURxUJf3VQuuJj+fDIFl4+KkBVbw4Ef6jA==}
+ engines: {node: '>= 12'}
+
'@nuxtjs/opencollective@0.3.2':
resolution: {integrity: sha512-um0xL3fO7Mf4fDxcqx9KryrB7zgRM5JSlvGN5AGkP6JLM5XEKyjeAiPbNxdXVXQ16isuAhYpvP88NgL2BGd6aA==}
engines: {node: '>=8.0.0', npm: '>=5.0.0'}
@@ -5101,6 +5326,18 @@ packages:
resolution: {integrity: sha512-3giAOQvZiH5F9bMlMiv8+GSPMeqg0dbaeo58/0SlA9sxSqZhnUtxzX9/2FzyhS9sWQf5S0GJE0AKBrFqjpeYcg==}
engines: {node: '>=8.0.0'}
+ '@openzeppelin/contracts@3.4.1-solc-0.7-2':
+ resolution: {integrity: sha512-tAG9LWg8+M2CMu7hIsqHPaTyG4uDzjr6mhvH96LvOpLZZj6tgzTluBt+LsCf1/QaYrlis6pITvpIaIhE+iZB+Q==}
+
+ '@openzeppelin/contracts@3.4.2-solc-0.7':
+ resolution: {integrity: sha512-W6QmqgkADuFcTLzHL8vVoNBtkwjvQRpYIAom7KiUNoLKghyx3FgH0GBjt8NRvigV1ZmMOBllvE1By1C+bi8WpA==}
+
+ '@openzeppelin/contracts@4.7.0':
+ resolution: {integrity: sha512-52Qb+A1DdOss8QvJrijYYPSf32GUg2pGaG/yCxtaA3cu4jduouTdg4XZSMLW9op54m1jH7J8hoajhHKOPsoJFw==}
+
+ '@openzeppelin/contracts@5.0.2':
+ resolution: {integrity: sha512-ytPc6eLGcHHnapAZ9S+5qsdomhjo6QBHTDRRBFfTxXIpsicMhVPouPgmUPebZZZGX7vt9USA+Z+0M0dSVtSUEA==}
+
'@osmonauts/lcd@0.10.0':
resolution: {integrity: sha512-PzmXk9x9MHyLn2fUztpAqWqvDmMiEJaQv/JcAoAOE8VdHrD9Hf/KWnE1RZtamuS2ngQRqvQPD0xotCGXW7eTxA==}
@@ -6362,6 +6599,17 @@ packages:
peerDependencies:
'@redis/client': ^1.0.0
+ '@reduxjs/toolkit@1.9.7':
+ resolution: {integrity: sha512-t7v8ZPxhhKgOKtU+uyJT13lu4vL7az5aFi4IdoDs/eS548edn2M8Ik9h8fxgvMjGoAUVFSt6ZC1P5cWmQ014QQ==}
+ peerDependencies:
+ react: ^16.9.0 || ^17.0.0 || ^18
+ react-redux: ^7.2.1 || ^8.0.2
+ peerDependenciesMeta:
+ react:
+ optional: true
+ react-redux:
+ optional: true
+
'@remix-run/router@1.16.0':
resolution: {integrity: sha512-Quz1KOffeEf/zwkCBM3kBtH4ZoZ+pT3xIXBG4PPW/XFtDP7EGhtTiC2+gpL9GnR7+Qdet5Oa6cYSvwKYg6kN9Q==}
engines: {node: '>=14.0.0'}
@@ -6584,6 +6832,34 @@ packages:
resolution: {integrity: sha512-DSu8oTPI0BJFH60jMOG9gM+oeNMoRALFmdAYg2PIXpL+Zbxd7L2GzQZtmf1jLy/8UBImkbB3D74TjiOBiLRK1w==}
engines: {node: '>=6.0.0'}
+ '@sentry/core@5.30.0':
+ resolution: {integrity: sha512-TmfrII8w1PQZSZgPpUESqjB+jC6MvZJZdLtE/0hZ+SrnKhW3x5WlYLvTXZpcWePYBku7rl2wn1RZu6uT0qCTeg==}
+ engines: {node: '>=6'}
+
+ '@sentry/hub@5.30.0':
+ resolution: {integrity: sha512-2tYrGnzb1gKz2EkMDQcfLrDTvmGcQPuWxLnJKXJvYTQDGLlEvi2tWz1VIHjunmOvJrB5aIQLhm+dcMRwFZDCqQ==}
+ engines: {node: '>=6'}
+
+ '@sentry/minimal@5.30.0':
+ resolution: {integrity: sha512-BwWb/owZKtkDX+Sc4zCSTNcvZUq7YcH3uAVlmh/gtR9rmUvbzAA3ewLuB3myi4wWRAMEtny6+J/FN/x+2wn9Xw==}
+ engines: {node: '>=6'}
+
+ '@sentry/node@5.30.0':
+ resolution: {integrity: sha512-Br5oyVBF0fZo6ZS9bxbJZG4ApAjRqAnqFFurMVJJdunNb80brh7a5Qva2kjhm+U6r9NJAB5OmDyPkA1Qnt+QVg==}
+ engines: {node: '>=6'}
+
+ '@sentry/tracing@5.30.0':
+ resolution: {integrity: sha512-dUFowCr0AIMwiLD7Fs314Mdzcug+gBVo/+NCMyDw8tFxJkwWAKl7Qa2OZxLQ0ZHjakcj1hNKfCQJ9rhyfOl4Aw==}
+ engines: {node: '>=6'}
+
+ '@sentry/types@5.30.0':
+ resolution: {integrity: sha512-R8xOqlSTZ+htqrfteCWU5Nk0CDN5ApUTvrlvBuiH1DyP6czDZ4ktbZB0hAgBlVcK0U+qpD3ag3Tqqpa5Q67rPw==}
+ engines: {node: '>=6'}
+
+ '@sentry/utils@5.30.0':
+ resolution: {integrity: sha512-zaYmoH0NWWtvnJjC9/CBseXMtKHm/tm40sz3YfJRxeQjyzRqNQPgivpd9R/oDJCYj999mzdW382p/qi2ypjLww==}
+ engines: {node: '>=6'}
+
'@shuding/opentype.js@1.4.0-beta.0':
resolution: {integrity: sha512-3NgmNyH3l/Hv6EvsWJbsvpcpUba6R8IREQ83nH83cyakCw7uM1arZKNfHwv1Wz6jgqrF/j4x5ELvR6PnK9nTcA==}
engines: {node: '>= 8.0.0'}
@@ -6605,24 +6881,12 @@ packages:
resolution: {integrity: sha512-KV321z5m/0nuAg83W1dPLy85HpHDk7Sdi4fJbwvacWsEhAh+rZUW4ZfGcXmUIvjZg4ss2bcwNlRhJ7GBEUG08w==}
engines: {node: ^12.20.0 || ^14.13.1 || >=16.0.0}
- '@sinonjs/commons@2.0.0':
- resolution: {integrity: sha512-uLa0j859mMrg2slwQYdO/AkrOfmH+X6LTVmNTS9CqexuE2IvVORIkSpJLqePAbEnKJ77aMmCwr1NUZ57120Xcg==}
-
'@sinonjs/commons@3.0.1':
resolution: {integrity: sha512-K3mCHKQ9sVh8o1C9cxkwxaOmXoAMlDxC1mYyHrjqOWEcBjYr76t96zL2zlj5dUGZ3HSw240X1qgH3Mjf1yJWpQ==}
'@sinonjs/fake-timers@10.3.0':
resolution: {integrity: sha512-V4BG07kuYSUkTCSBHG8G8TNhM+F19jXFWnQtzj+we8DrkpSBCee9Z3Ms8yiGer/dlmhe35/Xdgyo3/0rQKg7YA==}
- '@sinonjs/fake-timers@11.2.2':
- resolution: {integrity: sha512-G2piCSxQ7oWOxwGSAyFHfPIsyeJGXYtc6mFbnFA+kRXkiEnTl8c/8jul2S329iFBnDI9HGoeWWAZvuvOkZccgw==}
-
- '@sinonjs/samsam@8.0.0':
- resolution: {integrity: sha512-Bp8KUVlLp8ibJZrnvq2foVhP0IVX2CIprMJPK0vqGqgrDa0OHVKeZyBykqskkrdxV6yKBPmGasO8LVjAKR3Gew==}
-
- '@sinonjs/text-encoding@0.7.2':
- resolution: {integrity: sha512-sXXKG+uL9IrKqViTtao2Ws6dy0znu9sOaP1di/jKGW1M6VssO8vlpXCQcpZ+jisQ1tTFAC5Jo/EOzFbggBagFQ==}
-
'@smithy/abort-controller@3.0.0':
resolution: {integrity: sha512-p6GlFGBt9K4MYLu72YuJ523NVR4A8oHlC5M2JO6OmQqN8kAc/uh1JqLE+FizTokrSJGg0CSvC+BrsmGzKtsZKA==}
engines: {node: '>=16.0.0'}
@@ -6944,6 +7208,48 @@ packages:
'@stitches/core@1.2.8':
resolution: {integrity: sha512-Gfkvwk9o9kE9r9XNBmJRfV8zONvXThnm1tcuojL04Uy5uRyqg93DC83lDebl0rocZCfKSjUv+fWYtMQmEDJldg==}
+ '@styled-system/background@5.1.2':
+ resolution: {integrity: sha512-jtwH2C/U6ssuGSvwTN3ri/IyjdHb8W9X/g8Y0JLcrH02G+BW3OS8kZdHphF1/YyRklnrKrBT2ngwGUK6aqqV3A==}
+
+ '@styled-system/border@5.1.5':
+ resolution: {integrity: sha512-JvddhNrnhGigtzWRCVuAHepniyVi6hBlimxWDVAdcTuk7aRn9BYJUwfHslURtwYFsF5FoEs8Zmr1oZq2M1AP0A==}
+
+ '@styled-system/color@5.1.2':
+ resolution: {integrity: sha512-1kCkeKDZkt4GYkuFNKc7vJQMcOmTl3bJY3YBUs7fCNM6mMYJeT1pViQ2LwBSBJytj3AB0o4IdLBoepgSgGl5MA==}
+
+ '@styled-system/core@5.1.2':
+ resolution: {integrity: sha512-XclBDdNIy7OPOsN4HBsawG2eiWfCcuFt6gxKn1x4QfMIgeO6TOlA2pZZ5GWZtIhCUqEPTgIBta6JXsGyCkLBYw==}
+
+ '@styled-system/css@5.1.5':
+ resolution: {integrity: sha512-XkORZdS5kypzcBotAMPBoeckDs9aSZVkvrAlq5K3xP8IMAUek+x2O4NtwoSgkYkWWzVBu6DGdFZLR790QWGG+A==}
+
+ '@styled-system/flexbox@5.1.2':
+ resolution: {integrity: sha512-6hHV52+eUk654Y1J2v77B8iLeBNtc+SA3R4necsu2VVinSD7+XY5PCCEzBFaWs42dtOEDIa2lMrgL0YBC01mDQ==}
+
+ '@styled-system/grid@5.1.2':
+ resolution: {integrity: sha512-K3YiV1KyHHzgdNuNlaw8oW2ktMuGga99o1e/NAfTEi5Zsa7JXxzwEnVSDSBdJC+z6R8WYTCYRQC6bkVFcvdTeg==}
+
+ '@styled-system/layout@5.1.2':
+ resolution: {integrity: sha512-wUhkMBqSeacPFhoE9S6UF3fsMEKFv91gF4AdDWp0Aym1yeMPpqz9l9qS/6vjSsDPF7zOb5cOKC3tcKKOMuDCPw==}
+
+ '@styled-system/position@5.1.2':
+ resolution: {integrity: sha512-60IZfMXEOOZe3l1mCu6sj/2NAyUmES2kR9Kzp7s2D3P4qKsZWxD1Se1+wJvevb+1TP+ZMkGPEYYXRyU8M1aF5A==}
+
+ '@styled-system/shadow@5.1.2':
+ resolution: {integrity: sha512-wqniqYb7XuZM7K7C0d1Euxc4eGtqEe/lvM0WjuAFsQVImiq6KGT7s7is+0bNI8O4Dwg27jyu4Lfqo/oIQXNzAg==}
+
+ '@styled-system/should-forward-prop@5.1.5':
+ resolution: {integrity: sha512-+rPRomgCGYnUIaFabDoOgpSDc4UUJ1KsmlnzcEp0tu5lFrBQKgZclSo18Z1URhaZm7a6agGtS5Xif7tuC2s52Q==}
+
+ '@styled-system/space@5.1.2':
+ resolution: {integrity: sha512-+zzYpR8uvfhcAbaPXhH8QgDAV//flxqxSjHiS9cDFQQUSznXMQmxJegbhcdEF7/eNnJgHeIXv1jmny78kipgBA==}
+
+ '@styled-system/typography@5.1.2':
+ resolution: {integrity: sha512-BxbVUnN8N7hJ4aaPOd7wEsudeT7CxarR+2hns8XCX1zp0DFfbWw4xYa/olA0oQaqx7F1hzDg+eRaGzAJbF+jOg==}
+
+ '@styled-system/variant@5.1.5':
+ resolution: {integrity: sha512-Yn8hXAFoWIro8+Q5J8YJd/mP85Teiut3fsGVR9CAxwgNfIAiqlYxsk5iHU7VHJks/0KjL4ATSjmbtCDC/4l1qw==}
+
'@substrate/connect-extension-protocol@2.0.0':
resolution: {integrity: sha512-nKu8pDrE3LNCEgJjZe1iGXzaD6OSIDD4Xzz/yo4KO9mQ6LBvf49BVrt4qxBFGL6++NneLiWUZGoh+VSd4PyVIg==}
@@ -7157,6 +7463,9 @@ packages:
'@tharsis/address-converter@0.1.8':
resolution: {integrity: sha512-z7zdNczV8RIzBNxzIzRFhC5ujiQ3Lt04At9rooo2pL6QONDDMMLxsqH3o28ie80k5DXSXaMJ6gffATeehxwAkw==}
+ '@tokenizer/token@0.3.0':
+ resolution: {integrity: sha512-OvjF+z51L3ov0OyAU0duzsYuvO01PH7x4t6DJx+guahgTnBHkhJdG7soQeTSFLWN3efnHyibZ4Z8l2EuWwJN3A==}
+
'@tootallnate/quickjs-emscripten@0.23.0':
resolution: {integrity: sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==}
@@ -7262,6 +7571,9 @@ packages:
'@types/body-parser@1.19.5':
resolution: {integrity: sha512-fB3Zu92ucau0iQ0JMCFQE7b/dv8Ot07NI3KaZIkIUNXq82k4eBAqUaneXfleGY9JWskeS9y+u0nXMyspcuQrCg==}
+ '@types/brotli@1.3.4':
+ resolution: {integrity: sha512-cKYjgaS2DMdCKF7R0F5cgx1nfBYObN2ihIuPGQ4/dlIY6RpV7OWNwe9L8V4tTVKL2eZqOkNM9FM/rgTvLf4oXw==}
+
'@types/bs58@4.0.4':
resolution: {integrity: sha512-0IEpMFXXQi2zXaXl9GJ3sRwQo0uEkD+yFOv+FnAU5lkPtcu6h61xb7jc2CFPEZ5BUOaiP13ThuGc9HD4R8lR5g==}
@@ -7371,6 +7683,9 @@ packages:
'@types/long@4.0.2':
resolution: {integrity: sha512-MqTGEo5bj5t157U6fA/BiDynNkn0YknVdh48CMPkTSpFTVmvao5UQmm7uEF6xBEo7qIMAlY/JSleYaE6VOdpaA==}
+ '@types/lru-cache@5.1.1':
+ resolution: {integrity: sha512-ssE3Vlrys7sdIzs5LOxCzTVMsU7i9oa/IaW92wF32JFb3CVczqOkru2xspuKczHEbG3nvmPY7IFqVmGGHdNbYw==}
+
'@types/marked@4.3.2':
resolution: {integrity: sha512-a79Yc3TOk6dGdituy8hmTTJXjOkZ7zsFYV10L337ttq/rec8lRMDBpV7fL3uLx6TgbFCa5DU/h8FmIBQPSbU0w==}
@@ -7410,6 +7725,9 @@ packages:
'@types/node@12.20.55':
resolution: {integrity: sha512-J8xLz7q2OFulZ2cyGTLE1TbbZcjpno7FaN6zdJNrgAdrJ+DZzh/uFR6YrTb4C+nXakvud8Q4+rbhoIWlYQbUFQ==}
+ '@types/node@16.9.1':
+ resolution: {integrity: sha512-QpLcX9ZSsq3YYUUnD3nFDY8H7wctAhQj/TFKL8Ya8v5fMm3CFXxo8zStsLAl780ltoYoo1WvKUVGBQK+1ifr7g==}
+
'@types/node@18.15.13':
resolution: {integrity: sha512-N+0kuo9KgrUQ1Sn/ifDXsvg0TTleP7rIy4zOBGECxAljqvqfqpTfzx0Q1NUedOixRMBfe2Whhb056a42cWs26Q==}
@@ -7525,15 +7843,12 @@ packages:
'@types/serve-static@1.15.7':
resolution: {integrity: sha512-W8Ym+h8nhuRwaKPaDw34QUkwsGi6Rc4yYqvKFo5rm2FUEhCFbzVWrxXUxuKK8TASjWsysJY0nsmNCGhCOIsrOw==}
- '@types/sinon@17.0.3':
- resolution: {integrity: sha512-j3uovdn8ewky9kRBG19bOwaZbexJu/XjtkHyjvUgt4xfPFz18dcORIMqnYh66Fx3Powhcr85NT5+er3+oViapw==}
-
- '@types/sinonjs__fake-timers@8.1.5':
- resolution: {integrity: sha512-mQkU2jY8jJEF7YHjHvsQO8+3ughTL1mcnn96igfhONmR+fUPSKIkefQYpSe8bsly2Ep7oQbn/6VG5/9/0qcArQ==}
-
'@types/stack-utils@2.0.3':
resolution: {integrity: sha512-9aEbYZ3TbYMznPdcdr3SmIrLXwC/AKZXQeCf9Pgao5CKb8CyHuEX5jzWPTkvregvhRJHcpRO6BFoGW9ycaOkYw==}
+ '@types/stylis@4.2.5':
+ resolution: {integrity: sha512-1Xve+NMN7FWjY14vLoY5tL3BVEQ/n42YLwaqJIPYhotZ9uBHt87VceMwWQpzmdEt2TNXIorIFG+YeCUUW7RInw==}
+
'@types/superagent@4.1.13':
resolution: {integrity: sha512-YIGelp3ZyMiH0/A09PMAORO0EBGlF5xIKfDpK74wdYvWUs2o96b5CItJcWPdH409b7SAXIIG6p8NdU/4U2Maww==}
@@ -7555,6 +7870,9 @@ packages:
'@types/unist@3.0.3':
resolution: {integrity: sha512-ko/gIFJRv177XgZsZcBwnqJN5x/Gien8qNOn0D5bQU/zAzVf9Zt3BlcUiLqhV9y4ARk0GbT3tnUiPNgnTXzc/Q==}
+ '@types/use-sync-external-store@0.0.3':
+ resolution: {integrity: sha512-EwmlvuaxPNej9+T4v5AuBPJa2x2UOJVdjCtDHgcDqitUeOtjnJKJ+apYjVcAoBEMjKW1VVFGZLUb5+qqa09XFA==}
+
'@types/uuid@8.3.4':
resolution: {integrity: sha512-c/I8ZRb51j+pYGAu5CrFMRxqZ2ke4y2grEBO5AUjgSkSk+qT2Ea+OdWElz/OiMf5MNpn2b17kuVBwZLQJXzihw==}
@@ -7682,10 +8000,163 @@ packages:
'@ungap/structured-clone@1.2.0':
resolution: {integrity: sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==}
+ '@uniswap/conedison@1.8.0':
+ resolution: {integrity: sha512-EeC37bbrd4sJnqW3TxNhExdWUBvzyJDhbTXcbDzFdBh/bg5sOCu1NbYJEnrjwBHEfewc9nF2OjEzejJFyJUx9A==}
+ peerDependencies:
+ '@uniswap/sdk-core': '>=3'
+ ethers: ^5.6.1
+
+ '@uniswap/default-token-list@11.19.0':
+ resolution: {integrity: sha512-H/YLpxeZUrzT4Ki8mi4k5UiadREiLHg7WUqCv0Qt/VkOjX2mIBhrxCj1Wh61/J7lK0XqOjksfpm6RG1+YErPoQ==}
+
+ '@uniswap/lib@4.0.1-alpha':
+ resolution: {integrity: sha512-f6UIliwBbRsgVLxIaBANF6w09tYqc6Y/qXdsrbEmXHyFA7ILiKrIwRFXe1yOg8M3cksgVsO9N7yuL2DdCGQKBA==}
+ engines: {node: '>=10'}
+
+ '@uniswap/permit2-sdk@1.3.0':
+ resolution: {integrity: sha512-LstYQWP47dwpQrgqBJ+ysFstne9LgI5FGiKHc2ewjj91MTY8Mq1reocu6U/VDncdR5ef30TUOcZ7gPExRY8r6Q==}
+
+ '@uniswap/redux-multicall@1.1.8':
+ resolution: {integrity: sha512-LttOBVJuoRNC6N4MHsb5dF2GszLsj1ddPKKccEw1XOX17bGrFdm2A6GwKgES+v+Hj3lluDbQL6atcQtymP21iw==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ '@ethersproject/abi': '5'
+ '@ethersproject/bignumber': '5'
+ '@ethersproject/contracts': '5'
+ '@reduxjs/toolkit': '1'
+ react: '>=17'
+ react-redux: '>=7'
+
+ '@uniswap/router-sdk@1.15.0':
+ resolution: {integrity: sha512-KYzpxHX07O2hon9qMudzmtu/+epmnTzva1ZngdJ29CmRXT7C56yz8vSeLXWVvVEp5/m7TcDxbBS5wkY+WHuLDA==}
+
+ '@uniswap/sdk-core@4.2.1':
+ resolution: {integrity: sha512-hr7vwYrXScg+V8/rRc2UL/Ixc/p0P7yqe4D/OxzUdMRYr8RZd+8z5Iu9+WembjZT/DCdbTjde6lsph4Og0n1BQ==}
+ engines: {node: '>=10'}
+
+ '@uniswap/sdk-core@5.9.0':
+ resolution: {integrity: sha512-OME7WR6+5QwQs45A2079r+/FS0zU944+JCQwUX9GyIriCxqw2pGu4F9IEqmlwD+zSIMml0+MJnJJ47pFgSyWDw==}
+ engines: {node: '>=10'}
+
+ '@uniswap/sdk-core@6.0.0':
+ resolution: {integrity: sha512-6rwBG/Ut7rL2Dw4xtTF1dHSmtctT3h57q4vXIneLYjlePa1PT0mgp5D7cu/6xKEvO1MFtnMchImpWsclfafdUg==}
+ engines: {node: '>=10'}
+
+ '@uniswap/smart-order-router@3.59.0':
+ resolution: {integrity: sha512-1le8eLk/zK6meWs2ky2QnGiU1poqWgxCzl2KxlukyWetfdxSeKkHFcsMmV4nk2o7/R6duuFU47yUTjUX3HYhKw==}
+ engines: {node: '>=10'}
+ peerDependencies:
+ jsbi: ^3.2.0
+
+ '@uniswap/swap-router-contracts@1.3.1':
+ resolution: {integrity: sha512-mh/YNbwKb7Mut96VuEtL+Z5bRe0xVIbjjiryn+iMMrK2sFKhR4duk/86mEz0UO5gSx4pQIw9G5276P5heY/7Rg==}
+ engines: {node: '>=10'}
+
+ '@uniswap/token-lists@1.0.0-beta.34':
+ resolution: {integrity: sha512-Hc3TfrFaupg0M84e/Zv7BoF+fmMWDV15mZ5s8ZQt2qZxUcNw2GQW+L6L/2k74who31G+p1m3GRYbJpAo7d1pqA==}
+ engines: {node: '>=10'}
+
+ '@uniswap/universal-router-sdk@1.9.0':
+ resolution: {integrity: sha512-B6iEczP2WdMsq/aVIdQfvHWWLJyhaUD7enfxO6koxaH3huYOqUWRAzmZLl026fRK7R7P+tVFcA6AqImWLG6tYQ==}
+ engines: {node: '>=14'}
+
+ '@uniswap/universal-router-sdk@3.4.0':
+ resolution: {integrity: sha512-EB/NLIkuT2BCdKnh2wcXT0cmINjRoiskjibFclpheALHL49XSrB08H4k7KV3BP6+JNKLeTHekvTDdsMd9rs5TA==}
+ engines: {node: '>=14'}
+
+ '@uniswap/universal-router@1.6.0':
+ resolution: {integrity: sha512-Gt0b0rtMV1vSrgXY3vz5R1RCZENB+rOkbOidY9GvcXrK1MstSrQSOAc+FCr8FSgsDhmRAdft0lk5YUxtM9i9Lg==}
+ engines: {node: '>=14'}
+
+ '@uniswap/universal-router@2.0.0-beta.1':
+ resolution: {integrity: sha512-DdaMHaoDyJoCwpH+BiRKw/w2vjZtZS+ekpyrhmIeOBK1L2QEVFj977BNo6t24WzriZ9mSuIKF69RjHdXDUgHsQ==}
+ engines: {node: '>=14'}
+
+ '@uniswap/v2-core@1.0.1':
+ resolution: {integrity: sha512-MtybtkUPSyysqLY2U210NBDeCHX+ltHt3oADGdjqoThZaFRDKwM6k1Nb3F0A3hk5hwuQvytFWhrWHOEq6nVJ8Q==}
+ engines: {node: '>=10'}
+
+ '@uniswap/v2-sdk@3.3.0':
+ resolution: {integrity: sha512-cf5PjoNQN5tNELIOVJsqV4/VeuDtxFw6Zl8oFmFJ6PNoQ8sx+XnGoO0aGKTB/o5II3oQ7820xtY3k47UsXgd6A==}
+ engines: {node: '>=10'}
+
+ '@uniswap/v2-sdk@4.7.0':
+ resolution: {integrity: sha512-CShitWRbydaigNF5GfNNCgGH9GXKMI/HD6ThI4T7FoSZkf2pgTXlX1fQ829xbl1ohKO61n4NjZs/HzGKIV5yjQ==}
+ engines: {node: '>=10'}
+
+ '@uniswap/v3-core@1.0.0':
+ resolution: {integrity: sha512-kSC4djMGKMHj7sLMYVnn61k9nu+lHjMIxgg9CDQT+s2QYLoA56GbSK9Oxr+qJXzzygbkrmuY6cwgP6cW2JXPFA==}
+ engines: {node: '>=10'}
+
+ '@uniswap/v3-core@1.0.1':
+ resolution: {integrity: sha512-7pVk4hEm00j9tc71Y9+ssYpO6ytkeI0y7WE9P6UcmNzhxPePwyAxImuhVsTqWK9YFvzgtvzJHi64pBl4jUzKMQ==}
+ engines: {node: '>=10'}
+
+ '@uniswap/v3-periphery@1.4.4':
+ resolution: {integrity: sha512-S4+m+wh8HbWSO3DKk4LwUCPZJTpCugIsHrWR86m/OrUyvSqGDTXKFfc2sMuGXCZrD1ZqO3rhQsKgdWg3Hbb2Kw==}
+ engines: {node: '>=10'}
+
+ '@uniswap/v3-sdk@3.19.0':
+ resolution: {integrity: sha512-HbX3YjHJRXI2LFCxLUWgPfRZX6N9a+cELJ3Dus5vYDPYYjFOwJr16c2esDsdHUe3TG2oOeA/u2wv9TDT2GSBIw==}
+ engines: {node: '>=10'}
+
+ '@uniswap/v3-staker@1.0.0':
+ resolution: {integrity: sha512-JV0Qc46Px5alvg6YWd+UIaGH9lDuYG/Js7ngxPit1SPaIP30AlVer1UYB7BRYeUVVxE+byUyIeN5jeQ7LLDjIw==}
+ engines: {node: '>=10'}
+ deprecated: Please upgrade to 1.0.1
+
+ '@uniswap/v4-sdk@1.12.2':
+ resolution: {integrity: sha512-yzv5e9xRn1Bq3IDTAT6cVP09b80xdhFUEoye/61HFevIlpnExHthC9kWMx1p7wnrQKC/4jA6aq3sKBXLuUyVJQ==}
+ engines: {node: '>=14'}
+
+ '@uniswap/widgets@2.59.0':
+ resolution: {integrity: sha512-oAGC/5xFXe9VWC1F4ZMSIz+3Na1BohgufQsqzTR5ytQlNGfdY1i/XVvsyb+FVym0vIQdJ19Rcl913TkKnmGV4A==}
+ peerDependencies:
+ '@babel/runtime': '>=7.17.0'
+ ethers: ^5.7.2
+ react: '>=17.0.1'
+ react-dom: '>=17.0.1'
+ react-redux: '>=7.2.2'
+ redux: '>=4.1.2'
+ styled-components: '>=5'
+
'@vercel/og@0.6.3':
resolution: {integrity: sha512-aoCrC9FqkeA+WEEb9CwSmjD0rGlFeNqbUsI41JPmKWR9Hx6FFn86tvH96O5HZMF6VAXTGHxa3nPH3BokROpdgA==}
engines: {node: '>=16'}
+ '@vibrant/color@3.2.1-alpha.1':
+ resolution: {integrity: sha512-cvm+jAPwao2NerTr3d1JttYyLhp3eD/AQBeevxF7KT6HctToWZCwr2AeTr003/wKgbjzdOV1qySnbyOeu+R+Jw==}
+
+ '@vibrant/core@3.2.1-alpha.1':
+ resolution: {integrity: sha512-X9Oa9WfPEQnZ6L+5dLRlh+IlsxJkYTw9b/g3stFKoNXbVRKCeXHmH48l7jIBBOg3VcXOGUdsYBqsTwPNkIveaA==}
+
+ '@vibrant/generator-default@3.2.1-alpha.1':
+ resolution: {integrity: sha512-BWnQhDaz92UhyHnpdAzKXHQecY+jvyMXtzjKYbveFxThm6+HVoLjwONlbck7oyOpFzV2OM7V11XuR85BxaHvjw==}
+
+ '@vibrant/generator@3.2.1-alpha.1':
+ resolution: {integrity: sha512-luS5YvMhwMqG01YTj1dJ+cmkuIw1VCByOR6zIaCOwQqI/mcOs88JBWcA1r2TywJTOPlVpjfnDvAlyaKBKh4dMA==}
+
+ '@vibrant/image-browser@3.2.1-alpha.1':
+ resolution: {integrity: sha512-6xWvQfB20sE6YtCWylgEAHuee3iD8h3aFIDbCS2yj7jIelKcYTrrp5jg2d2BhOOB6pC5JzF+QfpCrm0DmAIlgQ==}
+
+ '@vibrant/image-node@3.2.1-alpha.1':
+ resolution: {integrity: sha512-/Io/Rpo4EkO6AhaXdcxUXkbOFhSFtjm0LSAM4c0AyGA5EbC8PyZqjk8b11bQAEMCaYaweFQfTdGD7oVbXe21CQ==}
+
+ '@vibrant/image@3.2.1-alpha.1':
+ resolution: {integrity: sha512-4aF5k79QfyhZOqRovJpbnIjWfe3uuWhY8voqVdd4/qgu4o70/AwVlM+pYmCaJVzI45VWNWWHYA5QlYuKsXnBqQ==}
+
+ '@vibrant/quantizer-mmcq@3.2.1-alpha.1':
+ resolution: {integrity: sha512-Wuk9PTZtxr8qsWTcgP6lcrrmrq36syVwxf+BUxdgQYntBcQ053SaN34lVGOJ0WPdK5vABoxbYljhceCgiILtZw==}
+
+ '@vibrant/quantizer@3.2.1-alpha.1':
+ resolution: {integrity: sha512-iHnPx/+n4iLtYLm1GClSfyg2fFbMatFG0ipCyp9M6tXNIPAg+pSvUJSGBnVnH7Nl/bR8Gkkj1h0pJ4RsKcdIrQ==}
+
+ '@vibrant/types@3.2.1-alpha.1':
+ resolution: {integrity: sha512-ts9u7nsrENoYI5s0MmPOeY5kCLFKvQndKVDOPFCbTA0z493uhDp8mpiQhjFYTf3kPbS04z9zbHLE2luFC7x4KQ==}
+
+ '@vibrant/worker@3.2.1-alpha.1':
+ resolution: {integrity: sha512-mtSlBdHkFNr4FOnMtqtHJxy9z5AsUcZzGlpiHzvWOoaoN9lNTDPwxOBd0q4VTYWuGPrIm6Fuq5m7aRbLv7KqiQ==}
+
'@viem/anvil@0.0.10':
resolution: {integrity: sha512-9PzYXBRikfSUhhm8Bd0avv07agwcbMJ5FaSu2D2vbE0cxkvXGtolL3fW5nz2yefMqOqVQL4XzfM5nwY81x3ytw==}
@@ -7944,6 +8415,35 @@ packages:
'@walletconnect/window-metadata@1.0.1':
resolution: {integrity: sha512-9koTqyGrM2cqFRW517BPY/iEtUDx2r1+Pwwu5m7sJ7ka79wi3EyqhqcICk/yDmv6jAS1rjKgTKXlEhanYjijcA==}
+ '@web3-react/core@8.2.3':
+ resolution: {integrity: sha512-0ezmRKhqQpoa9ct2/3erg60zBXfC/f/liYR1mfSGKtIroRkLnPARigZSV6pI+fi8bhfGJ0RKtFWyTCCWZzdq1w==}
+ peerDependencies:
+ react: '>=16.8'
+
+ '@web3-react/eip1193@8.2.3':
+ resolution: {integrity: sha512-PdL8PCv3zgQrnowRlBK7PIO8G7v/nc31PYgarACo8mX+l5Y4+l7+ma/kpkULXp5yLtc4qlQYlCalmXpcbtl2FA==}
+
+ '@web3-react/empty@8.2.3':
+ resolution: {integrity: sha512-Uopeac2XgyJLmK8EawNmG1kferlSvklKgWzbianygriC3C3+6yHvflUBmHzYfcpZDq5gotP4JJr2bmhGAocQ5w==}
+
+ '@web3-react/metamask@8.2.4':
+ resolution: {integrity: sha512-4yoqDgvcB0QKUGSk00/fUipA3z5rOXcQYAwE0CABPa5lbTRAIm5i8F0Gj8UW7QO0pQus4UtjX0+JxWdclB7UrA==}
+
+ '@web3-react/network@8.2.3':
+ resolution: {integrity: sha512-OAlXo3aNhldANmHt/N88SuLrWihVQizJf0cNy1cqnbNIAg87292PnAqCZrj3Pwaq/s8hoSgapc87zl1KFJeTjA==}
+
+ '@web3-react/store@8.2.3':
+ resolution: {integrity: sha512-qUJQ5pDsYYDra+/+glq2BmIS43HYAiEZ22sLLVh6E75WiZKRNOOqUxBDPe33KTIn718DLt51j+wd2FT+oT/kJQ==}
+
+ '@web3-react/types@8.2.3':
+ resolution: {integrity: sha512-kSG90QkN+n7IOtp10nQ44oS8J7jzfH9EmqnruwBpCGybh1FM/ohyRvUKWYZNfNE4wsjTSpKsINR0/VdDsZMHyg==}
+
+ '@web3-react/url@8.2.3':
+ resolution: {integrity: sha512-gOcs8uEbD+BKMvw2VhTWnD8Ls3aOmbebLwASu7daWYuM2eB8hS8AoqsEAbV1NnliNpY7ztd+L1Vi5CckiIhXcw==}
+
+ '@web3-react/walletconnect-v2@8.5.1':
+ resolution: {integrity: sha512-K6RjdllFpEftTDQw39fRfuVcBLNCWXDxx5oZiWDc7D2RW071C0m1WridOeUiELmCXykyDCrIjd2zAVwV4GGueA==}
+
'@xmtp/frames-validator@0.6.2':
resolution: {integrity: sha512-BoNn1YoAr5Rw/A5xuKOOz3KaJefAQ1ps+Ph3FjnqdU7WJVPB2oJ9ExcmaWwF3K+/IMjf9SncUMoTO9eLP1vhRQ==}
engines: {node: '>=18'}
@@ -8059,6 +8559,10 @@ packages:
engines: {node: '>=0.4.0'}
hasBin: true
+ adm-zip@0.4.16:
+ resolution: {integrity: sha512-TFi4HBKSGfIKsK5YCkKaaFG2m4PEDyViZmEwof3MTIgzimHLto6muaHVpbrljdIvIrFZzEq/p4nafOeLcYegrg==}
+ engines: {node: '>=0.3.0'}
+
aes-js@3.0.0:
resolution: {integrity: sha512-H7wUZRn8WpTq9jocdxQ2c8x2sKo9ZVmzfRE13GiNJXfp7NcKYEdvl3vspKjXox6RIG2VtaRe4JFvxG4rqp2Zuw==}
@@ -8125,6 +8629,13 @@ packages:
anser@2.1.1:
resolution: {integrity: sha512-nqLm4HxOTpeLOxcmB3QWmV5TcDFhW9y/fyQ+hivtDFcK4OQ+pQ5fzPnXHM1Mfcm0VkLtvVi1TCPr++Qy0Q/3EQ==}
+ ansi-align@3.0.1:
+ resolution: {integrity: sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==}
+
+ ansi-colors@4.1.3:
+ resolution: {integrity: sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==}
+ engines: {node: '>=6'}
+
ansi-escapes@4.3.2:
resolution: {integrity: sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==}
engines: {node: '>=8'}
@@ -8160,6 +8671,9 @@ packages:
resolution: {integrity: sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==}
engines: {node: '>=12'}
+ any-base@1.1.0:
+ resolution: {integrity: sha512-uMgjozySS8adZZYePpaWs8cxB9/kdzmpX6SgJZ+wbz1K5eYk5QMYDVJaZKhxyIHUdnnJkfR7SVgStgH7LkGUyg==}
+
any-signal@4.1.1:
resolution: {integrity: sha512-iADenERppdC+A2YKbOXXB2WUeABLaM6qnpZ70kZbPZ1cZMMJ7eF+3CaYm+/PhBizgkzlvssC7QuHS30oOiQYWA==}
engines: {node: '>=16.0.0', npm: '>=7.0.0'}
@@ -8296,6 +8810,9 @@ packages:
async-mutex@0.5.0:
resolution: {integrity: sha512-1A94B18jkJ3DYq284ohPxoXbfTA5HsQ7/Mf4DEhcyLx3Bz27Rh59iScbB6EPiP+B+joue6YCxcMXSbFC1tZKwA==}
+ async-retry@1.3.3:
+ resolution: {integrity: sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==}
+
async-rwlock@1.1.1:
resolution: {integrity: sha512-K4ecpHLAc0Jul4dMb1KLpukblQmHxD5/HNgkTuO3sQ9oLLtVENCJVk7+b0wMj1K89cqnjGkTsAvOb83lCfoKwA==}
engines: {node: '>=8.0.0'}
@@ -8322,6 +8839,10 @@ packages:
resolution: {integrity: sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==}
engines: {node: '>= 0.4'}
+ await-timeout@1.1.1:
+ resolution: {integrity: sha512-gsDXAS6XVc4Jt+7S92MPX6Noq69bdeXUPEaXd8dk3+yVr629LTDLxNt4j1ycBbrU+AStK2PhKIyNIM+xzWMVOQ==}
+ engines: {node: '>=6'}
+
aws-sign2@0.7.0:
resolution: {integrity: sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==}
@@ -8351,6 +8872,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
+ babel-plugin-emotion@10.2.2:
+ resolution: {integrity: sha512-SMSkGoqTbTyUTDeuVuPIWifPdUGkTk1Kf9BWRiXIOIcuyMfsdp2EjeiiFvOzX8NOBvEh/ypKYvUh2rkgAJMCLA==}
+
+ babel-plugin-macros@2.8.0:
+ resolution: {integrity: sha512-SEP5kJpfGYqYKpBrj5XU3ahw5p5GOHJ0U5ssOSQ/WBVdwkD2Dzlce95exQTs3jOVWPPKLBN2rlEWkCK7dSmLvg==}
+
babel-plugin-macros@3.1.0:
resolution: {integrity: sha512-Cg7TFGpIr01vOQNODXOOaGz2NpCU5gl8x1qJFbb6hbZxR7XrcE2vtbAsTAbJ7/xwJtUuJEw8K8Zr/AE0LHlesg==}
engines: {node: '>=10', npm: '>=6'}
@@ -8380,6 +8907,9 @@ packages:
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
+ babel-plugin-syntax-jsx@6.18.0:
+ resolution: {integrity: sha512-qrPaCSo9c8RHNRHIotaufGbuOBN8rtdC4QrrFFc43vyWCCz7Kl7GL1PGaXtMGQZUXrkCjNEgxDfmAuAabr/rlw==}
+
babel-plugin-transform-flow-enums@0.0.2:
resolution: {integrity: sha512-g4aaCrDDOsWjbm0PUUeVnkcVd6AKJsVc/MbnPhEotEpkeJQP6b8nzewohQi7+QS8UyPehOhGWn0nOwjvWpmMvQ==}
@@ -8409,6 +8939,9 @@ packages:
base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
+ base64-sol@1.0.1:
+ resolution: {integrity: sha512-ld3cCNMeXt4uJXmLZBHFGMvVpK9KsLVEhPpFRXnvSVAqABKbuNZg/+dsq3NuM+wxFLb/UrVkz7m1ciWmkMfTbg==}
+
base64url@3.0.1:
resolution: {integrity: sha512-ir1UPr3dkwexU7FdV8qBBbNDRUhMmIekYMFZfi+C/sLNnRESKPl23nB9b2pltqfOQNnGzsDdId90AEtG5tCx4A==}
engines: {node: '>=6.0.0'}
@@ -8444,6 +8977,9 @@ packages:
resolution: {integrity: sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==}
engines: {node: '>=0.6'}
+ big.js@5.2.2:
+ resolution: {integrity: sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==}
+
bigint-buffer@1.1.5:
resolution: {integrity: sha512-trfYco6AoZ+rKhKnxA0hgX0HAbVP/s808/EuDSe2JDzUnCp/xAsli35Orvk67UrTEcwuxZqYZDmfA2RXJgxVvA==}
engines: {node: '>= 10.0.0'}
@@ -8483,6 +9019,9 @@ packages:
bluebird@3.7.2:
resolution: {integrity: sha512-XpNj6GDQzdfW+r2Wnn7xiSAd7TM3jzkxGXBGTtWKuSXv1xUV+azxAm8jdWZN06QTQk+2N2XB9jRDkvbmQmcRtg==}
+ bmp-js@0.1.0:
+ resolution: {integrity: sha512-vHdS19CnY3hwiNdkaqk93DvjVLfbEcI8mys4UjuWrlX1haDmroo8o4xCzh4wD6DGV6HxRCyauwhHRqMTfERtjw==}
+
bn.js@4.11.6:
resolution: {integrity: sha512-XWwnNNFCuuSQ0m3r3C4LE3EiORltHd9M05pq6FOlVeiophzRbMo50Sbz1ehl8K3Z+jw9+vmgnXefY1hz8X+2wA==}
@@ -8518,6 +9057,10 @@ packages:
bowser@2.11.0:
resolution: {integrity: sha512-AlcaJBi/pqqJBIQ8U9Mcpc9i8Aqxn88Skv5d+xBX006BY5u8N3mGLHa5Lgppa7L/HfwgwLgZ6NYs+Ag6uUmJRA==}
+ boxen@5.1.2:
+ resolution: {integrity: sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==}
+ engines: {node: '>=10'}
+
brace-expansion@1.1.11:
resolution: {integrity: sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==}
@@ -8535,6 +9078,9 @@ packages:
brorand@1.1.0:
resolution: {integrity: sha512-cKV8tMCEpQs4hK/ik71d6LrPOnpkpGBR0wzxqr68g2m/LB2GxVYQroAjMJZRVM1Y4BCjCKc3vAamxSzOY2RP+w==}
+ brotli@1.3.3:
+ resolution: {integrity: sha512-oTKjJdShmDuGW94SyyaoQvAjf30dZaHnjJ8uAF+u2/vGJkJbJPJAT1gDiOJP5v1Zb6f9KEyW/1HpuaWIXtGHPg==}
+
browser-headers@0.4.1:
resolution: {integrity: sha512-CA9hsySZVo9371qEHjHZtYxV2cFtVj5Wj/ZHi8ooEsrtm4vOnl9Y9HmyYWk9q+05d7K3rdoAE0j3MVEFVvtQtg==}
@@ -8544,6 +9090,9 @@ packages:
browser-resolve@2.0.0:
resolution: {integrity: sha512-7sWsQlYL2rGLy2IWm8WL8DCTJvYLc/qlOnsakDac87SOoCd16WLsaAMdCiAqsTNHIe+SXfaqyxyo6THoWqs8WQ==}
+ browser-stdout@1.3.1:
+ resolution: {integrity: sha512-qhAVI1+Av2X7qelOfAIYwXONood6XlZE/fXaBSmW/T5SzLAmCgzi+eiWE7fUvbHaeNBQH13UftjpXxsfLkMpgw==}
+
browserify-aes@1.2.0:
resolution: {integrity: sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==}
@@ -8591,12 +9140,19 @@ packages:
buffer-equal-constant-time@1.0.1:
resolution: {integrity: sha512-zRpUiDwd/xk6ADqPMATG8vc9VPrkck7T07OIx0gnjmJAnHnTVXNQG3vfvWNuiZIkwu9KrKdA1iJKfsfTVxE6NA==}
+ buffer-equal@0.0.1:
+ resolution: {integrity: sha512-RgSV6InVQ9ODPdLWJ5UAqBqJBOg370Nz6ZQtRzpt6nUjc8v0St97uJ4PYC6NztqIScrAXafKM3mZPMygSe1ggA==}
+ engines: {node: '>=0.4.0'}
+
buffer-from@1.1.2:
resolution: {integrity: sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==}
buffer-more-ints@1.0.0:
resolution: {integrity: sha512-EMetuGFz5SLsT0QTnXzINh4Ksr+oo4i+UGTXEshiGCQWnsgSs7ZhJ8fzlwQ+OzEMs0MpDAMr1hxnblp5a4vcHg==}
+ buffer-reverse@1.0.1:
+ resolution: {integrity: sha512-M87YIUBsZ6N924W57vDwT/aOu8hw7ZgdByz6ijksLjmHJELBASmYTTlNHRgjE+pTsT9oJXGaDSgqqwfdHotDUg==}
+
buffer-to-arraybuffer@0.0.5:
resolution: {integrity: sha512-3dthu5CYiVB1DEJp61FtApNnNndTckcqe4pFcLdvHtrpG+kcyekCJKg4MRiDcFW7A6AODnXB9U4dwQiCW5kzJQ==}
@@ -8616,6 +9172,10 @@ packages:
resolution: {integrity: sha512-4T53u4PdgsXqKaIctwF8ifXlRTTmEPJ8iEPWFdGZvcf7sbwYo6FKFEX9eNNAnzFZ7EzJAQ3CJeOtCRA4rDp7Pw==}
engines: {node: '>=6.14.2'}
+ bufio@1.2.2:
+ resolution: {integrity: sha512-sTsA0ka7sjge/bGUfjk00O/8kNfyeAvJjXXeyvgbXefIrf5GTp99W71qfmCP6FGHWbr4A0IjjM7dFj6bHXVMlw==}
+ engines: {node: '>=14.0.0'}
+
builtin-modules@1.1.1:
resolution: {integrity: sha512-wxXCdllwGhI2kCC0MnvTGYTMvnVZTvqgypkiTI8Pa5tcz2i6VqsqwYGgqwXji+4RgCzms6EajE4IxiUH6HH8nQ==}
engines: {node: '>=0.10.0'}
@@ -8623,6 +9183,16 @@ packages:
builtin-status-codes@3.0.0:
resolution: {integrity: sha512-HpGFw18DgFWlncDfjTa2rcQ4W88O1mC8e8yZ2AvQY5KDaktSTwo+KRf6nHK6FRI5FyRyb/5T6+TSxfP7QyGsmQ==}
+ bunyan-blackhole@1.1.1:
+ resolution: {integrity: sha512-UwzNPhbbSqbzeJhCbygqjlAY7p0ZUdv1ADXPQvDh3CA7VW3C/rCc1gaQO/8j9QL4vsKQCQZQSQIEwX+lxioPAQ==}
+ peerDependencies:
+ bunyan: ~1.x.x
+
+ bunyan@1.8.15:
+ resolution: {integrity: sha512-0tECWShh6wUysgucJcBAoYegf3JJoZWibxdqhTm7OHPeT42qdjkZ29QCMcKwbgU1kiH+auSIasNRXMLWXafXig==}
+ engines: {'0': node >=0.10.0}
+ hasBin: true
+
busboy@1.6.0:
resolution: {integrity: sha512-8SFQbg/0hQ9xy3UNTB0YEnsNBbWfhf7RtnzpL7TkBiTBRfrQ9Fxcnz7VJsleJpyp6rVLvXiuORqjlHi5q+PYuA==}
engines: {node: '>=10.16.0'}
@@ -8717,6 +9287,9 @@ packages:
ccount@2.0.1:
resolution: {integrity: sha512-eyrF0jiFpY+3drT6383f1qhkbGsLSifNAjA61IUjZjmLCWjItY6LB9ft9YhoDgwfmclB2zhu51Lc7+95b8NRAg==}
+ centra@2.7.0:
+ resolution: {integrity: sha512-PbFMgMSrmgx6uxCdm57RUos9Tc3fclMvhLSATYN39XsDV29B89zZ3KA89jmY0vwSGazyU+uerqwa6t+KaodPcg==}
+
chai-as-promised@7.1.1:
resolution: {integrity: sha512-azL6xMoi+uxu6z4rhWQ1jbdUhOMhis2PvscD/xjLqNMkv3BPPp2JyyuTHOrf9BOosGpNQ11v6BKv/g57RXbiaA==}
peerDependencies:
@@ -8785,6 +9358,10 @@ packages:
resolution: {integrity: sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==}
engines: {node: '>= 8.10.0'}
+ chokidar@4.0.1:
+ resolution: {integrity: sha512-n8enUVCED/KVRQlab1hr3MVpcVMvxtZjmEa956u+4YijlmQED223XMSYj2tLuKvr4jcCTzNNMpQDUer72MMmzA==}
+ engines: {node: '>= 14.16.0'}
+
chownr@1.1.4:
resolution: {integrity: sha512-jJ0bqzaylmJtVnNgzTeSOs8DPavpbYgEr/b0YL8/2GO3xJEhInFmhKMUnEJQjZumK7KXGFhUy89PrsJWlakBVg==}
@@ -8807,6 +9384,11 @@ packages:
resolution: {integrity: sha512-NIxF55hv4nSqQswkAeiOi1r83xy8JldOFDTWiug55KBu9Jnblncd2U6ViHmYgHf01TPZS77NJBhBMKdWj9HQMQ==}
engines: {node: '>=8'}
+ cids@1.1.9:
+ resolution: {integrity: sha512-l11hWRfugIcbGuTZwAM5PwpjPPjyb6UZOGwlHSnOBV5o07XhQ4gNpBN67FbODvpjyHtd+0Xs6KNvUcGBiDRsdg==}
+ engines: {node: '>=4.0.0', npm: '>=3.0.0'}
+ deprecated: This module has been superseded by the multiformats module
+
cipher-base@1.0.4:
resolution: {integrity: sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==}
@@ -8835,6 +9417,10 @@ packages:
resolution: {integrity: sha512-TyUIUJgdFnCISzG5zu3291TAsE77ddchd0bepon1VVQrKLGKFED4iXFEDQ24mIPdPBbyE16PK3F8MYE1CmcBEQ==}
engines: {node: '>=14.16'}
+ cli-boxes@2.2.1:
+ resolution: {integrity: sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==}
+ engines: {node: '>=6'}
+
cli-color@2.0.4:
resolution: {integrity: sha512-zlnpg0jNcibNrO7GG9IeHH7maWFeCz+Ja1wx/7tZNU5ASSSSZ+/qZciM0/LHCYxSdqv5h2sdbQ/PXYdOuetXvA==}
engines: {node: '>=0.10'}
@@ -9125,6 +9711,10 @@ packages:
resolution: {integrity: sha512-H65gsXo1SKjf8zmrJ67eJk8aIRKV5ff2D4uKZIBZShbhGSpEmsQOPW/SKMKYhSTrqR7ufy6RP69rPogdaPh/kA==}
engines: {node: '>=4'}
+ cosmiconfig@6.0.0:
+ resolution: {integrity: sha512-xb3ZL6+L8b9JLLCx3ZdoZy4+2ECphCMo2PwqgP1tlfVq6M6YReyzBJtvWWtbDSpNr9hn96pkCiZqUcFEc+54Qg==}
+ engines: {node: '>=8'}
+
cosmiconfig@7.1.0:
resolution: {integrity: sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==}
engines: {node: '>=10'}
@@ -9204,6 +9794,9 @@ packages:
crypto-js@3.3.0:
resolution: {integrity: sha512-DIT51nX0dCfKltpRiXV+/TVZq+Qq2NgF4644+K7Ttnla7zEzqc+kjJyiB96BHNyUTBxyjzRcZYpUdZa+QAqi6Q==}
+ crypto-js@4.2.0:
+ resolution: {integrity: sha512-KALDyEYgpY+Rlob/iriUtjV6d5Eq+Y191A5g4UqLAi8CyGP9N1+FdVbkc1SxKc2r4YAYqG8JzO2KGL+AizD70Q==}
+
crypto-random-string@4.0.0:
resolution: {integrity: sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==}
engines: {node: '>=12'}
@@ -9253,6 +9846,9 @@ packages:
resolution: {integrity: sha512-h66W1URKpBS5YMI/V8PyXvTMFT8SupJ1IzoIV8IeBC/ji8WVmrO8dGlTi+2dh6whmdk6BiKJLD/ZBkhWbcg6nA==}
engines: {node: '>=18'}
+ csstype@2.6.21:
+ resolution: {integrity: sha512-Z1PhmomIfypOpoMjRQB70jfvy/wxT50qW08YXO5lMIJkrdq4yOTR+AW7FqutScmB9NkLwxo+jU+kZLbofZZq/w==}
+
csstype@3.1.3:
resolution: {integrity: sha512-M1uQkMl8rQK/szD0LNhtqxIPLpimGm8sOBwU7lLnCpSbTyY3yeU1Vc7l4KT5zT4s/yOxHH5O7tIuuLOCnLADRw==}
@@ -9359,6 +9955,13 @@ packages:
resolution: {integrity: sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==}
engines: {node: '>=0.10.0'}
+ decamelize@4.0.0:
+ resolution: {integrity: sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==}
+ engines: {node: '>=10'}
+
+ decimal.js-light@2.5.1:
+ resolution: {integrity: sha512-qIMFpTMZmny+MMIitAB6D7iVPEorVw6YQRWkvarTkT4tBeSLLiHzcwj6q0MmYSFCiVpiqPJTJEYIrpcPzVEIvg==}
+
decimal.js@10.4.3:
resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==}
@@ -9608,6 +10211,10 @@ packages:
resolution: {integrity: sha512-SErOMvge0ZUyWd5B0NXMQlDkN+8r+HhVUsxgOO7IoPDOdDRD2JjExpN6y3KnFR66jsJMwSn1pqIivhU5rcJiNg==}
engines: {node: '>=12'}
+ dotenv@14.3.2:
+ resolution: {integrity: sha512-vwEppIphpFdvaMCaHfCEv9IgwcxMljMw2TnAQBB4VWPvzXQLTb82jwmdOKzlEVUL3gNFT4l4TPKO+Bn+sqcrVQ==}
+ engines: {node: '>=12'}
+
dotenv@16.4.5:
resolution: {integrity: sha512-ZmdL2rui+eB2YwhsWzjInR8LldtZHGDoQ1ugH85ppHKwpUHL7j7rN0Ti9NCnGiQbhaZ11FpR+7ao1dNsmduNUg==}
engines: {node: '>=12'}
@@ -9628,6 +10235,10 @@ packages:
resolution: {integrity: sha512-pYxfDYpued//QpnLIm4Avk7rsNtAtQkUES2cwAYSvD/wd2pKD71gN2Ebj3e7klzXwjocvE8c5vx/1fxwpqmSxA==}
engines: {node: '>=4'}
+ dtrace-provider@0.8.8:
+ resolution: {integrity: sha512-b7Z7cNtHPhH9EJhNNbbeqTcXB8LGFFZhq1PGgEvpeHlzd36bhbdTWoE/Ba/YguqpBSlAPKnARWhVlhunCMwfxg==}
+ engines: {node: '>=0.10'}
+
duplexify@4.1.3:
resolution: {integrity: sha512-M3BmBhwJRZsSx38lZyhE53Csddgzl5R7xGJNk7CVddZD6CcmwMCH8J+7AprIrQKH7TonKxaCjcv27Qmf+sQ+oA==}
@@ -9711,6 +10322,9 @@ packages:
encoding-sniffer@0.2.0:
resolution: {integrity: sha512-ju7Wq1kg04I3HtiYIOrUrdfdDvkyO9s5XM8QAj/bN61Yo/Vb4vgJxy5vi4Yxk01gWHbrofpPtpxM8bKger9jhg==}
+ encoding@0.1.13:
+ resolution: {integrity: sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==}
+
end-of-stream@1.4.4:
resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
@@ -9733,6 +10347,10 @@ packages:
resolution: {integrity: sha512-LMHl3dXhTcfv8gM4kEzIUeTQ+7fpdA0l2tUf34BddXPkz2A5xJ5L/Pchd5BL6rdccM9QGvu0sWZzK1Z1t4wwyg==}
engines: {node: '>=10.13.0'}
+ enquirer@2.4.1:
+ resolution: {integrity: sha512-rRqJg/6gd538VHvR3PSrdRBb/1Vy2YfzHqzvbhGIQpDRKIa4FgV/54b5Q1xYSxOOwKvjXweS26E0Q+nAMwp2pQ==}
+ engines: {node: '>=8.6'}
+
entities@1.1.2:
resolution: {integrity: sha512-f2LZMYl1Fzu7YSBKg+RoROelpOaNrcGmE9AZubeDfrCEia483oW4MI4VyFd5VNHIgQ/7qm1I0wUHK1eJnn2y2w==}
@@ -9981,6 +10599,10 @@ packages:
esm-loader-css@1.0.6:
resolution: {integrity: sha512-AAnoj627sbCmI3FKvIpkPsKovhvdgMi2Za6rs6kM5vTfJ4ZlzzVT7YzQvriPpAPJbHVAcmzv5R2/WYxrMJ/KlA==}
+ esm@3.2.25:
+ resolution: {integrity: sha512-U1suiZ2oDVWv4zPO56S0NcR5QriEahGtdN2OR6FiOG4WJvcjBVFB0qI4+eKoWFH483PKGuLuu6V8Z4T5g63UVA==}
+ engines: {node: '>=6'}
+
esniff@2.0.1:
resolution: {integrity: sha512-kTUIGKQ/mDPFoJ0oVfcmyJn4iBDRptjNVIzwIFR7tqWXdVI9xfA2RMwY/gbSpJG3lkdWNEjLap/NqVHZiJsdfg==}
engines: {node: '>=0.10'}
@@ -10065,9 +10687,11 @@ packages:
ethereumjs-abi@0.6.5:
resolution: {integrity: sha512-rCjJZ/AE96c/AAZc6O3kaog4FhOsAViaysBxqJNy2+LHP0ttH0zkZ7nXdVHOAyt6lFwLO0nlCwWszysG/ao1+g==}
+ deprecated: This library has been deprecated and usage is discouraged.
ethereumjs-abi@0.6.8:
resolution: {integrity: sha512-Tx0r/iXI6r+lRsdvkFDlut0N08jWMnKRZ6Gkq+Nmw75lZe4e6o3EkSnkaBP5NF6+m5PTGAr9JP43N3LyeoglsA==}
+ deprecated: This library has been deprecated and usage is discouraged.
ethereumjs-util@4.5.1:
resolution: {integrity: sha512-WrckOZ7uBnei4+AKimpuF1B3Fv25OmoRgmYCpGsP7u8PFxXAmAgiJSYT2kRWnt6fVIlKaQlZvuwXp7PIrmn3/w==}
@@ -10148,6 +10772,9 @@ packages:
resolution: {integrity: sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==}
engines: {node: '>=16.17'}
+ exif-parser@0.1.12:
+ resolution: {integrity: sha512-c2bQfLNbMzLPmzQuOr8fy0csy84WmwnER81W88DzTp9CYNPJ6yzOj2EZAh9pywYpqHnshVLHQJ8WzldAyfY+Iw==}
+
exit-hook@2.2.1:
resolution: {integrity: sha512-eNTPlAD67BmP31LDINZ3U7HSF8l57TxOY2PmBJ1shpCvpnxBF93mWCE8YHBnXs8qiUZJc9WDcWIeC3a2HIAMfw==}
engines: {node: '>=6'}
@@ -10219,6 +10846,10 @@ packages:
resolution: {integrity: sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==}
engines: {node: '>=4'}
+ extract-files@9.0.0:
+ resolution: {integrity: sha512-CvdFfHkC95B4bBBk36hcEmvdR2awOdhhVUYH6S/zrVj3477zven/fJMYg7121h4T1xHZC+tetUpubpAhxwI7hQ==}
+ engines: {node: ^10.17.0 || ^12.0.0 || >= 13.7.0}
+
extsprintf@1.3.0:
resolution: {integrity: sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==}
engines: {'0': node >=0.6.0}
@@ -10302,6 +10933,14 @@ packages:
fbjs@3.0.5:
resolution: {integrity: sha512-ztsSx77JBtkuMrEypfhgc3cI0+0h+svqeie7xHbh1k/IKdcydnvadp/mUaGgjAOXQmQSxsqgaRhS3q9fy+1kxg==}
+ fdir@6.4.2:
+ resolution: {integrity: sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==}
+ peerDependencies:
+ picomatch: ^3 || ^4
+ peerDependenciesMeta:
+ picomatch:
+ optional: true
+
feed@4.2.2:
resolution: {integrity: sha512-u5/sxGfiMfZNtJ3OvQpXcvotFpYkL0n9u9mM2vkui2nGo8b4wvDkJ8gAkYqbA8QpGyFCv3RK0Z+Iv+9veCS9bQ==}
engines: {node: '>=0.4.0'}
@@ -10332,6 +10971,10 @@ packages:
resolution: {integrity: sha512-QlZ5yJC0VxHxQQsQhXvBaC7VRJ2uaxTf+Tfpu4Z/OcVQJVpZO+DGU0rkoVW5ce2SccxugvpBJoMvUs59iILYdw==}
engines: {node: '>= 12'}
+ file-type@16.5.4:
+ resolution: {integrity: sha512-/yFHK0aGjFEgDJjEKP0pWCplsPFPhwyfwevf/pVxiN0tmE4L9LmwWxWukdJSHdoCli4VgQLehjJtwQBnqmsKcw==}
+ engines: {node: '>=10'}
+
file-uri-to-path@1.0.0:
resolution: {integrity: sha512-0Zt+s3L7Vf1biwWZ29aARiVYLx7iMGnEUl9x33fbB/j3jR81u/O2LbqK+Bm1CDSNDKVtJ/YjwY7TUd5SkeLQLw==}
@@ -10395,6 +11038,10 @@ packages:
resolution: {integrity: sha512-CYcENa+FtcUKLmhhqyctpclsq7QF38pKjZHsGNiSQF5r4FtoKDWabFDl3hzaEQMvT1LHEysw5twgLvpYYb4vbw==}
engines: {node: ^10.12.0 || >=12.0.0}
+ flat@5.0.2:
+ resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
+ hasBin: true
+
flatted@3.3.1:
resolution: {integrity: sha512-X8cqMLLie7KsNUDSdzeN8FYK9rEt4Dt67OsG/DNGnYTSDBG4uFAJFBnUeiV+zCVAvwFy56IjM9sH51jVaEhNxw==}
@@ -10482,6 +11129,9 @@ packages:
resolution: {integrity: sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==}
engines: {node: '>= 0.6'}
+ fp-ts@1.19.3:
+ resolution: {integrity: sha512-H5KQDspykdHuztLTg+ajGN0Z2qUjcEf3Ybxc6hLt0k7/zPkn29XnKnxlBPyW2XIddWrGaJBzBl4VLYOtk39yZg==}
+
frames.js@0.19.4:
resolution: {integrity: sha512-QzKk6BRtrX8uPWeuHcdQ+xehfmok42a95M9VMm7I2Kt+gwmCC3avqAcJUsS9pmmf9Ftwc4EVLswkExRbDWKm2w==}
peerDependencies:
@@ -10637,6 +11287,9 @@ packages:
getpass@0.1.7:
resolution: {integrity: sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==}
+ gifwrap@0.9.4:
+ resolution: {integrity: sha512-MDMwbhASQuVeD4JKd1fKgNgCRL3fGqMM4WaqpNhWO0JiMOAjbQdumbs4BbBZEy9/M00EHEjKN3HieVhCUlwjeQ==}
+
github-from-package@0.0.0:
resolution: {integrity: sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==}
@@ -10656,10 +11309,19 @@ packages:
engines: {node: '>=16 || 14 >=14.17'}
hasBin: true
+ glob@6.0.4:
+ resolution: {integrity: sha512-MKZeRNyYZAVVVG1oZeLaWie1uweH40m9AZwIwxyPbTSX4hHrVYSzLg0Ro5Z5R7XKkIX+Cc6oD1rqeDJnwsB8/A==}
+ deprecated: Glob versions prior to v9 are no longer supported
+
glob@7.2.3:
resolution: {integrity: sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==}
deprecated: Glob versions prior to v9 are no longer supported
+ glob@8.1.0:
+ resolution: {integrity: sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==}
+ engines: {node: '>=12'}
+ deprecated: Glob versions prior to v9 are no longer supported
+
glob@9.3.5:
resolution: {integrity: sha512-e1LleDykUz2Iu+MTYdkSsuWX8lvAjAcs0Xef0lNIu0S2wOAzuTxCJtcd9S3cijlwYF18EsU3rzb8jPVobxDh9Q==}
engines: {node: '>=16 || 14 >=14.17'}
@@ -10721,6 +11383,11 @@ packages:
graphemer@1.4.0:
resolution: {integrity: sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==}
+ graphql-request@3.7.0:
+ resolution: {integrity: sha512-dw5PxHCgBneN2DDNqpWu8QkbbJ07oOziy8z+bK/TAXufsOLaETuVO4GkXrbs0WjhdKhBMN3BkpN/RIvUHkmNUQ==}
+ peerDependencies:
+ graphql: 14 - 16
+
graphql-request@6.1.0:
resolution: {integrity: sha512-p+XPfS4q7aIpKVcgmnZKhMNqhltk20hfXtkaIkTfjjmiKMJ5xrt5c743cL03y/K7y1rg3WrIC49xGiEQ4mxdNw==}
peerDependencies:
@@ -10748,6 +11415,10 @@ packages:
peerDependencies:
graphql: ^0.9.0 || ^0.10.0 || ^0.11.0 || ^0.12.0 || ^0.13.0 || ^14.0.0 || ^15.0.0 || ^16.0.0
+ graphql@15.9.0:
+ resolution: {integrity: sha512-GCOQdvm7XxV1S4U4CGrsdlEN37245eC8P9zaYCMr6K1BG0IPGy5lUwmJsEOGyl1GD6HXjOtl2keCP9asRBwNvA==}
+ engines: {node: '>= 10.x'}
+
graphql@16.9.0:
resolution: {integrity: sha512-GGTKBX4SD7Wdb8mqeDLni2oaRGYQWjWHGKPQ24ZMnUtKfcsVoiv4uX8+LJr1K6U5VW2Lu1BwJnj7uiori0YtRw==}
engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0}
@@ -10768,6 +11439,23 @@ packages:
resolution: {integrity: sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==}
engines: {node: '>=6'}
+ hardhat-watcher@2.5.0:
+ resolution: {integrity: sha512-Su2qcSMIo2YO2PrmJ0/tdkf+6pSt8zf9+4URR5edMVti6+ShI8T3xhPrwugdyTOFuyj8lKHrcTZNKUFYowYiyA==}
+ peerDependencies:
+ hardhat: ^2.0.0
+
+ hardhat@2.22.17:
+ resolution: {integrity: sha512-tDlI475ccz4d/dajnADUTRc1OJ3H8fpP9sWhXhBPpYsQOg8JHq5xrDimo53UhWPl7KJmAeDCm1bFG74xvpGRpg==}
+ hasBin: true
+ peerDependencies:
+ ts-node: '*'
+ typescript: '*'
+ peerDependenciesMeta:
+ ts-node:
+ optional: true
+ typescript:
+ optional: true
+
has-bigints@1.0.2:
resolution: {integrity: sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==}
@@ -11018,6 +11706,9 @@ packages:
resolution: {integrity: sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==}
engines: {node: '>= 4'}
+ image-q@4.0.0:
+ resolution: {integrity: sha512-PfJGVgIfKQJuq3s0tTDOKtztksibuUEbJQIYT3by6wctQo+Rdlh7ef4evJ5NCdxY4CfMbvFkocEwbl4BF8RlJw==}
+
image-size@1.1.1:
resolution: {integrity: sha512-541xKlUw6jr/6gGuk92F+mYM5zaFAc5ahphvkqvNe2bQ6gVBkd6bfrmVJ2t4KDAfikAYZyIqTnktX3i6/aQDrQ==}
engines: {node: '>=16.x'}
@@ -11026,6 +11717,9 @@ packages:
immediate@3.0.6:
resolution: {integrity: sha512-XXOFtyqDjNDAQxVfYxuF7g9Il/IbWmmlQg2MYKOH8ExIT1qg6xc4zyS3HaEEATgs1btfzxq15ciUiY7gjSXRGQ==}
+ immer@9.0.21:
+ resolution: {integrity: sha512-bc4NBHqOqSfRW7POMkHd51LvClaeMXpm8dx0e8oE2GORbq5aRK7Bxl4FyzVLdGtLmvLKL7BTDBG5ACQm4HWjTA==}
+
immutable@4.3.5:
resolution: {integrity: sha512-8eabxkth9gZatlwl5TBuJnCsoTADlL6ftEr7A4qgdaTsPyreilDSnUk57SO+jfKcNtxPa22U5KK6DSeAYhpBJw==}
@@ -11113,6 +11807,9 @@ packages:
invariant@2.2.4:
resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
+ io-ts@1.10.4:
+ resolution: {integrity: sha512-b23PteSnYXSONJ6JQXRAlvJhuw8KOtkqa87W4wDtvMrud/DTJd5X+NpOOI+O/zZwVq6v0VLAaJ+1EDViKEuN9g==}
+
ip-address@9.0.5:
resolution: {integrity: sha512-zHtQzGojZXTwZTHQqra+ETKd4Sn3vgi7uBmlPoXVWZqYvuKmtI0l/VZTjqGmJY9x88GGOaZ9+G9ES8hC4T4X8g==}
engines: {node: '>= 12'}
@@ -11430,6 +12127,9 @@ packages:
isexe@2.0.0:
resolution: {integrity: sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==}
+ isnumber@1.0.0:
+ resolution: {integrity: sha512-JLiSz/zsZcGFXPrB4I/AGBvtStkt+8QmksyZBZnVXnnK9XdTEyz0tX8CRYljtwYDuIuZzih6DpHQdi+3Q6zHPw==}
+
iso-url@1.2.1:
resolution: {integrity: sha512-9JPDgCN4B7QPkLtYAAOrEuAWvP9rWvR5offAr0/SeF046wIkglqH3VXgYYP6NcsKslH80UIVgmPqNe3j7tG2ng==}
engines: {node: '>=12'}
@@ -11674,10 +12374,47 @@ packages:
jose@5.3.0:
resolution: {integrity: sha512-IChe9AtAE79ru084ow8jzkN2lNrG3Ntfiv65Cvj9uOCE2m5LNsdHG+9EbxWxAoWRF9TgDOqLN5jm08++owDVRg==}
+ jotai@1.4.0:
+ resolution: {integrity: sha512-CUB+A3N+WjtimZvtDnMXvVRognzKh86KB3rKnQlbRvpnmGYU+O9aOZMWSgTaxstXc4Y5GYy02LBEjiv4Rs8MAg==}
+ engines: {node: '>=12.7.0'}
+ peerDependencies:
+ '@babel/core': '*'
+ '@babel/template': '*'
+ '@urql/core': '*'
+ immer: '*'
+ optics-ts: '*'
+ react: '>=16.8'
+ react-query: '*'
+ valtio: '*'
+ wonka: '*'
+ xstate: '*'
+ peerDependenciesMeta:
+ '@babel/core':
+ optional: true
+ '@babel/template':
+ optional: true
+ '@urql/core':
+ optional: true
+ immer:
+ optional: true
+ optics-ts:
+ optional: true
+ react-query:
+ optional: true
+ valtio:
+ optional: true
+ wonka:
+ optional: true
+ xstate:
+ optional: true
+
joycon@3.1.1:
resolution: {integrity: sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==}
engines: {node: '>=10'}
+ jpeg-js@0.4.4:
+ resolution: {integrity: sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==}
+
js-beautify@1.15.1:
resolution: {integrity: sha512-ESjNzSlt/sWE8sciZH8kBF8BPlwXPwhR6pWKAw8bw4Bwj+iZcnKW6ONWUutJ7eObuBZQpiIb8S7OYspWrKt7rA==}
engines: {node: '>=14'}
@@ -11704,6 +12441,12 @@ packages:
resolution: {integrity: sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==}
hasBin: true
+ jsbi@3.2.5:
+ resolution: {integrity: sha512-aBE4n43IPvjaddScbvWRA2YlTzKEynHzu7MqOyTipdHucf/VxS63ViCjxYRg86M8Rxwbt/GfzHl1kKERkt45fQ==}
+
+ jsbi@4.3.0:
+ resolution: {integrity: sha512-SnZNcinB4RIcnEyZqFPdGPVgrg2AcnykiBy0sHVJQKHYeaLUvi3Exj+iaPpLnFVkDPZIV4U0yvgC9/R4uEAZ9g==}
+
jsbn@0.1.1:
resolution: {integrity: sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==}
@@ -11799,6 +12542,10 @@ packages:
resolution: {integrity: sha512-SU/971Kt5qVQfJpyDveVhQ/vya+5hvrjClFOcr8c0Fq5aODJjMwutrOfCU+eCnVD5gpx1Q3fEqkyom77zH1iIg==}
engines: {node: '>= 0.4'}
+ json-stream-stringify@3.1.6:
+ resolution: {integrity: sha512-x7fpwxOkbhFCaJDJ8vb1fBY3DdSa4AlITaz+HHILQJzdPMnHEFjxPwVUi1ALIbcIxDE0PNe/0i7frnY8QnBQog==}
+ engines: {node: '>=7.10.1'}
+
json-stringify-safe@5.0.1:
resolution: {integrity: sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==}
@@ -11846,9 +12593,6 @@ packages:
resolution: {integrity: sha512-Qush0uP+G8ZScpGMZvHUiRfI0YBWuB3gVBYlI0v0vvOJt5FLicco+IkP0a50LqTTQhmts/m6tP5SWE+USyIvcQ==}
engines: {node: '>=12.20'}
- just-extend@6.2.0:
- resolution: {integrity: sha512-cYofQu2Xpom82S6qD778jBDpwvvy39s1l/hrYij2u9AMdQcGRpaBu6kY4mVhuno5kJVi1DAz4aiphA2WI1/OAw==}
-
jwa@1.4.1:
resolution: {integrity: sha512-qiLX/xhEEFKUAJ6FiBMbes3w9ATzyk5W7Hvzpa/SLYdxNtng+gcurvrI7TbACjIXlsJyr05/S1oUhZrc63evQA==}
@@ -11973,6 +12717,9 @@ packages:
lit@2.8.0:
resolution: {integrity: sha512-4Sc3OFX9QHOJaHbmTMk28SYgVxLN3ePDjg7hofEft2zWlehFL3LiAuapWc4U/kYwMYJSh2hTCPZ6/LIC7ii0MA==}
+ load-bmfont@1.4.2:
+ resolution: {integrity: sha512-qElWkmjW9Oq1F9EI5Gt7aD9zcdHb9spJCW1L/dmPf7KzCCEJxq8nhHz5eCgI9aMf7vrG/wyaCqdsI+Iy9ZTlog==}
+
load-json-file@4.0.0:
resolution: {integrity: sha512-Kx8hMakjX03tiGTLAIdJ+lL0htKnXjEZN6hk/tozf/WOuYGdZBJrZ+rCJRbVCugsjB3jMLn9746NsQIf5VjBMw==}
engines: {node: '>=4'}
@@ -12114,6 +12861,9 @@ packages:
lru-queue@0.1.0:
resolution: {integrity: sha512-BpdYkt9EvGl8OfWHDQPISVpcl5xZthb+XPsbELj5AQXxIC8IriDZIQYjBJPEm5rS420sjZ0TLEzRcq5KdBhYrQ==}
+ lru_map@0.3.3:
+ resolution: {integrity: sha512-Pn9cox5CsMYngeDbmChANltQl+5pi6XmTrraMSzhPmMBbmgcxmqWry0U3PGapCU1yB4/LqCcom7qhHZiF/jGfQ==}
+
lz-string@1.5.0:
resolution: {integrity: sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==}
hasBin: true
@@ -12148,6 +12898,9 @@ packages:
make-error@1.3.6:
resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
+ make-plural@7.4.0:
+ resolution: {integrity: sha512-4/gC9KVNTV6pvYg2gFeQYTW3mWaoJt7WZE5vrp1KnQDgW92JtYZnzmZT81oj/dUTqAIu0ufI2x3dkgu3bB1tYg==}
+
makeerror@1.0.12:
resolution: {integrity: sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==}
@@ -12276,6 +13029,10 @@ packages:
resolution: {integrity: sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==}
engines: {node: '>= 8'}
+ merkletreejs@0.3.11:
+ resolution: {integrity: sha512-LJKTl4iVNTndhL+3Uz/tfkjD0klIWsHlUzgtuNnNrsf7bAlXR30m+xYB7lHr5Z/l6e/yAIsr26Dabx6Buo4VGQ==}
+ engines: {node: '>= 7.6.0'}
+
methods@1.1.2:
resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
engines: {node: '>= 0.6'}
@@ -12590,6 +13347,10 @@ packages:
resolution: {integrity: sha512-nLDxIFRyhDblz3qMuq+SoRZED4+miJ/G+tdDrjkkkRnjAsBexeGpgjLEQ0blJy7rHhR2b93rhQY4SvyWu9v03g==}
engines: {node: '>=10'}
+ minimatch@5.1.6:
+ resolution: {integrity: sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==}
+ engines: {node: '>=10'}
+
minimatch@8.0.4:
resolution: {integrity: sha512-W0Wvr9HyFXZRGIDgCicunpQ299OKXs9RgZfaukz4qAW/pJhcpUfupc9c+OObPOFueNy8VSrZgEmDtk6Kh4WzDA==}
engines: {node: '>=16 || 14 >=14.17'}
@@ -12658,9 +13419,17 @@ packages:
mlly@1.7.0:
resolution: {integrity: sha512-U9SDaXGEREBYQgfejV97coK0UL1r+qnF2SyO9A3qcI8MzKnsIFKHNVEkrDyNncQTKQQumsasmeq84eNMdBfsNQ==}
+ mnemonist@0.38.5:
+ resolution: {integrity: sha512-bZTFT5rrPKtPJxj8KSV0WkPyNxl72vQepqqVUAW2ARUpUSF2qXMB6jZj7hW5/k7C1rtpzqbD/IIbJwLXUjCHeg==}
+
mobile-detect@1.4.5:
resolution: {integrity: sha512-yc0LhH6tItlvfLBugVUEtgawwFU2sIe+cSdmRJJCTMZ5GEJyLxNyC/NIOAOGk67Fa8GNpOttO3Xz/1bHpXFD/g==}
+ mocha@10.8.2:
+ resolution: {integrity: sha512-VZlYo/WE8t1tstuRmqgeyBgCbJc/lEdopaa+axcKzTBJ+UIdlAB9XnmvTCAH4pwR4ElNInaedhEBmZD8iCSVEg==}
+ engines: {node: '>= 14.0.0'}
+ hasBin: true
+
mock-express-request@0.2.2:
resolution: {integrity: sha512-EymHjY1k1jWIsaVaCsPdFterWO18gcNwQMb99OryhSBtIA33SZJujOLeOe03Rf2DTV997xLPyl2I098WCFm/mA==}
@@ -12703,6 +13472,9 @@ packages:
resolution: {integrity: sha512-eu38+hdgojoyq63s+yTpN4XMBdt5l8HhMhc4VKLO9KM5caLIBvUm4thi7fFaxyTmCKeNnXZ5pAlBwCUnhA09uw==}
engines: {node: '>=10'}
+ ms.macro@2.0.0:
+ resolution: {integrity: sha512-vkb83Sa4BZ2ynF/C1x5D8ofExja36mYW6OB7JNh6Ek0NSw3Oj4moM0nN69rfbm28aHlON52E+dTEgW+3up3x1g==}
+
ms@2.0.0:
resolution: {integrity: sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==}
@@ -12716,6 +13488,15 @@ packages:
resolution: {integrity: sha512-kh8ARjh8rMN7Du2igDRO9QJnqCb2xYTJxyQYK7vJJS4TvLLmsbyhiKpSW+t+y26gyOyMd0riphX0GeWKU3ky5g==}
engines: {node: '>=12.13'}
+ multibase@4.0.6:
+ resolution: {integrity: sha512-x23pDe5+svdLz/k5JPGCVdfn7Q5mZVMBETiC+ORfO+sor9Sgs0smJzAjfTbM5tckeCqnaUuMYoz+k3RXMmJClQ==}
+ engines: {node: '>=12.0.0', npm: '>=6.0.0'}
+ deprecated: This module has been superseded by the multiformats module
+
+ multicodec@3.2.1:
+ resolution: {integrity: sha512-+expTPftro8VAW8kfvcuNNNBgb9gPeNYV9dn+z1kJRWF2vih+/S79f2RVeIwmrJBUJ6NT9IUPWnZDQvegEh5pw==}
+ deprecated: This module has been superseded by the multiformats module
+
multiformats@13.1.0:
resolution: {integrity: sha512-HzdtdBwxsIkzpeXzhQ5mAhhuxcHbjEHH+JQoxt7hG/2HGFjjwyolLo7hbaexcnhoEuV4e0TNJ8kkpMjiEYY4VQ==}
@@ -12725,6 +13506,10 @@ packages:
multiformats@9.9.0:
resolution: {integrity: sha512-HoMUjhH9T8DDBNT+6xzkrd9ga/XiBI4xLr58LJACwK6G3HTOPeMz4nB4KJs33L2BelrIJa7P0VuNaVF3hMYfjg==}
+ multihashes@4.0.3:
+ resolution: {integrity: sha512-0AhMH7Iu95XjDLxIeuCOOE4t9+vQZsACyKZ9Fxw2pcsRmlX4iCn1mby0hS0bb+nQOVpdQYWPpnyusw4da5RPhA==}
+ engines: {node: '>=12.0.0', npm: '>=6.0.0'}
+
murmurhash3js-revisited@3.0.0:
resolution: {integrity: sha512-/sF3ee6zvScXMb1XFJ8gDsSnY+X8PbOyjIuBhtgis10W2Jx4ZjIhikUCIF9c4gpJxVnQIsPAFrSwTCuAjicP6g==}
engines: {node: '>=8.0.0'}
@@ -12736,6 +13521,10 @@ packages:
mute-stream@0.0.8:
resolution: {integrity: sha512-nnbWWOkoWyUsTjKrhgD0dcz22mdkSnpYqbEjIm2nhwhuxlSkpywJmBo8h0ZqJdkp73mb90SssHkN4rsRaBAfAA==}
+ mv@2.1.1:
+ resolution: {integrity: sha512-at/ZndSy3xEGJ8i0ygALh8ru9qy7gWW1cmkaqBN29JmMlIvM//MEO9y1sk/avxuwnPcfhkejkLsuPxH81BrkSg==}
+ engines: {node: '>=0.8.0'}
+
mylas@2.1.13:
resolution: {integrity: sha512-+MrqnJRtxdF+xngFfUUkIMQrUUL0KsxbADUkn23Z/4ibGg192Q+z+CQyiYwvWTsYjJygmMR8+w3ZDa98Zh6ESg==}
engines: {node: '>=12.0.0'}
@@ -12764,6 +13553,10 @@ packages:
natural-compare@1.4.0:
resolution: {integrity: sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==}
+ ncp@2.0.0:
+ resolution: {integrity: sha512-zIdGUrPRFTUELUvr3Gmc7KZ2Sw/h1PiVM0Af/oHB6zgnV1ikqSfRk+TOufi79aHYCW3NiOXmr1BP5nWbzojLaA==}
+ hasBin: true
+
ndjson@2.0.0:
resolution: {integrity: sha512-nGl7LRGrzugTtaFcJMhLbpzJM6XdivmbkdlaGcrk/LXg2KL/YBC6z1g70xh0/al+oFuVFP8N8kiWRucmeEH/qQ==}
engines: {node: '>=10'}
@@ -12811,9 +13604,6 @@ packages:
nice-try@1.0.5:
resolution: {integrity: sha512-1nh45deeb5olNY7eX82BkPO7SSxR5SSYJiPTrTdFUVYwAl8CKMA5N9PjTYkHiRjisVcxcQ1HXdLhx2qxxJzLNQ==}
- nise@5.1.9:
- resolution: {integrity: sha512-qOnoujW4SV6e40dYxJOb3uvuoPHtmLzIk4TFo+j0jPJoC+5Z9xja5qH5JZobEPsa8+YYphMrOSwnrshEhG2qww==}
-
no-case@3.0.4:
resolution: {integrity: sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==}
@@ -12842,6 +13632,10 @@ packages:
resolution: {integrity: sha512-mNcltoe1R8o7STTegSOHdnJNN7s5EUvhoS7ShnTHDyOSd+8H+UdWODq6qSv67PjC8Zc5JRT8+oLAMCr0SIXw7g==}
engines: {node: ^16 || ^18 || >= 20}
+ node-cache@5.1.2:
+ resolution: {integrity: sha512-t1QzWwnk4sjLWaQAS8CHgOJ+RAfmHpxFWmc36IWTiWHQfs0w5JDMBS1b1ZxQteo0vVVuWJvIUKHDkkeK7vIGCg==}
+ engines: {node: '>= 8.0.0'}
+
node-dir@0.1.17:
resolution: {integrity: sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==}
engines: {node: '>= 0.10.5'}
@@ -12906,6 +13700,9 @@ packages:
resolution: {integrity: sha512-LN4fydt9TqhZhThkZIVQnF9cwjU3qmUH9h78Mx/K7d3VvfRqqwthLwJEUOEL0QPZ0XQmNN7be5Ggit5+4dq3Bw==}
engines: {node: '>=0.12.0'}
+ node-vibrant@3.2.1-alpha.1:
+ resolution: {integrity: sha512-EQergCp7fvbvUCE0VMCBnvaAV0lGWSP8SXLmuWQIBzQK5M5pIwcd9fIOXuzFkJx/8hUiiiLvAzzGDS/bIy2ikA==}
+
nopt@7.2.1:
resolution: {integrity: sha512-taM24ViiimT/XntxbPyJQzCG+p4EKOpgD3mxFwW38mGjVUrfERQOeY4EDHjdnptttfHuHQXFx+lTP08Q+mLa/w==}
engines: {node: ^14.17.0 || ^16.13.0 || >=18.0.0}
@@ -13012,6 +13809,9 @@ packages:
resolution: {integrity: sha512-yBYjY9QX2hnRmZHAjG/f13MzmBzxzYgQhFrke06TTyKY5zSTEqkOeukBzIdVA3j3ulu8Qa3MbVFShV7T2RmGtQ==}
engines: {node: '>= 0.4'}
+ obliterator@2.0.4:
+ resolution: {integrity: sha512-lgHwxlxV1qIg1Eap7LgIeoBWIMFibOjbrYPIPJZcI1mmGAI2m3lNYpK12Y+GBdPQ0U1hRwSord7GIaawz962qQ==}
+
oboe@2.1.5:
resolution: {integrity: sha512-zRFWiF+FoicxEs3jNI/WYUrVEgA7DeET/InK0XQuudGHRg8iIob3cNPrJTKaz4004uaA9Pbe+Dwa8iluhjLZWA==}
@@ -13032,6 +13832,9 @@ packages:
ohash@1.1.4:
resolution: {integrity: sha512-FlDryZAahJmEF3VR3w1KogSEdWX3WhA5GPakFx4J81kEAiHyLMpdLLElS8n8dfNadMgAne/MywcvmogzscVt4g==}
+ omggif@1.0.10:
+ resolution: {integrity: sha512-LMJTtvgc/nugXj0Vcrrs68Mn2D1r0zf630VNtqtpI1FEO7e+O9FP4gqs9AcnBaSEeoHIPm28u6qgPR0oyEpGSw==}
+
on-exit-leak-free@0.2.0:
resolution: {integrity: sha512-dqaz3u44QbRXQooZLTUKU41ZrzYrcvLISVgbrzbyCMxpmSLJvZ3ZamIJIZ29P6OhZIkNIQKosdeM6t1LYbA9hg==}
@@ -13167,6 +13970,10 @@ packages:
resolution: {integrity: sha512-d3qXVTF/s+W+CdJ5A29wywV2n8CQQYahlgz2bFiA+4eVNJbHJodPZ+/gXwPGh0bOqA+j8S+6+ckmvLGPk1QpxQ==}
engines: {node: '>=8'}
+ p-map@4.0.0:
+ resolution: {integrity: sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==}
+ engines: {node: '>=10'}
+
p-map@5.5.0:
resolution: {integrity: sha512-VFqfGDHlx87K66yZrNdI4YGtD70IRyd+zSvgks6mzHPRNkoKy+9EKP4SFC77/vTTQYmRmti7dvqC+m5jBrBAcg==}
engines: {node: '>=12'}
@@ -13230,6 +14037,15 @@ packages:
resolution: {integrity: sha512-CTM5kuWR3sx9IFamcl5ErfPl6ea/N8IYwiJ+vpeB2g+1iknv7zBl5uPwbMbRVznRVbrNY6lGuDoE5b30grmbqg==}
engines: {node: '>= 0.10'}
+ parse-bmfont-ascii@1.0.6:
+ resolution: {integrity: sha512-U4RrVsUFCleIOBsIGYOMKjn9PavsGOXxbvYGtMOEfnId0SVNsgehXh1DxUdVPLoxd5mvcEtvmKs2Mmf0Mpa1ZA==}
+
+ parse-bmfont-binary@1.0.6:
+ resolution: {integrity: sha512-GxmsRea0wdGdYthjuUeWTMWPqm2+FAd4GI8vCvhgJsFnoGhTrLhXDDupwTo7rXVAgaLIGoVHDZS9p/5XbSqeWA==}
+
+ parse-bmfont-xml@1.1.6:
+ resolution: {integrity: sha512-0cEliVMZEhrFDwMh4SxIyVJpqYoOWDJ9P895tFuS+XuNzI5UBmBk5U5O4KuJdTnZpSBI4LFA2+ZiJaiwfSwlMA==}
+
parse-cache-control@1.0.1:
resolution: {integrity: sha512-60zvsJReQPX5/QP0Kzfd/VrpjScIQ7SHBW6bFCYfEP+fp0Eppr1SHhIO5nd1PjZtvclzSzES9D/p5nFJurwfWg==}
@@ -13341,9 +14157,6 @@ packages:
path-to-regexp@3.3.0:
resolution: {integrity: sha512-qyCH421YQPS2WFDxDjftfc1ZR5WKQzVzqsp4n9M2kQhVOo/ByahFoUNJfl58kOcEGfQ//7weFTDhm+ss8Ecxgw==}
- path-to-regexp@6.2.2:
- resolution: {integrity: sha512-GQX3SSMokngb36+whdpRXE+3f9V8UzyAorlYvOGx87ufGHehNTn5lCxrKtLyZ4Yl/wEKnNnr98ZzOwwDZV5ogw==}
-
path-to-regexp@6.3.0:
resolution: {integrity: sha512-Yhpw4T9C6hPpgPeA28us07OJeqZ5EzQTkbfwuhsUg0c237RomFoETJgmp2sa3F/41gfLE6G5cqcYwznmeEeOlQ==}
@@ -13371,6 +14184,10 @@ packages:
resolution: {integrity: sha512-iuh7L6jA7JEGu2WxDwtQP1ddOpaJNC4KlDEFfdQajSGgGPNi4OyDc2R7QnbY2bR9QjBVGwgvTdNJZoE7RaxUMA==}
engines: {node: '>=0.12'}
+ peek-readable@4.1.0:
+ resolution: {integrity: sha512-ZI3LnwUv5nOGbQzD9c2iDG6toheuXSZP5esSHBjopsXH4dg19soufvpUGA3uohi5anFtGb2lhAVdHzH6R/Evvg==}
+ engines: {node: '>=8'}
+
performance-now@2.1.0:
resolution: {integrity: sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==}
@@ -13441,6 +14258,14 @@ packages:
pgpass@1.0.5:
resolution: {integrity: sha512-FdW9r/jQZhSeohs1Z3sI1yxFQNFvMcnmfuj4WBMUTxOrAyLMaTcE1aAMBiTlbMNaXvBCQuVi0R7hd8udDSP7ug==}
+ phin@2.9.3:
+ resolution: {integrity: sha512-CzFr90qM24ju5f88quFC/6qohjC144rehe5n6DH900lgXmUe86+xCKc10ev56gRKC4/BkHUoG4uSiQgBiIXwDA==}
+ deprecated: Package no longer supported. Contact Support at https://www.npmjs.com/support for more info.
+
+ phin@3.7.1:
+ resolution: {integrity: sha512-GEazpTWwTZaEQ9RhL7Nyz0WwqilbqgLahDM3D0hxWwmVDI52nXEybHqiN6/elwpkJBhcuj+WbBu+QfT0uhPGfQ==}
+ engines: {node: '>= 8'}
+
phoenix@1.6.16:
resolution: {integrity: sha512-3vOfu5olbFg6eBNkF4pnwMzNm7unl/4vy24MW+zxKklVgjq1zLnO2EWq9wz6i6r4PbQ0CGxHGtqKJH2VSsnhaA==}
@@ -13517,6 +14342,10 @@ packages:
resolution: {integrity: sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==}
engines: {node: '>= 6'}
+ pixelmatch@4.0.2:
+ resolution: {integrity: sha512-J8B6xqiO37sU/gkcMglv6h5Jbd9xNER7aHzpfRdNmV4IbQBzBpe4l9XmbG+xPF/znacgu2jfEw+wHffaq/YkXA==}
+ hasBin: true
+
pkg-dir@3.0.0:
resolution: {integrity: sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==}
engines: {node: '>=6'}
@@ -13559,10 +14388,18 @@ packages:
resolution: {integrity: sha512-B7+VDyb8Tl6oMJT9oSO2CW8XC/T4UcJGrwOVoNGwOQsQYhlpfajmrMj5xeejqaASq3V/EqThyOeATEOMuSEXiA==}
engines: {node: '>=12'}
+ pngjs@3.4.0:
+ resolution: {integrity: sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==}
+ engines: {node: '>=4.0.0'}
+
pngjs@5.0.0:
resolution: {integrity: sha512-40QW5YalBNfQo5yRYmiw7Yz6TKKVr3h6970B2YE+3fQpsWcrbj1PzJgxeJ19DRQjhMbKPIuMY8rFaXc8moolVw==}
engines: {node: '>=10.13.0'}
+ polished@3.7.2:
+ resolution: {integrity: sha512-pQKtpZGmsZrW8UUpQMAnR7s3ppHeMQVNyMDKtUyKwuvDmklzcEyM5Kllb3JyE/sE/x7arDmyd35i+4vp99H6sQ==}
+ engines: {node: '>=10'}
+
polka@0.5.2:
resolution: {integrity: sha512-FVg3vDmCqP80tOrs+OeNlgXYmFppTXdjD5E7I4ET1NjvtNmQrb1/mJibybKkb/d4NA7YWAr1ojxuhpL3FHqdlw==}
@@ -13570,6 +14407,12 @@ packages:
resolution: {integrity: sha512-M7LhCsdNbNgiLYiP4WjsfLUuFmCfnjdF6jKe2R9NKl4WFN+HZPGHJZ9lnLP7f9ZnKe3U9nuWD0szirmj+migUg==}
engines: {node: '>=12.0.0'}
+ popper-max-size-modifier@0.2.0:
+ resolution: {integrity: sha512-UerPt9pZfTFnpSpIBVJrR3ibHMuU1k5K01AyNLfMUWCr4z1MFH+dsayPlAF9ZeYExa02HPiQn5OIMqUSVtJEbg==}
+ deprecated: 'We recommend switching to Floating UI which supports this modifier out of the box: https://floating-ui.com/docs/size'
+ peerDependencies:
+ '@popperjs/core': ^2.2.0
+
possible-typed-array-names@1.0.0:
resolution: {integrity: sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==}
engines: {node: '>= 0.4'}
@@ -14011,6 +14854,11 @@ packages:
react-fast-compare@3.2.2:
resolution: {integrity: sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==}
+ react-feather@2.0.10:
+ resolution: {integrity: sha512-BLhukwJ+Z92Nmdcs+EMw6dy1Z/VLiJTzEQACDUEnWMClhYnFykJCGWQx+NmwP/qQHGX/5CzQ+TGi8ofg2+HzVQ==}
+ peerDependencies:
+ react: '>=16.8.6'
+
react-helmet-async@2.0.5:
resolution: {integrity: sha512-rYUYHeus+i27MvFE+Jaa4WsyBKGkL6qVgbJvSBoX8mbsWoABJXdEO0bZyi0F6i+4f0NuIb8AvqPMj3iXFHkMwg==}
peerDependencies:
@@ -14147,6 +14995,18 @@ packages:
react-native:
optional: true
+ react-redux@9.1.2:
+ resolution: {integrity: sha512-0OA4dhM1W48l3uzmv6B7TXPCGmokUU4p1M44DGN2/D9a1FjVPukVjER1PcPX97jIg6aUeLq1XJo1IpfbgULn0w==}
+ peerDependencies:
+ '@types/react': ^18.2.25
+ react: ^18.0
+ redux: ^5.0.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ redux:
+ optional: true
+
react-refresh@0.14.2:
resolution: {integrity: sha512-jCvmsr+1IUSMUyzOkRcvnVbX3ZYC6g9TDrDbFuFmRDq7PD4yaGbLKNQL6k2jnArV8hjYxh7hVhAZB6s9HDGpZA==}
engines: {node: '>=0.10.0'}
@@ -14233,6 +15093,12 @@ packages:
react: '>=16.6.0'
react-dom: '>=16.6.0'
+ react-virtualized-auto-sizer@1.0.24:
+ resolution: {integrity: sha512-3kCn7N9NEb3FlvJrSHWGQ4iVl+ydQObq2fHMn12i5wbtm74zHOPhz/i64OL3c1S1vi9i2GXtZqNqUJTQ+BnNfg==}
+ peerDependencies:
+ react: ^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0
+ react-dom: ^15.3.0 || ^16.0.0-alpha || ^17.0.0 || ^18.0.0
+
react-virtuoso@4.7.10:
resolution: {integrity: sha512-l+fnBf/G1Fp6pHCnhFq2Ra4lkZtT6c5XrS9rCS0OA6de7WGLZviCo0y61CUZZG79TeAw3L7O4czeNPiqh9CIrg==}
engines: {node: '>=10'}
@@ -14240,6 +15106,13 @@ packages:
react: '>=16 || >=17 || >= 18'
react-dom: '>=16 || >=17 || >= 18'
+ react-window@1.8.10:
+ resolution: {integrity: sha512-Y0Cx+dnU6NLa5/EvoHukUD0BklJ8qITCtVEPY1C/nL8wwoZ0b5aEw8Ff1dOVHw7fCzMt55XfJDd8S8W8LCaUCg==}
+ engines: {node: '>8.0.0'}
+ peerDependencies:
+ react: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0
+ react-dom: ^15.0.0 || ^16.0.0 || ^17.0.0 || ^18.0.0
+
react@18.3.1:
resolution: {integrity: sha512-wS+hAgJShR0KhEvPJArfuPVN1+Hz1t0Y6n5jLrGQbkb4urgPE/0Rve+1kMB1v/oWgHgm4WIcV+i7F2pTVj+2iQ==}
engines: {node: '>=0.10.0'}
@@ -14270,10 +15143,18 @@ packages:
resolution: {integrity: sha512-yjavECdqeZ3GLXNgRXgeQEdz9fvDDkNKyHnbHRFtOr7/LcfgBcmct7t/ET+HaCTqfh06OzoAxrkN/IfjJBVe+g==}
engines: {node: ^12.22.0 || ^14.17.0 || >=16.0.0}
+ readable-web-to-node-stream@3.0.2:
+ resolution: {integrity: sha512-ePeK6cc1EcKLEhJFt/AebMCLL+GgSKhuygrZ/GLaKZYEecIgIECf4UaUuaByiGtzckwR4ain9VzUh95T1exYGw==}
+ engines: {node: '>=8'}
+
readdirp@3.6.0:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
engines: {node: '>=8.10.0'}
+ readdirp@4.0.2:
+ resolution: {integrity: sha512-yDMz9g+VaZkqBYS/ozoBJwaBhTbZo3UNYQHNRw1D3UFQB8oHB4uS/tAODO+ZLjGWmUbKnIlOWO+aaIiAxrUWHA==}
+ engines: {node: '>= 14.16.0'}
+
readline-sync@1.4.10:
resolution: {integrity: sha512-gNva8/6UAe8QYepIQH/jQ2qn91Qj0B9sYjMBBs3QOB8F2CXcKgLxQaJRP76sWVRQt+QU+8fAkCbCvjjMFu7Ycw==}
engines: {node: '>= 0.8.0'}
@@ -14292,6 +15173,11 @@ packages:
resolution: {integrity: sha512-57frrGM/OCTLqLOAh0mhVA9VBMHd+9U7Zb2THMGdBUoZVOtGbJzjxsYGDJ3A9AYYCP4hn6y1TVbaOfzWtm5GFg==}
engines: {node: '>= 12.13.0'}
+ rebass@4.0.7:
+ resolution: {integrity: sha512-GJot6j6Qcr7jk1QIgf9qBoud75CGRpN8pGcEo98TSp4KNSWV01ZLvGwFKGI35oEBuNs+lpEd3+pnwkQUTSFytg==}
+ peerDependencies:
+ react: ^16.8.6
+
recast@0.21.5:
resolution: {integrity: sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==}
engines: {node: '>= 4'}
@@ -14311,6 +15197,11 @@ packages:
redis@4.2.0:
resolution: {integrity: sha512-bCR0gKVhIXFg8zCQjXEANzgI01DDixtPZgIUZHBCmwqixnu+MK3Tb2yqGjh+HCLASQVVgApiwhNkv+FoedZOGQ==}
+ redux-thunk@2.4.2:
+ resolution: {integrity: sha512-+P3TjtnP0k/FEjcBL5FZpoovtvrTNT/UXd4/sluaSyrURlSlhLSzEdfsTBW7WsKB6yPvgd7q/iZPICFjW4o57Q==}
+ peerDependencies:
+ redux: ^4
+
redux@4.2.1:
resolution: {integrity: sha512-LAUYz4lc+Do8/g7aeRa8JkyDErK6ekstQaqWQrNRW//MY1TvCEpMtpTWvlQ+FPbWCx+Xixu/6SHt5N0HR+SB4w==}
@@ -14321,6 +15212,11 @@ packages:
resolution: {integrity: sha512-fmfw4XgoDke3kdI6h4xcUz1dG8uaiv5q9gcEwLS4Pnth2kxT+GZ7YehS1JTMGBQmtV7Y4GFGbs2re2NqhdozUg==}
engines: {node: '>= 0.4'}
+ reflexbox@4.0.6:
+ resolution: {integrity: sha512-UNUL4YoJEXAPjRKHuty1tuOk+LV1nDJ2KYViDcH7lYm5yU3AQ+EKNXxPU3E14bQNK/pE09b1hYl+ZKdA94tWLQ==}
+ peerDependencies:
+ react: ^16.8.6
+
regenerate-unicode-properties@10.1.1:
resolution: {integrity: sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==}
engines: {node: '>=4'}
@@ -14387,6 +15283,9 @@ packages:
resolution: {integrity: sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==}
engines: {node: '>= 0.10'}
+ relative-luminance@2.0.1:
+ resolution: {integrity: sha512-wFuITNthJilFPwkK7gNJcULxXBcfFZvZORsvdvxeOdO44wCeZnuQkf3nFFzOR/dpJNxYsdRZJLsepWbyKhnMww==}
+
release-zalgo@1.0.0:
resolution: {integrity: sha512-gUAyHVHPPC5wdqX/LG4LWtRYtgjxyX78oanFNTMMyFEfOqdC54s3eE82imuWKbOeqYht2CrNf64Qb8vgmmtZGA==}
engines: {node: '>=4'}
@@ -14422,6 +15321,12 @@ packages:
requires-port@1.0.0:
resolution: {integrity: sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ==}
+ reselect@4.1.8:
+ resolution: {integrity: sha512-ab9EmR80F/zQTMNeneUr4cv+jSwPJgIlvEmVwLerwrWVbpLlBuls9XHzIeTFy4cegU2NHBp3va0LKOzU5qFEYQ==}
+
+ resize-observer-polyfill@1.5.1:
+ resolution: {integrity: sha512-LwZrotdHOo12nQuZlHEmtuXdqGoOD0OhaxopaNFxWzInpEgaLWoVuAMbTzixuosCx2nEG58ngzW3vxdWoxIgdg==}
+
resolve-from@3.0.0:
resolution: {integrity: sha512-GnlH6vxLymXJNMBo7XP1fJIzBFbdYt49CuTwmB/6N53t+kMPRMFKz783LlQ4tv28XoQfMWinAJX6WCGf2IlaIw==}
engines: {node: '>=4'}
@@ -14471,6 +15376,11 @@ packages:
rfdc@1.3.1:
resolution: {integrity: sha512-r5a3l5HzYlIC68TpmYKlxWjmOP6wiPJ1vWv2HeLhNsRZMrCkxeqxiHlQ21oXmQ4F3SiryXBHhAD7JZqvOJjFmg==}
+ rimraf@2.4.5:
+ resolution: {integrity: sha512-J5xnxTyqaiw06JjMftq7L9ouA448dw/E7dKghkP9WpKNuwmARNNg+Gk8/u5ryb9N/Yo2+z3MCwuqFK/+qPOPfQ==}
+ deprecated: Rimraf versions prior to v4 are no longer supported
+ hasBin: true
+
rimraf@2.6.3:
resolution: {integrity: sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==}
deprecated: Rimraf versions prior to v4 are no longer supported
@@ -14579,6 +15489,9 @@ packages:
safe-json-parse@4.0.0:
resolution: {integrity: sha512-RjZPPHugjK0TOzFrLZ8inw44s9bKox99/0AZW9o/BEQVrJfhI+fIHMErnPyRa89/yRXUUr93q+tiN6zhoVV4wQ==}
+ safe-json-stringify@1.2.0:
+ resolution: {integrity: sha512-gH8eh2nZudPQO6TytOvbxnuhYBOvDBBLW52tz5q6X58lJcd/tkmqFR+5Z9adS8aJtURSXWThWy/xJtJwixErvg==}
+
safe-regex-test@1.0.3:
resolution: {integrity: sha512-CdASjNJPvRa7roO6Ra/gLYBTzYzzPyyBXxIMdGW3USQLyjWEls2RgW5UBTXaQVp+OrpeCK3bLem8smtmheoRuw==}
engines: {node: '>= 0.4'}
@@ -14720,6 +15633,9 @@ packages:
resolution: {integrity: sha512-ghgmKt5o4Tly5yEG/UJp8qTd0AN7Xalw4XBtDEKP655B699qMEtra1WlXeE6WIvdEG481JvRxULKsInq/iNysw==}
engines: {node: '>=0.10.0'}
+ serialize-javascript@6.0.2:
+ resolution: {integrity: sha512-Saa1xPByTTq2gdeFZYLLo+RFE35NHZkAbqZeWNd3BpzppeVisAqpDjcp8dyf6uIvEqJRd46jemmyA4iFIeVk8g==}
+
serve-static@1.15.0:
resolution: {integrity: sha512-XGuRDNjXUijsUL0vl6nSD7cwURuzEgglbOaFuZM9g3kwDXOWVTck0jLzjPzGD+TazWbboZYu52/9/XPdUgne9g==}
engines: {node: '>= 0.8.0'}
@@ -14824,10 +15740,6 @@ packages:
simple-swizzle@0.2.2:
resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
- sinon@17.0.2:
- resolution: {integrity: sha512-uihLiaB9FhzesElPDFZA7hDcNABzsVHwr3YfmM9sBllVwab3l0ltGlRV1XhpNfIacNDLGD1QRZNLs5nU5+hTuA==}
- deprecated: There
-
sirv@2.0.4:
resolution: {integrity: sha512-94Bdh3cC2PKrbgSOUqTiGPWVZeSiXfKOVZNJniWoqrWrRkB1CJzBU3NEbiTsPcYy1lDsANA/THzS+9WBiy5nfQ==}
engines: {node: '>= 10'}
@@ -14889,6 +15801,11 @@ packages:
resolution: {integrity: sha512-l5x7VUUWbjVFbafGLxPWkYsHIhEvmF85tbIeFZWc8ZPtoMyybuEhL7Jye/ooC4/d48FgOjSJXgsF/AJPYCW8Zw==}
engines: {node: '>= 10.0.0', npm: '>= 3.0.0'}
+ solc@0.8.26:
+ resolution: {integrity: sha512-yiPQNVf5rBFHwN6SIf3TUUvVAFKcQqmSUFeq+fb6pNRCo0ZCgpYOZDi3BVoezCPIAcKrVYd/qXlBLUP9wVrZ9g==}
+ engines: {node: '>=10.0.0'}
+ hasBin: true
+
sonic-boom@2.8.0:
resolution: {integrity: sha512-kuonw1YOYYNOve5iHdSahXPOK49GqwA+LZhI6Wz/l0rP57iKyXXIHaRagOBHAPmGwJC6od2Z9zgvZ5loSgMlVg==}
@@ -15003,6 +15920,10 @@ packages:
static-browser-server@1.0.3:
resolution: {integrity: sha512-ZUyfgGDdFRbZGGJQ1YhiM930Yczz5VlbJObrQLlk24+qNHVQx4OlLcYswEUo3bIyNAbQUIUR9Yr5/Hqjzqb4zA==}
+ stats-lite@2.2.0:
+ resolution: {integrity: sha512-/Kz55rgUIv2KP2MKphwYT/NCuSfAlbbMRv2ZWw7wyXayu230zdtzhxxuXXcvsc6EmmhS8bSJl3uS1wmMHFumbA==}
+ engines: {node: '>=2.0.0'}
+
statuses@1.5.0:
resolution: {integrity: sha512-OpZ3zP+jT1PI7I8nemJX4AKmAX070ZkYPVWV/AaKTJl+tXCTGyVdC1a4SL8RUQYEwk/f34ZX8UTykN68FwrqAA==}
engines: {node: '>= 0.6'}
@@ -15026,6 +15947,9 @@ packages:
resolution: {integrity: sha512-KXDYZ9dszj6bzvnEMRYvxgeTHU74QBFL54XKtP3nyMuJ81CFYtABZ3bAzL2EdFUaEwJOBOgENyFj3R7oTzDyyw==}
engines: {node: '>=4', npm: '>=6'}
+ stream-blackhole@1.0.3:
+ resolution: {integrity: sha512-7NWl3dkmCd12mPkEwTbBPGxwvxj7L4O9DTjJudn02Fmk9K+RuPaDF8zeGo3kmjbsffU5E1aGpZ1dTR9AaRg6AQ==}
+
stream-browserify@3.0.0:
resolution: {integrity: sha512-H73RAHsVBapbim0tU2JwwOiXUj+fikfiaoYAKHF3VJfA0pe2BCzkhAHBlLG6REzE+2WNZcxOXjK7lkso+9euLA==}
@@ -15157,6 +16081,10 @@ packages:
strnum@1.0.5:
resolution: {integrity: sha512-J8bbNyKKXl5qYcR36TIO8W3mVGVHrmmxsd5PAItGkmyzwJvybiw2IVq5nqd0i4LSNSkB/sx9VHllbfFdr9k1JA==}
+ strtok3@6.3.0:
+ resolution: {integrity: sha512-fZtbhtvI9I48xDSywd/somNqgUHl2L2cstmXCCif0itOf96jeW18MBSyrLuNicYQVkvpOxkZtkzujiTJ9LW5Jw==}
+ engines: {node: '>=10'}
+
sturdy-websocket@0.2.1:
resolution: {integrity: sha512-NnzSOEKyv4I83qbuKw9ROtJrrT6Z/Xt7I0HiP/e6H6GnpeTDvzwGIGeJ8slai+VwODSHQDooW2CAilJwT9SpRg==}
@@ -15166,6 +16094,13 @@ packages:
style-search@0.1.0:
resolution: {integrity: sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==}
+ styled-components@6.1.13:
+ resolution: {integrity: sha512-M0+N2xSnAtwcVAQeFEsGWFFxXDftHUD7XrKla06QbpUMmbmtFBMMTcKWvFXtWxuD5qQkB8iU5gk6QASlx2ZRMw==}
+ engines: {node: '>= 16'}
+ peerDependencies:
+ react: '>= 16.8.0'
+ react-dom: '>= 16.8.0'
+
styled-jsx@5.1.1:
resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
engines: {node: '>= 12.0.0'}
@@ -15179,6 +16114,9 @@ packages:
babel-plugin-macros:
optional: true
+ styled-system@5.1.5:
+ resolution: {integrity: sha512-7VoD0o2R3RKzOzPK0jYrVnS8iJdfkKsQJNiLRDjikOpQVqQHns/DXWaPZOH4tIKkhAT7I6wIsy9FWTWh2X3q+A==}
+
stylelint-config-prettier@9.0.5:
resolution: {integrity: sha512-U44lELgLZhbAD/xy/vncZ2Pq8sh2TnpiPvo38Ifg9+zeioR+LAkHu0i6YORIOxFafZoVg0xqQwex6e6F25S5XA==}
engines: {node: '>= 12'}
@@ -15204,6 +16142,9 @@ packages:
stylis@4.2.0:
resolution: {integrity: sha512-Orov6g6BB1sDfYgzWfTHDOxamtX1bE/zo104Dh9e6fqJ3PooipYyfJ0pUmrZO2wAvO8YbEyeFrkV91XTsGMSrw==}
+ stylis@4.3.2:
+ resolution: {integrity: sha512-bhtUjWd/z6ltJiQwg0dUfxEJ+W+jdqQd8TbWLWyeIJHlnsqmGLRFFd8e5mA0AZi/zx90smXRlN66YMTcaSFifg==}
+
sudo-prompt@9.2.1:
resolution: {integrity: sha512-Mu7R0g4ig9TUuGSxJavny5Rv0egCEtpZRNMrZaYS1vxkiIxGiGUwoezU3LazIQ+KE04hTrTfNPgxU5gzi7F5Pw==}
@@ -15398,6 +16339,9 @@ packages:
timers-ext@0.1.7:
resolution: {integrity: sha512-b85NUNzTSdodShTIbky6ZF02e8STtVVfD+fu4aXXShEELpozH+bCpJLYMPZbsABN2wDH7fJpqIoXxJpzbf0NqQ==}
+ timm@1.7.1:
+ resolution: {integrity: sha512-IjZc9KIotudix8bMaBW6QvMuq64BrJWFs1+4V0lXwWGQZwH+LnX87doAYhem4caOEusRP9/g6jVDQmZ8XOk1nw==}
+
tiny-emitter@2.1.0:
resolution: {integrity: sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==}
@@ -15411,9 +16355,19 @@ packages:
resolution: {integrity: sha512-FmqJZGduTyvsr2cF3375fqGHUovSwDi/QytexX1Se4BPuPZpTE5Ftp5fg+EFSuEf3lhZqgCRjEG3ydUQ/aNiwA==}
engines: {node: '>=6.0.0'}
+ tiny-warning@1.0.3:
+ resolution: {integrity: sha512-lBN9zLN/oAf68o3zNXYrdCt1kP8WsiGW8Oo2ka41b2IM5JL/S1CTyX1rW0mb/zSuJun0ZUrDxx4sqvYS2FWzPA==}
+
tinybench@2.8.0:
resolution: {integrity: sha512-1/eK7zUnIklz4JUUlL+658n58XO2hHLQfSk1Zf2LKieUjxidN16eKFEoDEfjHc3ohofSSqK3X5yO6VGb6iW8Lw==}
+ tinycolor2@1.6.0:
+ resolution: {integrity: sha512-XPaBkWQJdsf3pLKJV9p4qN/S+fm2Oj8AIPo1BTUhg5oxkvm9+SVEGFdhyOz7tTdUTfvxMiAs4sp6/eZO2Ew+pw==}
+
+ tinyglobby@0.2.10:
+ resolution: {integrity: sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==}
+ engines: {node: '>=12.0.0'}
+
tinypool@0.8.4:
resolution: {integrity: sha512-i11VH5gS6IFeLY3gMBQ00/MmLncVP7JLXOw1vlgkytLmJK7QnEr7NXf0LBdxfmNPAeyetukOk0bOYrJrFGjYJQ==}
engines: {node: '>=14.0.0'}
@@ -15445,10 +16399,17 @@ packages:
resolution: {integrity: sha512-/m8M+2BJUpoJdgAHoG+baCwBT+tf2VraSfkBgl0Y00qIWt41DJ8R5B8nsEw0I58YwF5IZH6z24/2TobDKnqSWw==}
engines: {node: '>=12'}
+ toformat@2.0.0:
+ resolution: {integrity: sha512-03SWBVop6nU8bpyZCx7SodpYznbZF5R4ljwNLBcTQzKOD9xuihRo/psX58llS1BMFhhAI08H3luot5GoXJz2pQ==}
+
toidentifier@1.0.1:
resolution: {integrity: sha512-o5sSPKEkg/DIQNmH43V0/uerLrpzVedkUh8tGNvaeXpfpuwjKenlSox/2O/BTlZUtEe+JG7s5YhEz608PlAHRA==}
engines: {node: '>=0.6'}
+ token-types@4.2.1:
+ resolution: {integrity: sha512-6udB24Q737UD/SDsKAHI9FCRP7Bqc9D/MQUV02ORQg5iskjtLJlZJNdN4kKtcdtwCeWIwIHDGaUsTsCCAa8sFQ==}
+ engines: {node: '>=10'}
+
toposort-class@1.0.1:
resolution: {integrity: sha512-OsLcGGbYF3rMjPUf8oKktyvCiUxSbqMMS39m33MAjLTC1DVIH6x3WSt63/M77ihI09+Sdfk1AXvfhCEeUmC7mg==}
@@ -15482,6 +16443,10 @@ packages:
resolution: {integrity: sha512-L0Orpi8qGpRG//Nd+H90vFB+3iHnue1zSSGmNOOCh1GLJ7rUKVwV2HvijphGQS2UmhUZewS9VgvxYIdgr+fG1A==}
hasBin: true
+ treeify@1.1.0:
+ resolution: {integrity: sha512-1m4RA7xVAJrSGrrXGs0L3YTwyvBs2S8PbRHaLZAkFw7JR8oIFwYtysxlBZhYIa7xSyiYJKZ3iGrrk55cGA3i9A==}
+ engines: {node: '>=0.6'}
+
trim-newlines@3.0.1:
resolution: {integrity: sha512-c1PTsA3tYrIsLGkJkzHF+w9F2EyxfXGo4UyJc4pFL++FMjnq0HJS69T3M7d//gKrFKwy429bouPescbjecU+Zw==}
engines: {node: '>=8'}
@@ -15572,6 +16537,9 @@ packages:
peerDependencies:
typescript: '>=2.3.0-dev || >=2.4.0-dev || >=2.5.0-dev || >=2.6.0-dev || >=2.7.0-dev || >=2.8.0-dev || >=2.9.0-dev || >=3.0.0-dev || >= 3.1.0-dev || >= 3.2.0-dev'
+ tsort@0.0.1:
+ resolution: {integrity: sha512-Tyrf5mxF8Ofs1tNoxA13lFeZ2Zrbd6cKbuH3V+MQ5sb6DtBj5FjrXVsRWT8YvNAQTqNoz66dz1WsbigI22aEnw==}
+
tsutils@2.29.0:
resolution: {integrity: sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA==}
peerDependencies:
@@ -15992,6 +16960,9 @@ packages:
utf8@3.0.0:
resolution: {integrity: sha512-E8VjFIQ/TyQgp+TZfS6l8yp/xWppSAHzidGiRrqe4bK4XP9pTRyKFgGJpO3SN7zdX4DeomTrwaseCHovfpFcqQ==}
+ utif@2.0.1:
+ resolution: {integrity: sha512-Z/S1fNKCicQTf375lIP9G8Sa1H/phcysstNrrSdZKj1f9g58J4NMgb5IgiEZN9/nLMPDwF0W7hdOe9Qq2IYoLg==}
+
util-deprecate@1.0.2:
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
@@ -16054,6 +17025,12 @@ packages:
react:
optional: true
+ varint@5.0.2:
+ resolution: {integrity: sha512-lKxKYG6H03yCZUpAGOPOsMcGxd1RHCu1iKvEHYDPmTyq2HueGhD73ssNBqqQWfvYs04G9iUFRvmAVLW20Jw6ow==}
+
+ varint@6.0.0:
+ resolution: {integrity: sha512-cXEIW6cfr15lFv563k4GuVuW/fiwjknytD37jIOLSdSWuOI6WnO/oKwmP2FQTU2l01LP8/M5TSAJpzUaGe3uWg==}
+
vary@1.1.2:
resolution: {integrity: sha512-BNGbWLfd0eUPabhkXUVm0j8uuvREyTh5ovRa/dyow/BqAbZJyC+5fU+IzQOzmAKzYqYRAISoRhdQr3eIZ/PXqg==}
engines: {node: '>= 0.8'}
@@ -16229,6 +17206,9 @@ packages:
engines: {node: ^18||>=20}
hasBin: true
+ wcag-contrast@3.0.0:
+ resolution: {integrity: sha512-RWbpg/S7FOXDCwqC2oFhN/vh8dHzj0OS6dpyOSDHyQFSmqmR+lAUStV/ziTT1GzDqL9wol+nZQB4vCi5yEak+w==}
+
wcwidth@1.0.1:
resolution: {integrity: sha512-XHPEwS0q6TaxcvG85+8EYkbiCux2XtWG2mkc47Ng2A77BQu9+DqIOJldST4HgPkuea7dvKSj5VgX3P1d4rW8Tg==}
@@ -16448,6 +17428,13 @@ packages:
engines: {node: '>=8'}
hasBin: true
+ wicg-inert@3.1.3:
+ resolution: {integrity: sha512-5L0PKK7iP+0Q/jv2ccgmkz/pfXbumZtlEyWS/xnX+L+Og3f7WjL4+iEs18k4IuldOX3PgGpza3qGndL9xUBjCQ==}
+
+ widest-line@3.1.0:
+ resolution: {integrity: sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==}
+ engines: {node: '>=8'}
+
wif@2.0.6:
resolution: {integrity: sha512-HIanZn1zmduSF+BQhkE+YXIbEiH0xPr1012QbFEGB0xsKqJii0/SqJjyn8dFv6y36kOznMgMB+LGcbZTJ1xACQ==}
@@ -16463,6 +17450,9 @@ packages:
engines: {node: '>=16'}
hasBin: true
+ workerpool@6.5.1:
+ resolution: {integrity: sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA==}
+
wrangler@3.82.0:
resolution: {integrity: sha512-W4gyIkxOfqbFU6QrUvK+Ay2rwH+DcyXmIuT/1/9EG9K6jngmmon8ifVYGRTftRb2Vu7hDNLovbGfjeAXm+CEXA==}
engines: {node: '>=16.17.0'}
@@ -16629,6 +17619,17 @@ packages:
resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==}
engines: {node: '>=18'}
+ xml-parse-from-string@1.0.1:
+ resolution: {integrity: sha512-ErcKwJTF54uRzzNMXq2X5sMIy88zJvfN2DmdoQvy7PAFJ+tPRU6ydWuOKNMyfmOjdyBQTFREi60s0Y0SyI0G0g==}
+
+ xml2js@0.5.0:
+ resolution: {integrity: sha512-drPFnkQJik/O+uPKpqSgr22mpuFHqKdbS835iAQrUC73L2F5WkboIRd63ai/2Yg6I1jzifPFKH2NTK+cfglkIA==}
+ engines: {node: '>=4.0.0'}
+
+ xmlbuilder@11.0.1:
+ resolution: {integrity: sha512-fDlsI/kFEx7gLvbecc0/ohLG50fugQp8ryHzMTuW9vSa1GJ0XYWKnhsUx7oie3G98+r56aTQIUB4kht42R3JvA==}
+ engines: {node: '>=4.0'}
+
xmlchars@2.2.0:
resolution: {integrity: sha512-JZnDKK8B0RCDw84FNdDAIpZK+JuJw+s7Lz8nksI7SIuU3UXJJslUthsi+uWBUYOwPFwW7W7PRLRfUKpxjtjFCw==}
@@ -16673,11 +17674,6 @@ packages:
resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
engines: {node: '>= 6'}
- yaml@2.5.0:
- resolution: {integrity: sha512-2wWLbGbYDiSqqIKoPjar3MPgB94ErzCtrNE1FdqGuaO0pi2JGjmE8aW8TDZwzU7vuxcGRdL/4gPQwQ7hD5AMSw==}
- engines: {node: '>= 14'}
- hasBin: true
-
yaml@2.6.0:
resolution: {integrity: sha512-a6ae//JvKDEra2kdi1qzCyrJW/WZCgFi8ydDV+eXExl95t+5R+ijnqHJbz9tmMh8FUjx3iv2fCQ4dclAQlO2UQ==}
engines: {node: '>= 14'}
@@ -16699,6 +17695,10 @@ packages:
resolution: {integrity: sha512-tVpsJW7DdjecAiFpbIB1e3qxIQsE6NoPc5/eTdrbbIC4h0LVsWhnoa3g+m2HclBIujHzsxZ4VJVA+GUuc2/LBw==}
engines: {node: '>=12'}
+ yargs-unparser@2.0.0:
+ resolution: {integrity: sha512-7pRTIA9Qc1caZ0bZ6RYRGbHJthJWuakf+WmHK0rVeLkNrrGhfoabBNdue6kdINI6r4if7ocq9aD/n7xwKOdzOA==}
+ engines: {node: '>=10'}
+
yargs@15.4.1:
resolution: {integrity: sha512-aePbxDmcYW++PaqBsJ+HYUFwCdv4LVvdnhBy78E57PIor8/OVvhMrADFFEDh8DHDFRv/O9i3lPhsENjO7QX0+A==}
engines: {node: '>=8'}
@@ -16758,6 +17758,21 @@ packages:
react:
optional: true
+ zustand@4.4.0:
+ resolution: {integrity: sha512-2dq6wq4dSxbiPTamGar0NlIG/av0wpyWZJGeQYtUOLegIUvhM2Bf86ekPlmgpUtS5uR7HyetSiktYrGsdsyZgQ==}
+ engines: {node: '>=12.7.0'}
+ peerDependencies:
+ '@types/react': '>=16.8'
+ immer: '>=9.0'
+ react: '>=16.8'
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ immer:
+ optional: true
+ react:
+ optional: true
+
zustand@4.4.1:
resolution: {integrity: sha512-QCPfstAS4EBiTQzlaGP1gmorkh/UL1Leaj2tdj+zZCZ/9bm0WS7sI2wnfD5lpOszFqWJ1DcPnGoY8RDL61uokw==}
engines: {node: '>=12.7.0'}
@@ -16815,26 +17830,26 @@ snapshots:
- typescript
optional: true
- '@alchemy/aa-alchemy@3.19.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(@types/react@18.3.3)(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-i18next@13.5.0(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.26.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6))':
+ '@alchemy/aa-alchemy@3.19.0(57iqhoij7dc4xburxyatopnzli)':
dependencies:
'@alchemy/aa-core': 3.19.0(typescript@5.4.5)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6))
'@tanstack/react-form': 0.19.5(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@tanstack/zod-form-adapter': 0.19.5(zod@3.23.6)
- '@turnkey/http': 2.13.0
+ '@turnkey/http': 2.13.0(encoding@0.1.13)
'@turnkey/iframe-stamper': 1.2.0
- '@turnkey/viem': 0.4.29(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6))
+ '@turnkey/viem': 0.4.29(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6))
'@turnkey/webauthn-stamper': 0.4.3
- '@wagmi/connectors': 4.3.10(@types/react@18.3.3)(@wagmi/core@2.13.4(@types/react@18.3.3)(react@18.3.1)(typescript@5.4.5)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)))(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-i18next@13.5.0(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.26.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6))(zod@3.23.6)
- '@wagmi/core': 2.13.4(@types/react@18.3.3)(react@18.3.1)(typescript@5.4.5)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6))
+ '@wagmi/connectors': 4.3.10(@types/react@18.3.3)(@wagmi/core@2.13.4(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1)(typescript@5.4.5)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-i18next@13.5.0(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.26.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6))(zod@3.23.6)
+ '@wagmi/core': 2.13.4(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1)(typescript@5.4.5)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6))
eventemitter3: 5.0.1
js-cookie: 3.0.5
viem: 2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
- wagmi: 2.12.8(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(@types/react@18.3.3)(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.26.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6))(zod@3.23.6)
+ wagmi: 2.12.8(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(immer@9.0.21)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.26.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6))(zod@3.23.6)
zod: 3.23.6
- zustand: 4.5.2(@types/react@18.3.3)(react@18.3.1)
+ zustand: 4.5.2(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1)
optionalDependencies:
'@alchemy/aa-accounts': 3.19.0(typescript@5.4.5)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6))
- '@tanstack/react-query': 4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ '@tanstack/react-query': 4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
alchemy-sdk: 3.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
@@ -16978,8 +17993,8 @@ snapshots:
'@aws-crypto/sha1-browser': 3.0.0
'@aws-crypto/sha256-browser': 3.0.0
'@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/client-sso-oidc': 3.577.0(@aws-sdk/client-sts@3.577.0)
- '@aws-sdk/client-sts': 3.577.0
+ '@aws-sdk/client-sso-oidc': 3.577.0
+ '@aws-sdk/client-sts': 3.577.0(@aws-sdk/client-sso-oidc@3.577.0)
'@aws-sdk/core': 3.576.0
'@aws-sdk/credential-provider-node': 3.577.0(@aws-sdk/client-sso-oidc@3.577.0)(@aws-sdk/client-sts@3.577.0)
'@aws-sdk/middleware-bucket-endpoint': 3.577.0
@@ -17036,11 +18051,11 @@ snapshots:
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/client-sso-oidc@3.577.0(@aws-sdk/client-sts@3.577.0)':
+ '@aws-sdk/client-sso-oidc@3.577.0':
dependencies:
'@aws-crypto/sha256-browser': 3.0.0
'@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/client-sts': 3.577.0
+ '@aws-sdk/client-sts': 3.577.0(@aws-sdk/client-sso-oidc@3.577.0)
'@aws-sdk/core': 3.576.0
'@aws-sdk/credential-provider-node': 3.577.0(@aws-sdk/client-sso-oidc@3.577.0)(@aws-sdk/client-sts@3.577.0)
'@aws-sdk/middleware-host-header': 3.577.0
@@ -17079,7 +18094,6 @@ snapshots:
'@smithy/util-utf8': 3.0.0
tslib: 2.7.0
transitivePeerDependencies:
- - '@aws-sdk/client-sts'
- aws-crt
'@aws-sdk/client-sso@3.577.0':
@@ -17125,11 +18139,11 @@ snapshots:
transitivePeerDependencies:
- aws-crt
- '@aws-sdk/client-sts@3.577.0':
+ '@aws-sdk/client-sts@3.577.0(@aws-sdk/client-sso-oidc@3.577.0)':
dependencies:
'@aws-crypto/sha256-browser': 3.0.0
'@aws-crypto/sha256-js': 3.0.0
- '@aws-sdk/client-sso-oidc': 3.577.0(@aws-sdk/client-sts@3.577.0)
+ '@aws-sdk/client-sso-oidc': 3.577.0
'@aws-sdk/core': 3.576.0
'@aws-sdk/credential-provider-node': 3.577.0(@aws-sdk/client-sso-oidc@3.577.0)(@aws-sdk/client-sts@3.577.0)
'@aws-sdk/middleware-host-header': 3.577.0
@@ -17168,6 +18182,7 @@ snapshots:
'@smithy/util-utf8': 3.0.0
tslib: 2.7.0
transitivePeerDependencies:
+ - '@aws-sdk/client-sso-oidc'
- aws-crt
'@aws-sdk/core@3.576.0':
@@ -17201,7 +18216,7 @@ snapshots:
'@aws-sdk/credential-provider-ini@3.577.0(@aws-sdk/client-sso-oidc@3.577.0)(@aws-sdk/client-sts@3.577.0)':
dependencies:
- '@aws-sdk/client-sts': 3.577.0
+ '@aws-sdk/client-sts': 3.577.0(@aws-sdk/client-sso-oidc@3.577.0)
'@aws-sdk/credential-provider-env': 3.577.0
'@aws-sdk/credential-provider-process': 3.577.0
'@aws-sdk/credential-provider-sso': 3.577.0(@aws-sdk/client-sso-oidc@3.577.0)
@@ -17258,7 +18273,7 @@ snapshots:
'@aws-sdk/credential-provider-web-identity@3.577.0(@aws-sdk/client-sts@3.577.0)':
dependencies:
- '@aws-sdk/client-sts': 3.577.0
+ '@aws-sdk/client-sts': 3.577.0(@aws-sdk/client-sso-oidc@3.577.0)
'@aws-sdk/types': 3.577.0
'@smithy/property-provider': 3.0.0
'@smithy/types': 3.0.0
@@ -17396,7 +18411,7 @@ snapshots:
'@aws-sdk/token-providers@3.577.0(@aws-sdk/client-sso-oidc@3.577.0)':
dependencies:
- '@aws-sdk/client-sso-oidc': 3.577.0(@aws-sdk/client-sts@3.577.0)
+ '@aws-sdk/client-sso-oidc': 3.577.0
'@aws-sdk/types': 3.577.0
'@smithy/property-provider': 3.0.0
'@smithy/shared-ini-file-loader': 3.0.0
@@ -17486,7 +18501,7 @@ snapshots:
'@babel/traverse': 7.25.6
'@babel/types': 7.25.2
convert-source-map: 2.0.0
- debug: 4.3.7
+ debug: 4.3.7(supports-color@8.1.1)
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
@@ -17506,7 +18521,7 @@ snapshots:
'@babel/traverse': 7.25.9
'@babel/types': 7.26.0
convert-source-map: 2.0.0
- debug: 4.3.7
+ debug: 4.3.7(supports-color@8.1.1)
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
@@ -17531,7 +18546,7 @@ snapshots:
'@babel/helper-annotate-as-pure@7.24.7':
dependencies:
- '@babel/types': 7.25.2
+ '@babel/types': 7.26.0
'@babel/helper-annotate-as-pure@7.25.9':
dependencies:
@@ -17568,7 +18583,7 @@ snapshots:
'@babel/helper-optimise-call-expression': 7.24.7
'@babel/helper-replace-supers': 7.25.0(@babel/core@7.24.5)
'@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/traverse': 7.25.3
+ '@babel/traverse': 7.25.9
semver: 6.3.1
transitivePeerDependencies:
- supports-color
@@ -17627,7 +18642,7 @@ snapshots:
'@babel/core': 7.24.5
'@babel/helper-compilation-targets': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- debug: 4.3.7
+ debug: 4.3.7(supports-color@8.1.1)
lodash.debounce: 4.0.8
resolve: 1.22.8
transitivePeerDependencies:
@@ -17638,7 +18653,7 @@ snapshots:
'@babel/core': 7.25.7
'@babel/helper-compilation-targets': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- debug: 4.3.7
+ debug: 4.3.7(supports-color@8.1.1)
lodash.debounce: 4.0.8
resolve: 1.22.8
transitivePeerDependencies:
@@ -17650,7 +18665,7 @@ snapshots:
'@babel/core': 7.24.5
'@babel/helper-compilation-targets': 7.25.9
'@babel/helper-plugin-utils': 7.25.9
- debug: 4.3.7
+ debug: 4.3.7(supports-color@8.1.1)
lodash.debounce: 4.0.8
resolve: 1.22.8
transitivePeerDependencies:
@@ -17661,7 +18676,7 @@ snapshots:
'@babel/core': 7.25.7
'@babel/helper-compilation-targets': 7.25.9
'@babel/helper-plugin-utils': 7.25.9
- debug: 4.3.7
+ debug: 4.3.7(supports-color@8.1.1)
lodash.debounce: 4.0.8
resolve: 1.22.8
transitivePeerDependencies:
@@ -17672,8 +18687,8 @@ snapshots:
'@babel/helper-member-expression-to-functions@7.24.8':
dependencies:
- '@babel/traverse': 7.25.3
- '@babel/types': 7.25.2
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
transitivePeerDependencies:
- supports-color
@@ -17733,7 +18748,7 @@ snapshots:
'@babel/helper-optimise-call-expression@7.24.7':
dependencies:
- '@babel/types': 7.25.2
+ '@babel/types': 7.26.0
'@babel/helper-optimise-call-expression@7.25.9':
dependencies:
@@ -17748,7 +18763,7 @@ snapshots:
'@babel/core': 7.24.5
'@babel/helper-annotate-as-pure': 7.24.7
'@babel/helper-wrap-function': 7.25.0
- '@babel/traverse': 7.25.3
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
@@ -17776,7 +18791,7 @@ snapshots:
'@babel/core': 7.24.5
'@babel/helper-member-expression-to-functions': 7.24.8
'@babel/helper-optimise-call-expression': 7.24.7
- '@babel/traverse': 7.25.3
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
@@ -17815,8 +18830,8 @@ snapshots:
'@babel/helper-skip-transparent-expression-wrappers@7.24.7':
dependencies:
- '@babel/traverse': 7.25.3
- '@babel/types': 7.25.2
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
transitivePeerDependencies:
- supports-color
@@ -17845,9 +18860,9 @@ snapshots:
'@babel/helper-wrap-function@7.25.0':
dependencies:
- '@babel/template': 7.25.0
- '@babel/traverse': 7.25.3
- '@babel/types': 7.25.2
+ '@babel/template': 7.25.9
+ '@babel/traverse': 7.25.9
+ '@babel/types': 7.26.0
transitivePeerDependencies:
- supports-color
@@ -18347,7 +19362,7 @@ snapshots:
'@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-module-imports': 7.25.9
'@babel/helper-plugin-utils': 7.24.8
'@babel/helper-remap-async-to-generator': 7.25.0(@babel/core@7.24.5)
transitivePeerDependencies:
@@ -18440,7 +19455,7 @@ snapshots:
'@babel/helper-compilation-targets': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
'@babel/helper-replace-supers': 7.25.0(@babel/core@7.24.5)
- '@babel/traverse': 7.25.3
+ '@babel/traverse': 7.25.9
globals: 11.12.0
transitivePeerDependencies:
- supports-color
@@ -18474,7 +19489,7 @@ snapshots:
dependencies:
'@babel/core': 7.24.5
'@babel/helper-plugin-utils': 7.24.8
- '@babel/template': 7.25.0
+ '@babel/template': 7.25.9
'@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.24.5)':
dependencies:
@@ -18616,7 +19631,7 @@ snapshots:
'@babel/core': 7.24.5
'@babel/helper-compilation-targets': 7.25.2
'@babel/helper-plugin-utils': 7.24.8
- '@babel/traverse': 7.25.3
+ '@babel/traverse': 7.25.9
transitivePeerDependencies:
- supports-color
@@ -19001,10 +20016,10 @@ snapshots:
dependencies:
'@babel/core': 7.24.5
'@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-module-imports': 7.25.9
'@babel/helper-plugin-utils': 7.24.8
'@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.5)
- '@babel/types': 7.25.2
+ '@babel/types': 7.26.0
transitivePeerDependencies:
- supports-color
@@ -19047,7 +20062,7 @@ snapshots:
'@babel/plugin-transform-runtime@7.24.7(@babel/core@7.24.5)':
dependencies:
'@babel/core': 7.24.5
- '@babel/helper-module-imports': 7.24.7
+ '@babel/helper-module-imports': 7.25.9
'@babel/helper-plugin-utils': 7.24.8
babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.5)
babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.24.5)
@@ -19486,7 +20501,7 @@ snapshots:
'@babel/parser': 7.25.3
'@babel/template': 7.25.0
'@babel/types': 7.25.2
- debug: 4.3.7
+ debug: 4.3.7(supports-color@8.1.1)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
@@ -19498,7 +20513,7 @@ snapshots:
'@babel/parser': 7.25.6
'@babel/template': 7.25.0
'@babel/types': 7.25.6
- debug: 4.3.7
+ debug: 4.3.7(supports-color@8.1.1)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
@@ -19510,7 +20525,7 @@ snapshots:
'@babel/parser': 7.26.2
'@babel/template': 7.25.9
'@babel/types': 7.26.0
- debug: 4.3.7
+ debug: 4.3.7(supports-color@8.1.1)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
@@ -19575,7 +20590,7 @@ snapshots:
- bufferutil
- utf-8-validate
- '@canvas-js/chain-solana@0.12.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
+ '@canvas-js/chain-solana@0.12.1(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
'@canvas-js/interfaces': 0.12.1
'@canvas-js/signatures': 0.12.1
@@ -19583,14 +20598,14 @@ snapshots:
'@ipld/dag-json': 10.2.2
'@libp2p/logger': 5.1.0
'@noble/curves': 1.6.0
- '@solana/web3.js': 1.95.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@solana/web3.js': 1.95.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
multiformats: 13.3.0
transitivePeerDependencies:
- bufferutil
- encoding
- utf-8-validate
- '@canvas-js/chain-substrate@0.12.1(@polkadot/api@6.0.5)(@polkadot/util@12.6.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
+ '@canvas-js/chain-substrate@0.12.1(@polkadot/api@6.0.5(encoding@0.1.13))(@polkadot/util@12.6.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
dependencies:
'@canvas-js/interfaces': 0.12.1
'@canvas-js/signatures': 0.12.1
@@ -19598,7 +20613,7 @@ snapshots:
'@ipld/dag-json': 10.2.2
'@libp2p/logger': 5.1.0
'@noble/hashes': 1.5.0
- '@polkadot/extension-inject': 0.46.9(@polkadot/api@6.0.5)(@polkadot/util@12.6.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@polkadot/extension-inject': 0.46.9(@polkadot/api@6.0.5(encoding@0.1.13))(@polkadot/util@12.6.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@polkadot/keyring': 12.6.2(@polkadot/util-crypto@12.6.2(@polkadot/util@12.6.2))(@polkadot/util@12.6.2)
'@polkadot/util-crypto': 12.6.2(@polkadot/util@12.6.2)
multiformats: 13.3.0
@@ -20470,7 +21485,7 @@ snapshots:
'@emotion/babel-plugin@11.11.0':
dependencies:
'@babel/helper-module-imports': 7.24.3
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.0
'@emotion/hash': 0.9.1
'@emotion/memoize': 0.8.1
'@emotion/serialize': 1.1.4
@@ -20481,6 +21496,13 @@ snapshots:
source-map: 0.5.7
stylis: 4.2.0
+ '@emotion/cache@10.0.29':
+ dependencies:
+ '@emotion/sheet': 0.9.4
+ '@emotion/stylis': 0.8.5
+ '@emotion/utils': 0.11.3
+ '@emotion/weak-memoize': 0.2.5
+
'@emotion/cache@11.11.0':
dependencies:
'@emotion/memoize': 0.8.1
@@ -20489,12 +21511,42 @@ snapshots:
'@emotion/weak-memoize': 0.3.1
stylis: 4.2.0
+ '@emotion/core@10.3.1(react@18.3.1)':
+ dependencies:
+ '@babel/runtime': 7.26.0
+ '@emotion/cache': 10.0.29
+ '@emotion/css': 10.0.27
+ '@emotion/serialize': 0.11.16
+ '@emotion/sheet': 0.9.4
+ '@emotion/utils': 0.11.3
+ react: 18.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@emotion/css@10.0.27':
+ dependencies:
+ '@emotion/serialize': 0.11.16
+ '@emotion/utils': 0.11.3
+ babel-plugin-emotion: 10.2.2
+ transitivePeerDependencies:
+ - supports-color
+
+ '@emotion/hash@0.8.0': {}
+
'@emotion/hash@0.9.1': {}
+ '@emotion/is-prop-valid@0.8.8':
+ dependencies:
+ '@emotion/memoize': 0.7.4
+
'@emotion/is-prop-valid@1.2.2':
dependencies:
'@emotion/memoize': 0.8.1
+ '@emotion/memoize@0.7.4': {}
+
+ '@emotion/memoize@0.7.5': {}
+
'@emotion/memoize@0.8.1': {}
'@emotion/react@11.11.4(@types/react@18.3.3)(react@18.3.1)':
@@ -20511,6 +21563,14 @@ snapshots:
optionalDependencies:
'@types/react': 18.3.3
+ '@emotion/serialize@0.11.16':
+ dependencies:
+ '@emotion/hash': 0.8.0
+ '@emotion/memoize': 0.7.4
+ '@emotion/unitless': 0.7.5
+ '@emotion/utils': 0.11.3
+ csstype: 2.6.21
+
'@emotion/serialize@1.1.4':
dependencies:
'@emotion/hash': 0.9.1
@@ -20519,16 +21579,44 @@ snapshots:
'@emotion/utils': 1.2.1
csstype: 3.1.3
+ '@emotion/sheet@0.9.4': {}
+
'@emotion/sheet@1.2.2': {}
+ '@emotion/styled-base@10.3.0(@emotion/core@10.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@babel/runtime': 7.26.0
+ '@emotion/core': 10.3.1(react@18.3.1)
+ '@emotion/is-prop-valid': 0.8.8
+ '@emotion/serialize': 0.11.16
+ '@emotion/utils': 0.11.3
+ react: 18.3.1
+
+ '@emotion/styled@10.3.0(@emotion/core@10.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@emotion/core': 10.3.1(react@18.3.1)
+ '@emotion/styled-base': 10.3.0(@emotion/core@10.3.1(react@18.3.1))(react@18.3.1)
+ babel-plugin-emotion: 10.2.2
+ react: 18.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@emotion/stylis@0.8.5': {}
+
+ '@emotion/unitless@0.7.5': {}
+
'@emotion/unitless@0.8.1': {}
'@emotion/use-insertion-effect-with-fallbacks@1.0.1(react@18.3.1)':
dependencies:
react: 18.3.1
+ '@emotion/utils@0.11.3': {}
+
'@emotion/utils@1.2.1': {}
+ '@emotion/weak-memoize@0.2.5': {}
+
'@emotion/weak-memoize@0.3.1': {}
'@ensdomains/eth-ens-namehash@2.0.15': {}
@@ -20836,6 +21924,73 @@ snapshots:
'@eslint/js@8.57.0': {}
+ '@eth-optimism/contracts@0.6.0(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)':
+ dependencies:
+ '@eth-optimism/core-utils': 0.12.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@ethersproject/abstract-provider': 5.7.0
+ '@ethersproject/abstract-signer': 5.7.0
+ ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ transitivePeerDependencies:
+ - bufferutil
+ - utf-8-validate
+
+ '@eth-optimism/core-utils@0.12.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@ethersproject/abi': 5.7.0
+ '@ethersproject/abstract-provider': 5.7.0
+ '@ethersproject/address': 5.7.0
+ '@ethersproject/bignumber': 5.7.0
+ '@ethersproject/bytes': 5.7.0
+ '@ethersproject/constants': 5.7.0
+ '@ethersproject/contracts': 5.7.0
+ '@ethersproject/hash': 5.7.0
+ '@ethersproject/keccak256': 5.7.0
+ '@ethersproject/properties': 5.7.0
+ '@ethersproject/providers': 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@ethersproject/rlp': 5.7.0
+ '@ethersproject/transactions': 5.7.0
+ '@ethersproject/web': 5.7.1
+ bufio: 1.2.2
+ chai: 4.4.1
+ transitivePeerDependencies:
+ - bufferutil
+ - utf-8-validate
+
+ '@eth-optimism/core-utils@0.13.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@ethersproject/abi': 5.7.0
+ '@ethersproject/abstract-provider': 5.7.0
+ '@ethersproject/address': 5.7.0
+ '@ethersproject/bignumber': 5.7.0
+ '@ethersproject/bytes': 5.7.0
+ '@ethersproject/constants': 5.7.0
+ '@ethersproject/contracts': 5.7.0
+ '@ethersproject/keccak256': 5.7.0
+ '@ethersproject/properties': 5.7.0
+ '@ethersproject/rlp': 5.7.0
+ '@ethersproject/web': 5.7.1
+ chai: 4.4.1
+ ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ node-fetch: 2.7.0(encoding@0.1.13)
+ transitivePeerDependencies:
+ - bufferutil
+ - encoding
+ - utf-8-validate
+
+ '@eth-optimism/sdk@3.3.3(bufferutil@4.0.8)(encoding@0.1.13)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)':
+ dependencies:
+ '@eth-optimism/contracts': 0.6.0(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)
+ '@eth-optimism/core-utils': 0.13.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ lodash: 4.17.21
+ merkletreejs: 0.3.11
+ rlp: 2.2.7
+ semver: 7.6.3
+ transitivePeerDependencies:
+ - bufferutil
+ - encoding
+ - utf-8-validate
+
'@ethereumjs/common@2.6.5':
dependencies:
crc-32: 1.2.2
@@ -21476,6 +22631,10 @@ snapshots:
'@floating-ui/utils@0.2.2': {}
+ '@fontsource/ibm-plex-mono@4.5.13': {}
+
+ '@fontsource/inter@4.5.15': {}
+
'@glidejs/glide@3.6.0': {}
'@graphql-typed-document-node/core@3.2.0(graphql@16.9.0)':
@@ -21612,6 +22771,86 @@ snapshots:
'@types/yargs': 17.0.32
chalk: 4.1.2
+ '@jimp/bmp@0.16.13(@jimp/custom@0.16.13)':
+ dependencies:
+ '@babel/runtime': 7.26.0
+ '@jimp/custom': 0.16.13
+ '@jimp/utils': 0.16.13
+ bmp-js: 0.1.0
+
+ '@jimp/core@0.16.13':
+ dependencies:
+ '@babel/runtime': 7.26.0
+ '@jimp/utils': 0.16.13
+ any-base: 1.1.0
+ buffer: 5.7.1
+ exif-parser: 0.1.12
+ file-type: 16.5.4
+ load-bmfont: 1.4.2
+ mkdirp: 0.5.6
+ phin: 2.9.3
+ pixelmatch: 4.0.2
+ tinycolor2: 1.6.0
+ transitivePeerDependencies:
+ - debug
+
+ '@jimp/custom@0.16.13':
+ dependencies:
+ '@babel/runtime': 7.26.0
+ '@jimp/core': 0.16.13
+ transitivePeerDependencies:
+ - debug
+
+ '@jimp/gif@0.16.13(@jimp/custom@0.16.13)':
+ dependencies:
+ '@babel/runtime': 7.26.0
+ '@jimp/custom': 0.16.13
+ '@jimp/utils': 0.16.13
+ gifwrap: 0.9.4
+ omggif: 1.0.10
+
+ '@jimp/jpeg@0.16.13(@jimp/custom@0.16.13)':
+ dependencies:
+ '@babel/runtime': 7.26.0
+ '@jimp/custom': 0.16.13
+ '@jimp/utils': 0.16.13
+ jpeg-js: 0.4.4
+
+ '@jimp/plugin-resize@0.16.13(@jimp/custom@0.16.13)':
+ dependencies:
+ '@babel/runtime': 7.26.0
+ '@jimp/custom': 0.16.13
+ '@jimp/utils': 0.16.13
+
+ '@jimp/png@0.16.13(@jimp/custom@0.16.13)':
+ dependencies:
+ '@babel/runtime': 7.26.0
+ '@jimp/custom': 0.16.13
+ '@jimp/utils': 0.16.13
+ pngjs: 3.4.0
+
+ '@jimp/tiff@0.16.13(@jimp/custom@0.16.13)':
+ dependencies:
+ '@babel/runtime': 7.26.0
+ '@jimp/custom': 0.16.13
+ utif: 2.0.1
+
+ '@jimp/types@0.16.13(@jimp/custom@0.16.13)':
+ dependencies:
+ '@babel/runtime': 7.26.0
+ '@jimp/bmp': 0.16.13(@jimp/custom@0.16.13)
+ '@jimp/custom': 0.16.13
+ '@jimp/gif': 0.16.13(@jimp/custom@0.16.13)
+ '@jimp/jpeg': 0.16.13(@jimp/custom@0.16.13)
+ '@jimp/png': 0.16.13(@jimp/custom@0.16.13)
+ '@jimp/tiff': 0.16.13(@jimp/custom@0.16.13)
+ timm: 1.7.1
+
+ '@jimp/utils@0.16.13':
+ dependencies:
+ '@babel/runtime': 7.26.0
+ regenerator-runtime: 0.13.11
+
'@jitl/quickjs-ffi-types@0.29.2': {}
'@jitl/quickjs-wasmfile-debug-asyncify@0.29.2':
@@ -21774,7 +23013,7 @@ snapshots:
- utf-8-validate
- wait-for-expect
- '@lens-protocol/client@2.3.1(@lens-protocol/metadata@1.2.0(zod@3.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react@18.3.1)(utf-8-validate@5.0.10)':
+ '@lens-protocol/client@2.3.1(@lens-protocol/metadata@1.2.0(zod@3.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react@18.3.1)(utf-8-validate@5.0.10)':
dependencies:
'@ethersproject/abi': 5.7.0
'@ethersproject/abstract-signer': 5.7.0
@@ -21785,11 +23024,11 @@ snapshots:
'@ethersproject/providers': 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@ethersproject/wallet': 5.7.0
'@lens-protocol/blockchain-bindings': 0.10.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
- '@lens-protocol/gated-content': 0.5.1(@ethersproject/abi@5.7.0)(@ethersproject/address@5.7.0)(@ethersproject/bignumber@5.7.0)(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(@lens-protocol/metadata@1.2.0(zod@3.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react@18.3.1)(utf-8-validate@5.0.10)(zod@3.23.8)
+ '@lens-protocol/gated-content': 0.5.1(@ethersproject/abi@5.7.0)(@ethersproject/address@5.7.0)(@ethersproject/bignumber@5.7.0)(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(@lens-protocol/metadata@1.2.0(zod@3.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react@18.3.1)(utf-8-validate@5.0.10)(zod@3.23.8)
'@lens-protocol/shared-kernel': 0.12.0
'@lens-protocol/storage': 0.8.1
graphql: 16.9.0
- graphql-request: 6.1.0(graphql@16.9.0)
+ graphql-request: 6.1.0(encoding@0.1.13)(graphql@16.9.0)
graphql-tag: 2.12.6(graphql@16.9.0)
jwt-decode: 3.1.2
tslib: 2.8.1
@@ -21828,7 +23067,7 @@ snapshots:
'@lens-protocol/shared-kernel': 0.12.0
tslib: 2.8.1
- '@lens-protocol/gated-content@0.5.1(@ethersproject/abi@5.7.0)(@ethersproject/address@5.7.0)(@ethersproject/bignumber@5.7.0)(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(@lens-protocol/metadata@1.2.0(zod@3.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react@18.3.1)(utf-8-validate@5.0.10)(zod@3.23.8)':
+ '@lens-protocol/gated-content@0.5.1(@ethersproject/abi@5.7.0)(@ethersproject/address@5.7.0)(@ethersproject/bignumber@5.7.0)(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(@lens-protocol/metadata@1.2.0(zod@3.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react@18.3.1)(utf-8-validate@5.0.10)(zod@3.23.8)':
dependencies:
'@ethersproject/abi': 5.7.0
'@ethersproject/address': 5.7.0
@@ -21843,7 +23082,7 @@ snapshots:
'@lit-protocol/constants': 2.1.62
'@lit-protocol/crypto': 2.1.62(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@lit-protocol/encryption': 2.1.62(bufferutil@4.0.8)(utf-8-validate@5.0.10)
- '@lit-protocol/node-client': 2.1.62(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10)
+ '@lit-protocol/node-client': 2.1.62(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
'@lit-protocol/types': 2.1.62
siwe: 2.3.2(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))
tslib: 2.8.1
@@ -22384,14 +23623,14 @@ snapshots:
- bufferutil
- utf-8-validate
- '@lit-protocol/auth-browser@2.1.62(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10)':
+ '@lit-protocol/auth-browser@2.1.62(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)':
dependencies:
'@lit-protocol/constants': 2.1.62
'@lit-protocol/misc': 2.1.62
'@lit-protocol/misc-browser': 2.1.62(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@lit-protocol/types': 2.1.62
'@lit-protocol/uint8arrays': 2.1.62
- '@walletconnect/ethereum-provider': 2.17.2(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10)
+ '@walletconnect/ethereum-provider': 2.17.2(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
lit-connect-modal: 0.1.11
lit-siwe: 1.1.8(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)
@@ -22488,10 +23727,10 @@ snapshots:
'@lit-protocol/nacl@2.1.62': {}
- '@lit-protocol/node-client@2.1.62(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10)':
+ '@lit-protocol/node-client@2.1.62(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)':
dependencies:
'@lit-protocol/access-control-conditions': 2.1.62(bufferutil@4.0.8)(utf-8-validate@5.0.10)
- '@lit-protocol/auth-browser': 2.1.62(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10)
+ '@lit-protocol/auth-browser': 2.1.62(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
'@lit-protocol/bls-sdk': 2.1.62
'@lit-protocol/constants': 2.1.62
'@lit-protocol/crypto': 2.1.62(bufferutil@4.0.8)(utf-8-validate@5.0.10)
@@ -22503,12 +23742,12 @@ snapshots:
'@lit-protocol/nacl': 2.1.62
'@lit-protocol/types': 2.1.62
'@lit-protocol/uint8arrays': 2.1.62
- '@walletconnect/ethereum-provider': 2.17.2(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10)
+ '@walletconnect/ethereum-provider': 2.17.2(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
jszip: 3.10.1
lit-connect-modal: 0.1.11
lit-siwe: 1.1.8(@ethersproject/contracts@5.7.0)(@ethersproject/hash@5.7.0)(@ethersproject/providers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(@ethersproject/wallet@5.7.0)
- node-fetch: 2.7.0
+ node-fetch: 2.7.0(encoding@0.1.13)
tslib: 2.8.1
tweetnacl: 1.0.3
tweetnacl-util: 0.15.1
@@ -22568,21 +23807,21 @@ snapshots:
dependencies:
crypto-js: 3.3.0
- '@magic-sdk/admin@0.1.0-beta.10':
+ '@magic-sdk/admin@0.1.0-beta.10(encoding@0.1.13)':
dependencies:
eth-sig-util: 2.1.2
ethereumjs-util: 6.2.1
express: 4.19.2
- node-fetch: 2.7.0
+ node-fetch: 2.7.0(encoding@0.1.13)
transitivePeerDependencies:
- encoding
- supports-color
- '@magic-sdk/admin@2.4.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
+ '@magic-sdk/admin@2.4.1(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
ethereum-cryptography: 1.2.0
ethers: 6.13.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
- node-fetch: 2.7.0
+ node-fetch: 2.7.0(encoding@0.1.13)
transitivePeerDependencies:
- bufferutil
- encoding
@@ -22609,6 +23848,8 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ '@metamask/detect-provider@1.2.0': {}
+
'@metamask/detect-provider@2.0.0': {}
'@metamask/eth-json-rpc-provider@1.0.1':
@@ -22715,12 +23956,12 @@ snapshots:
'@metamask/safe-event-emitter@3.1.1': {}
- '@metamask/sdk-communication-layer@0.20.2(cross-fetch@4.0.0)(eciesjs@0.3.20)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10))':
+ '@metamask/sdk-communication-layer@0.20.2(cross-fetch@4.0.0(encoding@0.1.13))(eciesjs@0.3.20)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10))':
dependencies:
bufferutil: 4.0.8
- cross-fetch: 4.0.0
+ cross-fetch: 4.0.0(encoding@0.1.13)
date-fns: 2.30.0
- debug: 4.3.7
+ debug: 4.3.7(supports-color@8.1.1)
eciesjs: 0.3.20
eventemitter2: 6.4.9
readable-stream: 3.6.2
@@ -22730,12 +23971,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@metamask/sdk-communication-layer@0.27.0(cross-fetch@4.0.0)(eciesjs@0.3.20)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10))':
+ '@metamask/sdk-communication-layer@0.27.0(cross-fetch@4.0.0(encoding@0.1.13))(eciesjs@0.3.20)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10))':
dependencies:
bufferutil: 4.0.8
- cross-fetch: 4.0.0
+ cross-fetch: 4.0.0(encoding@0.1.13)
date-fns: 2.30.0
- debug: 4.3.7
+ debug: 4.3.7(supports-color@8.1.1)
eciesjs: 0.3.20
eventemitter2: 6.4.9
readable-stream: 3.6.2
@@ -22745,35 +23986,35 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@metamask/sdk-install-modal-web@0.20.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-i18next@13.5.0(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)':
+ '@metamask/sdk-install-modal-web@0.20.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-i18next@13.5.0(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)':
dependencies:
i18next: 22.5.1
qr-code-styling: 1.6.0-rc.1
- react-i18next: 13.5.0(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ react-i18next: 13.5.0(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
optionalDependencies:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- react-native: 0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10)
+ react-native: 0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
- '@metamask/sdk-install-modal-web@0.26.5(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)':
+ '@metamask/sdk-install-modal-web@0.26.5(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)':
dependencies:
i18next: 23.11.5
qr-code-styling: 1.6.0-rc.1
optionalDependencies:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- react-native: 0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10)
+ react-native: 0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
- '@metamask/sdk@0.20.3(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-i18next@13.5.0(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.26.0)(utf-8-validate@5.0.10)':
+ '@metamask/sdk@0.20.3(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-i18next@13.5.0(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.26.0)(utf-8-validate@5.0.10)':
dependencies:
'@metamask/onboarding': 1.0.1
'@metamask/providers': 15.0.0
- '@metamask/sdk-communication-layer': 0.20.2(cross-fetch@4.0.0)(eciesjs@0.3.20)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10))
- '@metamask/sdk-install-modal-web': 0.20.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-i18next@13.5.0(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ '@metamask/sdk-communication-layer': 0.20.2(cross-fetch@4.0.0(encoding@0.1.13))(eciesjs@0.3.20)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10))
+ '@metamask/sdk-install-modal-web': 0.20.2(i18next@22.5.1)(react-dom@18.3.1(react@18.3.1))(react-i18next@13.5.0(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
'@types/dom-screen-wake-lock': 1.0.3
bowser: 2.11.0
- cross-fetch: 4.0.0
- debug: 4.3.7
+ cross-fetch: 4.0.0(encoding@0.1.13)
+ debug: 4.3.7(supports-color@8.1.1)
eciesjs: 0.3.20
eth-rpc-errors: 4.0.3
eventemitter2: 6.4.9
@@ -22782,7 +24023,7 @@ snapshots:
obj-multiplex: 1.0.0
pump: 3.0.0
qrcode-terminal-nooctal: 0.12.1
- react-native-webview: 11.26.1(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ react-native-webview: 11.26.1(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
readable-stream: 3.6.2
rollup-plugin-visualizer: 5.12.0(rollup@4.26.0)
socket.io-client: 4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10)
@@ -22800,16 +24041,16 @@ snapshots:
- supports-color
- utf-8-validate
- '@metamask/sdk@0.27.0(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.26.0)(utf-8-validate@5.0.10)':
+ '@metamask/sdk@0.27.0(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.26.0)(utf-8-validate@5.0.10)':
dependencies:
'@metamask/onboarding': 1.0.1
'@metamask/providers': 16.1.0
- '@metamask/sdk-communication-layer': 0.27.0(cross-fetch@4.0.0)(eciesjs@0.3.20)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10))
- '@metamask/sdk-install-modal-web': 0.26.5(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ '@metamask/sdk-communication-layer': 0.27.0(cross-fetch@4.0.0(encoding@0.1.13))(eciesjs@0.3.20)(eventemitter2@6.4.9)(readable-stream@3.6.2)(socket.io-client@4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10))
+ '@metamask/sdk-install-modal-web': 0.26.5(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
'@types/dom-screen-wake-lock': 1.0.3
bowser: 2.11.0
- cross-fetch: 4.0.0
- debug: 4.3.7
+ cross-fetch: 4.0.0(encoding@0.1.13)
+ debug: 4.3.7(supports-color@8.1.1)
eciesjs: 0.3.20
eth-rpc-errors: 4.0.3
eventemitter2: 6.4.9
@@ -22818,7 +24059,7 @@ snapshots:
obj-multiplex: 1.0.0
pump: 3.0.0
qrcode-terminal-nooctal: 0.12.1
- react-native-webview: 11.26.1(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ react-native-webview: 11.26.1(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
readable-stream: 3.6.2
rollup-plugin-visualizer: 5.12.0(rollup@4.26.0)
socket.io-client: 4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10)
@@ -22841,8 +24082,8 @@ snapshots:
dependencies:
'@ethereumjs/tx': 4.2.0
'@types/debug': 4.1.12
- debug: 4.3.7
- semver: 7.6.0
+ debug: 4.3.7(supports-color@8.1.1)
+ semver: 7.6.3
superstruct: 1.0.4
transitivePeerDependencies:
- supports-color
@@ -22854,9 +24095,9 @@ snapshots:
'@noble/hashes': 1.5.0
'@scure/base': 1.1.6
'@types/debug': 4.1.12
- debug: 4.3.7
+ debug: 4.3.7(supports-color@8.1.1)
pony-cause: 2.1.11
- semver: 7.6.0
+ semver: 7.6.3
uuid: 9.0.1
transitivePeerDependencies:
- supports-color
@@ -22868,9 +24109,9 @@ snapshots:
'@noble/hashes': 1.5.0
'@scure/base': 1.1.6
'@types/debug': 4.1.12
- debug: 4.3.7
+ debug: 4.3.7(supports-color@8.1.1)
pony-cause: 2.1.11
- semver: 7.6.0
+ semver: 7.6.3
uuid: 9.0.1
transitivePeerDependencies:
- supports-color
@@ -22967,6 +24208,8 @@ snapshots:
optionalDependencies:
'@types/react': 18.3.3
+ '@multiformats/base-x@4.0.1': {}
+
'@multiformats/dns@1.0.6':
dependencies:
'@types/dns-packet': 5.6.5
@@ -23024,10 +24267,10 @@ snapshots:
tslib: 2.7.0
uid: 2.0.2
- '@nestjs/core@10.4.3(@nestjs/common@10.4.3(reflect-metadata@0.1.13)(rxjs@7.8.1))(reflect-metadata@0.1.13)(rxjs@7.8.1)':
+ '@nestjs/core@10.4.3(@nestjs/common@10.4.3(reflect-metadata@0.1.13)(rxjs@7.8.1))(encoding@0.1.13)(reflect-metadata@0.1.13)(rxjs@7.8.1)':
dependencies:
'@nestjs/common': 10.4.3(reflect-metadata@0.1.13)(rxjs@7.8.1)
- '@nuxtjs/opencollective': 0.3.2
+ '@nuxtjs/opencollective': 0.3.2(encoding@0.1.13)
fast-safe-stringify: 2.1.1
iterare: 1.2.1
path-to-regexp: 3.3.0
@@ -23067,9 +24310,9 @@ snapshots:
'@next/swc-win32-x64-msvc@14.2.16':
optional: true
- '@neynar/nodejs-sdk@1.66.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)':
+ '@neynar/nodejs-sdk@1.66.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)':
dependencies:
- '@openapitools/openapi-generator-cli': 2.14.1
+ '@openapitools/openapi-generator-cli': 2.14.1(encoding@0.1.13)
axios: 1.7.5
semver: 7.6.3
viem: 2.21.34(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
@@ -23139,11 +24382,86 @@ snapshots:
'@nodelib/fs.scandir': 2.1.5
fastq: 1.17.1
- '@nuxtjs/opencollective@0.3.2':
+ '@nomicfoundation/edr-darwin-arm64@0.6.5': {}
+
+ '@nomicfoundation/edr-darwin-x64@0.6.5': {}
+
+ '@nomicfoundation/edr-linux-arm64-gnu@0.6.5': {}
+
+ '@nomicfoundation/edr-linux-arm64-musl@0.6.5': {}
+
+ '@nomicfoundation/edr-linux-x64-gnu@0.6.5': {}
+
+ '@nomicfoundation/edr-linux-x64-musl@0.6.5': {}
+
+ '@nomicfoundation/edr-win32-x64-msvc@0.6.5': {}
+
+ '@nomicfoundation/edr@0.6.5':
+ dependencies:
+ '@nomicfoundation/edr-darwin-arm64': 0.6.5
+ '@nomicfoundation/edr-darwin-x64': 0.6.5
+ '@nomicfoundation/edr-linux-arm64-gnu': 0.6.5
+ '@nomicfoundation/edr-linux-arm64-musl': 0.6.5
+ '@nomicfoundation/edr-linux-x64-gnu': 0.6.5
+ '@nomicfoundation/edr-linux-x64-musl': 0.6.5
+ '@nomicfoundation/edr-win32-x64-msvc': 0.6.5
+
+ '@nomicfoundation/ethereumjs-common@4.0.4':
+ dependencies:
+ '@nomicfoundation/ethereumjs-util': 9.0.4
+ transitivePeerDependencies:
+ - c-kzg
+
+ '@nomicfoundation/ethereumjs-rlp@5.0.4': {}
+
+ '@nomicfoundation/ethereumjs-tx@5.0.4':
+ dependencies:
+ '@nomicfoundation/ethereumjs-common': 4.0.4
+ '@nomicfoundation/ethereumjs-rlp': 5.0.4
+ '@nomicfoundation/ethereumjs-util': 9.0.4
+ ethereum-cryptography: 0.1.3
+
+ '@nomicfoundation/ethereumjs-util@9.0.4':
+ dependencies:
+ '@nomicfoundation/ethereumjs-rlp': 5.0.4
+ ethereum-cryptography: 0.1.3
+
+ '@nomicfoundation/solidity-analyzer-darwin-arm64@0.1.2':
+ optional: true
+
+ '@nomicfoundation/solidity-analyzer-darwin-x64@0.1.2':
+ optional: true
+
+ '@nomicfoundation/solidity-analyzer-linux-arm64-gnu@0.1.2':
+ optional: true
+
+ '@nomicfoundation/solidity-analyzer-linux-arm64-musl@0.1.2':
+ optional: true
+
+ '@nomicfoundation/solidity-analyzer-linux-x64-gnu@0.1.2':
+ optional: true
+
+ '@nomicfoundation/solidity-analyzer-linux-x64-musl@0.1.2':
+ optional: true
+
+ '@nomicfoundation/solidity-analyzer-win32-x64-msvc@0.1.2':
+ optional: true
+
+ '@nomicfoundation/solidity-analyzer@0.1.2':
+ optionalDependencies:
+ '@nomicfoundation/solidity-analyzer-darwin-arm64': 0.1.2
+ '@nomicfoundation/solidity-analyzer-darwin-x64': 0.1.2
+ '@nomicfoundation/solidity-analyzer-linux-arm64-gnu': 0.1.2
+ '@nomicfoundation/solidity-analyzer-linux-arm64-musl': 0.1.2
+ '@nomicfoundation/solidity-analyzer-linux-x64-gnu': 0.1.2
+ '@nomicfoundation/solidity-analyzer-linux-x64-musl': 0.1.2
+ '@nomicfoundation/solidity-analyzer-win32-x64-msvc': 0.1.2
+
+ '@nuxtjs/opencollective@0.3.2(encoding@0.1.13)':
dependencies:
chalk: 4.1.2
consola: 2.15.3
- node-fetch: 2.7.0
+ node-fetch: 2.7.0(encoding@0.1.13)
transitivePeerDependencies:
- encoding
@@ -23297,12 +24615,12 @@ snapshots:
'@open-draft/deferred-promise@2.2.0': {}
- '@openapitools/openapi-generator-cli@2.14.1':
+ '@openapitools/openapi-generator-cli@2.14.1(encoding@0.1.13)':
dependencies:
'@nestjs/axios': 3.0.3(@nestjs/common@10.4.3(reflect-metadata@0.1.13)(rxjs@7.8.1))(axios@1.7.7)(rxjs@7.8.1)
'@nestjs/common': 10.4.3(reflect-metadata@0.1.13)(rxjs@7.8.1)
- '@nestjs/core': 10.4.3(@nestjs/common@10.4.3(reflect-metadata@0.1.13)(rxjs@7.8.1))(reflect-metadata@0.1.13)(rxjs@7.8.1)
- '@nuxtjs/opencollective': 0.3.2
+ '@nestjs/core': 10.4.3(@nestjs/common@10.4.3(reflect-metadata@0.1.13)(rxjs@7.8.1))(encoding@0.1.13)(reflect-metadata@0.1.13)(rxjs@7.8.1)
+ '@nuxtjs/opencollective': 0.3.2(encoding@0.1.13)
axios: 1.7.7
chalk: 4.1.2
commander: 8.3.0
@@ -23344,6 +24662,14 @@ snapshots:
'@opentelemetry/api@1.9.0': {}
+ '@openzeppelin/contracts@3.4.1-solc-0.7-2': {}
+
+ '@openzeppelin/contracts@3.4.2-solc-0.7': {}
+
+ '@openzeppelin/contracts@4.7.0': {}
+
+ '@openzeppelin/contracts@5.0.2': {}
+
'@osmonauts/lcd@0.10.0':
dependencies:
'@babel/runtime': 7.24.5
@@ -23500,11 +24826,11 @@ snapshots:
'@polkadot-api/utils@0.0.1-492c132563ea6b40ae1fc5470dec4cd18768d182.1.0':
optional: true
- '@polkadot/api-derive@6.0.5':
+ '@polkadot/api-derive@6.0.5(encoding@0.1.13)':
dependencies:
'@babel/runtime': 7.26.0
- '@polkadot/api': 6.0.5
- '@polkadot/rpc-core': 6.0.5
+ '@polkadot/api': 6.0.5(encoding@0.1.13)
+ '@polkadot/rpc-core': 6.0.5(encoding@0.1.13)
'@polkadot/types': 6.0.5
'@polkadot/util': 7.9.2
'@polkadot/util-crypto': 7.9.2(@polkadot/util@7.9.2)
@@ -23513,13 +24839,13 @@ snapshots:
- encoding
- supports-color
- '@polkadot/api@6.0.5':
+ '@polkadot/api@6.0.5(encoding@0.1.13)':
dependencies:
'@babel/runtime': 7.26.0
- '@polkadot/api-derive': 6.0.5
+ '@polkadot/api-derive': 6.0.5(encoding@0.1.13)
'@polkadot/keyring': 7.9.2(@polkadot/util-crypto@7.9.2(@polkadot/util@7.9.2))(@polkadot/util@7.9.2)
- '@polkadot/rpc-core': 6.0.5
- '@polkadot/rpc-provider': 6.0.5
+ '@polkadot/rpc-core': 6.0.5(encoding@0.1.13)
+ '@polkadot/rpc-provider': 6.0.5(encoding@0.1.13)
'@polkadot/types': 6.0.5
'@polkadot/types-known': 6.0.5
'@polkadot/util': 7.9.2
@@ -23530,22 +24856,22 @@ snapshots:
- encoding
- supports-color
- '@polkadot/extension-dapp@0.40.3(@polkadot/api@6.0.5)(@polkadot/util-crypto@12.6.2(@polkadot/util@12.6.2))(@polkadot/util@12.6.2)':
+ '@polkadot/extension-dapp@0.40.3(@polkadot/api@6.0.5(encoding@0.1.13))(@polkadot/util-crypto@12.6.2(@polkadot/util@12.6.2))(@polkadot/util@12.6.2)':
dependencies:
'@babel/runtime': 7.24.5
- '@polkadot/api': 6.0.5
- '@polkadot/extension-inject': 0.40.4(@polkadot/api@6.0.5)
+ '@polkadot/api': 6.0.5(encoding@0.1.13)
+ '@polkadot/extension-inject': 0.40.4(@polkadot/api@6.0.5(encoding@0.1.13))
'@polkadot/util': 12.6.2
'@polkadot/util-crypto': 12.6.2(@polkadot/util@12.6.2)
- '@polkadot/extension-inject@0.40.4(@polkadot/api@6.0.5)':
+ '@polkadot/extension-inject@0.40.4(@polkadot/api@6.0.5(encoding@0.1.13))':
dependencies:
'@babel/runtime': 7.25.7
- '@polkadot/api': 6.0.5
+ '@polkadot/api': 6.0.5(encoding@0.1.13)
- '@polkadot/extension-inject@0.46.9(@polkadot/api@6.0.5)(@polkadot/util@12.6.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
+ '@polkadot/extension-inject@0.46.9(@polkadot/api@6.0.5(encoding@0.1.13))(@polkadot/util@12.6.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
dependencies:
- '@polkadot/api': 6.0.5
+ '@polkadot/api': 6.0.5(encoding@0.1.13)
'@polkadot/rpc-provider': 10.13.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@polkadot/types': 10.13.1
'@polkadot/util': 12.6.2
@@ -23557,9 +24883,9 @@ snapshots:
- supports-color
- utf-8-validate
- '@polkadot/extension-inject@0.47.4(@polkadot/api@6.0.5)(@polkadot/util@12.6.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
+ '@polkadot/extension-inject@0.47.4(@polkadot/api@6.0.5(encoding@0.1.13))(@polkadot/util@12.6.2)(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
dependencies:
- '@polkadot/api': 6.0.5
+ '@polkadot/api': 6.0.5(encoding@0.1.13)
'@polkadot/rpc-provider': 11.0.3(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@polkadot/types': 11.0.3
'@polkadot/util': 12.6.2
@@ -23593,10 +24919,10 @@ snapshots:
dependencies:
'@babel/runtime': 7.26.0
- '@polkadot/rpc-core@6.0.5':
+ '@polkadot/rpc-core@6.0.5(encoding@0.1.13)':
dependencies:
'@babel/runtime': 7.26.0
- '@polkadot/rpc-provider': 6.0.5
+ '@polkadot/rpc-provider': 6.0.5(encoding@0.1.13)
'@polkadot/types': 6.0.5
'@polkadot/util': 7.9.2
rxjs: 7.8.1
@@ -23646,13 +24972,13 @@ snapshots:
- supports-color
- utf-8-validate
- '@polkadot/rpc-provider@6.0.5':
+ '@polkadot/rpc-provider@6.0.5(encoding@0.1.13)':
dependencies:
'@babel/runtime': 7.26.0
'@polkadot/types': 6.0.5
'@polkadot/util': 7.9.2
'@polkadot/util-crypto': 7.9.2(@polkadot/util@7.9.2)
- '@polkadot/x-fetch': 7.9.2
+ '@polkadot/x-fetch': 7.9.2(encoding@0.1.13)
'@polkadot/x-global': 7.9.2
'@polkadot/x-ws': 7.9.2
eventemitter3: 4.0.7
@@ -23869,12 +25195,12 @@ snapshots:
node-fetch: 3.3.2
tslib: 2.7.0
- '@polkadot/x-fetch@7.9.2':
+ '@polkadot/x-fetch@7.9.2(encoding@0.1.13)':
dependencies:
'@babel/runtime': 7.26.0
'@polkadot/x-global': 7.9.2
'@types/node-fetch': 2.6.12
- node-fetch: 2.7.0
+ node-fetch: 2.7.0(encoding@0.1.13)
transitivePeerDependencies:
- encoding
@@ -23967,13 +25293,13 @@ snapshots:
'@radix-ui/primitive@1.0.1':
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.0
'@radix-ui/primitive@1.1.0': {}
'@radix-ui/react-arrow@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.0
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
@@ -24004,7 +25330,7 @@ snapshots:
'@radix-ui/react-compose-refs@1.0.1(@types/react@18.3.3)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.0
react: 18.3.1
optionalDependencies:
'@types/react': 18.3.3
@@ -24017,7 +25343,7 @@ snapshots:
'@radix-ui/react-context@1.0.1(@types/react@18.3.3)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.0
react: 18.3.1
optionalDependencies:
'@types/react': 18.3.3
@@ -24058,7 +25384,7 @@ snapshots:
'@radix-ui/react-dismissable-layer@1.0.5(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.0
'@radix-ui/primitive': 1.0.1
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1)
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -24085,7 +25411,7 @@ snapshots:
'@radix-ui/react-focus-guards@1.0.1(@types/react@18.3.3)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.0
react: 18.3.1
optionalDependencies:
'@types/react': 18.3.3
@@ -24098,7 +25424,7 @@ snapshots:
'@radix-ui/react-focus-scope@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.0
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1)
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@18.3.1)
@@ -24125,7 +25451,7 @@ snapshots:
'@radix-ui/react-id@1.0.1(@types/react@18.3.3)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.0
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@18.3.1)
react: 18.3.1
optionalDependencies:
@@ -24164,7 +25490,7 @@ snapshots:
'@radix-ui/react-popper@1.1.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.0
'@floating-ui/react-dom': 2.0.9(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@radix-ui/react-arrow': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1)
@@ -24201,7 +25527,7 @@ snapshots:
'@radix-ui/react-portal@1.0.4(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.0
'@radix-ui/react-primitive': 1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
@@ -24221,7 +25547,7 @@ snapshots:
'@radix-ui/react-presence@1.0.1(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.0
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1)
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@18.3.1)
react: 18.3.1
@@ -24242,7 +25568,7 @@ snapshots:
'@radix-ui/react-primitive@1.0.3(@types/react-dom@18.3.0)(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.0
'@radix-ui/react-slot': 1.0.2(@types/react@18.3.3)(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
@@ -24316,7 +25642,7 @@ snapshots:
'@radix-ui/react-slot@1.0.2(@types/react@18.3.3)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.0
'@radix-ui/react-compose-refs': 1.0.1(@types/react@18.3.3)(react@18.3.1)
react: 18.3.1
optionalDependencies:
@@ -24392,7 +25718,7 @@ snapshots:
'@radix-ui/react-use-callback-ref@1.0.1(@types/react@18.3.3)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.0
react: 18.3.1
optionalDependencies:
'@types/react': 18.3.3
@@ -24405,7 +25731,7 @@ snapshots:
'@radix-ui/react-use-controllable-state@1.0.1(@types/react@18.3.3)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.0
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@18.3.1)
react: 18.3.1
optionalDependencies:
@@ -24420,7 +25746,7 @@ snapshots:
'@radix-ui/react-use-escape-keydown@1.0.3(@types/react@18.3.3)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.0
'@radix-ui/react-use-callback-ref': 1.0.1(@types/react@18.3.3)(react@18.3.1)
react: 18.3.1
optionalDependencies:
@@ -24435,7 +25761,7 @@ snapshots:
'@radix-ui/react-use-layout-effect@1.0.1(@types/react@18.3.3)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.0
react: 18.3.1
optionalDependencies:
'@types/react': 18.3.3
@@ -24454,7 +25780,7 @@ snapshots:
'@radix-ui/react-use-rect@1.0.1(@types/react@18.3.3)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.0
'@radix-ui/rect': 1.0.1
react: 18.3.1
optionalDependencies:
@@ -24469,7 +25795,7 @@ snapshots:
'@radix-ui/react-use-size@1.0.1(@types/react@18.3.3)(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.0
'@radix-ui/react-use-layout-effect': 1.0.1(@types/react@18.3.3)(react@18.3.1)
react: 18.3.1
optionalDependencies:
@@ -24503,7 +25829,7 @@ snapshots:
'@radix-ui/rect@1.0.1':
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.0
'@radix-ui/rect@1.1.0': {}
@@ -24517,9 +25843,9 @@ snapshots:
dependencies:
react: 18.3.1
- '@react-native-community/cli-clean@13.6.4':
+ '@react-native-community/cli-clean@13.6.4(encoding@0.1.13)':
dependencies:
- '@react-native-community/cli-tools': 13.6.4
+ '@react-native-community/cli-tools': 13.6.4(encoding@0.1.13)
chalk: 4.1.2
execa: 5.1.1
fast-glob: 3.3.2
@@ -24534,9 +25860,9 @@ snapshots:
fast-glob: 3.3.2
optional: true
- '@react-native-community/cli-config@13.6.4':
+ '@react-native-community/cli-config@13.6.4(encoding@0.1.13)':
dependencies:
- '@react-native-community/cli-tools': 13.6.4
+ '@react-native-community/cli-tools': 13.6.4(encoding@0.1.13)
chalk: 4.1.2
cosmiconfig: 5.2.1
deepmerge: 4.3.1
@@ -24577,13 +25903,13 @@ snapshots:
- supports-color
optional: true
- '@react-native-community/cli-doctor@13.6.4':
+ '@react-native-community/cli-doctor@13.6.4(encoding@0.1.13)':
dependencies:
- '@react-native-community/cli-config': 13.6.4
- '@react-native-community/cli-platform-android': 13.6.4
- '@react-native-community/cli-platform-apple': 13.6.4
- '@react-native-community/cli-platform-ios': 13.6.4
- '@react-native-community/cli-tools': 13.6.4
+ '@react-native-community/cli-config': 13.6.4(encoding@0.1.13)
+ '@react-native-community/cli-platform-android': 13.6.4(encoding@0.1.13)
+ '@react-native-community/cli-platform-apple': 13.6.4(encoding@0.1.13)
+ '@react-native-community/cli-platform-ios': 13.6.4(encoding@0.1.13)
+ '@react-native-community/cli-tools': 13.6.4(encoding@0.1.13)
chalk: 4.1.2
command-exists: 1.2.9
deepmerge: 4.3.1
@@ -24592,10 +25918,10 @@ snapshots:
hermes-profile-transformer: 0.0.6
node-stream-zip: 1.15.0
ora: 5.4.1
- semver: 7.6.0
+ semver: 7.6.3
strip-ansi: 5.2.0
wcwidth: 1.0.1
- yaml: 2.5.0
+ yaml: 2.6.0
transitivePeerDependencies:
- encoding
@@ -24621,18 +25947,18 @@ snapshots:
- typescript
optional: true
- '@react-native-community/cli-hermes@13.6.4':
+ '@react-native-community/cli-hermes@13.6.4(encoding@0.1.13)':
dependencies:
- '@react-native-community/cli-platform-android': 13.6.4
- '@react-native-community/cli-tools': 13.6.4
+ '@react-native-community/cli-platform-android': 13.6.4(encoding@0.1.13)
+ '@react-native-community/cli-tools': 13.6.4(encoding@0.1.13)
chalk: 4.1.2
hermes-profile-transformer: 0.0.6
transitivePeerDependencies:
- encoding
- '@react-native-community/cli-platform-android@13.6.4':
+ '@react-native-community/cli-platform-android@13.6.4(encoding@0.1.13)':
dependencies:
- '@react-native-community/cli-tools': 13.6.4
+ '@react-native-community/cli-tools': 13.6.4(encoding@0.1.13)
chalk: 4.1.2
execa: 5.1.1
fast-glob: 3.3.2
@@ -24651,9 +25977,9 @@ snapshots:
logkitty: 0.7.1
optional: true
- '@react-native-community/cli-platform-apple@13.6.4':
+ '@react-native-community/cli-platform-apple@13.6.4(encoding@0.1.13)':
dependencies:
- '@react-native-community/cli-tools': 13.6.4
+ '@react-native-community/cli-tools': 13.6.4(encoding@0.1.13)
chalk: 4.1.2
execa: 5.1.1
fast-glob: 3.3.2
@@ -24672,9 +25998,9 @@ snapshots:
ora: 5.4.1
optional: true
- '@react-native-community/cli-platform-ios@13.6.4':
+ '@react-native-community/cli-platform-ios@13.6.4(encoding@0.1.13)':
dependencies:
- '@react-native-community/cli-platform-apple': 13.6.4
+ '@react-native-community/cli-platform-apple': 13.6.4(encoding@0.1.13)
transitivePeerDependencies:
- encoding
@@ -24683,10 +26009,10 @@ snapshots:
'@react-native-community/cli-platform-apple': 14.0.0
optional: true
- '@react-native-community/cli-server-api@13.6.4(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
+ '@react-native-community/cli-server-api@13.6.4(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
'@react-native-community/cli-debugger-ui': 13.6.4
- '@react-native-community/cli-tools': 13.6.4
+ '@react-native-community/cli-tools': 13.6.4(encoding@0.1.13)
compression: 1.7.4
connect: 3.7.0
errorhandler: 1.5.1
@@ -24734,17 +26060,17 @@ snapshots:
- utf-8-validate
optional: true
- '@react-native-community/cli-tools@13.6.4':
+ '@react-native-community/cli-tools@13.6.4(encoding@0.1.13)':
dependencies:
appdirsjs: 1.2.7
chalk: 4.1.2
execa: 5.1.1
find-up: 5.0.0
mime: 2.6.0
- node-fetch: 2.7.0
+ node-fetch: 2.7.0(encoding@0.1.13)
open: 6.4.0
ora: 5.4.1
- semver: 7.6.0
+ semver: 7.6.3
shell-quote: 1.8.1
sudo-prompt: 9.2.1
transitivePeerDependencies:
@@ -24787,15 +26113,15 @@ snapshots:
joi: 17.13.3
optional: true
- '@react-native-community/cli@13.6.4(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
+ '@react-native-community/cli@13.6.4(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
- '@react-native-community/cli-clean': 13.6.4
- '@react-native-community/cli-config': 13.6.4
+ '@react-native-community/cli-clean': 13.6.4(encoding@0.1.13)
+ '@react-native-community/cli-config': 13.6.4(encoding@0.1.13)
'@react-native-community/cli-debugger-ui': 13.6.4
- '@react-native-community/cli-doctor': 13.6.4
- '@react-native-community/cli-hermes': 13.6.4
- '@react-native-community/cli-server-api': 13.6.4(bufferutil@4.0.8)(utf-8-validate@5.0.10)
- '@react-native-community/cli-tools': 13.6.4
+ '@react-native-community/cli-doctor': 13.6.4(encoding@0.1.13)
+ '@react-native-community/cli-hermes': 13.6.4(encoding@0.1.13)
+ '@react-native-community/cli-server-api': 13.6.4(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@react-native-community/cli-tools': 13.6.4(encoding@0.1.13)
'@react-native-community/cli-types': 13.6.4
chalk: 4.1.2
commander: 9.5.0
@@ -24805,7 +26131,7 @@ snapshots:
fs-extra: 8.1.0
graceful-fs: 4.2.11
prompts: 2.4.2
- semver: 7.6.0
+ semver: 7.6.3
transitivePeerDependencies:
- bufferutil
- encoding
@@ -24985,18 +26311,18 @@ snapshots:
- supports-color
optional: true
- '@react-native/community-cli-plugin@0.74.81(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
+ '@react-native/community-cli-plugin@0.74.81(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
- '@react-native-community/cli-server-api': 13.6.4(bufferutil@4.0.8)(utf-8-validate@5.0.10)
- '@react-native-community/cli-tools': 13.6.4
- '@react-native/dev-middleware': 0.74.81(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@react-native-community/cli-server-api': 13.6.4(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@react-native-community/cli-tools': 13.6.4(encoding@0.1.13)
+ '@react-native/dev-middleware': 0.74.81(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@react-native/metro-babel-transformer': 0.74.81(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))
chalk: 4.1.2
execa: 5.1.1
- metro: 0.80.10(bufferutil@4.0.8)(utf-8-validate@5.0.10)
- metro-config: 0.80.10(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ metro: 0.80.10(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ metro-config: 0.80.10(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
metro-core: 0.80.10
- node-fetch: 2.7.0
+ node-fetch: 2.7.0(encoding@0.1.13)
querystring: 0.2.1
readline: 1.3.0
transitivePeerDependencies:
@@ -25007,18 +26333,18 @@ snapshots:
- supports-color
- utf-8-validate
- '@react-native/community-cli-plugin@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
+ '@react-native/community-cli-plugin@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
'@react-native-community/cli-server-api': 14.0.0-alpha.11(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@react-native-community/cli-tools': 14.0.0-alpha.11
- '@react-native/dev-middleware': 0.75.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@react-native/dev-middleware': 0.75.1(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@react-native/metro-babel-transformer': 0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))
chalk: 4.1.2
execa: 5.1.1
metro: 0.80.12(bufferutil@4.0.8)(utf-8-validate@5.0.10)
metro-config: 0.80.12(bufferutil@4.0.8)(utf-8-validate@5.0.10)
metro-core: 0.80.12
- node-fetch: 2.7.0
+ node-fetch: 2.7.0(encoding@0.1.13)
querystring: 0.2.1
readline: 1.3.0
transitivePeerDependencies:
@@ -25035,7 +26361,7 @@ snapshots:
'@react-native/debugger-frontend@0.75.1':
optional: true
- '@react-native/dev-middleware@0.74.81(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
+ '@react-native/dev-middleware@0.74.81(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
'@isaacs/ttlcache': 1.4.1
'@react-native/debugger-frontend': 0.74.81
@@ -25043,7 +26369,7 @@ snapshots:
chrome-launcher: 0.15.2
connect: 3.7.0
debug: 2.6.9
- node-fetch: 2.7.0
+ node-fetch: 2.7.0(encoding@0.1.13)
nullthrows: 1.1.1
open: 7.4.2
selfsigned: 2.4.1
@@ -25056,7 +26382,7 @@ snapshots:
- supports-color
- utf-8-validate
- '@react-native/dev-middleware@0.75.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
+ '@react-native/dev-middleware@0.75.1(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
'@isaacs/ttlcache': 1.4.1
'@react-native/debugger-frontend': 0.75.1
@@ -25064,7 +26390,7 @@ snapshots:
chromium-edge-launcher: 0.2.0
connect: 3.7.0
debug: 2.6.9
- node-fetch: 2.7.0
+ node-fetch: 2.7.0(encoding@0.1.13)
nullthrows: 1.1.1
open: 7.4.2
selfsigned: 2.4.1
@@ -25113,21 +26439,21 @@ snapshots:
'@react-native/normalize-colors@0.75.1':
optional: true
- '@react-native/virtualized-lists@0.74.81(@types/react@18.3.3)(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)':
+ '@react-native/virtualized-lists@0.74.81(@types/react@18.3.3)(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)':
dependencies:
invariant: 2.2.4
nullthrows: 1.1.1
react: 18.3.1
- react-native: 0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10)
+ react-native: 0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
optionalDependencies:
'@types/react': 18.3.3
- '@react-native/virtualized-lists@0.75.1(@types/react@18.3.3)(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)':
+ '@react-native/virtualized-lists@0.75.1(@types/react@18.3.3)(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)':
dependencies:
invariant: 2.2.4
nullthrows: 1.1.1
react: 18.3.1
- react-native: 0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)
+ react-native: 0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)
optionalDependencies:
'@types/react': 18.3.3
optional: true
@@ -25158,6 +26484,16 @@ snapshots:
dependencies:
'@redis/client': 1.2.0
+ '@reduxjs/toolkit@1.9.7(react-redux@9.1.2(@types/react@18.3.3)(react@18.3.1)(redux@4.2.1))(react@18.3.1)':
+ dependencies:
+ immer: 9.0.21
+ redux: 4.2.1
+ redux-thunk: 2.4.2(redux@4.2.1)
+ reselect: 4.1.8
+ optionalDependencies:
+ react: 18.3.1
+ react-redux: 9.1.2(@types/react@18.3.3)(react@18.3.1)(redux@4.2.1)
+
'@remix-run/router@1.16.0': {}
'@resvg/resvg-wasm@2.4.0': {}
@@ -25405,6 +26741,55 @@ snapshots:
'@sendgrid/client': 6.5.5
'@sendgrid/helpers': 6.5.5
+ '@sentry/core@5.30.0':
+ dependencies:
+ '@sentry/hub': 5.30.0
+ '@sentry/minimal': 5.30.0
+ '@sentry/types': 5.30.0
+ '@sentry/utils': 5.30.0
+ tslib: 1.14.1
+
+ '@sentry/hub@5.30.0':
+ dependencies:
+ '@sentry/types': 5.30.0
+ '@sentry/utils': 5.30.0
+ tslib: 1.14.1
+
+ '@sentry/minimal@5.30.0':
+ dependencies:
+ '@sentry/hub': 5.30.0
+ '@sentry/types': 5.30.0
+ tslib: 1.14.1
+
+ '@sentry/node@5.30.0':
+ dependencies:
+ '@sentry/core': 5.30.0
+ '@sentry/hub': 5.30.0
+ '@sentry/tracing': 5.30.0
+ '@sentry/types': 5.30.0
+ '@sentry/utils': 5.30.0
+ cookie: 0.4.1
+ https-proxy-agent: 5.0.0
+ lru_map: 0.3.3
+ tslib: 1.14.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@sentry/tracing@5.30.0':
+ dependencies:
+ '@sentry/hub': 5.30.0
+ '@sentry/minimal': 5.30.0
+ '@sentry/types': 5.30.0
+ '@sentry/utils': 5.30.0
+ tslib: 1.14.1
+
+ '@sentry/types@5.30.0': {}
+
+ '@sentry/utils@5.30.0':
+ dependencies:
+ '@sentry/types': 5.30.0
+ tslib: 1.14.1
+
'@shuding/opentype.js@1.4.0-beta.0':
dependencies:
fflate: 0.7.4
@@ -25422,10 +26807,6 @@ snapshots:
'@sindresorhus/fnv1a@3.1.0': {}
- '@sinonjs/commons@2.0.0':
- dependencies:
- type-detect: 4.0.8
-
'@sinonjs/commons@3.0.1':
dependencies:
type-detect: 4.0.8
@@ -25434,18 +26815,6 @@ snapshots:
dependencies:
'@sinonjs/commons': 3.0.1
- '@sinonjs/fake-timers@11.2.2':
- dependencies:
- '@sinonjs/commons': 3.0.1
-
- '@sinonjs/samsam@8.0.0':
- dependencies:
- '@sinonjs/commons': 2.0.0
- lodash.get: 4.4.2
- type-detect: 4.0.8
-
- '@sinonjs/text-encoding@0.7.2': {}
-
'@smithy/abort-controller@3.0.0':
dependencies:
'@smithy/types': 3.0.0
@@ -25760,7 +27129,7 @@ snapshots:
'@smithy/types': 3.0.0
tslib: 2.7.0
- '@snapshot-labs/snapshot.js@0.4.110(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
+ '@snapshot-labs/snapshot.js@0.4.110(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
'@ensdomains/eth-ens-namehash': 2.0.15
'@ethersproject/abi': 5.7.0
@@ -25773,7 +27142,7 @@ snapshots:
'@ethersproject/wallet': 5.7.0
ajv: 8.13.0
ajv-formats: 2.1.1(ajv@8.13.0)
- cross-fetch: 3.1.8
+ cross-fetch: 3.1.8(encoding@0.1.13)
json-to-graphql-query: 2.2.5
lodash.set: 4.3.2
transitivePeerDependencies:
@@ -25783,10 +27152,10 @@ snapshots:
'@socket.io/component-emitter@3.1.2': {}
- '@solana/buffer-layout-utils@0.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
+ '@solana/buffer-layout-utils@0.2.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
'@solana/buffer-layout': 4.0.1
- '@solana/web3.js': 1.91.8(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@solana/web3.js': 1.91.8(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
bigint-buffer: 1.1.5
bignumber.js: 9.1.2
transitivePeerDependencies:
@@ -25840,29 +27209,29 @@ snapshots:
'@solana/codecs-core': 2.0.0-preview.2
'@solana/codecs-numbers': 2.0.0-preview.2
- '@solana/spl-token-group@0.0.4(@solana/web3.js@1.91.8(bufferutil@4.0.8)(utf-8-validate@5.0.10))(fastestsmallesttextencoderdecoder@1.0.22)':
+ '@solana/spl-token-group@0.0.4(@solana/web3.js@1.91.8(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(fastestsmallesttextencoderdecoder@1.0.22)':
dependencies:
'@solana/codecs': 2.0.0-preview.2(fastestsmallesttextencoderdecoder@1.0.22)
'@solana/spl-type-length-value': 0.1.0
- '@solana/web3.js': 1.91.8(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@solana/web3.js': 1.91.8(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
transitivePeerDependencies:
- fastestsmallesttextencoderdecoder
- '@solana/spl-token-metadata@0.1.4(@solana/web3.js@1.91.8(bufferutil@4.0.8)(utf-8-validate@5.0.10))(fastestsmallesttextencoderdecoder@1.0.22)':
+ '@solana/spl-token-metadata@0.1.4(@solana/web3.js@1.91.8(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(fastestsmallesttextencoderdecoder@1.0.22)':
dependencies:
'@solana/codecs': 2.0.0-preview.2(fastestsmallesttextencoderdecoder@1.0.22)
'@solana/spl-type-length-value': 0.1.0
- '@solana/web3.js': 1.91.8(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@solana/web3.js': 1.91.8(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
transitivePeerDependencies:
- fastestsmallesttextencoderdecoder
- '@solana/spl-token@0.4.6(@solana/web3.js@1.91.8(bufferutil@4.0.8)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(fastestsmallesttextencoderdecoder@1.0.22)(utf-8-validate@5.0.10)':
+ '@solana/spl-token@0.4.6(@solana/web3.js@1.91.8(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(bufferutil@4.0.8)(encoding@0.1.13)(fastestsmallesttextencoderdecoder@1.0.22)(utf-8-validate@5.0.10)':
dependencies:
'@solana/buffer-layout': 4.0.1
- '@solana/buffer-layout-utils': 0.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
- '@solana/spl-token-group': 0.0.4(@solana/web3.js@1.91.8(bufferutil@4.0.8)(utf-8-validate@5.0.10))(fastestsmallesttextencoderdecoder@1.0.22)
- '@solana/spl-token-metadata': 0.1.4(@solana/web3.js@1.91.8(bufferutil@4.0.8)(utf-8-validate@5.0.10))(fastestsmallesttextencoderdecoder@1.0.22)
- '@solana/web3.js': 1.91.8(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@solana/buffer-layout-utils': 0.2.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@solana/spl-token-group': 0.0.4(@solana/web3.js@1.91.8(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(fastestsmallesttextencoderdecoder@1.0.22)
+ '@solana/spl-token-metadata': 0.1.4(@solana/web3.js@1.91.8(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10))(fastestsmallesttextencoderdecoder@1.0.22)
+ '@solana/web3.js': 1.91.8(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
buffer: 6.0.3
transitivePeerDependencies:
- bufferutil
@@ -25874,7 +27243,7 @@ snapshots:
dependencies:
buffer: 6.0.3
- '@solana/web3.js@1.91.8(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
+ '@solana/web3.js@1.91.8(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
'@babel/runtime': 7.24.5
'@noble/curves': 1.4.0
@@ -25888,7 +27257,7 @@ snapshots:
buffer: 6.0.3
fast-stable-stringify: 1.0.0
jayson: 4.1.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
- node-fetch: 2.7.0
+ node-fetch: 2.7.0(encoding@0.1.13)
rpc-websockets: 7.11.0
superstruct: 0.14.2
transitivePeerDependencies:
@@ -25896,7 +27265,7 @@ snapshots:
- encoding
- utf-8-validate
- '@solana/web3.js@1.95.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
+ '@solana/web3.js@1.95.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
'@babel/runtime': 7.25.7
'@noble/curves': 1.6.0
@@ -25910,7 +27279,7 @@ snapshots:
buffer: 6.0.3
fast-stable-stringify: 1.0.0
jayson: 4.1.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
- node-fetch: 2.7.0
+ node-fetch: 2.7.0(encoding@0.1.13)
rpc-websockets: 9.0.2
superstruct: 2.0.2
transitivePeerDependencies:
@@ -26011,6 +27380,63 @@ snapshots:
'@stitches/core@1.2.8': {}
+ '@styled-system/background@5.1.2':
+ dependencies:
+ '@styled-system/core': 5.1.2
+
+ '@styled-system/border@5.1.5':
+ dependencies:
+ '@styled-system/core': 5.1.2
+
+ '@styled-system/color@5.1.2':
+ dependencies:
+ '@styled-system/core': 5.1.2
+
+ '@styled-system/core@5.1.2':
+ dependencies:
+ object-assign: 4.1.1
+
+ '@styled-system/css@5.1.5': {}
+
+ '@styled-system/flexbox@5.1.2':
+ dependencies:
+ '@styled-system/core': 5.1.2
+
+ '@styled-system/grid@5.1.2':
+ dependencies:
+ '@styled-system/core': 5.1.2
+
+ '@styled-system/layout@5.1.2':
+ dependencies:
+ '@styled-system/core': 5.1.2
+
+ '@styled-system/position@5.1.2':
+ dependencies:
+ '@styled-system/core': 5.1.2
+
+ '@styled-system/shadow@5.1.2':
+ dependencies:
+ '@styled-system/core': 5.1.2
+
+ '@styled-system/should-forward-prop@5.1.5':
+ dependencies:
+ '@emotion/is-prop-valid': 0.8.8
+ '@emotion/memoize': 0.7.5
+ styled-system: 5.1.5
+
+ '@styled-system/space@5.1.2':
+ dependencies:
+ '@styled-system/core': 5.1.2
+
+ '@styled-system/typography@5.1.2':
+ dependencies:
+ '@styled-system/core': 5.1.2
+
+ '@styled-system/variant@5.1.5':
+ dependencies:
+ '@styled-system/core': 5.1.2
+ '@styled-system/css': 5.1.5
+
'@substrate/connect-extension-protocol@2.0.0':
optional: true
@@ -26152,32 +27578,32 @@ snapshots:
- '@types/react'
- react-dom
- '@tanstack/react-query-devtools@4.36.1(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@tanstack/react-query-devtools@4.36.1(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
'@tanstack/match-sorter-utils': 8.15.1
- '@tanstack/react-query': 4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)
+ '@tanstack/react-query': 4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
superjson: 1.13.3
use-sync-external-store: 1.2.2(react@18.3.1)
- '@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)':
+ '@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)':
dependencies:
'@tanstack/query-core': 4.36.1
react: 18.3.1
use-sync-external-store: 1.2.2(react@18.3.1)
optionalDependencies:
react-dom: 18.3.1(react@18.3.1)
- react-native: 0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10)
+ react-native: 0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
- '@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)':
+ '@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)':
dependencies:
'@tanstack/query-core': 4.36.1
react: 18.3.1
use-sync-external-store: 1.2.2(react@18.3.1)
optionalDependencies:
react-dom: 18.3.1(react@18.3.1)
- react-native: 0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)
+ react-native: 0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)
'@tanstack/react-store@0.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
@@ -26281,15 +27707,17 @@ snapshots:
link-module-alias: 1.2.0
shx: 0.3.4
+ '@tokenizer/token@0.3.0': {}
+
'@tootallnate/quickjs-emscripten@0.23.0': {}
'@trpc/client@10.45.2(@trpc/server@10.45.2)':
dependencies:
'@trpc/server': 10.45.2
- '@trpc/react-query@10.45.2(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1))(@trpc/client@10.45.2(@trpc/server@10.45.2))(@trpc/server@10.45.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ '@trpc/react-query@10.45.2(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1))(@trpc/client@10.45.2(@trpc/server@10.45.2))(@trpc/server@10.45.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@tanstack/react-query': 4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)
+ '@tanstack/react-query': 4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)
'@trpc/client': 10.45.2(@trpc/server@10.45.2)
'@trpc/server': 10.45.2
react: 18.3.1
@@ -26311,16 +27739,16 @@ snapshots:
'@turnkey/encoding': 0.2.1
sha256-uint8array: 0.10.7
- '@turnkey/crypto@0.2.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10)':
+ '@turnkey/crypto@0.2.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)':
dependencies:
'@noble/ciphers': 0.5.3
'@noble/curves': 1.4.0
'@noble/hashes': 1.4.0
'@turnkey/encoding': 0.2.1
bs58check: 3.0.1
- react-native: 0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10)
- react-native-get-random-values: 1.11.0(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))
- react-native-quick-base64: 2.1.2(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ react-native: 0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
+ react-native-get-random-values: 1.11.0(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))
+ react-native-quick-base64: 2.1.2(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
typescript: 5.0.4
transitivePeerDependencies:
- '@babel/core'
@@ -26334,12 +27762,12 @@ snapshots:
'@turnkey/encoding@0.2.1': {}
- '@turnkey/http@2.13.0':
+ '@turnkey/http@2.13.0(encoding@0.1.13)':
dependencies:
'@turnkey/api-key-stamper': 0.4.1
'@turnkey/encoding': 0.2.1
'@turnkey/webauthn-stamper': 0.5.0
- cross-fetch: 3.1.8
+ cross-fetch: 3.1.8(encoding@0.1.13)
transitivePeerDependencies:
- encoding
@@ -26347,17 +27775,17 @@ snapshots:
'@turnkey/iframe-stamper@2.0.0': {}
- '@turnkey/sdk-browser@1.3.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10)':
+ '@turnkey/sdk-browser@1.3.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)':
dependencies:
'@turnkey/api-key-stamper': 0.4.1
- '@turnkey/crypto': 0.2.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10)
+ '@turnkey/crypto': 0.2.1(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
'@turnkey/encoding': 0.2.1
- '@turnkey/http': 2.13.0
+ '@turnkey/http': 2.13.0(encoding@0.1.13)
'@turnkey/iframe-stamper': 2.0.0
'@turnkey/webauthn-stamper': 0.5.0
bs58check: 3.0.1
buffer: 6.0.3
- cross-fetch: 3.1.8
+ cross-fetch: 3.1.8(encoding@0.1.13)
elliptic: 6.5.5
hpke-js: 1.2.9
transitivePeerDependencies:
@@ -26370,23 +27798,23 @@ snapshots:
- supports-color
- utf-8-validate
- '@turnkey/sdk-server@1.3.0':
+ '@turnkey/sdk-server@1.3.0(encoding@0.1.13)':
dependencies:
'@turnkey/api-key-stamper': 0.4.1
- '@turnkey/http': 2.13.0
+ '@turnkey/http': 2.13.0(encoding@0.1.13)
buffer: 6.0.3
- cross-fetch: 3.1.8
+ cross-fetch: 3.1.8(encoding@0.1.13)
elliptic: 6.5.5
transitivePeerDependencies:
- encoding
- '@turnkey/viem@0.4.29(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6))':
+ '@turnkey/viem@0.4.29(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6))':
dependencies:
'@turnkey/api-key-stamper': 0.4.1
- '@turnkey/http': 2.13.0
- '@turnkey/sdk-browser': 1.3.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10)
- '@turnkey/sdk-server': 1.3.0
- cross-fetch: 4.0.0
+ '@turnkey/http': 2.13.0(encoding@0.1.13)
+ '@turnkey/sdk-browser': 1.3.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
+ '@turnkey/sdk-server': 1.3.0(encoding@0.1.13)
+ cross-fetch: 4.0.0(encoding@0.1.13)
typescript: 5.4.5
viem: 2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
transitivePeerDependencies:
@@ -26440,6 +27868,10 @@ snapshots:
'@types/connect': 3.4.38
'@types/node': 20.12.10
+ '@types/brotli@1.3.4':
+ dependencies:
+ '@types/node': 20.17.6
+
'@types/bs58@4.0.4':
dependencies:
'@types/node': 20.12.10
@@ -26560,6 +27992,8 @@ snapshots:
'@types/long@4.0.2': {}
+ '@types/lru-cache@5.1.1': {}
+
'@types/marked@4.3.2': {}
'@types/mdast@4.0.4':
@@ -26598,6 +28032,8 @@ snapshots:
'@types/node@12.20.55': {}
+ '@types/node@16.9.1': {}
+
'@types/node@18.15.13': {}
'@types/node@18.19.32':
@@ -26753,14 +28189,10 @@ snapshots:
'@types/node': 20.12.10
'@types/send': 0.17.4
- '@types/sinon@17.0.3':
- dependencies:
- '@types/sinonjs__fake-timers': 8.1.5
-
- '@types/sinonjs__fake-timers@8.1.5': {}
-
'@types/stack-utils@2.0.3': {}
+ '@types/stylis@4.2.5': {}
+
'@types/superagent@4.1.13':
dependencies:
'@types/cookiejar': 2.1.5
@@ -26781,6 +28213,8 @@ snapshots:
'@types/unist@3.0.3': {}
+ '@types/use-sync-external-store@0.0.3': {}
+
'@types/uuid@8.3.4': {}
'@types/uuid@9.0.8': {}
@@ -26872,7 +28306,7 @@ snapshots:
dependencies:
'@typescript-eslint/typescript-estree': 8.3.0(typescript@5.4.5)
'@typescript-eslint/utils': 8.3.0(eslint@8.57.0)(typescript@5.4.5)
- debug: 4.3.7
+ debug: 4.3.7(supports-color@8.1.1)
ts-api-utils: 1.3.0(typescript@5.4.5)
optionalDependencies:
typescript: 5.4.5
@@ -26903,7 +28337,7 @@ snapshots:
dependencies:
'@typescript-eslint/types': 8.3.0
'@typescript-eslint/visitor-keys': 8.3.0
- debug: 4.3.7
+ debug: 4.3.7(supports-color@8.1.1)
fast-glob: 3.3.2
is-glob: 4.0.3
minimatch: 9.0.4
@@ -26951,12 +28385,383 @@ snapshots:
'@ungap/structured-clone@1.2.0': {}
+ '@uniswap/conedison@1.8.0(@uniswap/sdk-core@4.2.1)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))':
+ dependencies:
+ '@uniswap/sdk-core': 4.2.1
+ ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+
+ '@uniswap/default-token-list@11.19.0': {}
+
+ '@uniswap/lib@4.0.1-alpha': {}
+
+ '@uniswap/permit2-sdk@1.3.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
+ dependencies:
+ ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ tiny-invariant: 1.3.3
+ transitivePeerDependencies:
+ - bufferutil
+ - utf-8-validate
+
+ '@uniswap/redux-multicall@1.1.8(@ethersproject/abi@5.7.0)(@ethersproject/bignumber@5.7.0)(@ethersproject/contracts@5.7.0)(@reduxjs/toolkit@1.9.7(react-redux@9.1.2(@types/react@18.3.3)(react@18.3.1)(redux@4.2.1))(react@18.3.1))(react-redux@9.1.2(@types/react@18.3.3)(react@18.3.1)(redux@4.2.1))(react@18.3.1)':
+ dependencies:
+ '@ethersproject/abi': 5.7.0
+ '@ethersproject/bignumber': 5.7.0
+ '@ethersproject/contracts': 5.7.0
+ '@reduxjs/toolkit': 1.9.7(react-redux@9.1.2(@types/react@18.3.3)(react@18.3.1)(redux@4.2.1))(react@18.3.1)
+ react: 18.3.1
+ react-redux: 9.1.2(@types/react@18.3.3)(react@18.3.1)(redux@4.2.1)
+
+ '@uniswap/router-sdk@1.15.0(hardhat@2.22.17(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.12))(@types/node@20.17.6)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))':
+ dependencies:
+ '@ethersproject/abi': 5.7.0
+ '@uniswap/sdk-core': 6.0.0
+ '@uniswap/swap-router-contracts': 1.3.1(hardhat@2.22.17(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.12))(@types/node@20.17.6)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))
+ '@uniswap/v2-sdk': 4.7.0
+ '@uniswap/v3-sdk': 3.19.0(hardhat@2.22.17(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.12))(@types/node@20.17.6)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))
+ '@uniswap/v4-sdk': 1.12.2(hardhat@2.22.17(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.12))(@types/node@20.17.6)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))
+ transitivePeerDependencies:
+ - hardhat
+
+ '@uniswap/sdk-core@4.2.1':
+ dependencies:
+ '@ethersproject/address': 5.7.0
+ big.js: 5.2.2
+ decimal.js-light: 2.5.1
+ jsbi: 3.2.5
+ tiny-invariant: 1.3.3
+ toformat: 2.0.0
+
+ '@uniswap/sdk-core@5.9.0':
+ dependencies:
+ '@ethersproject/address': 5.7.0
+ '@ethersproject/bytes': 5.7.0
+ '@ethersproject/keccak256': 5.7.0
+ '@ethersproject/strings': 5.7.0
+ big.js: 5.2.2
+ decimal.js-light: 2.5.1
+ jsbi: 3.2.5
+ tiny-invariant: 1.3.3
+ toformat: 2.0.0
+
+ '@uniswap/sdk-core@6.0.0':
+ dependencies:
+ '@ethersproject/address': 5.7.0
+ '@ethersproject/bytes': 5.7.0
+ '@ethersproject/keccak256': 5.7.0
+ '@ethersproject/strings': 5.7.0
+ big.js: 5.2.2
+ decimal.js-light: 2.5.1
+ jsbi: 3.2.5
+ tiny-invariant: 1.3.3
+ toformat: 2.0.0
+
+ '@uniswap/smart-order-router@3.59.0(bufferutil@4.0.8)(encoding@0.1.13)(hardhat@2.22.17(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.12))(@types/node@20.17.6)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(jsbi@3.2.5)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@eth-optimism/sdk': 3.3.3(bufferutil@4.0.8)(encoding@0.1.13)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)
+ '@types/brotli': 1.3.4
+ '@uniswap/default-token-list': 11.19.0
+ '@uniswap/permit2-sdk': 1.3.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@uniswap/router-sdk': 1.15.0(hardhat@2.22.17(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.12))(@types/node@20.17.6)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))
+ '@uniswap/sdk-core': 5.9.0
+ '@uniswap/swap-router-contracts': 1.3.1(hardhat@2.22.17(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.12))(@types/node@20.17.6)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))
+ '@uniswap/token-lists': 1.0.0-beta.34
+ '@uniswap/universal-router': 1.6.0
+ '@uniswap/universal-router-sdk': 3.4.0(bufferutil@4.0.8)(hardhat@2.22.17(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.12))(@types/node@20.17.6)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)
+ '@uniswap/v2-sdk': 4.7.0
+ '@uniswap/v3-sdk': 3.19.0(hardhat@2.22.17(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.12))(@types/node@20.17.6)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))
+ '@uniswap/v4-sdk': 1.12.2(hardhat@2.22.17(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.12))(@types/node@20.17.6)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))
+ async-retry: 1.3.3
+ await-timeout: 1.1.1
+ axios: 0.21.4
+ brotli: 1.3.3
+ bunyan: 1.8.15
+ bunyan-blackhole: 1.1.1(bunyan@1.8.15)
+ ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ graphql: 15.9.0
+ graphql-request: 3.7.0(encoding@0.1.13)(graphql@15.9.0)
+ jsbi: 3.2.5
+ lodash: 4.17.21
+ mnemonist: 0.38.5
+ node-cache: 5.1.2
+ stats-lite: 2.2.0
+ transitivePeerDependencies:
+ - bufferutil
+ - debug
+ - encoding
+ - hardhat
+ - utf-8-validate
+
+ '@uniswap/swap-router-contracts@1.3.1(hardhat@2.22.17(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.12))(@types/node@20.17.6)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))':
+ dependencies:
+ '@openzeppelin/contracts': 3.4.2-solc-0.7
+ '@uniswap/v2-core': 1.0.1
+ '@uniswap/v3-core': 1.0.1
+ '@uniswap/v3-periphery': 1.4.4
+ dotenv: 14.3.2
+ hardhat-watcher: 2.5.0(hardhat@2.22.17(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.12))(@types/node@20.17.6)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))
+ transitivePeerDependencies:
+ - hardhat
+
+ '@uniswap/token-lists@1.0.0-beta.34': {}
+
+ '@uniswap/universal-router-sdk@1.9.0(bufferutil@4.0.8)(hardhat@2.22.17(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.12))(@types/node@20.17.6)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)':
+ dependencies:
+ '@uniswap/permit2-sdk': 1.3.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@uniswap/router-sdk': 1.15.0(hardhat@2.22.17(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.12))(@types/node@20.17.6)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))
+ '@uniswap/sdk-core': 4.2.1
+ '@uniswap/universal-router': 1.6.0
+ '@uniswap/v2-sdk': 4.7.0
+ '@uniswap/v3-sdk': 3.19.0(hardhat@2.22.17(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.12))(@types/node@20.17.6)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))
+ bignumber.js: 9.1.2
+ ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ transitivePeerDependencies:
+ - bufferutil
+ - hardhat
+ - utf-8-validate
+
+ '@uniswap/universal-router-sdk@3.4.0(bufferutil@4.0.8)(hardhat@2.22.17(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.12))(@types/node@20.17.6)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)':
+ dependencies:
+ '@openzeppelin/contracts': 4.7.0
+ '@uniswap/permit2-sdk': 1.3.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@uniswap/router-sdk': 1.15.0(hardhat@2.22.17(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.12))(@types/node@20.17.6)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))
+ '@uniswap/sdk-core': 5.9.0
+ '@uniswap/universal-router': 2.0.0-beta.1
+ '@uniswap/v2-core': 1.0.1
+ '@uniswap/v2-sdk': 4.7.0
+ '@uniswap/v3-core': 1.0.0
+ '@uniswap/v3-sdk': 3.19.0(hardhat@2.22.17(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.12))(@types/node@20.17.6)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))
+ '@uniswap/v4-sdk': 1.12.2(hardhat@2.22.17(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.12))(@types/node@20.17.6)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))
+ bignumber.js: 9.1.2
+ ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ transitivePeerDependencies:
+ - bufferutil
+ - hardhat
+ - utf-8-validate
+
+ '@uniswap/universal-router@1.6.0':
+ dependencies:
+ '@openzeppelin/contracts': 4.7.0
+ '@uniswap/v2-core': 1.0.1
+ '@uniswap/v3-core': 1.0.0
+
+ '@uniswap/universal-router@2.0.0-beta.1':
+ dependencies:
+ '@openzeppelin/contracts': 5.0.2
+ '@uniswap/v2-core': 1.0.1
+ '@uniswap/v3-core': 1.0.0
+
+ '@uniswap/v2-core@1.0.1': {}
+
+ '@uniswap/v2-sdk@3.3.0':
+ dependencies:
+ '@ethersproject/address': 5.7.0
+ '@ethersproject/solidity': 5.7.0
+ '@uniswap/sdk-core': 4.2.1
+ tiny-invariant: 1.3.3
+ tiny-warning: 1.0.3
+
+ '@uniswap/v2-sdk@4.7.0':
+ dependencies:
+ '@ethersproject/address': 5.7.0
+ '@ethersproject/solidity': 5.7.0
+ '@uniswap/sdk-core': 6.0.0
+ tiny-invariant: 1.3.3
+ tiny-warning: 1.0.3
+
+ '@uniswap/v3-core@1.0.0': {}
+
+ '@uniswap/v3-core@1.0.1': {}
+
+ '@uniswap/v3-periphery@1.4.4':
+ dependencies:
+ '@openzeppelin/contracts': 3.4.2-solc-0.7
+ '@uniswap/lib': 4.0.1-alpha
+ '@uniswap/v2-core': 1.0.1
+ '@uniswap/v3-core': 1.0.1
+ base64-sol: 1.0.1
+
+ '@uniswap/v3-sdk@3.19.0(hardhat@2.22.17(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.12))(@types/node@20.17.6)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))':
+ dependencies:
+ '@ethersproject/abi': 5.7.0
+ '@ethersproject/solidity': 5.7.0
+ '@uniswap/sdk-core': 6.0.0
+ '@uniswap/swap-router-contracts': 1.3.1(hardhat@2.22.17(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.12))(@types/node@20.17.6)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))
+ '@uniswap/v3-periphery': 1.4.4
+ '@uniswap/v3-staker': 1.0.0
+ tiny-invariant: 1.3.3
+ tiny-warning: 1.0.3
+ transitivePeerDependencies:
+ - hardhat
+
+ '@uniswap/v3-staker@1.0.0':
+ dependencies:
+ '@openzeppelin/contracts': 3.4.1-solc-0.7-2
+ '@uniswap/v3-core': 1.0.0
+ '@uniswap/v3-periphery': 1.4.4
+
+ '@uniswap/v4-sdk@1.12.2(hardhat@2.22.17(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.12))(@types/node@20.17.6)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))':
+ dependencies:
+ '@ethersproject/solidity': 5.7.0
+ '@uniswap/sdk-core': 6.0.0
+ '@uniswap/v3-sdk': 3.19.0(hardhat@2.22.17(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.12))(@types/node@20.17.6)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))
+ tiny-invariant: 1.3.3
+ tiny-warning: 1.0.3
+ transitivePeerDependencies:
+ - hardhat
+
+ '@uniswap/widgets@2.59.0(@babel/core@7.25.7)(@babel/runtime@7.26.0)(@babel/template@7.25.9)(@ethersproject/abi@5.7.0)(@ethersproject/bignumber@5.7.0)(@ethersproject/contracts@5.7.0)(@types/react@18.3.3)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(hardhat@2.22.17(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.12))(@types/node@20.17.6)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(react-dom@18.3.1(react@18.3.1))(react-redux@9.1.2(@types/react@18.3.3)(react@18.3.1)(redux@4.2.1))(react@18.3.1)(redux@4.2.1)(styled-components@6.1.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(valtio@1.11.2(@types/react@18.3.3)(react@18.3.1))':
+ dependencies:
+ '@babel/runtime': 7.26.0
+ '@fontsource/ibm-plex-mono': 4.5.13
+ '@fontsource/inter': 4.5.15
+ '@popperjs/core': 2.11.8
+ '@reduxjs/toolkit': 1.9.7(react-redux@9.1.2(@types/react@18.3.3)(react@18.3.1)(redux@4.2.1))(react@18.3.1)
+ '@uniswap/conedison': 1.8.0(@uniswap/sdk-core@4.2.1)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))
+ '@uniswap/permit2-sdk': 1.3.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@uniswap/redux-multicall': 1.1.8(@ethersproject/abi@5.7.0)(@ethersproject/bignumber@5.7.0)(@ethersproject/contracts@5.7.0)(@reduxjs/toolkit@1.9.7(react-redux@9.1.2(@types/react@18.3.3)(react@18.3.1)(redux@4.2.1))(react@18.3.1))(react-redux@9.1.2(@types/react@18.3.3)(react@18.3.1)(redux@4.2.1))(react@18.3.1)
+ '@uniswap/router-sdk': 1.15.0(hardhat@2.22.17(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.12))(@types/node@20.17.6)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))
+ '@uniswap/sdk-core': 4.2.1
+ '@uniswap/smart-order-router': 3.59.0(bufferutil@4.0.8)(encoding@0.1.13)(hardhat@2.22.17(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.12))(@types/node@20.17.6)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(jsbi@3.2.5)(utf-8-validate@5.0.10)
+ '@uniswap/token-lists': 1.0.0-beta.34
+ '@uniswap/universal-router-sdk': 1.9.0(bufferutil@4.0.8)(hardhat@2.22.17(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.12))(@types/node@20.17.6)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))(utf-8-validate@5.0.10)
+ '@uniswap/v2-sdk': 3.3.0
+ '@uniswap/v3-sdk': 3.19.0(hardhat@2.22.17(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.12))(@types/node@20.17.6)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10))
+ '@web3-react/core': 8.2.3(@types/react@18.3.3)(bufferutil@4.0.8)(immer@9.0.21)(react@18.3.1)(utf-8-validate@5.0.10)
+ '@web3-react/eip1193': 8.2.3(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1)
+ '@web3-react/empty': 8.2.3(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1)
+ '@web3-react/metamask': 8.2.4(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1)
+ '@web3-react/network': 8.2.3(@types/react@18.3.3)(bufferutil@4.0.8)(immer@9.0.21)(react@18.3.1)(utf-8-validate@5.0.10)
+ '@web3-react/types': 8.2.3(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1)
+ '@web3-react/url': 8.2.3(@types/react@18.3.3)(bufferutil@4.0.8)(immer@9.0.21)(react@18.3.1)(utf-8-validate@5.0.10)
+ '@web3-react/walletconnect-v2': 8.5.1(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(immer@9.0.21)(react@18.3.1)(utf-8-validate@5.0.10)
+ ajv: 8.13.0
+ ajv-formats: 2.1.1(ajv@8.13.0)
+ cids: 1.1.9
+ ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ immer: 9.0.21
+ jotai: 1.4.0(@babel/core@7.25.7)(@babel/template@7.25.9)(immer@9.0.21)(react@18.3.1)(valtio@1.11.2(@types/react@18.3.3)(react@18.3.1))
+ jsbi: 3.2.5
+ make-plural: 7.4.0
+ ms.macro: 2.0.0
+ multicodec: 3.2.1
+ multihashes: 4.0.3
+ node-vibrant: 3.2.1-alpha.1
+ polished: 3.7.2
+ popper-max-size-modifier: 0.2.0(@popperjs/core@2.11.8)
+ qrcode: 1.5.3
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ react-feather: 2.0.10(react@18.3.1)
+ react-popper: 2.3.0(@popperjs/core@2.11.8)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react-redux: 9.1.2(@types/react@18.3.3)(react@18.3.1)(redux@4.2.1)
+ react-virtualized-auto-sizer: 1.0.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ react-window: 1.8.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ rebass: 4.0.7(react@18.3.1)
+ redux: 4.2.1
+ resize-observer-polyfill: 1.5.1
+ setimmediate: 1.0.5
+ styled-components: 6.1.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ tiny-invariant: 1.3.3
+ wcag-contrast: 3.0.0
+ wicg-inert: 3.1.3
+ optionalDependencies:
+ bufferutil: 4.0.8
+ encoding: 0.1.13
+ utf-8-validate: 5.0.10
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@babel/core'
+ - '@babel/template'
+ - '@capacitor/preferences'
+ - '@ethersproject/abi'
+ - '@ethersproject/bignumber'
+ - '@ethersproject/contracts'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@urql/core'
+ - '@vercel/kv'
+ - debug
+ - hardhat
+ - ioredis
+ - optics-ts
+ - react-query
+ - supports-color
+ - uWebSockets.js
+ - valtio
+ - wonka
+ - xstate
+
'@vercel/og@0.6.3':
dependencies:
'@resvg/resvg-wasm': 2.4.0
satori: 0.10.9
yoga-wasm-web: 0.3.3
+ '@vibrant/color@3.2.1-alpha.1': {}
+
+ '@vibrant/core@3.2.1-alpha.1':
+ dependencies:
+ '@vibrant/color': 3.2.1-alpha.1
+ '@vibrant/generator': 3.2.1-alpha.1
+ '@vibrant/image': 3.2.1-alpha.1
+ '@vibrant/quantizer': 3.2.1-alpha.1
+ '@vibrant/types': 3.2.1-alpha.1
+ '@vibrant/worker': 3.2.1-alpha.1
+
+ '@vibrant/generator-default@3.2.1-alpha.1':
+ dependencies:
+ '@vibrant/color': 3.2.1-alpha.1
+ '@vibrant/generator': 3.2.1-alpha.1
+
+ '@vibrant/generator@3.2.1-alpha.1':
+ dependencies:
+ '@vibrant/color': 3.2.1-alpha.1
+ '@vibrant/types': 3.2.1-alpha.1
+
+ '@vibrant/image-browser@3.2.1-alpha.1':
+ dependencies:
+ '@vibrant/image': 3.2.1-alpha.1
+
+ '@vibrant/image-node@3.2.1-alpha.1':
+ dependencies:
+ '@jimp/custom': 0.16.13
+ '@jimp/plugin-resize': 0.16.13(@jimp/custom@0.16.13)
+ '@jimp/types': 0.16.13(@jimp/custom@0.16.13)
+ '@vibrant/image': 3.2.1-alpha.1
+ transitivePeerDependencies:
+ - debug
+
+ '@vibrant/image@3.2.1-alpha.1':
+ dependencies:
+ '@vibrant/color': 3.2.1-alpha.1
+ '@vibrant/types': 3.2.1-alpha.1
+
+ '@vibrant/quantizer-mmcq@3.2.1-alpha.1':
+ dependencies:
+ '@vibrant/color': 3.2.1-alpha.1
+ '@vibrant/image': 3.2.1-alpha.1
+ '@vibrant/quantizer': 3.2.1-alpha.1
+
+ '@vibrant/quantizer@3.2.1-alpha.1':
+ dependencies:
+ '@vibrant/color': 3.2.1-alpha.1
+ '@vibrant/image': 3.2.1-alpha.1
+ '@vibrant/types': 3.2.1-alpha.1
+
+ '@vibrant/types@3.2.1-alpha.1': {}
+
+ '@vibrant/worker@3.2.1-alpha.1':
+ dependencies:
+ '@vibrant/types': 3.2.1-alpha.1
+
'@viem/anvil@0.0.10(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
dependencies:
execa: 7.2.0
@@ -27032,14 +28837,14 @@ snapshots:
'@vladfrangu/async_event_emitter@2.4.6': {}
- '@wagmi/connectors@4.3.10(@types/react@18.3.3)(@wagmi/core@2.13.4(@types/react@18.3.3)(react@18.3.1)(typescript@5.4.5)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)))(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-i18next@13.5.0(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.26.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6))(zod@3.23.6)':
+ '@wagmi/connectors@4.3.10(@types/react@18.3.3)(@wagmi/core@2.13.4(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1)(typescript@5.4.5)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-i18next@13.5.0(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.26.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6))(zod@3.23.6)':
dependencies:
'@coinbase/wallet-sdk': 3.9.1
- '@metamask/sdk': 0.20.3(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-i18next@13.5.0(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.26.0)(utf-8-validate@5.0.10)
+ '@metamask/sdk': 0.20.3(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-i18next@13.5.0(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.26.0)(utf-8-validate@5.0.10)
'@safe-global/safe-apps-provider': 0.18.1(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
'@safe-global/safe-apps-sdk': 8.1.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
- '@wagmi/core': 2.13.4(@types/react@18.3.3)(react@18.3.1)(typescript@5.4.5)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6))
- '@walletconnect/ethereum-provider': 2.13.0(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10)
+ '@wagmi/core': 2.13.4(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1)(typescript@5.4.5)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6))
+ '@walletconnect/ethereum-provider': 2.13.0(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
'@walletconnect/modal': 2.6.2(@types/react@18.3.3)(react@18.3.1)
viem: 2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
optionalDependencies:
@@ -27071,14 +28876,14 @@ snapshots:
- utf-8-validate
- zod
- '@wagmi/connectors@5.1.8(@types/react@18.3.3)(@wagmi/core@2.13.4(@types/react@18.3.3)(react@18.3.1)(typescript@5.4.5)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)))(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.26.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6))(zod@3.23.6)':
+ '@wagmi/connectors@5.1.8(@types/react@18.3.3)(@wagmi/core@2.13.4(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1)(typescript@5.4.5)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.26.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6))(zod@3.23.6)':
dependencies:
'@coinbase/wallet-sdk': 4.0.4
- '@metamask/sdk': 0.27.0(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.26.0)(utf-8-validate@5.0.10)
+ '@metamask/sdk': 0.27.0(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.26.0)(utf-8-validate@5.0.10)
'@safe-global/safe-apps-provider': 0.18.3(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
'@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
- '@wagmi/core': 2.13.4(@types/react@18.3.3)(react@18.3.1)(typescript@5.4.5)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6))
- '@walletconnect/ethereum-provider': 2.15.2(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10)
+ '@wagmi/core': 2.13.4(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1)(typescript@5.4.5)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6))
+ '@walletconnect/ethereum-provider': 2.15.2(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
'@walletconnect/modal': 2.6.2(@types/react@18.3.3)(react@18.3.1)
cbw-sdk: '@coinbase/wallet-sdk@3.9.3'
viem: 2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
@@ -27110,12 +28915,12 @@ snapshots:
- utf-8-validate
- zod
- '@wagmi/core@2.13.4(@types/react@18.3.3)(react@18.3.1)(typescript@5.4.5)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6))':
+ '@wagmi/core@2.13.4(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1)(typescript@5.4.5)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6))':
dependencies:
eventemitter3: 5.0.1
mipd: 0.0.7(typescript@5.4.5)
viem: 2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
- zustand: 4.4.1(@types/react@18.3.3)(react@18.3.1)
+ zustand: 4.4.1(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1)
optionalDependencies:
typescript: 5.4.5
transitivePeerDependencies:
@@ -27140,7 +28945,7 @@ snapshots:
- bufferutil
- utf-8-validate
- '@walletconnect/core@2.12.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
+ '@walletconnect/core@2.12.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
'@walletconnect/heartbeat': 1.2.1
'@walletconnect/jsonrpc-provider': 1.0.13
@@ -27156,7 +28961,7 @@ snapshots:
'@walletconnect/types': 2.12.2
'@walletconnect/utils': 2.12.2
events: 3.3.0
- isomorphic-unfetch: 3.1.0
+ isomorphic-unfetch: 3.1.0(encoding@0.1.13)
lodash.isequal: 4.5.0
uint8arrays: 3.1.1
transitivePeerDependencies:
@@ -27178,7 +28983,7 @@ snapshots:
- uWebSockets.js
- utf-8-validate
- '@walletconnect/core@2.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
+ '@walletconnect/core@2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
'@walletconnect/heartbeat': 1.2.2
'@walletconnect/jsonrpc-provider': 1.0.14
@@ -27194,7 +28999,7 @@ snapshots:
'@walletconnect/types': 2.13.0
'@walletconnect/utils': 2.13.0
events: 3.3.0
- isomorphic-unfetch: 3.1.0
+ isomorphic-unfetch: 3.1.0(encoding@0.1.13)
lodash.isequal: 4.5.0
uint8arrays: 3.1.0
transitivePeerDependencies:
@@ -27308,16 +29113,16 @@ snapshots:
dependencies:
tslib: 1.14.1
- '@walletconnect/ethereum-provider@2.12.2(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10)':
+ '@walletconnect/ethereum-provider@2.12.2(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)':
dependencies:
- '@walletconnect/jsonrpc-http-connection': 1.0.8
+ '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13)
'@walletconnect/jsonrpc-provider': 1.0.14
'@walletconnect/jsonrpc-types': 1.0.4
'@walletconnect/jsonrpc-utils': 1.0.8
'@walletconnect/modal': 2.6.2(@types/react@18.3.3)(react@18.3.1)
- '@walletconnect/sign-client': 2.12.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@walletconnect/sign-client': 2.12.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@walletconnect/types': 2.12.2
- '@walletconnect/universal-provider': 2.12.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@walletconnect/universal-provider': 2.12.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@walletconnect/utils': 2.12.2
events: 3.3.0
transitivePeerDependencies:
@@ -27341,16 +29146,16 @@ snapshots:
- uWebSockets.js
- utf-8-validate
- '@walletconnect/ethereum-provider@2.13.0(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10)':
+ '@walletconnect/ethereum-provider@2.13.0(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)':
dependencies:
- '@walletconnect/jsonrpc-http-connection': 1.0.8
+ '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13)
'@walletconnect/jsonrpc-provider': 1.0.14
'@walletconnect/jsonrpc-types': 1.0.4
'@walletconnect/jsonrpc-utils': 1.0.8
'@walletconnect/modal': 2.6.2(@types/react@18.3.3)(react@18.3.1)
- '@walletconnect/sign-client': 2.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@walletconnect/sign-client': 2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@walletconnect/types': 2.13.0
- '@walletconnect/universal-provider': 2.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@walletconnect/universal-provider': 2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@walletconnect/utils': 2.13.0
events: 3.3.0
transitivePeerDependencies:
@@ -27374,16 +29179,16 @@ snapshots:
- uWebSockets.js
- utf-8-validate
- '@walletconnect/ethereum-provider@2.15.2(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10)':
+ '@walletconnect/ethereum-provider@2.15.2(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)':
dependencies:
- '@walletconnect/jsonrpc-http-connection': 1.0.8
+ '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13)
'@walletconnect/jsonrpc-provider': 1.0.14
'@walletconnect/jsonrpc-types': 1.0.4
'@walletconnect/jsonrpc-utils': 1.0.8
'@walletconnect/modal': 2.6.2(@types/react@18.3.3)(react@18.3.1)
'@walletconnect/sign-client': 2.15.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@walletconnect/types': 2.15.2
- '@walletconnect/universal-provider': 2.15.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@walletconnect/universal-provider': 2.15.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@walletconnect/utils': 2.15.2
events: 3.3.0
transitivePeerDependencies:
@@ -27407,9 +29212,9 @@ snapshots:
- uWebSockets.js
- utf-8-validate
- '@walletconnect/ethereum-provider@2.17.2(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10)':
+ '@walletconnect/ethereum-provider@2.17.2(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)':
dependencies:
- '@walletconnect/jsonrpc-http-connection': 1.0.8
+ '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13)
'@walletconnect/jsonrpc-provider': 1.0.14
'@walletconnect/jsonrpc-types': 1.0.4
'@walletconnect/jsonrpc-utils': 1.0.8
@@ -27417,7 +29222,7 @@ snapshots:
'@walletconnect/modal': 2.7.0(@types/react@18.3.3)(react@18.3.1)
'@walletconnect/sign-client': 2.17.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
'@walletconnect/types': 2.17.2
- '@walletconnect/universal-provider': 2.17.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@walletconnect/universal-provider': 2.17.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@walletconnect/utils': 2.17.2
events: 3.3.0
transitivePeerDependencies:
@@ -27464,11 +29269,11 @@ snapshots:
'@walletconnect/types': 1.8.0
'@walletconnect/utils': 1.8.0
- '@walletconnect/jsonrpc-http-connection@1.0.8':
+ '@walletconnect/jsonrpc-http-connection@1.0.8(encoding@0.1.13)':
dependencies:
'@walletconnect/jsonrpc-utils': 1.0.8
'@walletconnect/safe-json': 1.0.2
- cross-fetch: 3.1.8
+ cross-fetch: 3.1.8(encoding@0.1.13)
events: 3.3.0
transitivePeerDependencies:
- encoding
@@ -27616,9 +29421,9 @@ snapshots:
dependencies:
tslib: 1.14.1
- '@walletconnect/sign-client@2.12.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
+ '@walletconnect/sign-client@2.12.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
- '@walletconnect/core': 2.12.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@walletconnect/core': 2.12.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@walletconnect/events': 1.0.1
'@walletconnect/heartbeat': 1.2.1
'@walletconnect/jsonrpc-utils': 1.0.8
@@ -27646,9 +29451,9 @@ snapshots:
- uWebSockets.js
- utf-8-validate
- '@walletconnect/sign-client@2.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
+ '@walletconnect/sign-client@2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
- '@walletconnect/core': 2.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@walletconnect/core': 2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@walletconnect/events': 1.0.1
'@walletconnect/heartbeat': 1.2.2
'@walletconnect/jsonrpc-utils': 1.0.8
@@ -27845,14 +29650,14 @@ snapshots:
- ioredis
- uWebSockets.js
- '@walletconnect/universal-provider@2.12.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
+ '@walletconnect/universal-provider@2.12.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
- '@walletconnect/jsonrpc-http-connection': 1.0.8
+ '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13)
'@walletconnect/jsonrpc-provider': 1.0.13
'@walletconnect/jsonrpc-types': 1.0.4
'@walletconnect/jsonrpc-utils': 1.0.8
'@walletconnect/logger': 2.1.2
- '@walletconnect/sign-client': 2.12.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@walletconnect/sign-client': 2.12.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@walletconnect/types': 2.12.2
'@walletconnect/utils': 2.12.2
events: 3.3.0
@@ -27875,14 +29680,14 @@ snapshots:
- uWebSockets.js
- utf-8-validate
- '@walletconnect/universal-provider@2.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
+ '@walletconnect/universal-provider@2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
- '@walletconnect/jsonrpc-http-connection': 1.0.8
+ '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13)
'@walletconnect/jsonrpc-provider': 1.0.14
'@walletconnect/jsonrpc-types': 1.0.4
'@walletconnect/jsonrpc-utils': 1.0.8
'@walletconnect/logger': 2.1.2
- '@walletconnect/sign-client': 2.13.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@walletconnect/sign-client': 2.13.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@walletconnect/types': 2.13.0
'@walletconnect/utils': 2.13.0
events: 3.3.0
@@ -27905,9 +29710,9 @@ snapshots:
- uWebSockets.js
- utf-8-validate
- '@walletconnect/universal-provider@2.15.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
+ '@walletconnect/universal-provider@2.15.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
- '@walletconnect/jsonrpc-http-connection': 1.0.8
+ '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13)
'@walletconnect/jsonrpc-provider': 1.0.14
'@walletconnect/jsonrpc-types': 1.0.4
'@walletconnect/jsonrpc-utils': 1.0.8
@@ -27935,10 +29740,10 @@ snapshots:
- uWebSockets.js
- utf-8-validate
- '@walletconnect/universal-provider@2.17.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)':
+ '@walletconnect/universal-provider@2.17.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
'@walletconnect/events': 1.0.1
- '@walletconnect/jsonrpc-http-connection': 1.0.8
+ '@walletconnect/jsonrpc-http-connection': 1.0.8(encoding@0.1.13)
'@walletconnect/jsonrpc-provider': 1.0.14
'@walletconnect/jsonrpc-types': 1.0.4
'@walletconnect/jsonrpc-utils': 1.0.8
@@ -28129,6 +29934,114 @@ snapshots:
'@walletconnect/window-getters': 1.0.1
tslib: 1.14.1
+ '@web3-react/core@8.2.3(@types/react@18.3.3)(bufferutil@4.0.8)(immer@9.0.21)(react@18.3.1)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@web3-react/store': 8.2.3(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1)
+ '@web3-react/types': 8.2.3(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1)
+ react: 18.3.1
+ zustand: 4.4.0(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1)
+ optionalDependencies:
+ '@ethersproject/providers': 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ transitivePeerDependencies:
+ - '@types/react'
+ - bufferutil
+ - immer
+ - utf-8-validate
+
+ '@web3-react/eip1193@8.2.3(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1)':
+ dependencies:
+ '@web3-react/types': 8.2.3(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1)
+ eventemitter3: 4.0.7
+ transitivePeerDependencies:
+ - '@types/react'
+ - immer
+ - react
+
+ '@web3-react/empty@8.2.3(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1)':
+ dependencies:
+ '@web3-react/types': 8.2.3(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1)
+ transitivePeerDependencies:
+ - '@types/react'
+ - immer
+ - react
+
+ '@web3-react/metamask@8.2.4(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1)':
+ dependencies:
+ '@metamask/detect-provider': 1.2.0
+ '@web3-react/types': 8.2.3(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1)
+ transitivePeerDependencies:
+ - '@types/react'
+ - immer
+ - react
+
+ '@web3-react/network@8.2.3(@types/react@18.3.3)(bufferutil@4.0.8)(immer@9.0.21)(react@18.3.1)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@ethersproject/providers': 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@web3-react/types': 8.2.3(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1)
+ transitivePeerDependencies:
+ - '@types/react'
+ - bufferutil
+ - immer
+ - react
+ - utf-8-validate
+
+ '@web3-react/store@8.2.3(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1)':
+ dependencies:
+ '@ethersproject/address': 5.7.0
+ '@web3-react/types': 8.2.3(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1)
+ zustand: 4.4.0(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1)
+ transitivePeerDependencies:
+ - '@types/react'
+ - immer
+ - react
+
+ '@web3-react/types@8.2.3(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1)':
+ dependencies:
+ zustand: 4.4.0(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1)
+ transitivePeerDependencies:
+ - '@types/react'
+ - immer
+ - react
+
+ '@web3-react/url@8.2.3(@types/react@18.3.3)(bufferutil@4.0.8)(immer@9.0.21)(react@18.3.1)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@ethersproject/providers': 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@web3-react/types': 8.2.3(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1)
+ transitivePeerDependencies:
+ - '@types/react'
+ - bufferutil
+ - immer
+ - react
+ - utf-8-validate
+
+ '@web3-react/walletconnect-v2@8.5.1(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(immer@9.0.21)(react@18.3.1)(utf-8-validate@5.0.10)':
+ dependencies:
+ '@walletconnect/ethereum-provider': 2.17.2(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
+ '@walletconnect/modal': 2.7.0(@types/react@18.3.3)(react@18.3.1)
+ '@web3-react/types': 8.2.3(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1)
+ eventemitter3: 4.0.7
+ transitivePeerDependencies:
+ - '@azure/app-configuration'
+ - '@azure/cosmos'
+ - '@azure/data-tables'
+ - '@azure/identity'
+ - '@azure/keyvault-secrets'
+ - '@azure/storage-blob'
+ - '@capacitor/preferences'
+ - '@netlify/blobs'
+ - '@planetscale/database'
+ - '@react-native-async-storage/async-storage'
+ - '@types/react'
+ - '@upstash/redis'
+ - '@vercel/kv'
+ - bufferutil
+ - encoding
+ - immer
+ - ioredis
+ - react
+ - uWebSockets.js
+ - utf-8-validate
+
'@xmtp/frames-validator@0.6.2(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)':
dependencies:
'@noble/curves': 1.6.0
@@ -28224,6 +30137,8 @@ snapshots:
acorn@8.14.0: {}
+ adm-zip@0.4.16: {}
+
aes-js@3.0.0: {}
aes-js@3.1.2: {}
@@ -28232,13 +30147,13 @@ snapshots:
agent-base@6.0.2:
dependencies:
- debug: 4.3.7
+ debug: 4.3.7(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
agent-base@7.1.1:
dependencies:
- debug: 4.3.7
+ debug: 4.3.7(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
@@ -28329,6 +30244,12 @@ snapshots:
anser@2.1.1: {}
+ ansi-align@3.0.1:
+ dependencies:
+ string-width: 4.2.3
+
+ ansi-colors@4.1.3: {}
+
ansi-escapes@4.3.2:
dependencies:
type-fest: 0.21.3
@@ -28357,6 +30278,8 @@ snapshots:
ansi-styles@6.2.1: {}
+ any-base@1.1.0: {}
+
any-signal@4.1.1: {}
anymatch@3.1.3:
@@ -28521,6 +30444,10 @@ snapshots:
dependencies:
tslib: 2.6.2
+ async-retry@1.3.3:
+ dependencies:
+ retry: 0.13.1
+
async-rwlock@1.1.1: {}
async@3.2.5: {}
@@ -28537,6 +30464,8 @@ snapshots:
dependencies:
possible-typed-array-names: 1.0.0
+ await-timeout@1.1.1: {}
+
aws-sign2@0.7.0: {}
aws4@1.12.0: {}
@@ -28548,20 +30477,20 @@ snapshots:
axios@0.21.4:
dependencies:
- follow-redirects: 1.15.6
+ follow-redirects: 1.15.6(debug@4.3.7)
transitivePeerDependencies:
- debug
axios@0.27.2:
dependencies:
- follow-redirects: 1.15.6
+ follow-redirects: 1.15.6(debug@4.3.7)
form-data: 4.0.0
transitivePeerDependencies:
- debug
axios@1.6.8:
dependencies:
- follow-redirects: 1.15.6
+ follow-redirects: 1.15.6(debug@4.3.7)
form-data: 4.0.0
proxy-from-env: 1.1.0
transitivePeerDependencies:
@@ -28569,7 +30498,7 @@ snapshots:
axios@1.7.5:
dependencies:
- follow-redirects: 1.15.6
+ follow-redirects: 1.15.6(debug@4.3.7)
form-data: 4.0.1
proxy-from-env: 1.1.0
transitivePeerDependencies:
@@ -28577,7 +30506,7 @@ snapshots:
axios@1.7.7:
dependencies:
- follow-redirects: 1.15.6
+ follow-redirects: 1.15.6(debug@4.3.7)
form-data: 4.0.1
proxy-from-env: 1.1.0
transitivePeerDependencies:
@@ -28587,9 +30516,30 @@ snapshots:
dependencies:
'@babel/core': 7.24.5
+ babel-plugin-emotion@10.2.2:
+ dependencies:
+ '@babel/helper-module-imports': 7.25.9
+ '@emotion/hash': 0.8.0
+ '@emotion/memoize': 0.7.4
+ '@emotion/serialize': 0.11.16
+ babel-plugin-macros: 2.8.0
+ babel-plugin-syntax-jsx: 6.18.0
+ convert-source-map: 1.9.0
+ escape-string-regexp: 1.0.5
+ find-root: 1.1.0
+ source-map: 0.5.7
+ transitivePeerDependencies:
+ - supports-color
+
+ babel-plugin-macros@2.8.0:
+ dependencies:
+ '@babel/runtime': 7.26.0
+ cosmiconfig: 6.0.0
+ resolve: 1.22.8
+
babel-plugin-macros@3.1.0:
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.0
cosmiconfig: 7.1.0
resolve: 1.22.8
@@ -28660,6 +30610,8 @@ snapshots:
- supports-color
optional: true
+ babel-plugin-syntax-jsx@6.18.0: {}
+
babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.24.5):
dependencies:
'@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.24.5)
@@ -28691,6 +30643,8 @@ snapshots:
base64-js@1.5.1: {}
+ base64-sol@1.0.1: {}
+
base64url@3.0.1: {}
basic-auth@2.0.1:
@@ -28718,6 +30672,8 @@ snapshots:
big-integer@1.6.52: {}
+ big.js@5.2.2: {}
+
bigint-buffer@1.1.5:
dependencies:
bindings: 1.5.0
@@ -28764,6 +30720,8 @@ snapshots:
bluebird@3.7.2: {}
+ bmp-js@0.1.0: {}
+
bn.js@4.11.6: {}
bn.js@4.11.8: {}
@@ -28820,6 +30778,17 @@ snapshots:
bowser@2.11.0: {}
+ boxen@5.1.2:
+ dependencies:
+ ansi-align: 3.0.1
+ camelcase: 6.3.0
+ chalk: 4.1.2
+ cli-boxes: 2.2.1
+ string-width: 4.2.3
+ type-fest: 0.20.2
+ widest-line: 3.1.0
+ wrap-ansi: 7.0.0
+
brace-expansion@1.1.11:
dependencies:
balanced-match: 1.0.2
@@ -28839,6 +30808,10 @@ snapshots:
brorand@1.1.0: {}
+ brotli@1.3.3:
+ dependencies:
+ base64-js: 1.5.1
+
browser-headers@0.4.1: {}
browser-image-compression@2.0.2:
@@ -28849,6 +30822,8 @@ snapshots:
dependencies:
resolve: 1.22.8
+ browser-stdout@1.3.1: {}
+
browserify-aes@1.2.0:
dependencies:
buffer-xor: 1.0.3
@@ -28932,10 +30907,14 @@ snapshots:
buffer-equal-constant-time@1.0.1: {}
+ buffer-equal@0.0.1: {}
+
buffer-from@1.1.2: {}
buffer-more-ints@1.0.0: {}
+ buffer-reverse@1.0.1: {}
+
buffer-to-arraybuffer@0.0.5: {}
buffer-xor@1.0.3: {}
@@ -28959,10 +30938,24 @@ snapshots:
dependencies:
node-gyp-build: 4.8.1
+ bufio@1.2.2: {}
+
builtin-modules@1.1.1: {}
builtin-status-codes@3.0.0: {}
+ bunyan-blackhole@1.1.1(bunyan@1.8.15):
+ dependencies:
+ bunyan: 1.8.15
+ stream-blackhole: 1.0.3
+
+ bunyan@1.8.15:
+ optionalDependencies:
+ dtrace-provider: 0.8.8
+ moment: 2.30.1
+ mv: 2.1.1
+ safe-json-stringify: 1.2.0
+
busboy@1.6.0:
dependencies:
streamsearch: 1.1.0
@@ -29035,7 +31028,7 @@ snapshots:
capnp-ts@0.7.0:
dependencies:
- debug: 4.3.7
+ debug: 4.3.7(supports-color@8.1.1)
tslib: 2.7.0
transitivePeerDependencies:
- supports-color
@@ -29046,6 +31039,12 @@ snapshots:
ccount@2.0.1: {}
+ centra@2.7.0:
+ dependencies:
+ follow-redirects: 1.15.6(debug@4.3.7)
+ transitivePeerDependencies:
+ - debug
+
chai-as-promised@7.1.1(chai@4.4.1):
dependencies:
chai: 4.4.1
@@ -29155,6 +31154,10 @@ snapshots:
optionalDependencies:
fsevents: 2.3.3
+ chokidar@4.0.1:
+ dependencies:
+ readdirp: 4.0.2
+
chownr@1.1.4: {}
chromatic@6.24.1: {}
@@ -29184,6 +31187,13 @@ snapshots:
ci-info@3.9.0: {}
+ cids@1.1.9:
+ dependencies:
+ multibase: 4.0.6
+ multicodec: 3.2.1
+ multihashes: 4.0.3
+ uint8arrays: 3.1.1
+
cipher-base@1.0.4:
dependencies:
inherits: 2.0.4
@@ -29211,6 +31221,8 @@ snapshots:
dependencies:
escape-string-regexp: 5.0.0
+ cli-boxes@2.2.1: {}
+
cli-color@2.0.4:
dependencies:
d: 1.0.2
@@ -29580,6 +31592,14 @@ snapshots:
js-yaml: 3.14.1
parse-json: 4.0.0
+ cosmiconfig@6.0.0:
+ dependencies:
+ '@types/parse-json': 4.0.2
+ import-fresh: 3.3.0
+ parse-json: 5.2.0
+ path-type: 4.0.0
+ yaml: 1.10.2
+
cosmiconfig@7.1.0:
dependencies:
'@types/parse-json': 4.0.2
@@ -29653,15 +31673,15 @@ snapshots:
crelt@1.0.6: {}
- cross-fetch@3.1.8:
+ cross-fetch@3.1.8(encoding@0.1.13):
dependencies:
- node-fetch: 2.7.0
+ node-fetch: 2.7.0(encoding@0.1.13)
transitivePeerDependencies:
- encoding
- cross-fetch@4.0.0:
+ cross-fetch@4.0.0(encoding@0.1.13):
dependencies:
- node-fetch: 2.7.0
+ node-fetch: 2.7.0(encoding@0.1.13)
transitivePeerDependencies:
- encoding
@@ -29707,6 +31727,8 @@ snapshots:
crypto-js@3.3.0: {}
+ crypto-js@4.2.0: {}
+
crypto-random-string@4.0.0:
dependencies:
type-fest: 1.4.0
@@ -29762,6 +31784,8 @@ snapshots:
dependencies:
rrweb-cssom: 0.7.1
+ csstype@2.6.21: {}
+
csstype@3.1.3: {}
cuint@0.2.2: {}
@@ -29842,9 +31866,11 @@ snapshots:
dependencies:
ms: 2.1.2
- debug@4.3.7:
+ debug@4.3.7(supports-color@8.1.1):
dependencies:
ms: 2.1.3
+ optionalDependencies:
+ supports-color: 8.1.1
decache@3.1.0:
dependencies:
@@ -29858,6 +31884,10 @@ snapshots:
decamelize@1.2.0: {}
+ decamelize@4.0.0: {}
+
+ decimal.js-light@2.5.1: {}
+
decimal.js@10.4.3: {}
decode-formdata@0.4.0: {}
@@ -30078,7 +32108,7 @@ snapshots:
dom-helpers@5.2.1:
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.0
csstype: 3.1.3
dom-serializer@0.1.1:
@@ -30149,6 +32179,8 @@ snapshots:
dotenv-expand@8.0.3: {}
+ dotenv@14.3.2: {}
+
dotenv@16.4.5: {}
dotignore@0.1.2:
@@ -30168,6 +32200,11 @@ snapshots:
drange@1.1.1: {}
+ dtrace-provider@0.8.8:
+ dependencies:
+ nan: 2.19.0
+ optional: true
+
duplexify@4.1.3:
dependencies:
end-of-stream: 1.4.4
@@ -30286,6 +32323,11 @@ snapshots:
iconv-lite: 0.6.3
whatwg-encoding: 3.1.1
+ encoding@0.1.13:
+ dependencies:
+ iconv-lite: 0.6.3
+ optional: true
+
end-of-stream@1.4.4:
dependencies:
once: 1.4.0
@@ -30293,7 +32335,7 @@ snapshots:
engine.io-client@6.5.4(bufferutil@4.0.8)(utf-8-validate@5.0.10):
dependencies:
'@socket.io/component-emitter': 3.1.2
- debug: 4.3.7
+ debug: 4.3.7(supports-color@8.1.1)
engine.io-parser: 5.2.3
ws: 8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
xmlhttprequest-ssl: 2.0.0
@@ -30319,14 +32361,18 @@ snapshots:
graceful-fs: 4.2.11
tapable: 2.2.1
+ enquirer@2.4.1:
+ dependencies:
+ ansi-colors: 4.1.3
+ strip-ansi: 6.0.1
+
entities@1.1.2: {}
entities@2.2.0: {}
entities@4.5.0: {}
- env-paths@2.2.1:
- optional: true
+ env-paths@2.2.1: {}
envinfo@7.13.0: {}
@@ -30806,6 +32852,8 @@ snapshots:
npm-run-all: 4.1.5
semver: 7.6.0
+ esm@3.2.25: {}
+
esniff@2.0.1:
dependencies:
d: 1.0.2
@@ -30870,8 +32918,8 @@ snapshots:
eth-lib@0.2.8:
dependencies:
- bn.js: 4.12.0
- elliptic: 6.5.7
+ bn.js: 4.12.1
+ elliptic: 6.6.1
xhr-request-promise: 0.1.3
eth-query@2.1.2:
@@ -31151,6 +33199,8 @@ snapshots:
signal-exit: 4.1.0
strip-final-newline: 3.0.0
+ exif-parser@0.1.12: {}
+
exit-hook@2.2.1: {}
expand-template@2.0.3: {}
@@ -31296,6 +33346,8 @@ snapshots:
iconv-lite: 0.4.24
tmp: 0.0.33
+ extract-files@9.0.0: {}
+
extsprintf@1.3.0: {}
eyes@0.1.8: {}
@@ -31359,17 +33411,17 @@ snapshots:
dependencies:
bser: 2.1.1
- fbemitter@3.0.0:
+ fbemitter@3.0.0(encoding@0.1.13):
dependencies:
- fbjs: 3.0.5
+ fbjs: 3.0.5(encoding@0.1.13)
transitivePeerDependencies:
- encoding
fbjs-css-vars@1.0.2: {}
- fbjs@3.0.5:
+ fbjs@3.0.5(encoding@0.1.13):
dependencies:
- cross-fetch: 3.1.8
+ cross-fetch: 3.1.8(encoding@0.1.13)
fbjs-css-vars: 1.0.2
loose-envify: 1.4.0
object-assign: 4.1.1
@@ -31379,6 +33431,10 @@ snapshots:
transitivePeerDependencies:
- encoding
+ fdir@6.4.2(picomatch@4.0.2):
+ optionalDependencies:
+ picomatch: 4.0.2
+
feed@4.2.2:
dependencies:
xml-js: 1.6.11
@@ -31408,6 +33464,12 @@ snapshots:
dependencies:
tslib: 2.7.0
+ file-type@16.5.4:
+ dependencies:
+ readable-web-to-node-stream: 3.0.2
+ strtok3: 6.3.0
+ token-types: 4.2.1
+
file-uri-to-path@1.0.0: {}
filelist@1.0.4:
@@ -31531,21 +33593,25 @@ snapshots:
keyv: 4.5.4
rimraf: 3.0.2
+ flat@5.0.2: {}
+
flatted@3.3.1: {}
flow-enums-runtime@0.0.6: {}
flow-parser@0.245.0: {}
- flux@4.0.4(react@18.3.1):
+ flux@4.0.4(encoding@0.1.13)(react@18.3.1):
dependencies:
- fbemitter: 3.0.0
- fbjs: 3.0.5
+ fbemitter: 3.0.0(encoding@0.1.13)
+ fbjs: 3.0.5(encoding@0.1.13)
react: 18.3.1
transitivePeerDependencies:
- encoding
- follow-redirects@1.15.6: {}
+ follow-redirects@1.15.6(debug@4.3.7):
+ optionalDependencies:
+ debug: 4.3.7(supports-color@8.1.1)
for-each@0.3.3:
dependencies:
@@ -31619,10 +33685,12 @@ snapshots:
forwarded@0.2.0: {}
- frames.js@0.19.4(@cloudflare/workers-types@4.20241022.0)(@lens-protocol/client@2.3.1(@lens-protocol/metadata@1.2.0(zod@3.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react@18.3.1)(utf-8-validate@5.0.10))(@types/express@4.17.21)(@xmtp/frames-validator@0.6.2(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6))(bufferutil@4.0.8)(next@14.2.16(@babel/core@7.25.7)(@opentelemetry/api@1.9.0)(@playwright/test@1.44.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6):
+ fp-ts@1.19.3: {}
+
+ frames.js@0.19.4(@cloudflare/workers-types@4.20241022.0)(@lens-protocol/client@2.3.1(@lens-protocol/metadata@1.2.0(zod@3.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react@18.3.1)(utf-8-validate@5.0.10))(@types/express@4.17.21)(@xmtp/frames-validator@0.6.2(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6))(bufferutil@4.0.8)(next@14.2.16(@babel/core@7.25.7)(@opentelemetry/api@1.9.0)(@playwright/test@1.44.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(sass@1.77.0))(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6):
dependencies:
'@cloudflare/workers-types': 4.20241022.0
- '@lens-protocol/client': 2.3.1(@lens-protocol/metadata@1.2.0(zod@3.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react@18.3.1)(utf-8-validate@5.0.10)
+ '@lens-protocol/client': 2.3.1(@lens-protocol/metadata@1.2.0(zod@3.23.6))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react@18.3.1)(utf-8-validate@5.0.10)
'@types/express': 4.17.21
'@vercel/og': 0.6.3
'@xmtp/frames-validator': 0.6.2(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
@@ -31763,7 +33831,7 @@ snapshots:
dependencies:
basic-ftp: 5.0.5
data-uri-to-buffer: 6.0.2
- debug: 4.3.7
+ debug: 4.3.7(supports-color@8.1.1)
fs-extra: 11.2.0
transitivePeerDependencies:
- supports-color
@@ -31772,6 +33840,11 @@ snapshots:
dependencies:
assert-plus: 1.0.0
+ gifwrap@0.9.4:
+ dependencies:
+ image-q: 4.0.0
+ omggif: 1.0.10
+
github-from-package@0.0.0: {}
glob-parent@5.1.2:
@@ -31792,6 +33865,15 @@ snapshots:
minipass: 7.1.0
path-scurry: 1.10.2
+ glob@6.0.4:
+ dependencies:
+ inflight: 1.0.6
+ inherits: 2.0.4
+ minimatch: 3.1.2
+ once: 1.4.0
+ path-is-absolute: 1.0.1
+ optional: true
+
glob@7.2.3:
dependencies:
fs.realpath: 1.0.0
@@ -31801,6 +33883,14 @@ snapshots:
once: 1.4.0
path-is-absolute: 1.0.1
+ glob@8.1.0:
+ dependencies:
+ fs.realpath: 1.0.0
+ inflight: 1.0.6
+ inherits: 2.0.4
+ minimatch: 5.1.6
+ once: 1.4.0
+
glob@9.3.5:
dependencies:
fs.realpath: 1.0.0
@@ -31871,10 +33961,19 @@ snapshots:
graphemer@1.4.0: {}
- graphql-request@6.1.0(graphql@16.9.0):
+ graphql-request@3.7.0(encoding@0.1.13)(graphql@15.9.0):
+ dependencies:
+ cross-fetch: 3.1.8(encoding@0.1.13)
+ extract-files: 9.0.0
+ form-data: 3.0.1
+ graphql: 15.9.0
+ transitivePeerDependencies:
+ - encoding
+
+ graphql-request@6.1.0(encoding@0.1.13)(graphql@16.9.0):
dependencies:
'@graphql-typed-document-node/core': 3.2.0(graphql@16.9.0)
- cross-fetch: 3.1.8
+ cross-fetch: 3.1.8(encoding@0.1.13)
graphql: 16.9.0
transitivePeerDependencies:
- encoding
@@ -31891,6 +33990,8 @@ snapshots:
graphql: 16.9.0
tslib: 2.8.1
+ graphql@15.9.0: {}
+
graphql@16.9.0: {}
h3@1.11.1:
@@ -31917,6 +34018,66 @@ snapshots:
hard-rejection@2.1.0: {}
+ hardhat-watcher@2.5.0(hardhat@2.22.17(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.12))(@types/node@20.17.6)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)):
+ dependencies:
+ chokidar: 3.6.0
+ hardhat: 2.22.17(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.12))(@types/node@20.17.6)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10)
+
+ hardhat@2.22.17(bufferutil@4.0.8)(ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.12))(@types/node@20.17.6)(typescript@5.4.5))(typescript@5.4.5)(utf-8-validate@5.0.10):
+ dependencies:
+ '@ethersproject/abi': 5.7.0
+ '@metamask/eth-sig-util': 4.0.1
+ '@nomicfoundation/edr': 0.6.5
+ '@nomicfoundation/ethereumjs-common': 4.0.4
+ '@nomicfoundation/ethereumjs-tx': 5.0.4
+ '@nomicfoundation/ethereumjs-util': 9.0.4
+ '@nomicfoundation/solidity-analyzer': 0.1.2
+ '@sentry/node': 5.30.0
+ '@types/bn.js': 5.1.5
+ '@types/lru-cache': 5.1.1
+ adm-zip: 0.4.16
+ aggregate-error: 3.1.0
+ ansi-escapes: 4.3.2
+ boxen: 5.1.2
+ chokidar: 4.0.1
+ ci-info: 2.0.0
+ debug: 4.3.7(supports-color@8.1.1)
+ enquirer: 2.4.1
+ env-paths: 2.2.1
+ ethereum-cryptography: 1.2.0
+ ethereumjs-abi: 0.6.8
+ find-up: 5.0.0
+ fp-ts: 1.19.3
+ fs-extra: 7.0.1
+ immutable: 4.3.5
+ io-ts: 1.10.4
+ json-stream-stringify: 3.1.6
+ keccak: 3.0.4
+ lodash: 4.17.21
+ mnemonist: 0.38.5
+ mocha: 10.8.2
+ p-map: 4.0.0
+ picocolors: 1.1.1
+ raw-body: 2.5.2
+ resolve: 1.22.8
+ semver: 6.3.1
+ solc: 0.8.26(debug@4.3.7)
+ source-map-support: 0.5.21
+ stacktrace-parser: 0.1.10
+ tinyglobby: 0.2.10
+ tsort: 0.0.1
+ undici: 5.28.4
+ uuid: 8.3.2
+ ws: 7.5.10(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ optionalDependencies:
+ ts-node: 10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.12))(@types/node@20.17.6)(typescript@5.4.5)
+ typescript: 5.4.5
+ transitivePeerDependencies:
+ - bufferutil
+ - c-kzg
+ - supports-color
+ - utf-8-validate
+
has-bigints@1.0.2: {}
has-dynamic-import@2.1.0:
@@ -32097,14 +34258,14 @@ snapshots:
http-proxy-agent@7.0.2:
dependencies:
agent-base: 7.1.1
- debug: 4.3.7
+ debug: 4.3.7(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
http-proxy@1.18.1:
dependencies:
eventemitter3: 4.0.7
- follow-redirects: 1.15.6
+ follow-redirects: 1.15.6(debug@4.3.7)
requires-port: 1.0.0
transitivePeerDependencies:
- debug
@@ -32135,7 +34296,7 @@ snapshots:
https-proxy-agent@7.0.5:
dependencies:
agent-base: 7.1.1
- debug: 4.3.7
+ debug: 4.3.7(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
@@ -32153,15 +34314,15 @@ snapshots:
i18next-browser-languagedetector@7.1.0:
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.0
i18next@22.5.1:
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.0
i18next@23.11.5:
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.0
iconv-lite@0.4.24:
dependencies:
@@ -32183,12 +34344,18 @@ snapshots:
ignore@5.3.1: {}
+ image-q@4.0.0:
+ dependencies:
+ '@types/node': 16.9.1
+
image-size@1.1.1:
dependencies:
queue: 6.0.2
immediate@3.0.6: {}
+ immer@9.0.21: {}
+
immutable@4.3.5: {}
import-fresh@2.0.0:
@@ -32276,6 +34443,10 @@ snapshots:
dependencies:
loose-envify: 1.4.0
+ io-ts@1.10.4:
+ dependencies:
+ fp-ts: 1.19.3
+
ip-address@9.0.5:
dependencies:
jsbn: 1.1.0
@@ -32533,15 +34704,17 @@ snapshots:
isexe@2.0.0: {}
+ isnumber@1.0.0: {}
+
iso-url@1.2.1: {}
isobject@3.0.1: {}
isomorphic-timers-promises@1.0.1: {}
- isomorphic-unfetch@3.1.0:
+ isomorphic-unfetch@3.1.0(encoding@0.1.13):
dependencies:
- node-fetch: 2.7.0
+ node-fetch: 2.7.0(encoding@0.1.13)
unfetch: 4.2.0
transitivePeerDependencies:
- encoding
@@ -32895,8 +35068,19 @@ snapshots:
jose@5.3.0: {}
+ jotai@1.4.0(@babel/core@7.25.7)(@babel/template@7.25.9)(immer@9.0.21)(react@18.3.1)(valtio@1.11.2(@types/react@18.3.3)(react@18.3.1)):
+ dependencies:
+ react: 18.3.1
+ optionalDependencies:
+ '@babel/core': 7.25.7
+ '@babel/template': 7.25.9
+ immer: 9.0.21
+ valtio: 1.11.2(@types/react@18.3.3)(react@18.3.1)
+
joycon@3.1.1: {}
+ jpeg-js@0.4.4: {}
+
js-beautify@1.15.1:
dependencies:
config-chain: 1.1.13
@@ -32922,6 +35106,10 @@ snapshots:
dependencies:
argparse: 2.0.1
+ jsbi@3.2.5: {}
+
+ jsbi@4.3.0: {}
+
jsbn@0.1.1: {}
jsbn@1.1.0: {}
@@ -33094,6 +35282,8 @@ snapshots:
jsonify: 0.0.1
object-keys: 1.1.1
+ json-stream-stringify@3.1.6: {}
+
json-stringify-safe@5.0.1: {}
json-to-graphql-query@2.2.5: {}
@@ -33152,8 +35342,6 @@ snapshots:
junk@4.0.1: {}
- just-extend@6.2.0: {}
-
jwa@1.4.1:
dependencies:
buffer-equal-constant-time: 1.0.1
@@ -33327,6 +35515,19 @@ snapshots:
lit-element: 3.3.3
lit-html: 2.8.0
+ load-bmfont@1.4.2:
+ dependencies:
+ buffer-equal: 0.0.1
+ mime: 1.6.0
+ parse-bmfont-ascii: 1.0.6
+ parse-bmfont-binary: 1.0.6
+ parse-bmfont-xml: 1.1.6
+ phin: 3.7.1
+ xhr: 2.6.0
+ xtend: 4.0.2
+ transitivePeerDependencies:
+ - debug
+
load-json-file@4.0.0:
dependencies:
graceful-fs: 4.2.11
@@ -33452,6 +35653,8 @@ snapshots:
dependencies:
es5-ext: 0.10.64
+ lru_map@0.3.3: {}
+
lz-string@1.5.0: {}
magic-bytes.js@1.10.0: {}
@@ -33494,6 +35697,8 @@ snapshots:
make-error@1.3.6: {}
+ make-plural@7.4.0: {}
+
makeerror@1.0.12:
dependencies:
tmpl: 1.0.5
@@ -33720,6 +35925,14 @@ snapshots:
merge2@1.4.1: {}
+ merkletreejs@0.3.11:
+ dependencies:
+ bignumber.js: 9.1.2
+ buffer-reverse: 1.0.1
+ crypto-js: 4.2.0
+ treeify: 1.1.0
+ web3-utils: 1.5.2
+
methods@1.1.2: {}
metro-babel-transformer@0.80.10:
@@ -33763,13 +35976,13 @@ snapshots:
metro-core: 0.80.12
optional: true
- metro-config@0.80.10(bufferutil@4.0.8)(utf-8-validate@5.0.10):
+ metro-config@0.80.10(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10):
dependencies:
connect: 3.7.0
cosmiconfig: 5.2.1
flow-enums-runtime: 0.0.6
jest-validate: 29.7.0
- metro: 0.80.10(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ metro: 0.80.10(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
metro-cache: 0.80.10
metro-core: 0.80.10
metro-runtime: 0.80.10
@@ -33867,7 +36080,7 @@ snapshots:
metro-runtime@0.80.10:
dependencies:
- '@babel/runtime': 7.25.7
+ '@babel/runtime': 7.26.0
flow-enums-runtime: 0.0.6
metro-runtime@0.80.12:
@@ -33935,7 +36148,7 @@ snapshots:
'@babel/core': 7.24.5
'@babel/generator': 7.25.6
'@babel/template': 7.25.0
- '@babel/traverse': 7.25.6
+ '@babel/traverse': 7.25.9
flow-enums-runtime: 0.0.6
nullthrows: 1.1.1
transitivePeerDependencies:
@@ -33953,14 +36166,14 @@ snapshots:
- supports-color
optional: true
- metro-transform-worker@0.80.10(bufferutil@4.0.8)(utf-8-validate@5.0.10):
+ metro-transform-worker@0.80.10(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10):
dependencies:
'@babel/core': 7.24.5
'@babel/generator': 7.25.6
'@babel/parser': 7.25.3
- '@babel/types': 7.25.2
+ '@babel/types': 7.26.0
flow-enums-runtime: 0.0.6
- metro: 0.80.10(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ metro: 0.80.10(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
metro-babel-transformer: 0.80.10
metro-cache: 0.80.10
metro-cache-key: 0.80.10
@@ -33995,7 +36208,7 @@ snapshots:
- utf-8-validate
optional: true
- metro@0.80.10(bufferutil@4.0.8)(utf-8-validate@5.0.10):
+ metro@0.80.10(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10):
dependencies:
'@babel/code-frame': 7.26.2
'@babel/core': 7.24.5
@@ -34022,7 +36235,7 @@ snapshots:
metro-babel-transformer: 0.80.10
metro-cache: 0.80.10
metro-cache-key: 0.80.10
- metro-config: 0.80.10(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ metro-config: 0.80.10(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
metro-core: 0.80.10
metro-file-map: 0.80.10
metro-resolver: 0.80.10
@@ -34030,9 +36243,9 @@ snapshots:
metro-source-map: 0.80.10
metro-symbolicate: 0.80.10
metro-transform-plugins: 0.80.10
- metro-transform-worker: 0.80.10(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ metro-transform-worker: 0.80.10(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
mime-types: 2.1.35
- node-fetch: 2.7.0
+ node-fetch: 2.7.0(encoding@0.1.13)
nullthrows: 1.1.1
serialize-error: 2.1.0
source-map: 0.5.7
@@ -34331,7 +36544,7 @@ snapshots:
micromark@4.0.0:
dependencies:
'@types/debug': 4.1.12
- debug: 4.3.7
+ debug: 4.3.7(supports-color@8.1.1)
decode-named-character-reference: 1.0.2
devlop: 1.1.0
micromark-core-commonmark: 2.0.1
@@ -34430,6 +36643,10 @@ snapshots:
dependencies:
brace-expansion: 2.0.1
+ minimatch@5.1.6:
+ dependencies:
+ brace-expansion: 2.0.1
+
minimatch@8.0.4:
dependencies:
brace-expansion: 2.0.1
@@ -34493,8 +36710,35 @@ snapshots:
pkg-types: 1.1.0
ufo: 1.5.4
+ mnemonist@0.38.5:
+ dependencies:
+ obliterator: 2.0.4
+
mobile-detect@1.4.5: {}
+ mocha@10.8.2:
+ dependencies:
+ ansi-colors: 4.1.3
+ browser-stdout: 1.3.1
+ chokidar: 3.6.0
+ debug: 4.3.7(supports-color@8.1.1)
+ diff: 5.2.0
+ escape-string-regexp: 4.0.0
+ find-up: 5.0.0
+ glob: 8.1.0
+ he: 1.2.0
+ js-yaml: 4.1.0
+ log-symbols: 4.1.0
+ minimatch: 5.1.6
+ ms: 2.1.3
+ serialize-javascript: 6.0.2
+ strip-json-comments: 3.1.1
+ supports-color: 8.1.1
+ workerpool: 6.5.1
+ yargs: 16.2.0
+ yargs-parser: 20.2.9
+ yargs-unparser: 2.0.0
+
mock-express-request@0.2.2:
dependencies:
accepts: 1.3.8
@@ -34555,6 +36799,11 @@ snapshots:
mrmime@2.0.0: {}
+ ms.macro@2.0.0:
+ dependencies:
+ babel-plugin-macros: 2.8.0
+ ms: 2.1.3
+
ms@2.0.0: {}
ms@2.1.2: {}
@@ -34563,18 +36812,40 @@ snapshots:
ms@3.0.0-canary.1: {}
+ multibase@4.0.6:
+ dependencies:
+ '@multiformats/base-x': 4.0.1
+
+ multicodec@3.2.1:
+ dependencies:
+ uint8arrays: 3.1.1
+ varint: 6.0.0
+
multiformats@13.1.0: {}
multiformats@13.3.0: {}
multiformats@9.9.0: {}
+ multihashes@4.0.3:
+ dependencies:
+ multibase: 4.0.6
+ uint8arrays: 3.1.1
+ varint: 5.0.2
+
murmurhash3js-revisited@3.0.0: {}
mustache@4.2.0: {}
mute-stream@0.0.8: {}
+ mv@2.1.1:
+ dependencies:
+ mkdirp: 0.5.6
+ ncp: 2.0.0
+ rimraf: 2.4.5
+ optional: true
+
mylas@2.1.13: {}
nan@2.19.0: {}
@@ -34589,6 +36860,9 @@ snapshots:
natural-compare@1.4.0: {}
+ ncp@2.0.0:
+ optional: true
+
ndjson@2.0.0:
dependencies:
json-stringify-safe: 5.0.1
@@ -34640,14 +36914,6 @@ snapshots:
nice-try@1.0.5: {}
- nise@5.1.9:
- dependencies:
- '@sinonjs/commons': 3.0.1
- '@sinonjs/fake-timers': 11.2.2
- '@sinonjs/text-encoding': 0.7.2
- just-extend: 6.2.0
- path-to-regexp: 6.2.2
-
no-case@3.0.4:
dependencies:
lower-case: 2.0.2
@@ -34657,7 +36923,7 @@ snapshots:
nock@13.5.4:
dependencies:
- debug: 4.3.7
+ debug: 4.3.7(supports-color@8.1.1)
json-stringify-safe: 5.0.1
propagate: 2.0.1
transitivePeerDependencies:
@@ -34675,6 +36941,10 @@ snapshots:
node-addon-api@7.1.0: {}
+ node-cache@5.1.2:
+ dependencies:
+ clone: 2.1.2
+
node-dir@0.1.17:
dependencies:
minimatch: 3.1.2
@@ -34683,9 +36953,11 @@ snapshots:
node-fetch-native@1.6.4: {}
- node-fetch@2.7.0:
+ node-fetch@2.7.0(encoding@0.1.13):
dependencies:
whatwg-url: 5.0.0
+ optionalDependencies:
+ encoding: 0.1.13
node-fetch@3.3.2:
dependencies:
@@ -34771,6 +37043,18 @@ snapshots:
node-stream-zip@1.15.0: {}
+ node-vibrant@3.2.1-alpha.1:
+ dependencies:
+ '@types/node': 10.17.60
+ '@vibrant/core': 3.2.1-alpha.1
+ '@vibrant/generator-default': 3.2.1-alpha.1
+ '@vibrant/image-browser': 3.2.1-alpha.1
+ '@vibrant/image-node': 3.2.1-alpha.1
+ '@vibrant/quantizer-mmcq': 3.2.1-alpha.1
+ url: 0.11.3
+ transitivePeerDependencies:
+ - debug
+
nopt@7.2.1:
dependencies:
abbrev: 2.0.0
@@ -34920,6 +37204,8 @@ snapshots:
define-properties: 1.2.1
es-object-atoms: 1.0.0
+ obliterator@2.0.4: {}
+
oboe@2.1.5:
dependencies:
http-https: 1.0.0
@@ -34949,6 +37235,8 @@ snapshots:
ohash@1.1.4: {}
+ omggif@1.0.10: {}
+
on-exit-leak-free@0.2.0: {}
on-exit-leak-free@2.1.2: {}
@@ -34990,7 +37278,7 @@ snapshots:
is-docker: 2.2.1
is-wsl: 2.2.0
- openai@4.42.0:
+ openai@4.42.0(encoding@0.1.13):
dependencies:
'@types/node': 18.19.32
'@types/node-fetch': 2.6.11
@@ -34998,7 +37286,7 @@ snapshots:
agentkeepalive: 4.5.0
form-data-encoder: 1.7.2
formdata-node: 4.4.1
- node-fetch: 2.7.0
+ node-fetch: 2.7.0(encoding@0.1.13)
web-streams-polyfill: 3.3.3
transitivePeerDependencies:
- encoding
@@ -35121,6 +37409,10 @@ snapshots:
dependencies:
aggregate-error: 3.1.0
+ p-map@4.0.0:
+ dependencies:
+ aggregate-error: 3.1.0
+
p-map@5.5.0:
dependencies:
aggregate-error: 4.0.1
@@ -35152,7 +37444,7 @@ snapshots:
dependencies:
'@tootallnate/quickjs-emscripten': 0.23.0
agent-base: 7.1.1
- debug: 4.3.7
+ debug: 4.3.7(supports-color@8.1.1)
get-uri: 6.0.3
http-proxy-agent: 7.0.2
https-proxy-agent: 7.0.5
@@ -35199,6 +37491,15 @@ snapshots:
pbkdf2: 3.1.2
safe-buffer: 5.2.1
+ parse-bmfont-ascii@1.0.6: {}
+
+ parse-bmfont-binary@1.0.6: {}
+
+ parse-bmfont-xml@1.1.6:
+ dependencies:
+ xml-parse-from-string: 1.0.1
+ xml2js: 0.5.0
+
parse-cache-control@1.0.1: {}
parse-css-color@0.2.1:
@@ -35270,9 +37571,9 @@ snapshots:
dependencies:
passport-strategy: 1.0.0
- passport-magic@1.0.0:
+ passport-magic@1.0.0(encoding@0.1.13):
dependencies:
- '@magic-sdk/admin': 0.1.0-beta.10
+ '@magic-sdk/admin': 0.1.0-beta.10(encoding@0.1.13)
express: 4.19.2
passport: 0.4.1
passport-local: 1.0.0
@@ -35321,8 +37622,6 @@ snapshots:
path-to-regexp@3.3.0: {}
- path-to-regexp@6.2.2: {}
-
path-to-regexp@6.3.0: {}
path-type@3.0.0:
@@ -35347,6 +37646,8 @@ snapshots:
safe-buffer: 5.2.1
sha.js: 2.4.11
+ peek-readable@4.1.0: {}
+
performance-now@2.1.0: {}
pg-cloudflare@1.1.1:
@@ -35418,6 +37719,14 @@ snapshots:
dependencies:
split2: 4.2.0
+ phin@2.9.3: {}
+
+ phin@3.7.1:
+ dependencies:
+ centra: 2.7.0
+ transitivePeerDependencies:
+ - debug
+
phoenix@1.6.16: {}
picocolors@1.0.0: {}
@@ -35535,6 +37844,10 @@ snapshots:
pirates@4.0.6: {}
+ pixelmatch@4.0.2:
+ dependencies:
+ pngjs: 3.4.0
+
pkg-dir@3.0.0:
dependencies:
find-up: 3.0.0
@@ -35600,8 +37913,14 @@ snapshots:
dependencies:
queue-lit: 1.5.2
+ pngjs@3.4.0: {}
+
pngjs@5.0.0: {}
+ polished@3.7.2:
+ dependencies:
+ '@babel/runtime': 7.26.0
+
polka@0.5.2:
dependencies:
'@polka/url': 0.5.0
@@ -35609,6 +37928,10 @@ snapshots:
pony-cause@2.1.11: {}
+ popper-max-size-modifier@0.2.0(@popperjs/core@2.11.8):
+ dependencies:
+ '@popperjs/core': 2.11.8
+
possible-typed-array-names@1.0.0: {}
postcss-media-query-parser@0.2.3: {}
@@ -35825,7 +38148,7 @@ snapshots:
proxy-agent@6.4.0:
dependencies:
agent-base: 7.1.1
- debug: 4.3.7
+ debug: 4.3.7(supports-color@8.1.1)
http-proxy-agent: 7.0.2
https-proxy-agent: 7.0.5
lru-cache: 7.18.3
@@ -36054,7 +38377,7 @@ snapshots:
lodash.flow: 3.5.0
pure-color: 1.3.0
- react-beautiful-dnd@13.1.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1):
+ react-beautiful-dnd@13.1.1(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1):
dependencies:
'@babel/runtime': 7.24.5
css-box-model: 1.2.1
@@ -36062,7 +38385,7 @@ snapshots:
raf-schd: 4.0.3
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- react-redux: 7.2.9(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)
+ react-redux: 7.2.9(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)
redux: 4.2.1
use-memo-one: 1.1.3(react@18.3.1)
transitivePeerDependencies:
@@ -36123,6 +38446,11 @@ snapshots:
react-fast-compare@3.2.2: {}
+ react-feather@2.0.10(react@18.3.1):
+ dependencies:
+ prop-types: 15.8.1
+ react: 18.3.1
+
react-helmet-async@2.0.5(react@18.3.1):
dependencies:
invariant: 2.2.4
@@ -36134,7 +38462,7 @@ snapshots:
dependencies:
react: 18.3.1
- react-i18next@13.5.0(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1):
+ react-i18next@13.5.0(i18next@23.11.5)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1):
dependencies:
'@babel/runtime': 7.26.0
html-parse-stringify: 3.0.1
@@ -36142,7 +38470,7 @@ snapshots:
react: 18.3.1
optionalDependencies:
react-dom: 18.3.1(react@18.3.1)
- react-native: 0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10)
+ react-native: 0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
react-intersection-observer@9.10.2(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
@@ -36162,9 +38490,9 @@ snapshots:
prop-types: 15.8.1
react: 18.3.1
- react-json-view@1.21.3(@types/react@18.3.3)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ react-json-view@1.21.3(@types/react@18.3.3)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- flux: 4.0.4(react@18.3.1)
+ flux: 4.0.4(encoding@0.1.13)(react@18.3.1)
react: 18.3.1
react-base16-styling: 0.6.0
react-dom: 18.3.1(react@18.3.1)
@@ -36184,37 +38512,37 @@ snapshots:
dependencies:
react: 18.3.1
- react-native-get-random-values@1.11.0(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10)):
+ react-native-get-random-values@1.11.0(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)):
dependencies:
fast-base64-decode: 1.0.0
- react-native: 0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10)
+ react-native: 0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
- react-native-quick-base64@2.1.2(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1):
+ react-native-quick-base64@2.1.2(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1):
dependencies:
base64-js: 1.5.1
react: 18.3.1
- react-native: 0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10)
+ react-native: 0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
- react-native-webview@11.26.1(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1):
+ react-native-webview@11.26.1(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1):
dependencies:
escape-string-regexp: 2.0.0
invariant: 2.2.4
react: 18.3.1
- react-native: 0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10)
+ react-native: 0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10)
- react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10):
+ react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10):
dependencies:
'@jest/create-cache-key-function': 29.7.0
- '@react-native-community/cli': 13.6.4(bufferutil@4.0.8)(utf-8-validate@5.0.10)
- '@react-native-community/cli-platform-android': 13.6.4
- '@react-native-community/cli-platform-ios': 13.6.4
+ '@react-native-community/cli': 13.6.4(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ '@react-native-community/cli-platform-android': 13.6.4(encoding@0.1.13)
+ '@react-native-community/cli-platform-ios': 13.6.4(encoding@0.1.13)
'@react-native/assets-registry': 0.74.81
'@react-native/codegen': 0.74.81(@babel/preset-env@7.25.3(@babel/core@7.24.5))
- '@react-native/community-cli-plugin': 0.74.81(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@react-native/community-cli-plugin': 0.74.81(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@react-native/gradle-plugin': 0.74.81
'@react-native/js-polyfills': 0.74.81
'@react-native/normalize-colors': 0.74.81
- '@react-native/virtualized-lists': 0.74.81(@types/react@18.3.3)(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ '@react-native/virtualized-lists': 0.74.81(@types/react@18.3.3)(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
abort-controller: 3.0.0
anser: 1.4.10
ansi-regex: 5.0.1
@@ -36252,7 +38580,7 @@ snapshots:
- supports-color
- utf-8-validate
- react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10):
+ react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10):
dependencies:
'@jest/create-cache-key-function': 29.7.0
'@react-native-community/cli': 14.0.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)
@@ -36260,11 +38588,11 @@ snapshots:
'@react-native-community/cli-platform-ios': 14.0.0
'@react-native/assets-registry': 0.75.1
'@react-native/codegen': 0.75.1(@babel/preset-env@7.25.3(@babel/core@7.25.7))
- '@react-native/community-cli-plugin': 0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ '@react-native/community-cli-plugin': 0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@react-native/gradle-plugin': 0.75.1
'@react-native/js-polyfills': 0.75.1
'@react-native/normalize-colors': 0.75.1
- '@react-native/virtualized-lists': 0.75.1(@types/react@18.3.3)(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)
+ '@react-native/virtualized-lists': 0.75.1(@types/react@18.3.3)(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1)
abort-controller: 3.0.0
anser: 1.4.10
ansi-regex: 5.0.1
@@ -36329,7 +38657,7 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1):
+ react-redux@7.2.9(react-dom@18.3.1(react@18.3.1))(react-native@0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10))(react@18.3.1):
dependencies:
'@babel/runtime': 7.25.7
'@types/react-redux': 7.1.33
@@ -36340,7 +38668,16 @@ snapshots:
react-is: 17.0.2
optionalDependencies:
react-dom: 18.3.1(react@18.3.1)
- react-native: 0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)
+ react-native: 0.75.1(@babel/core@7.25.7)(@babel/preset-env@7.25.3(@babel/core@7.25.7))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(typescript@5.4.5)(utf-8-validate@5.0.10)
+
+ react-redux@9.1.2(@types/react@18.3.3)(react@18.3.1)(redux@4.2.1):
+ dependencies:
+ '@types/use-sync-external-store': 0.0.3
+ react: 18.3.1
+ use-sync-external-store: 1.2.2(react@18.3.1)
+ optionalDependencies:
+ '@types/react': 18.3.3
+ redux: 4.2.1
react-refresh@0.14.2: {}
@@ -36441,11 +38778,23 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ react-virtualized-auto-sizer@1.0.24(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ dependencies:
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+
react-virtuoso@4.7.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
+ react-window@1.8.10(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ dependencies:
+ '@babel/runtime': 7.26.0
+ memoize-one: 5.2.1
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+
react@18.3.1:
dependencies:
loose-envify: 1.4.0
@@ -36500,10 +38849,16 @@ snapshots:
process: 0.11.10
string_decoder: 1.3.0
+ readable-web-to-node-stream@3.0.2:
+ dependencies:
+ readable-stream: 3.6.2
+
readdirp@3.6.0:
dependencies:
picomatch: 2.3.1
+ readdirp@4.0.2: {}
+
readline-sync@1.4.10: {}
readline@1.3.0: {}
@@ -36514,6 +38869,13 @@ snapshots:
real-require@0.2.0: {}
+ rebass@4.0.7(react@18.3.1):
+ dependencies:
+ react: 18.3.1
+ reflexbox: 4.0.6(react@18.3.1)
+ transitivePeerDependencies:
+ - supports-color
+
recast@0.21.5:
dependencies:
ast-types: 0.15.2
@@ -36543,6 +38905,10 @@ snapshots:
'@redis/search': 1.0.6(@redis/client@1.2.0)
'@redis/time-series': 1.0.3(@redis/client@1.2.0)
+ redux-thunk@2.4.2(redux@4.2.1):
+ dependencies:
+ redux: 4.2.1
+
redux@4.2.1:
dependencies:
'@babel/runtime': 7.25.7
@@ -36559,6 +38925,17 @@ snapshots:
globalthis: 1.0.4
which-builtin-type: 1.1.3
+ reflexbox@4.0.6(react@18.3.1):
+ dependencies:
+ '@emotion/core': 10.3.1(react@18.3.1)
+ '@emotion/styled': 10.3.0(@emotion/core@10.3.1(react@18.3.1))(react@18.3.1)
+ '@styled-system/css': 5.1.5
+ '@styled-system/should-forward-prop': 5.1.5
+ react: 18.3.1
+ styled-system: 5.1.5
+ transitivePeerDependencies:
+ - supports-color
+
regenerate-unicode-properties@10.1.1:
dependencies:
regenerate: 1.4.2
@@ -36628,6 +39005,10 @@ snapshots:
relateurl@0.2.7: {}
+ relative-luminance@2.0.1:
+ dependencies:
+ esm: 3.2.25
+
release-zalgo@1.0.0:
dependencies:
es6-error: 4.1.1
@@ -36671,6 +39052,10 @@ snapshots:
requires-port@1.0.0: {}
+ reselect@4.1.8: {}
+
+ resize-observer-polyfill@1.5.1: {}
+
resolve-from@3.0.0: {}
resolve-from@4.0.0: {}
@@ -36707,6 +39092,11 @@ snapshots:
rfdc@1.3.1: {}
+ rimraf@2.4.5:
+ dependencies:
+ glob: 6.0.4
+ optional: true
+
rimraf@2.6.3:
dependencies:
glob: 7.2.3
@@ -36867,6 +39257,9 @@ snapshots:
dependencies:
rust-result: 1.0.0
+ safe-json-stringify@1.2.0:
+ optional: true
+
safe-regex-test@1.0.3:
dependencies:
call-bind: 1.0.7
@@ -37031,6 +39424,10 @@ snapshots:
serialize-error@2.1.0: {}
+ serialize-javascript@6.0.2:
+ dependencies:
+ randombytes: 2.1.0
+
serve-static@1.15.0:
dependencies:
encodeurl: 1.0.2
@@ -37157,15 +39554,6 @@ snapshots:
dependencies:
is-arrayish: 0.3.2
- sinon@17.0.2:
- dependencies:
- '@sinonjs/commons': 3.0.1
- '@sinonjs/fake-timers': 11.2.2
- '@sinonjs/samsam': 8.0.0
- diff: 5.2.0
- nise: 5.1.9
- supports-color: 7.2.0
-
sirv@2.0.4:
dependencies:
'@polka/url': 1.0.0-next.25
@@ -37225,7 +39613,7 @@ snapshots:
socket.io-client@4.7.5(bufferutil@4.0.8)(utf-8-validate@5.0.10):
dependencies:
'@socket.io/component-emitter': 3.1.2
- debug: 4.3.7
+ debug: 4.3.7(supports-color@8.1.1)
engine.io-client: 6.5.4(bufferutil@4.0.8)(utf-8-validate@5.0.10)
socket.io-parser: 4.2.4
transitivePeerDependencies:
@@ -37236,14 +39624,14 @@ snapshots:
socket.io-parser@4.2.4:
dependencies:
'@socket.io/component-emitter': 3.1.2
- debug: 4.3.7
+ debug: 4.3.7(supports-color@8.1.1)
transitivePeerDependencies:
- supports-color
socks-proxy-agent@8.0.4:
dependencies:
agent-base: 7.1.1
- debug: 4.3.7
+ debug: 4.3.7(supports-color@8.1.1)
socks: 2.8.3
transitivePeerDependencies:
- supports-color
@@ -37253,6 +39641,18 @@ snapshots:
ip-address: 9.0.5
smart-buffer: 4.2.0
+ solc@0.8.26(debug@4.3.7):
+ dependencies:
+ command-exists: 1.2.9
+ commander: 8.3.0
+ follow-redirects: 1.15.6(debug@4.3.7)
+ js-sha3: 0.8.0
+ memorystream: 0.3.1
+ semver: 5.7.2
+ tmp: 0.0.33
+ transitivePeerDependencies:
+ - debug
+
sonic-boom@2.8.0:
dependencies:
atomic-sleep: 1.0.0
@@ -37376,6 +39776,10 @@ snapshots:
mime-db: 1.52.0
outvariant: 1.4.0
+ stats-lite@2.2.0:
+ dependencies:
+ isnumber: 1.0.0
+
statuses@1.5.0: {}
statuses@2.0.1: {}
@@ -37392,6 +39796,8 @@ snapshots:
stoppable@1.1.0: {}
+ stream-blackhole@1.0.3: {}
+
stream-browserify@3.0.0:
dependencies:
inherits: 2.0.4
@@ -37539,6 +39945,11 @@ snapshots:
strnum@1.0.5: {}
+ strtok3@6.3.0:
+ dependencies:
+ '@tokenizer/token': 0.3.0
+ peek-readable: 4.1.0
+
sturdy-websocket@0.2.1:
optional: true
@@ -37546,6 +39957,20 @@ snapshots:
style-search@0.1.0: {}
+ styled-components@6.1.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ dependencies:
+ '@emotion/is-prop-valid': 1.2.2
+ '@emotion/unitless': 0.8.1
+ '@types/stylis': 4.2.5
+ css-to-react-native: 3.2.0
+ csstype: 3.1.3
+ postcss: 8.4.38
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ shallowequal: 1.1.0
+ stylis: 4.3.2
+ tslib: 2.6.2
+
styled-jsx@5.1.1(@babel/core@7.25.7)(react@18.3.1):
dependencies:
client-only: 0.0.1
@@ -37553,6 +39978,22 @@ snapshots:
optionalDependencies:
'@babel/core': 7.25.7
+ styled-system@5.1.5:
+ dependencies:
+ '@styled-system/background': 5.1.2
+ '@styled-system/border': 5.1.5
+ '@styled-system/color': 5.1.2
+ '@styled-system/core': 5.1.2
+ '@styled-system/flexbox': 5.1.2
+ '@styled-system/grid': 5.1.2
+ '@styled-system/layout': 5.1.2
+ '@styled-system/position': 5.1.2
+ '@styled-system/shadow': 5.1.2
+ '@styled-system/space': 5.1.2
+ '@styled-system/typography': 5.1.2
+ '@styled-system/variant': 5.1.5
+ object-assign: 4.1.1
+
stylelint-config-prettier@9.0.5(stylelint@14.16.1):
dependencies:
stylelint: 14.16.1
@@ -37611,6 +40052,8 @@ snapshots:
stylis@4.2.0: {}
+ stylis@4.3.2: {}
+
sudo-prompt@9.2.1: {}
superagent@5.3.1:
@@ -37875,6 +40318,8 @@ snapshots:
es5-ext: 0.10.64
next-tick: 1.1.0
+ timm@1.7.1: {}
+
tiny-emitter@2.1.0: {}
tiny-inflate@1.0.3: {}
@@ -37889,8 +40334,17 @@ snapshots:
elliptic: 6.5.5
nan: 2.19.0
+ tiny-warning@1.0.3: {}
+
tinybench@2.8.0: {}
+ tinycolor2@1.6.0: {}
+
+ tinyglobby@0.2.10:
+ dependencies:
+ fdir: 6.4.2(picomatch@4.0.2)
+ picomatch: 4.0.2
+
tinypool@0.8.4: {}
tinyspy@2.2.1: {}
@@ -37911,8 +40365,15 @@ snapshots:
toad-cache@3.7.0: {}
+ toformat@2.0.0: {}
+
toidentifier@1.0.1: {}
+ token-types@4.2.1:
+ dependencies:
+ '@tokenizer/token': 0.3.0
+ ieee754: 1.2.1
+
toposort-class@1.0.1: {}
totalist@3.0.1: {}
@@ -37946,6 +40407,8 @@ snapshots:
tree-kill@1.2.2: {}
+ treeify@1.1.0: {}
+
trim-newlines@3.0.1: {}
trouter@2.0.1:
@@ -37995,6 +40458,27 @@ snapshots:
optionalDependencies:
'@swc/core': 1.5.25(@swc/helpers@0.5.12)
+ ts-node@10.9.2(@swc/core@1.5.25(@swc/helpers@0.5.12))(@types/node@20.17.6)(typescript@5.4.5):
+ dependencies:
+ '@cspotcode/source-map-support': 0.8.1
+ '@tsconfig/node10': 1.0.11
+ '@tsconfig/node12': 1.0.11
+ '@tsconfig/node14': 1.0.3
+ '@tsconfig/node16': 1.0.4
+ '@types/node': 20.17.6
+ acorn: 8.14.0
+ acorn-walk: 8.3.4
+ arg: 4.1.3
+ create-require: 1.1.1
+ diff: 4.0.2
+ make-error: 1.3.6
+ typescript: 5.4.5
+ v8-compile-cache-lib: 3.0.1
+ yn: 3.1.1
+ optionalDependencies:
+ '@swc/core': 1.5.25(@swc/helpers@0.5.12)
+ optional: true
+
ts-toolbelt@9.6.0: {}
tsc-alias@1.8.8:
@@ -38049,6 +40533,8 @@ snapshots:
tsutils: 2.29.0(typescript@5.4.5)
typescript: 5.4.5
+ tsort@0.0.1: {}
+
tsutils@2.29.0(typescript@5.4.5):
dependencies:
tslib: 1.14.1
@@ -38377,7 +40863,7 @@ snapshots:
url@0.11.3:
dependencies:
punycode: 1.4.1
- qs: 6.12.1
+ qs: 6.13.0
use-callback-ref@1.3.2(@types/react@18.3.3)(react@18.3.1):
dependencies:
@@ -38438,6 +40924,10 @@ snapshots:
utf8@3.0.0: {}
+ utif@2.0.1:
+ dependencies:
+ pako: 1.0.11
+
util-deprecate@1.0.2: {}
util@0.12.5:
@@ -38487,6 +40977,10 @@ snapshots:
'@types/react': 18.3.3
react: 18.3.1
+ varint@5.0.2: {}
+
+ varint@6.0.0: {}
+
vary@1.1.2: {}
verror@1.10.0:
@@ -38698,11 +41192,11 @@ snapshots:
dependencies:
xml-name-validator: 5.0.0
- wagmi@2.12.8(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(@types/react@18.3.3)(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.26.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6))(zod@3.23.6):
+ wagmi@2.12.8(@tanstack/react-query@4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(immer@9.0.21)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.26.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6))(zod@3.23.6):
dependencies:
- '@tanstack/react-query': 4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
- '@wagmi/connectors': 5.1.8(@types/react@18.3.3)(@wagmi/core@2.13.4(@types/react@18.3.3)(react@18.3.1)(typescript@5.4.5)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)))(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.26.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6))(zod@3.23.6)
- '@wagmi/core': 2.13.4(@types/react@18.3.3)(react@18.3.1)(typescript@5.4.5)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6))
+ '@tanstack/react-query': 4.36.1(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)
+ '@wagmi/connectors': 5.1.8(@types/react@18.3.3)(@wagmi/core@2.13.4(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1)(typescript@5.4.5)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.0(@babel/core@7.24.5)(@babel/preset-env@7.25.3(@babel/core@7.24.5))(@types/react@18.3.3)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.26.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6))(zod@3.23.6)
+ '@wagmi/core': 2.13.4(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1)(typescript@5.4.5)(viem@2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6))
react: 18.3.1
use-sync-external-store: 1.2.0(react@18.3.1)
viem: 2.21.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
@@ -38755,6 +41249,10 @@ snapshots:
watskeburt@4.0.2: {}
+ wcag-contrast@3.0.0:
+ dependencies:
+ relative-luminance: 2.0.1
+
wcwidth@1.0.1:
dependencies:
defaults: 1.0.4
@@ -38815,12 +41313,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- web3-core@4.3.2(bufferutil@4.0.8)(utf-8-validate@5.0.10):
+ web3-core@4.3.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10):
dependencies:
web3-errors: 1.1.4
web3-eth-accounts: 4.1.2
web3-eth-iban: 4.0.7
- web3-providers-http: 4.1.0
+ web3-providers-http: 4.1.0(encoding@0.1.13)
web3-providers-ws: 4.0.7(bufferutil@4.0.8)(utf-8-validate@5.0.10)
web3-types: 1.6.0
web3-utils: 4.2.3
@@ -38832,12 +41330,12 @@ snapshots:
- encoding
- utf-8-validate
- web3-core@4.3.2(bufferutil@4.0.8)(utf-8-validate@6.0.3):
+ web3-core@4.3.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.3):
dependencies:
web3-errors: 1.1.4
web3-eth-accounts: 4.1.2
web3-eth-iban: 4.0.7
- web3-providers-http: 4.1.0
+ web3-providers-http: 4.1.0(encoding@0.1.13)
web3-providers-ws: 4.0.7(bufferutil@4.0.8)(utf-8-validate@6.0.3)
web3-types: 1.6.0
web3-utils: 4.2.3
@@ -38874,11 +41372,11 @@ snapshots:
web3-utils: 4.2.3
web3-validator: 2.0.5
- web3-eth-contract@4.4.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6):
+ web3-eth-contract@4.4.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6):
dependencies:
- web3-core: 4.3.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ web3-core: 4.3.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
web3-errors: 1.1.4
- web3-eth: 4.6.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
+ web3-eth: 4.6.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
web3-eth-abi: 4.2.1(typescript@5.4.5)(zod@3.23.6)
web3-types: 1.6.0
web3-utils: 4.2.3
@@ -38890,11 +41388,11 @@ snapshots:
- utf-8-validate
- zod
- web3-eth-contract@4.4.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.3)(zod@3.23.6):
+ web3-eth-contract@4.4.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@6.0.3)(zod@3.23.6):
dependencies:
- web3-core: 4.3.2(bufferutil@4.0.8)(utf-8-validate@6.0.3)
+ web3-core: 4.3.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.3)
web3-errors: 1.1.4
- web3-eth: 4.6.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.3)(zod@3.23.6)
+ web3-eth: 4.6.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@6.0.3)(zod@3.23.6)
web3-eth-abi: 4.2.1(typescript@5.4.5)(zod@3.23.6)
web3-types: 1.6.0
web3-utils: 4.2.3
@@ -38906,14 +41404,14 @@ snapshots:
- utf-8-validate
- zod
- web3-eth-ens@4.2.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6):
+ web3-eth-ens@4.2.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6):
dependencies:
'@adraffy/ens-normalize': 1.10.1
- web3-core: 4.3.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ web3-core: 4.3.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
web3-errors: 1.1.4
- web3-eth: 4.6.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
- web3-eth-contract: 4.4.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
- web3-net: 4.0.7(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ web3-eth: 4.6.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
+ web3-eth-contract: 4.4.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
+ web3-net: 4.0.7(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
web3-types: 1.6.0
web3-utils: 4.2.3
web3-validator: 2.0.5
@@ -38924,14 +41422,14 @@ snapshots:
- utf-8-validate
- zod
- web3-eth-ens@4.2.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.3)(zod@3.23.6):
+ web3-eth-ens@4.2.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@6.0.3)(zod@3.23.6):
dependencies:
'@adraffy/ens-normalize': 1.10.1
- web3-core: 4.3.2(bufferutil@4.0.8)(utf-8-validate@6.0.3)
+ web3-core: 4.3.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.3)
web3-errors: 1.1.4
- web3-eth: 4.6.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.3)(zod@3.23.6)
- web3-eth-contract: 4.4.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.3)(zod@3.23.6)
- web3-net: 4.0.7(bufferutil@4.0.8)(utf-8-validate@6.0.3)
+ web3-eth: 4.6.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@6.0.3)(zod@3.23.6)
+ web3-eth-contract: 4.4.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@6.0.3)(zod@3.23.6)
+ web3-net: 4.0.7(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.3)
web3-types: 1.6.0
web3-utils: 4.2.3
web3-validator: 2.0.5
@@ -38954,11 +41452,11 @@ snapshots:
web3-utils: 4.2.3
web3-validator: 2.0.5
- web3-eth-personal@4.0.8(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6):
+ web3-eth-personal@4.0.8(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6):
dependencies:
- web3-core: 4.3.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
- web3-eth: 4.6.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
- web3-rpc-methods: 1.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ web3-core: 4.3.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ web3-eth: 4.6.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
+ web3-rpc-methods: 1.2.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
web3-types: 1.6.0
web3-utils: 4.2.3
web3-validator: 2.0.5
@@ -38969,11 +41467,11 @@ snapshots:
- utf-8-validate
- zod
- web3-eth-personal@4.0.8(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.3)(zod@3.23.6):
+ web3-eth-personal@4.0.8(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@6.0.3)(zod@3.23.6):
dependencies:
- web3-core: 4.3.2(bufferutil@4.0.8)(utf-8-validate@6.0.3)
- web3-eth: 4.6.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.3)(zod@3.23.6)
- web3-rpc-methods: 1.2.0(bufferutil@4.0.8)(utf-8-validate@6.0.3)
+ web3-core: 4.3.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.3)
+ web3-eth: 4.6.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@6.0.3)(zod@3.23.6)
+ web3-rpc-methods: 1.2.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.3)
web3-types: 1.6.0
web3-utils: 4.2.3
web3-validator: 2.0.5
@@ -38984,16 +41482,16 @@ snapshots:
- utf-8-validate
- zod
- web3-eth@4.6.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6):
+ web3-eth@4.6.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6):
dependencies:
setimmediate: 1.0.5
- web3-core: 4.3.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ web3-core: 4.3.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
web3-errors: 1.1.4
web3-eth-abi: 4.2.1(typescript@5.4.5)(zod@3.23.6)
web3-eth-accounts: 4.1.2
- web3-net: 4.0.7(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ web3-net: 4.0.7(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
web3-providers-ws: 4.0.7(bufferutil@4.0.8)(utf-8-validate@5.0.10)
- web3-rpc-methods: 1.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ web3-rpc-methods: 1.2.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
web3-types: 1.6.0
web3-utils: 4.2.3
web3-validator: 2.0.5
@@ -39004,16 +41502,16 @@ snapshots:
- utf-8-validate
- zod
- web3-eth@4.6.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.3)(zod@3.23.6):
+ web3-eth@4.6.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@6.0.3)(zod@3.23.6):
dependencies:
setimmediate: 1.0.5
- web3-core: 4.3.2(bufferutil@4.0.8)(utf-8-validate@6.0.3)
+ web3-core: 4.3.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.3)
web3-errors: 1.1.4
web3-eth-abi: 4.2.1(typescript@5.4.5)(zod@3.23.6)
web3-eth-accounts: 4.1.2
- web3-net: 4.0.7(bufferutil@4.0.8)(utf-8-validate@6.0.3)
+ web3-net: 4.0.7(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.3)
web3-providers-ws: 4.0.7(bufferutil@4.0.8)(utf-8-validate@6.0.3)
- web3-rpc-methods: 1.2.0(bufferutil@4.0.8)(utf-8-validate@6.0.3)
+ web3-rpc-methods: 1.2.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.3)
web3-types: 1.6.0
web3-utils: 4.2.3
web3-validator: 2.0.5
@@ -39024,10 +41522,10 @@ snapshots:
- utf-8-validate
- zod
- web3-net@4.0.7(bufferutil@4.0.8)(utf-8-validate@5.0.10):
+ web3-net@4.0.7(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10):
dependencies:
- web3-core: 4.3.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
- web3-rpc-methods: 1.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ web3-core: 4.3.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ web3-rpc-methods: 1.2.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
web3-types: 1.6.0
web3-utils: 4.2.3
transitivePeerDependencies:
@@ -39035,10 +41533,10 @@ snapshots:
- encoding
- utf-8-validate
- web3-net@4.0.7(bufferutil@4.0.8)(utf-8-validate@6.0.3):
+ web3-net@4.0.7(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.3):
dependencies:
- web3-core: 4.3.2(bufferutil@4.0.8)(utf-8-validate@6.0.3)
- web3-rpc-methods: 1.2.0(bufferutil@4.0.8)(utf-8-validate@6.0.3)
+ web3-core: 4.3.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.3)
+ web3-rpc-methods: 1.2.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.3)
web3-types: 1.6.0
web3-utils: 4.2.3
transitivePeerDependencies:
@@ -39051,9 +41549,9 @@ snapshots:
web3-core-helpers: 1.5.2
xhr2-cookies: 1.1.0
- web3-providers-http@4.1.0:
+ web3-providers-http@4.1.0(encoding@0.1.13):
dependencies:
- cross-fetch: 4.0.0
+ cross-fetch: 4.0.0(encoding@0.1.13)
web3-errors: 1.1.4
web3-types: 1.6.0
web3-utils: 4.2.3
@@ -39104,9 +41602,9 @@ snapshots:
- bufferutil
- utf-8-validate
- web3-rpc-methods@1.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10):
+ web3-rpc-methods@1.2.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10):
dependencies:
- web3-core: 4.3.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ web3-core: 4.3.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
web3-types: 1.6.0
web3-validator: 2.0.5
transitivePeerDependencies:
@@ -39114,9 +41612,9 @@ snapshots:
- encoding
- utf-8-validate
- web3-rpc-methods@1.2.0(bufferutil@4.0.8)(utf-8-validate@6.0.3):
+ web3-rpc-methods@1.2.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.3):
dependencies:
- web3-core: 4.3.2(bufferutil@4.0.8)(utf-8-validate@6.0.3)
+ web3-core: 4.3.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.3)
web3-types: 1.6.0
web3-validator: 2.0.5
transitivePeerDependencies:
@@ -39152,21 +41650,21 @@ snapshots:
web3-types: 1.6.0
zod: 3.23.6
- web3@4.8.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6):
+ web3@4.8.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6):
dependencies:
- web3-core: 4.3.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ web3-core: 4.3.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
web3-errors: 1.1.4
- web3-eth: 4.6.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
+ web3-eth: 4.6.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
web3-eth-abi: 4.2.1(typescript@5.4.5)(zod@3.23.6)
web3-eth-accounts: 4.1.2
- web3-eth-contract: 4.4.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
- web3-eth-ens: 4.2.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
+ web3-eth-contract: 4.4.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
+ web3-eth-ens: 4.2.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
web3-eth-iban: 4.0.7
- web3-eth-personal: 4.0.8(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
- web3-net: 4.0.7(bufferutil@4.0.8)(utf-8-validate@5.0.10)
- web3-providers-http: 4.1.0
+ web3-eth-personal: 4.0.8(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.6)
+ web3-net: 4.0.7(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ web3-providers-http: 4.1.0(encoding@0.1.13)
web3-providers-ws: 4.0.7(bufferutil@4.0.8)(utf-8-validate@5.0.10)
- web3-rpc-methods: 1.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ web3-rpc-methods: 1.2.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
web3-types: 1.6.0
web3-utils: 4.2.3
web3-validator: 2.0.5
@@ -39177,21 +41675,21 @@ snapshots:
- utf-8-validate
- zod
- web3@4.8.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.3)(zod@3.23.6):
+ web3@4.8.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@6.0.3)(zod@3.23.6):
dependencies:
- web3-core: 4.3.2(bufferutil@4.0.8)(utf-8-validate@6.0.3)
+ web3-core: 4.3.2(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.3)
web3-errors: 1.1.4
- web3-eth: 4.6.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.3)(zod@3.23.6)
+ web3-eth: 4.6.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@6.0.3)(zod@3.23.6)
web3-eth-abi: 4.2.1(typescript@5.4.5)(zod@3.23.6)
web3-eth-accounts: 4.1.2
- web3-eth-contract: 4.4.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.3)(zod@3.23.6)
- web3-eth-ens: 4.2.0(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.3)(zod@3.23.6)
+ web3-eth-contract: 4.4.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@6.0.3)(zod@3.23.6)
+ web3-eth-ens: 4.2.0(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@6.0.3)(zod@3.23.6)
web3-eth-iban: 4.0.7
- web3-eth-personal: 4.0.8(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@6.0.3)(zod@3.23.6)
- web3-net: 4.0.7(bufferutil@4.0.8)(utf-8-validate@6.0.3)
- web3-providers-http: 4.1.0
+ web3-eth-personal: 4.0.8(bufferutil@4.0.8)(encoding@0.1.13)(typescript@5.4.5)(utf-8-validate@6.0.3)(zod@3.23.6)
+ web3-net: 4.0.7(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.3)
+ web3-providers-http: 4.1.0(encoding@0.1.13)
web3-providers-ws: 4.0.7(bufferutil@4.0.8)(utf-8-validate@6.0.3)
- web3-rpc-methods: 1.2.0(bufferutil@4.0.8)(utf-8-validate@6.0.3)
+ web3-rpc-methods: 1.2.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@6.0.3)
web3-types: 1.6.0
web3-utils: 4.2.3
web3-validator: 2.0.5
@@ -39324,6 +41822,12 @@ snapshots:
siginfo: 2.0.0
stackback: 0.0.2
+ wicg-inert@3.1.3: {}
+
+ widest-line@3.1.0:
+ dependencies:
+ string-width: 4.2.3
+
wif@2.0.6:
dependencies:
bs58check: 2.1.2
@@ -39342,6 +41846,8 @@ snapshots:
'@cloudflare/workerd-linux-arm64': 1.20241018.1
'@cloudflare/workerd-windows-64': 1.20241018.1
+ workerpool@6.5.1: {}
+
wrangler@3.82.0(@cloudflare/workers-types@4.20241022.0)(bufferutil@4.0.8)(utf-8-validate@5.0.10):
dependencies:
'@cloudflare/kv-asset-handler': 0.3.4
@@ -39508,6 +42014,15 @@ snapshots:
xml-name-validator@5.0.0: {}
+ xml-parse-from-string@1.0.1: {}
+
+ xml2js@0.5.0:
+ dependencies:
+ sax: 1.3.0
+ xmlbuilder: 11.0.1
+
+ xmlbuilder@11.0.1: {}
+
xmlchars@2.2.0: {}
xmlhttprequest-ssl@2.0.0: {}
@@ -39541,10 +42056,7 @@ snapshots:
yaml@1.10.2: {}
- yaml@2.5.0: {}
-
- yaml@2.6.0:
- optional: true
+ yaml@2.6.0: {}
yargs-parser@18.1.3:
dependencies:
@@ -39557,6 +42069,13 @@ snapshots:
yargs-parser@21.1.1: {}
+ yargs-unparser@2.0.0:
+ dependencies:
+ camelcase: 6.3.0
+ decamelize: 4.0.0
+ flat: 5.0.2
+ is-plain-obj: 2.1.0
+
yargs@15.4.1:
dependencies:
cliui: 6.0.0
@@ -39629,18 +42148,28 @@ snapshots:
optionalDependencies:
react: 18.3.1
- zustand@4.4.1(@types/react@18.3.3)(react@18.3.1):
+ zustand@4.4.0(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1):
+ dependencies:
+ use-sync-external-store: 1.2.0(react@18.3.1)
+ optionalDependencies:
+ '@types/react': 18.3.3
+ immer: 9.0.21
+ react: 18.3.1
+
+ zustand@4.4.1(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1):
dependencies:
use-sync-external-store: 1.2.0(react@18.3.1)
optionalDependencies:
'@types/react': 18.3.3
+ immer: 9.0.21
react: 18.3.1
- zustand@4.5.2(@types/react@18.3.3)(react@18.3.1):
+ zustand@4.5.2(@types/react@18.3.3)(immer@9.0.21)(react@18.3.1):
dependencies:
use-sync-external-store: 1.2.0(react@18.3.1)
optionalDependencies:
'@types/react': 18.3.3
+ immer: 9.0.21
react: 18.3.1
zwitch@2.0.4: {}