diff --git a/.github/workflows/pages-deployment.yaml b/.github/workflows/pages-deployment.yaml
index 2a957ae8a..80fafeca6 100644
--- a/.github/workflows/pages-deployment.yaml
+++ b/.github/workflows/pages-deployment.yaml
@@ -3,6 +3,7 @@ name: Cloudflare Pages
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
NEXT_PUBLIC_INTERCOM_ID: re9q5yti
+ NEXT_PUBLIC_CAPSULE_API_KEY_PROD: ${{ secrets.CAPSULE_API_KEY_PROD }}
NEXT_PUBLIC_DRPC_KEY: AnmpasF2C0JBqeAEzxVO8aTteiMlrW4R75hpDonbV6cR
on: [push]
diff --git a/.gitignore b/.gitignore
index 6a1a9afe2..93988f6fc 100644
--- a/.gitignore
+++ b/.gitignore
@@ -73,4 +73,5 @@ tsconfig.vitest-temp.json
.dev.vars
-*yalc*
\ No newline at end of file
+*yalc*
+certificates
\ No newline at end of file
diff --git a/e2e/specs/stateful/address.spec.ts b/e2e/specs/stateful/address.spec.ts
index 4fce98112..1ae1de0b0 100644
--- a/e2e/specs/stateful/address.spec.ts
+++ b/e2e/specs/stateful/address.spec.ts
@@ -2,20 +2,18 @@ import { expect } from '@playwright/test'
import { test } from '../../../playwright/index.js'
-test('should allow user to connect', async ({ page, login }) => {
+test('should allow user with primary name to connect', async ({ page, login }) => {
test.slow()
- await page.goto('/')
+ await page.goto('/?chain=holesky')
await login.connect()
await page.getByTestId('header-profile').click()
- await expect(page.getByText('Profile')).toBeVisible()
- await page.getByTestId('header-profile').click()
- await expect(page.getByText('Profile')).not.toBeVisible()
+ await expect(page.getByText('Disconnect')).toBeVisible()
})
test('should go to the address page', async ({ page, login }) => {
test.slow()
- await page.goto('/')
+ await page.goto('/?chain=holesky')
await login.connect()
await page
@@ -30,7 +28,7 @@ test('should not show the profile if there is no primary name for the address',
login,
}) => {
test.slow()
- await page.goto('/')
+ await page.goto('/?chain=holesky')
await login.connect()
await page
.getByPlaceholder('Search for a name')
diff --git a/e2e/specs/stateful/dnsclaim.spec.ts b/e2e/specs/stateful/dnsclaim.spec.ts
index 0468a182f..69081c92e 100644
--- a/e2e/specs/stateful/dnsclaim.spec.ts
+++ b/e2e/specs/stateful/dnsclaim.spec.ts
@@ -7,7 +7,7 @@ test.describe('Import DNSSEC name', () => {
page,
login,
}) => {
- await page.goto('/notdnssec.com')
+ await page.goto('/notdnssec.com?chain=holesky')
await login.connect()
await page.getByTestId('onchain-radio').click()
@@ -21,7 +21,7 @@ test.describe('Import DNSSEC name', () => {
page,
login,
}) => {
- await page.goto('/noenssubdomain.com')
+ await page.goto('/noenssubdomain.com?chain=holesky')
await login.connect()
await page.getByTestId('onchain-radio').click()
@@ -36,7 +36,7 @@ test.describe('Import DNSSEC name', () => {
page,
login,
}) => {
- await page.goto('/noenssubdomain.com')
+ await page.goto('/noenssubdomain.com?chain=holesky')
await login.connect()
await page.getByTestId('offchain-radio').click()
@@ -50,7 +50,7 @@ test.describe('Import DNSSEC name', () => {
page,
login,
}) => {
- await page.goto('/invalidensrecord.com')
+ await page.goto('/invalidensrecord.com?chain=holesky')
await login.connect()
await page.getByTestId('onchain-radio').click()
@@ -61,7 +61,7 @@ test.describe('Import DNSSEC name', () => {
})
test('should resolve .pw domains', async ({ page, login }) => {
- await page.goto('/test.pw')
+ await page.goto('/test.pw?chain=holesky')
await login.connect()
await page.getByTestId('onchain-radio').click()
diff --git a/e2e/specs/stateful/profile.spec.ts b/e2e/specs/stateful/profile.spec.ts
index e48b80307..376ea7a12 100644
--- a/e2e/specs/stateful/profile.spec.ts
+++ b/e2e/specs/stateful/profile.spec.ts
@@ -80,7 +80,7 @@ const profiles = [
test.describe('Profile', () => {
test('should allow user to connect', async ({ page, login }) => {
- await page.goto('/')
+ await page.goto('/?chain=holesky')
await login.connect()
await page.getByTestId('header-profile').click()
@@ -90,19 +90,19 @@ test.describe('Profile', () => {
})
test('should show a warning if name is not supported', async ({ page }) => {
- await page.goto('/name.nottld')
+ await page.goto('/name.nottld?chain=holesky')
await expect(page.getByText('This TLD is not supported')).toBeVisible({ timeout: 25000 })
})
test('should load emoji domain pages', async ({ page }) => {
- await page.goto('/%E2%9D%A4%EF%B8%8F%E2%9D%A4%EF%B8%8F%E2%9D%A4%EF%B8%8F.eth')
+ await page.goto('/%E2%9D%A4%EF%B8%8F%E2%9D%A4%EF%B8%8F%E2%9D%A4%EF%B8%8F.eth?chain=holesky')
await expect(page.getByTestId('profile-snippet-name')).toContainText('❤️❤️❤️.eth', {
timeout: 25000,
})
})
test('should allow searching for emoji domain', async ({ page, login }) => {
- await page.goto('/')
+ await page.goto('/?chain=holesky')
await login.connect()
await page.getByPlaceholder('Search for a name').fill('❤️❤️❤️❤️❤️❤️.eth')
@@ -114,7 +114,7 @@ test.describe('Profile', () => {
for (const profile of profiles) {
test(`should load profile for: ${profile.name}`, async ({ page, login }) => {
- await page.goto('/')
+ await page.goto('/?chain=holesky')
await login.connect()
await page.getByPlaceholder('Search for a name').fill(profile.name)
@@ -233,20 +233,22 @@ test.describe('Profile', () => {
}
test('should decode an unknown label', async ({ page, login }) => {
- await page.goto('/')
+ await page.goto('/?chain=holesky')
await login.connect()
- // eslint-disable-next-line no-restricted-syntax
- await page.goto('/[8df9cfc425ad5e1853259e1cef0a8d1d44591fbec8e3feb6f930d9dfacd5eff2].eth')
+ await page.goto(
+ // eslint-disable-next-line no-restricted-syntax
+ '/[8df9cfc425ad5e1853259e1cef0a8d1d44591fbec8e3feb6f930d9dfacd5eff2].eth?chain=holesky',
+ )
await expect(page.getByTestId('profile-snippet')).toContainText('wrapmebaby.eth', {
timeout: 25000,
})
})
test('should show wrapped DNS name warning', async ({ page, login }) => {
- await page.goto('/')
+ await page.goto('/?chain=holesky')
await login.connect()
- await page.goto('/wrappeddnsname.com')
+ await page.goto('/wrappeddnsname.com?chain=holesky')
await expect(page.getByTestId('profile-snippet')).toContainText('wrappeddnsname.com')
})
})
diff --git a/next.config.mjs b/next.config.mjs
index 3b50c1b8b..6bc03e2c6 100644
--- a/next.config.mjs
+++ b/next.config.mjs
@@ -23,6 +23,17 @@ const babelIncludeRegexes = [
* @type {import('next').NextConfig}
* */
const nextConfig = {
+ transpilePackages: [
+ '@usecapsule/rainbowkit',
+ '@usecapsule/rainbowkit-wallet',
+ '@usecapsule/core-components',
+ '@usecapsule/react-components',
+ '@usecapsule/react-sdk',
+ '@usecapsule/core-sdk',
+ '@usecapsule/web-sdk',
+ '@usecapsule/wagmi-v2-integration',
+ '@usecapsule/viem-v2-integration',
+ ],
reactStrictMode: true,
compiler: {
styledComponents: true,
diff --git a/package.json b/package.json
index 8fb4c5e44..01fea57d9 100644
--- a/package.json
+++ b/package.json
@@ -3,10 +3,10 @@
"version": "0.1.123",
"scripts": {
"dev": "NODE_NO_WARNINGS=1 next dev",
- "dev:https": "next-dev-https --https --qr --port 3000",
+ "dev:https": "next dev --experimental-https --port 443",
"dev:nlocal": "NEXT_PUBLIC_PROVIDER=http://localhost:8545 NEXT_PUBLIC_AVUP_ENDPOINT=http://localhost:8787 pnpm dev",
"dev:localname": "NEXT_PUBLIC_PROVIDER=\"http://$(\"hostname\"):8545\" && NEXT_PUBLIC_AVUP_ENDPOINT=\"http://$(\"hostname\"):8787\" && NEXT_PUBLIC_GRAPH_URI=\"http://$(\"hostname\"):8000/subgraphs/name/graphprotocol/ens\" && pnpm dev",
- "dev:glocal": "rm -rf .next && NEXT_PUBLIC_GRAPH_URI=http://localhost:8000/subgraphs/name/graphprotocol/ens NEXT_PUBLIC_ETH_NODE=anvil pnpm dev:nlocal",
+ "dev:glocal": "SWC_CACHE=false rm -rf .next && NEXT_PUBLIC_GRAPH_URI=http://localhost:8000/subgraphs/name/graphprotocol/ens NEXT_PUBLIC_ETH_NODE=anvil pnpm dev:nlocal",
"dev:gonline": "NEXT_PUBLIC_GRAPH_URI=https://api.studio.thegraph.com/query/49574/ensholesky/version/latest pnpm dev",
"build": "next build",
"build:preview": "NEXT_PUBLIC_ENSJS_DEBUG=true next build --profile",
@@ -59,8 +59,7 @@
"@metamask/post-message-stream": "^6.1.2",
"@metamask/providers": "^14.0.2",
"@noble/hashes": "^1.3.2",
- "@rainbow-me/rainbowkit": "2.1.2",
- "@sentry/nextjs": "7.43.x",
+ "@sentry/nextjs": "^7.43.0",
"@splidejs/react-splide": "^0.7.12",
"@svgr/webpack": "^8.1.0",
"@tanstack/query-persist-client-core": "5.22.2",
@@ -68,10 +67,14 @@
"@tanstack/react-query": "5.22.2",
"@tanstack/react-query-devtools": "^5.59.0",
"@tanstack/react-query-persist-client": "5.22.2",
+ "@usecapsule/rainbowkit": "3.6.0",
+ "@usecapsule/rainbowkit-wallet": "1.6.0",
"@wagmi/core": "2.13.3",
"calendar-link": "^2.2.0",
"dequal": "2.0.3",
"dns-packet": "^5.4.0",
+ "form-data": "^4.0.0",
+ "glob": "^8.0.3",
"graphql-request": "5.1.0",
"i18next": "^21.9.1",
"i18next-browser-languagedetector": "^6.1.5",
@@ -81,6 +84,7 @@
"iso-639-1": "^2.1.15",
"markdown-to-jsx": "^7.1.7",
"next": "13.5.6",
+ "node-forge": "1.3.1",
"node-fetch": "^3.3.2",
"react": "*",
"react-confetti": "^6.1.0",
@@ -276,7 +280,8 @@
},
"patchedDependencies": {
"react-confetti@6.1.0": "patches/react-confetti@6.1.0.patch",
- "next-dev-https@0.1.2": "patches/next-dev-https@0.1.2.patch"
+ "next-dev-https@0.1.2": "patches/next-dev-https@0.1.2.patch",
+ "node-forge@1.3.1": "patches/node-forge@1.3.1.patch"
}
},
"packageManager": "pnpm@9.3.0"
diff --git a/patches/node-forge@1.3.1.patch b/patches/node-forge@1.3.1.patch
new file mode 100644
index 000000000..c94c55bfe
--- /dev/null
+++ b/patches/node-forge@1.3.1.patch
@@ -0,0 +1,36 @@
+diff --git a/CHANGELOG.md b/CHANGELOG.md
+deleted file mode 100644
+index 27d0e3a0073c20adff764c71575e200d6ac23432..0000000000000000000000000000000000000000
+diff --git a/flash/README.md b/flash/README.md
+deleted file mode 100644
+index 1576ebf1a99dab1462caa81c14240864ed1454cb..0000000000000000000000000000000000000000
+diff --git a/flash/package.json b/flash/package.json
+deleted file mode 100644
+index 92689fa9b24e93a631d2b52572030d7e17ccb10f..0000000000000000000000000000000000000000
+diff --git a/lib/rsa.js b/lib/rsa.js
+index 5c73209f9a1c97c8f1e58bc2930426c4f580776a..fb4cdad07208d23c10dedbc1f39b1435a4539d65 100644
+--- a/lib/rsa.js
++++ b/lib/rsa.js
+@@ -1717,13 +1717,15 @@ function _generateKeyPair(state, options, callback) {
+
+ var opts = {
+ algorithm: {
+- name: options.algorithm || 'PRIMEINC',
+- options: {
+- workers: options.workers || 2,
+- workLoad: options.workLoad || 100,
+- workerScript: options.workerScript
+- }
+- }
++ name: options.algorithm || "PRIMEINC",
++ options: options.workerScript
++ ? {
++ workers: options.workers || 2,
++ workLoad: options.workLoad || 100,
++ workerScript: options.workerScript,
++ }
++ : {},
++ },
+ };
+ if('prng' in options) {
+ opts.prng = options.prng;
diff --git a/playwright/fixtures/login.ts b/playwright/fixtures/login.ts
index fe28843c4..b88955886 100644
--- a/playwright/fixtures/login.ts
+++ b/playwright/fixtures/login.ts
@@ -44,15 +44,11 @@ export class Login {
timeout: 15000,
})
// this isn't actually what the user experiences, just a quirk in headless-web3-provider
- expect(this.wallet.getPendingRequestCount(Web3RequestKind.RequestPermissions)).toEqual(1)
await this.wallet.authorize(Web3RequestKind.RequestPermissions)
- expect(this.wallet.getPendingRequestCount(Web3RequestKind.RequestPermissions)).toEqual(0)
- await expect
- .poll(() => this.wallet.getPendingRequestCount(Web3RequestKind.RequestAccounts))
- .toEqual(1)
await this.wallet.authorize(Web3RequestKind.RequestAccounts)
+ const pendingRequests = await this.wallet.getPendingRequestCount()
expect(this.wallet.getPendingRequestCount(Web3RequestKind.RequestAccounts)).toEqual(0)
- await expect(this.getProfileButton).toBeVisible()
+ await expect.poll(() => this.getProfileButton.isVisible()).toBe(true)
}
async switchTo(user: User) {
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 95a66f188..d1a725996 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -104,6 +104,9 @@ patchedDependencies:
next-dev-https@0.1.2:
hash: q5l3x5627ujg3rak6l6v24c2cq
path: patches/next-dev-https@0.1.2.patch
+ node-forge@1.3.1:
+ hash: nfdrir6ttlr77nd4pr3kkewsuy
+ path: patches/node-forge@1.3.1.patch
react-confetti@6.1.0:
hash: bbuxkxhxbyez4jmqgptuoucij4
path: patches/react-confetti@6.1.0.patch
@@ -126,7 +129,7 @@ importers:
version: 4.0.2(encoding@0.1.13)(typescript@5.4.5)(viem@2.19.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)
'@ensdomains/thorin':
specifier: 0.6.50
- version: 0.6.50(react-dom@18.3.1(react@18.3.1))(react-transition-state@1.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(styled-components@5.3.11(@babel/core@7.24.6)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1))
+ version: 0.6.50(react-dom@18.3.1(react@18.3.1))(react-transition-state@1.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(styled-components@5.3.6(@babel/core@7.24.6)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1))
'@metamask/post-message-stream':
specifier: ^6.1.2
version: 6.2.0
@@ -136,11 +139,8 @@ importers:
'@noble/hashes':
specifier: ^1.3.2
version: 1.4.0
- '@rainbow-me/rainbowkit':
- specifier: 2.1.2
- version: 2.1.2(@tanstack/react-query@5.22.2(react@18.3.1))(@types/react@18.2.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@2.19.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(wagmi@2.12.4(@tanstack/query-core@5.22.2)(@tanstack/react-query@5.22.2(react@18.3.1))(@types/react@18.2.21)(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.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.2.21)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@2.78.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.19.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8))
'@sentry/nextjs':
- specifier: 7.43.x
+ specifier: ^7.43.0
version: 7.43.0(encoding@0.1.13)(next@13.5.6(@babel/core@7.24.6)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(webpack@5.91.0(esbuild@0.17.19))
'@splidejs/react-splide':
specifier: ^0.7.12
@@ -159,10 +159,16 @@ importers:
version: 5.22.2(react@18.3.1)
'@tanstack/react-query-devtools':
specifier: ^5.59.0
- version: 5.59.0(@tanstack/react-query@5.22.2(react@18.3.1))(react@18.3.1)
+ version: 5.62.1(@tanstack/react-query@5.22.2(react@18.3.1))(react@18.3.1)
'@tanstack/react-query-persist-client':
specifier: 5.22.2
version: 5.22.2(@tanstack/react-query@5.22.2(react@18.3.1))(react@18.3.1)
+ '@usecapsule/rainbowkit':
+ specifier: 3.6.0
+ version: 3.6.0(@emotion/is-prop-valid@1.2.2)(@types/react@18.2.21)(immer@9.0.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@2.19.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(wagmi@2.12.4(@tanstack/query-core@5.22.2)(@tanstack/react-query@5.22.2(react@18.3.1))(@types/react@18.2.21)(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.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.2.21)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@2.78.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.19.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8))
+ '@usecapsule/rainbowkit-wallet':
+ specifier: 1.6.0
+ version: 1.6.0(glwgzza6gedbpe5ymzupq2wudm)
'@wagmi/core':
specifier: 2.13.3
version: 2.13.3(@tanstack/query-core@5.22.2)(@types/react@18.2.21)(immer@9.0.21)(react@18.3.1)(typescript@5.4.5)(viem@2.19.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))
@@ -175,6 +181,12 @@ importers:
dns-packet:
specifier: ^5.4.0
version: 5.6.1
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.0
+ glob:
+ specifier: ^8.0.3
+ version: 8.1.0
graphql-request:
specifier: 5.1.0
version: 5.1.0(encoding@0.1.13)(graphql@16.8.1)
@@ -205,6 +217,9 @@ importers:
node-fetch:
specifier: ^3.3.2
version: 3.3.2
+ node-forge:
+ specifier: 1.3.1
+ version: 1.3.1(patch_hash=nfdrir6ttlr77nd4pr3kkewsuy)
react:
specifier: ^18.2.0
version: 18.3.1
@@ -234,10 +249,10 @@ importers:
version: 5.4.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
styled-components:
specifier: ^5.3.5
- version: 5.3.11(@babel/core@7.24.6)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1)
+ version: 5.3.6(@babel/core@7.24.6)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1)
tinyglobby:
specifier: ^0.2.6
- version: 0.2.6
+ version: 0.2.9
ts-pattern:
specifier: ^4.2.2
version: 4.3.0
@@ -280,10 +295,10 @@ importers:
version: 0.5.16(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
'@playwright/test':
specifier: ^1.48.2
- version: 1.48.2
+ version: 1.49.0
'@testing-library/jest-dom':
specifier: ^6.4.2
- version: 6.4.5(@types/jest@29.5.12)(vitest@2.0.5(@types/node@18.19.33)(jsdom@24.1.0(bufferutil@4.0.8)(canvas@2.11.2(encoding@0.1.13))(utf-8-validate@5.0.10))(terser@5.31.5))
+ version: 6.4.5(@types/jest@29.5.12)(vitest@2.1.3(@types/node@18.19.33)(jsdom@24.1.0(bufferutil@4.0.8)(canvas@2.11.2(encoding@0.1.13))(utf-8-validate@5.0.10))(msw@2.7.0(@types/node@18.19.33)(typescript@5.4.5))(terser@5.31.0))
'@testing-library/react':
specifier: ^14.0.0
version: 14.3.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
@@ -322,13 +337,13 @@ importers:
version: 6.21.0(eslint@8.50.0)(typescript@5.4.5)
'@vitejs/plugin-react':
specifier: ^4.3.1
- version: 4.3.1(vite@5.2.11(@types/node@18.19.33)(terser@5.31.5))
+ version: 4.3.3(vite@5.2.11(@types/node@18.19.33)(terser@5.31.0))
'@vitest/coverage-v8':
specifier: ^2.0.5
- version: 2.0.5(vitest@2.0.5(@types/node@18.19.33)(jsdom@24.1.0(bufferutil@4.0.8)(canvas@2.11.2(encoding@0.1.13))(utf-8-validate@5.0.10))(terser@5.31.5))
+ version: 2.1.3(vitest@2.1.3(@types/node@18.19.33)(jsdom@24.1.0(bufferutil@4.0.8)(canvas@2.11.2(encoding@0.1.13))(utf-8-validate@5.0.10))(msw@2.7.0(@types/node@18.19.33)(typescript@5.4.5))(terser@5.31.0))
'@vitest/spy':
specifier: ^2.0.5
- version: 2.0.5
+ version: 2.1.3
cbor:
specifier: ^8.1.0
version: 8.1.0
@@ -364,7 +379,7 @@ importers:
version: 6.8.0(eslint@8.50.0)
eslint-plugin-prettier:
specifier: ^5.0.0
- version: 5.1.3(@types/eslint@9.6.0)(eslint-config-prettier@9.1.0(eslint@8.50.0))(eslint@8.50.0)(prettier@3.0.3)
+ version: 5.1.3(@types/eslint@8.56.10)(eslint-config-prettier@9.1.0(eslint@8.50.0))(eslint@8.50.0)(prettier@3.0.3)
eslint-plugin-react:
specifier: ^7.33.2
version: 7.34.1(eslint@8.50.0)
@@ -376,7 +391,7 @@ importers:
version: 6.2.2(eslint@8.50.0)(typescript@5.4.5)
eslint-plugin-vitest:
specifier: ^0.4.0
- version: 0.4.1(@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.50.0)(typescript@5.4.5))(eslint@8.50.0)(typescript@5.4.5))(eslint@8.50.0)(typescript@5.4.5)(vitest@2.0.5(@types/node@18.19.33)(jsdom@24.1.0(bufferutil@4.0.8)(canvas@2.11.2(encoding@0.1.13))(utf-8-validate@5.0.10))(terser@5.31.5))
+ version: 0.4.1(@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.50.0)(typescript@5.4.5))(eslint@8.50.0)(typescript@5.4.5))(eslint@8.50.0)(typescript@5.4.5)(vitest@2.1.3(@types/node@18.19.33)(jsdom@24.1.0(bufferutil@4.0.8)(canvas@2.11.2(encoding@0.1.13))(utf-8-validate@5.0.10))(msw@2.7.0(@types/node@18.19.33)(typescript@5.4.5))(terser@5.31.0))
ethers:
specifier: ^5.7.2
version: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
@@ -397,10 +412,10 @@ importers:
version: 24.1.0(bufferutil@4.0.8)(canvas@2.11.2(encoding@0.1.13))(utf-8-validate@5.0.10)
knip:
specifier: ^5.27.2
- version: 5.27.4(@types/node@18.19.33)(typescript@5.4.5)
+ version: 5.33.3(@types/node@18.19.33)(typescript@5.4.5)
msw:
specifier: ^2.6.8
- version: 2.6.8(@types/node@18.19.33)(typescript@5.4.5)
+ version: 2.7.0(@types/node@18.19.33)(typescript@5.4.5)
next-dev-https:
specifier: ^0.1.2
version: 0.1.2(patch_hash=q5l3x5627ujg3rak6l6v24c2cq)(next@13.5.6(@babel/core@7.24.6)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
@@ -451,13 +466,13 @@ importers:
version: 0.18.3
vite-plugin-magical-svg:
specifier: ^1.3.0
- version: 1.3.0(vite@5.2.11(@types/node@18.19.33)(terser@5.31.5))
+ version: 1.3.0(vite@5.2.11(@types/node@18.19.33)(terser@5.31.0))
vitest:
specifier: ^2.0.5
- version: 2.0.5(@types/node@18.19.33)(jsdom@24.1.0(bufferutil@4.0.8)(canvas@2.11.2(encoding@0.1.13))(utf-8-validate@5.0.10))(terser@5.31.5)
+ version: 2.1.3(@types/node@18.19.33)(jsdom@24.1.0(bufferutil@4.0.8)(canvas@2.11.2(encoding@0.1.13))(utf-8-validate@5.0.10))(msw@2.7.0(@types/node@18.19.33)(typescript@5.4.5))(terser@5.31.0)
vitest-canvas-mock:
specifier: ^0.3.3
- version: 0.3.3(vitest@2.0.5(@types/node@18.19.33)(jsdom@24.1.0(bufferutil@4.0.8)(canvas@2.11.2(encoding@0.1.13))(utf-8-validate@5.0.10))(terser@5.31.5))
+ version: 0.3.3(vitest@2.1.3(@types/node@18.19.33)(jsdom@24.1.0(bufferutil@4.0.8)(canvas@2.11.2(encoding@0.1.13))(utf-8-validate@5.0.10))(msw@2.7.0(@types/node@18.19.33)(typescript@5.4.5))(terser@5.31.0))
wait-on:
specifier: ^6.0.1
version: 6.0.1
@@ -482,9 +497,6 @@ packages:
'@adraffy/ens-normalize@1.10.1':
resolution: {integrity: sha512-96Z2IP3mYmF1Xg2cDm8f1gWGf/HUVedQ3FMifV4kG/PQ4yEP51xDtRAEfhVNt5f/uzpNkZHwWQuUcu6D6K+Ekw==}
- '@adraffy/ens-normalize@1.11.0':
- resolution: {integrity: sha512-/3DDPKHqqIqxUULp8yP4zODUY1i+2xvVWsv8A79xGWdCAG+8sb0hRh0Rk2QyOJUnnbyPUAZYcpBuRe3nS2OIUg==}
-
'@ampproject/remapping@2.3.0':
resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==}
engines: {node: '>=6.0.0'}
@@ -493,38 +505,38 @@ packages:
resolution: {integrity: sha512-ZJhac6FkEd1yhG2AHOmfcXG4ceoLltoCVJjN5XsWN9BifBQr+cHJbWi0h68HZuSORq+3WtJ2z0hwF2NG1b5kcA==}
engines: {node: '>=6.9.0'}
- '@babel/code-frame@7.24.7':
- resolution: {integrity: sha512-BcYH1CVJBO9tvyIZ2jVeXgSIMvGZ2FDRvDdOIVQyuklNKSsx+eppDEBq/g47Ayw+RqNFE+URvOShmf+f/qwAlA==}
+ '@babel/code-frame@7.25.7':
+ resolution: {integrity: sha512-0xZJFNE5XMpENsgfHYTw8FbX4kv53mFLn2i3XPoq69LyhYSCBJtitaHx9QnsVTrsogI4Z3+HtEfZ2/GFPOtf5g==}
engines: {node: '>=6.9.0'}
'@babel/compat-data@7.24.6':
resolution: {integrity: sha512-aC2DGhBq5eEdyXWqrDInSqQjO0k8xtPRf5YylULqx8MCd6jBtzqfta/3ETMRpuKIc5hyswfO80ObyA1MvkCcUQ==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.25.2':
- resolution: {integrity: sha512-bYcppcpKBvX4znYaPEeFau03bp89ShqNMLs+rmdptMw+heSZh9+z84d2YG+K7cYLbWwzdjtDoW/uqZmPjulClQ==}
+ '@babel/compat-data@7.25.8':
+ resolution: {integrity: sha512-ZsysZyXY4Tlx+Q53XdnOFmqwfB9QDTHYxaZYajWRoBLuLEAwI2UIbtxOjWh/cFaa9IKUlcB+DDuoskLuKu56JA==}
engines: {node: '>=6.9.0'}
'@babel/core@7.24.6':
resolution: {integrity: sha512-qAHSfAdVyFmIvl0VHELib8xar7ONuSHrE2hLnsaWkYNTI68dmi1x8GYDhJjMI/e7XWal9QBlZkwbOnkcw7Z8gQ==}
engines: {node: '>=6.9.0'}
+ '@babel/core@7.25.8':
+ resolution: {integrity: sha512-Oixnb+DzmRT30qu9d3tJSQkxuygWm32DFykT4bRoORPa9hZ/L4KhVB/XiRm6KG+roIEM7DBQlmg27kw2HZkdZg==}
+ engines: {node: '>=6.9.0'}
+
'@babel/generator@7.24.6':
resolution: {integrity: sha512-S7m4eNa6YAPJRHmKsLHIDJhNAGNKoWNiWefz1MBbpnt8g9lvMDl1hir4P9bo/57bQEmuwEhnRU/AMWsD0G/Fbg==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.25.0':
- resolution: {integrity: sha512-3LEEcj3PVW8pW2R1SR1M89g/qrYk/m/mB/tLqn7dn4sbBUQyTqnlod+II2U4dqiGtUmkcnAmkMDralTFZttRiw==}
+ '@babel/generator@7.25.7':
+ resolution: {integrity: sha512-5Dqpl5fyV9pIAD62yK9P7fcA768uVPUyrQmqpqstHWgMma4feF1x/oFysBCVZLY5wJ2GkMUCdsNDnGZrPoR6rA==}
engines: {node: '>=6.9.0'}
'@babel/helper-annotate-as-pure@7.24.6':
resolution: {integrity: sha512-DitEzDfOMnd13kZnDqns1ccmftwJTS9DMkyn9pYTxulS7bZxUxpMly3Nf23QQ6NwA4UB8lAqjbqWtyvElEMAkg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-annotate-as-pure@7.24.7':
- resolution: {integrity: sha512-BaDeOonYvhdKw+JoMVkAixAAJzG2jVPIwWoKBPdYuY9b452e2rPuI9QPYh3KpofZ3pW2akOmwZLOiOsHMiqRAg==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-builder-binary-assignment-operator-visitor@7.24.6':
resolution: {integrity: sha512-+wnfqc5uHiMYtvRX7qu80Toef8BXeh4HHR1SPeonGb1SKPniNEd4a/nlaJJMv/OIEYvIVavvo0yR7u10Gqz0Iw==}
engines: {node: '>=6.9.0'}
@@ -533,8 +545,8 @@ packages:
resolution: {integrity: sha512-VZQ57UsDGlX/5fFA7GkVPplZhHsVc+vuErWgdOiysI9Ksnw0Pbbd6pnPiR/mmJyKHgyIW0c7KT32gmhiF+cirg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-compilation-targets@7.25.2':
- resolution: {integrity: sha512-U2U5LsSaZ7TAt3cfaymQ8WHh0pxvdHoEk6HVpaexxixjyEquMh0L0YNJNM6CTGKMXV1iksi0iZkGw4AcFkPaaw==}
+ '@babel/helper-compilation-targets@7.25.7':
+ resolution: {integrity: sha512-DniTEax0sv6isaw6qSQSfV4gVRNtw2rte8HHM45t9ZR0xILaufBRNkpMifCRiAPyvL4ACD6v0gfCwCmtOQaV4A==}
engines: {node: '>=6.9.0'}
'@babel/helper-create-class-features-plugin@7.24.6':
@@ -543,24 +555,12 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-create-class-features-plugin@7.25.0':
- resolution: {integrity: sha512-GYM6BxeQsETc9mnct+nIIpf63SAyzvyYN7UB/IlTyd+MBg06afFGp0mIeUqGyWgS2mxad6vqbMrHVlaL3m70sQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
'@babel/helper-create-regexp-features-plugin@7.24.6':
resolution: {integrity: sha512-C875lFBIWWwyv6MHZUG9HmRrlTDgOsLWZfYR0nW69gaKJNe0/Mpxx5r0EID2ZdHQkdUmQo2t0uNckTL08/1BgA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-create-regexp-features-plugin@7.25.2':
- resolution: {integrity: sha512-+wqVGP+DFmqwFD3EH6TMTfUNeqDehV3E/dl+Sd54eaXqm17tEUNbEIn4sVivVowbvUpOtIGxdo3GoXyDH9N/9g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
'@babel/helper-define-polyfill-provider@0.6.2':
resolution: {integrity: sha512-LV76g+C502biUK6AyZ3LK10vDpDyCzZnhZFXkH1L75zHPj68+qc8Zfpx2th+gzwA2MzyK+1g/3EPl62yFnVttQ==}
peerDependencies:
@@ -570,10 +570,6 @@ packages:
resolution: {integrity: sha512-Y50Cg3k0LKLMjxdPjIl40SdJgMB85iXn27Vk/qbHZCFx/o5XO3PSnpi675h1KEmmDb6OFArfd5SCQEQ5Q4H88g==}
engines: {node: '>=6.9.0'}
- '@babel/helper-environment-visitor@7.24.7':
- resolution: {integrity: sha512-DoiN84+4Gnd0ncbBOM9AZENV4a5ZiL39HYMyZJGZ/AZEykHYdJw0wW3kdcsh9/Kn+BRXHLkkklZ51ecPKmI1CQ==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-function-name@7.24.6':
resolution: {integrity: sha512-xpeLqeeRkbxhnYimfr2PC+iA0Q7ljX/d1eZ9/inYbmfG2jpl8Lu3DyXvpOAnrS5kxkfOWJjioIMQsaMBXFI05w==}
engines: {node: '>=6.9.0'}
@@ -586,16 +582,12 @@ packages:
resolution: {integrity: sha512-OTsCufZTxDUsv2/eDXanw/mUZHWOxSbEmC3pP8cgjcy5rgeVPWWMStnv274DV60JtHxTk0adT0QrCzC4M9NWGg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-member-expression-to-functions@7.24.8':
- resolution: {integrity: sha512-LABppdt+Lp/RlBxqrh4qgf1oEH/WxdzQNDJIu5gC/W1GyvPVrOBiItmmM8wan2fm4oYqFuFfkXmlGpLQhPY8CA==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-module-imports@7.24.6':
resolution: {integrity: sha512-a26dmxFJBF62rRO9mmpgrfTLsAuyHk4e1hKTUkD/fcMfynt8gvEKwQPQDVxWhca8dHoDck+55DFt42zV0QMw5g==}
engines: {node: '>=6.9.0'}
- '@babel/helper-module-imports@7.24.7':
- resolution: {integrity: sha512-8AyH3C+74cgCVVXow/myrynrAGv+nTVg5vKu2nZph9x7RcRwzmh0VFallJuFTZ9mx6u4eSdXZfcOzSqTUm0HCA==}
+ '@babel/helper-module-imports@7.25.7':
+ resolution: {integrity: sha512-o0xCgpNmRohmnoWKQ0Ij8IdddjyBFE4T2kagL/x6M3+4zUgc+4qTOUBoNe4XxDskt1HPKO007ZPiMgLDq2s7Kw==}
engines: {node: '>=6.9.0'}
'@babel/helper-module-transforms@7.24.6':
@@ -604,8 +596,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-module-transforms@7.25.2':
- resolution: {integrity: sha512-BjyRAbix6j/wv83ftcVJmBt72QtHI56C7JXZoG2xATiLpmoC7dpd8WnkikExHDVPpi/3qCmO6WY1EaXOluiecQ==}
+ '@babel/helper-module-transforms@7.25.7':
+ resolution: {integrity: sha512-k/6f8dKG3yDz/qCwSM+RKovjMix563SLxQFo0UhRNo239SP6n9u5/eLtKD6EAjwta2JHJ49CsD8pms2HdNiMMQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -614,16 +606,12 @@ packages:
resolution: {integrity: sha512-3SFDJRbx7KuPRl8XDUr8O7GAEB8iGyWPjLKJh/ywP/Iy9WOmEfMrsWbaZpvBu2HSYn4KQygIsz0O7m8y10ncMA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-optimise-call-expression@7.24.7':
- resolution: {integrity: sha512-jKiTsW2xmWwxT1ixIdfXUZp+P5yURx2suzLZr5Hi64rURpDYdMW0pv+Uf17EYk2Rd428Lx4tLsnjGJzYKDM/6A==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-plugin-utils@7.24.6':
resolution: {integrity: sha512-MZG/JcWfxybKwsA9N9PmtF2lOSFSEMVCpIRrbxccZFLJPrJciJdG/UhSh5W96GEteJI2ARqm5UAHxISwRDLSNg==}
engines: {node: '>=6.9.0'}
- '@babel/helper-plugin-utils@7.24.8':
- resolution: {integrity: sha512-FFWx5142D8h2Mgr/iPVGH5G7w6jDn4jUSpZTyDnQO0Yn7Ks2Kuz6Pci8H6MPCoUJegd/UZQ3tAvfLCxQSnWWwg==}
+ '@babel/helper-plugin-utils@7.25.7':
+ resolution: {integrity: sha512-eaPZai0PiqCi09pPs3pAFfl/zYgGaE6IdXtYvmf0qlcDTd3WCtO7JWCcRd64e0EQrcYgiHibEZnOGsSY4QSgaw==}
engines: {node: '>=6.9.0'}
'@babel/helper-remap-async-to-generator@7.24.6':
@@ -632,40 +620,24 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-remap-async-to-generator@7.25.0':
- resolution: {integrity: sha512-NhavI2eWEIz/H9dbrG0TuOicDhNexze43i5z7lEqwYm0WEZVTwnPpA0EafUTP7+6/W79HWIP2cTe3Z5NiSTVpw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
'@babel/helper-replace-supers@7.24.6':
resolution: {integrity: sha512-mRhfPwDqDpba8o1F8ESxsEkJMQkUF8ZIWrAc0FtWhxnjfextxMWxr22RtFizxxSYLjVHDeMgVsRq8BBZR2ikJQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/helper-replace-supers@7.25.0':
- resolution: {integrity: sha512-q688zIvQVYtZu+i2PsdIu/uWGRpfxzr5WESsfpShfZECkO+d2o+WROWezCi/Q6kJ0tfPa5+pUGUlfx2HhrA3Bg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
'@babel/helper-simple-access@7.24.6':
resolution: {integrity: sha512-nZzcMMD4ZhmB35MOOzQuiGO5RzL6tJbsT37Zx8M5L/i9KSrukGXWTjLe1knIbb/RmxoJE9GON9soq0c0VEMM5g==}
engines: {node: '>=6.9.0'}
- '@babel/helper-simple-access@7.24.7':
- resolution: {integrity: sha512-zBAIvbCMh5Ts+b86r/CjU+4XGYIs+R1j951gxI3KmmxBMhCg4oQMsv6ZXQ64XOm/cvzfU1FmoCyt6+owc5QMYg==}
+ '@babel/helper-simple-access@7.25.7':
+ resolution: {integrity: sha512-FPGAkJmyoChQeM+ruBGIDyrT2tKfZJO8NcxdC+CWNJi7N8/rZpSxK7yvBJ5O/nF1gfu5KzN7VKG3YVSLFfRSxQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-skip-transparent-expression-wrappers@7.24.6':
resolution: {integrity: sha512-jhbbkK3IUKc4T43WadP96a27oYti9gEf1LdyGSP2rHGH77kwLwfhO7TgwnWvxxQVmke0ImmCSS47vcuxEMGD3Q==}
engines: {node: '>=6.9.0'}
- '@babel/helper-skip-transparent-expression-wrappers@7.24.7':
- resolution: {integrity: sha512-IO+DLT3LQUElMbpzlatRASEyQtfhSE0+m465v++3jyyXeBTBUjtVZg28/gHeV5mrTJqvEKhKroBGAvhW+qPHiQ==}
- engines: {node: '>=6.9.0'}
-
'@babel/helper-split-export-declaration@7.24.6':
resolution: {integrity: sha512-CvLSkwXGWnYlF9+J3iZUvwgAxKiYzK3BWuo+mLzD/MDGOZDj7Gq8+hqaOkMxmJwmlv0iu86uH5fdADd9Hxkymw==}
engines: {node: '>=6.9.0'}
@@ -674,44 +646,44 @@ packages:
resolution: {integrity: sha512-WdJjwMEkmBicq5T9fm/cHND3+UlFa2Yj8ALLgmoSQAJZysYbBjw+azChSGPN4DSPLXOcooGRvDwZWMcF/mLO2Q==}
engines: {node: '>=6.9.0'}
- '@babel/helper-string-parser@7.24.8':
- resolution: {integrity: sha512-pO9KhhRcuUyGnJWwyEgnRJTSIZHiT+vMD0kPeD+so0l7mxkMT19g3pjY9GTnHySck/hDzq+dtW/4VgnMkippsQ==}
+ '@babel/helper-string-parser@7.25.7':
+ resolution: {integrity: sha512-CbkjYdsJNHFk8uqpEkpCvRs3YRp9tY6FmFY7wLMSYuGYkrdUi7r2lc4/wqsvlHoMznX3WJ9IP8giGPq68T/Y6g==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-identifier@7.24.6':
resolution: {integrity: sha512-4yA7s865JHaqUdRbnaxarZREuPTHrjpDT+pXoAZ1yhyo6uFnIEpS8VMu16siFOHDpZNKYv5BObhsB//ycbICyw==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-identifier@7.24.7':
- resolution: {integrity: sha512-rR+PBcQ1SMQDDyF6X0wxtG8QyLCgUB0eRAGguqRLfkCA87l7yAP7ehq8SNj96OOGTO8OBV70KhuFYcIkHXOg0w==}
+ '@babel/helper-validator-identifier@7.25.7':
+ resolution: {integrity: sha512-AM6TzwYqGChO45oiuPqwL2t20/HdMC1rTPAesnBCgPCSF1x3oN9MVUwQV2iyz4xqWrctwK5RNC8LV22kaQCNYg==}
engines: {node: '>=6.9.0'}
'@babel/helper-validator-option@7.24.6':
resolution: {integrity: sha512-Jktc8KkF3zIkePb48QO+IapbXlSapOW9S+ogZZkcO6bABgYAxtZcjZ/O005111YLf+j4M84uEgwYoidDkXbCkQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-validator-option@7.24.8':
- resolution: {integrity: sha512-xb8t9tD1MHLungh/AIoWYN+gVHaB9kwlu8gffXGSt3FFEIT7RjS+xWbc2vUD1UTZdIpKj/ab3rdqJ7ufngyi2Q==}
+ '@babel/helper-validator-option@7.25.7':
+ resolution: {integrity: sha512-ytbPLsm+GjArDYXJ8Ydr1c/KJuutjF2besPNbIZnZ6MKUxi/uTA22t2ymmA4WFjZFpjiAMO0xuuJPqK2nvDVfQ==}
engines: {node: '>=6.9.0'}
'@babel/helper-wrap-function@7.24.6':
resolution: {integrity: sha512-f1JLrlw/jbiNfxvdrfBgio/gRBk3yTAEJWirpAkiJG2Hb22E7cEYKHWo0dFPTv/niPovzIdPdEDetrv6tC6gPQ==}
engines: {node: '>=6.9.0'}
- '@babel/helper-wrap-function@7.25.0':
- resolution: {integrity: sha512-s6Q1ebqutSiZnEjaofc/UKDyC4SbzV5n5SrA2Gq8UawLycr3i04f1dX4OzoQVnexm6aOCh37SQNYlJ/8Ku+PMQ==}
- engines: {node: '>=6.9.0'}
-
'@babel/helpers@7.24.6':
resolution: {integrity: sha512-V2PI+NqnyFu1i0GyTd/O/cTpxzQCYioSkUIRmgo7gFEHKKCg5w46+r/A6WeUR1+P3TeQ49dspGPNd/E3n9AnnA==}
engines: {node: '>=6.9.0'}
+ '@babel/helpers@7.25.7':
+ resolution: {integrity: sha512-Sv6pASx7Esm38KQpF/U/OXLwPPrdGHNKoeblRxgZRLXnAtnkEe4ptJPDtAZM7fBLadbc1Q07kQpSiGQ0Jg6tRA==}
+ engines: {node: '>=6.9.0'}
+
'@babel/highlight@7.24.6':
resolution: {integrity: sha512-2YnuOp4HAk2BsBrJJvYCbItHx0zWscI1C3zgWkz+wDyD9I7GIVrfnLyrR4Y1VR+7p+chAEcrgRQYZAGIKMV7vQ==}
engines: {node: '>=6.9.0'}
- '@babel/highlight@7.24.7':
- resolution: {integrity: sha512-EStJpq4OuY8xYfhGVXngigBJRWxftKX9ksiGDnmlY3o7B/V7KIAc9X4oiK87uPJSc/vs5L869bem5fhZa8caZw==}
+ '@babel/highlight@7.25.7':
+ resolution: {integrity: sha512-iYyACpW3iW8Fw+ZybQK+drQre+ns/tKpXbNESfrhNnPLIklLbXr7MYJ6gPEd0iETGLOK+SxMjVvKb/ffmk+FEw==}
engines: {node: '>=6.9.0'}
'@babel/parser@7.24.6':
@@ -719,8 +691,8 @@ packages:
engines: {node: '>=6.0.0'}
hasBin: true
- '@babel/parser@7.25.3':
- resolution: {integrity: sha512-iLTJKDbJ4hMvFPgQwwsVoxtHyWpKKPBrxkANrSYewDPaPpT5py5yeVkgPIJ7XYXhndxJpaA3PyALSXQ7u8e/Dw==}
+ '@babel/parser@7.25.8':
+ resolution: {integrity: sha512-HcttkxzdPucv3nNFmfOOMfFf64KgdJVqm1KaCm25dPGMLElo9nsLvXeJECQg8UzPuBGLyTSA0ZzqCtDSzKTEoQ==}
engines: {node: '>=6.0.0'}
hasBin: true
@@ -762,8 +734,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-proposal-export-default-from@7.24.7':
- resolution: {integrity: sha512-CcmFwUJ3tKhLjPdt4NP+SHMshebytF8ZTYOv5ZDpkzq2sin80Wb5vJrGt8fhPrORQCfoSa0LAxC/DW+GAC5+Hw==}
+ '@babel/plugin-proposal-export-default-from@7.24.6':
+ resolution: {integrity: sha512-qPPDbYs9j5IArMFqYi85QxatHURSzRyskKpIbjrVoVglDuGdhu1s7UTCmXvP/qR2aHa3EdJ8X3iZvQAHjmdHUw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -837,8 +809,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-export-default-from@7.24.7':
- resolution: {integrity: sha512-bTPz4/635WQ9WhwsyPdxUJDVpsi/X9BMmy/8Rf/UAlOO4jSql4CxUCjWI5PiM+jG+c4LVPTScoTw80geFj9+Bw==}
+ '@babel/plugin-syntax-export-default-from@7.24.6':
+ resolution: {integrity: sha512-Nzl7kZ4tjOM2LJpejBMPwZs7OJfc26++2HsMQuSrw6gxpqXGtZZ3Rj4Zt4Qm7vulMZL2gHIGGc2stnlQnHQCqA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -848,8 +820,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-flow@7.24.7':
- resolution: {integrity: sha512-9G8GYT/dxn/D1IIKOUBmGX0mnmj46mGH9NnZyJLwtCpgh5f7D2VbuKodb+2s9m1Yavh1s7ASQN8lf0eqrb1LTw==}
+ '@babel/plugin-syntax-flow@7.24.6':
+ resolution: {integrity: sha512-gNkksSdV8RbsCoHF9sjVYrHfYACMl/8U32UfUhJ9+84/ASXw8dlx+eHyyF0m6ncQJ9IBSxfuCkB36GJqYdXTOA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -882,12 +854,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-jsx@7.24.7':
- resolution: {integrity: sha512-6ddciUPe/mpMnOKv/U+RSd2vvVy+Yw/JfBB0ZHYjEZt9NLHmCUylNYlsbqCCS1Bffjlb0fCwC9Vqz+sBz6PsiQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-syntax-logical-assignment-operators@7.10.4':
resolution: {integrity: sha512-d8waShlpFDinQ5MtvGU9xDAOzKH47+FFoney2baFIoMr952hKOLp1HR7VszoZvOsV/4+RRszNY7D17ba0te0ig==}
peerDependencies:
@@ -936,12 +902,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-syntax-typescript@7.24.7':
- resolution: {integrity: sha512-c/+fVeJBB0FeKsFvwytYiUD+LBvhHjGSI0g446PRGdSVGZLRNArBUno2PETbAly3tpiNAQR5XaZ+JslxkotsbA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-syntax-unicode-sets-regex@7.18.6':
resolution: {integrity: sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==}
engines: {node: '>=6.9.0'}
@@ -954,12 +914,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-arrow-functions@7.24.7':
- resolution: {integrity: sha512-Dt9LQs6iEY++gXUwY03DNFat5C2NbO48jj+j/bSAz6b3HgPs39qcPiYt77fDObIcFwj3/C2ICX9YMwGflUoSHQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-async-generator-functions@7.24.6':
resolution: {integrity: sha512-VEP2o4iR2DqQU6KPgizTW2mnMx6BG5b5O9iQdrW9HesLkv8GIA8x2daXBQxw1MrsIkFQGA/iJ204CKoQ8UcnAA==}
engines: {node: '>=6.9.0'}
@@ -972,12 +926,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-async-to-generator@7.24.7':
- resolution: {integrity: sha512-SQY01PcJfmQ+4Ash7NE+rpbLFbmqA2GPIgqzxfFTL4t1FKRq4zTms/7htKpoCUI9OcFYgzqfmCdH53s6/jn5fA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-block-scoped-functions@7.24.6':
resolution: {integrity: sha512-XNW7jolYHW9CwORrZgA/97tL/k05qe/HL0z/qqJq1mdWhwwCM6D4BJBV7wAz9HgFziN5dTOG31znkVIzwxv+vw==}
engines: {node: '>=6.9.0'}
@@ -990,12 +938,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-block-scoping@7.25.0':
- resolution: {integrity: sha512-yBQjYoOjXlFv9nlXb3f1casSHOZkWr29NX+zChVanLg5Nc157CrbEX9D7hxxtTpuFy7Q0YzmmWfJxzvps4kXrQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-class-properties@7.24.6':
resolution: {integrity: sha512-j6dZ0Z2Z2slWLR3kt9aOmSIrBvnntWjMDN/TVcMPxhXMLmJVqX605CBRlcGI4b32GMbfifTEsdEjGjiE+j/c3A==}
engines: {node: '>=6.9.0'}
@@ -1014,36 +956,18 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-classes@7.25.0':
- resolution: {integrity: sha512-xyi6qjr/fYU304fiRwFbekzkqVJZ6A7hOjWZd+89FVcBqPV3S9Wuozz82xdpLspckeaafntbzglaW4pqpzvtSw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-computed-properties@7.24.6':
resolution: {integrity: sha512-cRzPobcfRP0ZtuIEkA8QzghoUpSB3X3qSH5W2+FzG+VjWbJXExtx0nbRqwumdBN1x/ot2SlTNQLfBCnPdzp6kg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-computed-properties@7.24.7':
- resolution: {integrity: sha512-25cS7v+707Gu6Ds2oY6tCkUwsJ9YIDbggd9+cu9jzzDgiNq7hR/8dkzxWfKWnTic26vsI3EsCXNd4iEB6e8esQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-destructuring@7.24.6':
resolution: {integrity: sha512-YLW6AE5LQpk5npNXL7i/O+U9CE4XsBCuRPgyjl1EICZYKmcitV+ayuuUGMJm2lC1WWjXYszeTnIxF/dq/GhIZQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-destructuring@7.24.8':
- resolution: {integrity: sha512-36e87mfY8TnRxc7yc6M9g9gOB7rKgSahqkIKwLpz4Ppk2+zC2Cy1is0uwtuSG6AE4zlTOUa+7JGz9jCJGLqQFQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-dotall-regex@7.24.6':
resolution: {integrity: sha512-rCXPnSEKvkm/EjzOtLoGvKseK+dS4kZwx1HexO3BtRtgL0fQ34awHn34aeSHuXtZY2F8a1X8xqBBPRtOxDVmcA==}
engines: {node: '>=6.9.0'}
@@ -1074,8 +998,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-flow-strip-types@7.25.2':
- resolution: {integrity: sha512-InBZ0O8tew5V0K6cHcQ+wgxlrjOw1W4wDXLkOTjLRD8GYhTSkxTVBtdy3MMtvYBrbAWa1Qm3hNoTc1620Yj+Mg==}
+ '@babel/plugin-transform-flow-strip-types@7.24.6':
+ resolution: {integrity: sha512-1l8b24NoCpaQ13Vi6FtLG1nv6kNoi8PWvQb1AYO7GHZDpFfBYc3lbXArx1lP2KRt8b4pej1eWc/zrRmsQTfOdQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1092,12 +1016,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-function-name@7.25.1':
- resolution: {integrity: sha512-TVVJVdW9RKMNgJJlLtHsKDTydjZAbwIsn6ySBPQaEAUU5+gVvlJt/9nRmqVbsV/IBanRjzWoaAQKLoamWVOUuA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-json-strings@7.24.6':
resolution: {integrity: sha512-Uvgd9p2gUnzYJxVdBLcU0KurF8aVhkmVyMKW4MIY1/BByvs3EBpv45q01o7pRTVmTvtQq5zDlytP3dcUgm7v9w==}
engines: {node: '>=6.9.0'}
@@ -1110,12 +1028,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-literals@7.25.2':
- resolution: {integrity: sha512-HQI+HcTbm9ur3Z2DkO+jgESMAMcYLuN/A7NRw9juzxAezN9AvqvUTnpKP/9kkYANz6u7dFlAyOu44ejuGySlfw==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-logical-assignment-operators@7.24.6':
resolution: {integrity: sha512-EKaWvnezBCMkRIHxMJSIIylzhqK09YpiJtDbr2wsXTwnO0TxyjMUkaw4RlFIZMIS0iDj0KyIg7H7XCguHu/YDA==}
engines: {node: '>=6.9.0'}
@@ -1140,12 +1052,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-modules-commonjs@7.24.8':
- resolution: {integrity: sha512-WHsk9H8XxRs3JXKWFiqtQebdh9b/pTk4EgueygFzYlTKAg0Ud985mSevdNjdXdFBATSKVJGQXP1tv6aGbssLKA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-modules-systemjs@7.24.6':
resolution: {integrity: sha512-xg1Z0J5JVYxtpX954XqaaAT6NpAY6LtZXvYFCJmGFJWwtlz2EmJoR8LycFRGNE8dBKizGWkGQZGegtkV8y8s+w==}
engines: {node: '>=6.9.0'}
@@ -1164,12 +1070,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/plugin-transform-named-capturing-groups-regex@7.24.7':
- resolution: {integrity: sha512-/jr7h/EWeJtk1U/uz2jlsCioHkZk1JJZVcc8oQsJ1dUlaJD83f4/6Zeh2aHt9BIFokHIsSeDfhUmju0+1GPd6g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0
-
'@babel/plugin-transform-new-target@7.24.6':
resolution: {integrity: sha512-f8liz9JG2Va8A4J5ZBuaSdwfPqN6axfWRK+y66fjKYbwf9VBLuq4WxtinhJhvp1w6lamKUwLG0slK2RxqFgvHA==}
engines: {node: '>=6.9.0'}
@@ -1218,36 +1118,18 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-parameters@7.24.7':
- resolution: {integrity: sha512-yGWW5Rr+sQOhK0Ot8hjDJuxU3XLRQGflvT4lhlSY0DFvdb3TwKaY26CJzHtYllU0vT9j58hc37ndFPsqT1SrzA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-private-methods@7.24.6':
resolution: {integrity: sha512-T9LtDI0BgwXOzyXrvgLTT8DFjCC/XgWLjflczTLXyvxbnSR/gpv0hbmzlHE/kmh9nOvlygbamLKRo6Op4yB6aw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-private-methods@7.24.7':
- resolution: {integrity: sha512-COTCOkG2hn4JKGEKBADkA8WNb35TGkkRbI5iT845dB+NyqgO8Hn+ajPbSnIQznneJTa3d30scb6iz/DhH8GsJQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-private-property-in-object@7.24.6':
resolution: {integrity: sha512-Qu/ypFxCY5NkAnEhCF86Mvg3NSabKsh/TPpBVswEdkGl7+FbsYHy1ziRqJpwGH4thBdQHh8zx+z7vMYmcJ7iaQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-private-property-in-object@7.24.7':
- resolution: {integrity: sha512-9z76mxwnwFxMyxZWEgdgECQglF2Q7cFLm0kMf8pGwt+GSJsY0cONKj/UuO4bOH0w/uAel3ekS4ra5CEAyJRmDA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-property-literals@7.24.6':
resolution: {integrity: sha512-oARaglxhRsN18OYsnPTpb8TcKQWDYNsPNmTnx5++WOAsUJ0cSC/FZVlIJCKvPbU4yn/UXsS0551CFKJhN0CaMw==}
engines: {node: '>=6.9.0'}
@@ -1266,26 +1148,20 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-display-name@7.24.7':
- resolution: {integrity: sha512-H/Snz9PFxKsS1JLI4dJLtnJgCJRoo0AUm3chP6NYr+9En1JMKloheEiLIhlp5MDVznWo+H3AAC1Mc8lmUEpsgg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-react-jsx-development@7.24.6':
resolution: {integrity: sha512-F7EsNp5StNDouSSdYyDSxh4J+xvj/JqG+Cb6s2fA+jCyHOzigG5vTwgH8tU2U8Voyiu5zCG9bAK49wTr/wPH0w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx-self@7.24.7':
- resolution: {integrity: sha512-fOPQYbGSgH0HUp4UJO4sMBFjY6DuWq+2i8rixyUMb3CdGixs/gccURvYOAhajBdKDoGajFr3mUq5rH3phtkGzw==}
+ '@babel/plugin-transform-react-jsx-self@7.25.7':
+ resolution: {integrity: sha512-JD9MUnLbPL0WdVK8AWC7F7tTG2OS6u/AKKnsK+NdRhUiVdnzyR1S3kKQCaRLOiaULvUiqK6Z4JQE635VgtCFeg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx-source@7.24.7':
- resolution: {integrity: sha512-J2z+MWzZHVOemyLweMqngXrgGC42jQ//R0KdxqkIz/OrbVIIlhFI3WigZ5fO+nwFvBlncr4MGapd8vTyc7RPNQ==}
+ '@babel/plugin-transform-react-jsx-source@7.25.7':
+ resolution: {integrity: sha512-S/JXG/KrbIY06iyJPKfxr0qRxnhNOdkNXYBl/rmwgDd72cQLH9tEGkDm/yJPGvcSIUoikzfjMios9i+xT/uv9w==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1296,12 +1172,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-react-jsx@7.25.2':
- resolution: {integrity: sha512-KQsqEAVBpU82NM/B/N9j9WOdphom1SZH3R+2V7INrQUH+V9EBFwZsEJl8eBIVeQE62FxJCc70jzEZwqU7RcVqA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-react-pure-annotations@7.24.6':
resolution: {integrity: sha512-0HoDQlFJJkXRyV2N+xOpUETbKHcouSwijRQbKWVtxsPoq5bbB30qZag9/pSc5xcWVYjTHlLsBsY+hZDnzQTPNw==}
engines: {node: '>=6.9.0'}
@@ -1320,8 +1190,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-runtime@7.24.7':
- resolution: {integrity: sha512-YqXjrk4C+a1kZjewqt+Mmu2UuV1s07y8kqcUf4qYLnoqemhR4gRQikhdAhSVJioMjVTu6Mo6pAbaypEA3jY6fw==}
+ '@babel/plugin-transform-runtime@7.24.6':
+ resolution: {integrity: sha512-W3gQydMb0SY99y/2lV0Okx2xg/8KzmZLQsLaiCmwNRl1kKomz14VurEm+2TossUb+sRvBCnGe+wx8KtIgDtBbQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1332,36 +1202,18 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-shorthand-properties@7.24.7':
- resolution: {integrity: sha512-KsDsevZMDsigzbA09+vacnLpmPH4aWjcZjXdyFKGzpplxhbeB4wYtury3vglQkg6KM/xEPKt73eCjPPf1PgXBA==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-spread@7.24.6':
resolution: {integrity: sha512-h/2j7oIUDjS+ULsIrNZ6/TKG97FgmEk1PXryk/HQq6op4XUUUwif2f69fJrzK0wza2zjCS1xhXmouACaWV5uPA==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-spread@7.24.7':
- resolution: {integrity: sha512-x96oO0I09dgMDxJaANcRyD4ellXFLLiWhuwDxKZX5g2rWP1bTPkBSwCYv96VDXVT1bD9aPj8tppr5ITIh8hBng==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-sticky-regex@7.24.6':
resolution: {integrity: sha512-fN8OcTLfGmYv7FnDrsjodYBo1DhPL3Pze/9mIIE2MGCT1KgADYIOD7rEglpLHZj8PZlC/JFX5WcD+85FLAQusw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-sticky-regex@7.24.7':
- resolution: {integrity: sha512-kHPSIJc9v24zEml5geKg9Mjx5ULpfncj0wRpYtxbvKyTtHCYDkVE3aHQ03FrpEo4gEe2vrJJS1Y9CJTaThA52g==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-template-literals@7.24.6':
resolution: {integrity: sha512-BJbEqJIcKwrqUP+KfUIkxz3q8VzXe2R8Wv8TaNgO1cx+nNavxn/2+H8kp9tgFSOL6wYPPEgFvU6IKS4qoGqhmg==}
engines: {node: '>=6.9.0'}
@@ -1380,12 +1232,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typescript@7.25.2':
- resolution: {integrity: sha512-lBwRvjSmqiMYe/pS0+1gggjJleUJi7NzjvQ1Fkqtt69hBa/0t1YuW/MLQMAPixfwaQOHUXsd6jeU3Z+vdGv3+A==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-unicode-escapes@7.24.6':
resolution: {integrity: sha512-bKl3xxcPbkQQo5eX9LjjDpU2xYHeEeNQbOhj0iPvetSzA+Tu9q/o5lujF4Sek60CM6MgYvOS/DJuwGbiEYAnLw==}
engines: {node: '>=6.9.0'}
@@ -1404,12 +1250,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-unicode-regex@7.24.7':
- resolution: {integrity: sha512-hlQ96MBZSAXUq7ltkjtu3FJCCSMx/j629ns3hA3pXnBXjanNP0LHi+JpPeA81zaWgVK1VGH95Xuy7u0RyQ8kMg==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/plugin-transform-unicode-sets-regex@7.24.6':
resolution: {integrity: sha512-quiMsb28oXWIDK0gXLALOJRXLgICLiulqdZGOaPPd0vRT7fQp74NtdADAVu+D8s00C+0Xs0MxVP0VKF/sZEUgw==}
engines: {node: '>=6.9.0'}
@@ -1422,8 +1262,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/preset-flow@7.24.7':
- resolution: {integrity: sha512-NL3Lo0NorCU607zU3NwRyJbpaB6E3t0xtd3LfAQKDfkeX4/ggcDXvkmkW42QWT5owUeW/jAe4hn+2qvkV1IbfQ==}
+ '@babel/preset-flow@7.24.6':
+ resolution: {integrity: sha512-huoe0T1Qs9fQhMWbmqE/NHUeZbqmHDsN6n/jYvPcUUHfuKiPV32C9i8tDhMbQ1DEKTjbBP7Rjm3nSLwlB2X05g==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1445,12 +1285,6 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/preset-typescript@7.24.7':
- resolution: {integrity: sha512-SyXRe3OdWwIwalxDg5UtJnJQO+YPcTfwiIY2B0Xlddh9o7jpWLvv8X1RthIeDOxQ+O1ML5BLPCONToObyVQVuQ==}
- engines: {node: '>=6.9.0'}
- peerDependencies:
- '@babel/core': ^7.0.0-0
-
'@babel/register@7.24.6':
resolution: {integrity: sha512-WSuFCc2wCqMeXkz/i3yfAAsxwWflEgbVkZzivgAmXl/MxrXeoYFZOOPllbC8R8WTF7u61wSRQtDVZ1879cdu6w==}
engines: {node: '>=6.9.0'}
@@ -1464,32 +1298,28 @@ packages:
resolution: {integrity: sha512-Ja18XcETdEl5mzzACGd+DKgaGJzPTCow7EglgwTmHdwokzDFYh/MHua6lU6DV/hjF2IaOJ4oX2nqnjG7RElKOw==}
engines: {node: '>=6.9.0'}
- '@babel/runtime@7.25.0':
- resolution: {integrity: sha512-7dRy4DwXwtzBrPbZflqxnvfxLF8kdZXPkhymtDeFoFqE6ldzjQFgYTtYIFARcLEYDrqfBfYcZt1WqFxRoyC9Rw==}
- engines: {node: '>=6.9.0'}
-
'@babel/template@7.24.6':
resolution: {integrity: sha512-3vgazJlLwNXi9jhrR1ef8qiB65L1RK90+lEQwv4OxveHnqC3BfmnHdgySwRLzf6akhlOYenT+b7AfWq+a//AHw==}
engines: {node: '>=6.9.0'}
- '@babel/template@7.25.0':
- resolution: {integrity: sha512-aOOgh1/5XzKvg1jvVz7AVrx2piJ2XBi227DHmbY6y+bM9H2FlN+IfecYu4Xl0cNiiVejlsCri89LUsbj8vJD9Q==}
+ '@babel/template@7.25.7':
+ resolution: {integrity: sha512-wRwtAgI3bAS+JGU2upWNL9lSlDcRCqD05BZ1n3X2ONLH1WilFP6O1otQjeMK/1g0pvYcXC7b/qVUB1keofjtZA==}
engines: {node: '>=6.9.0'}
'@babel/traverse@7.24.6':
resolution: {integrity: sha512-OsNjaJwT9Zn8ozxcfoBc+RaHdj3gFmCmYoQLUII1o6ZrUwku0BMg80FoOTPx+Gi6XhcQxAYE4xyjPTo4SxEQqw==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.25.3':
- resolution: {integrity: sha512-HefgyP1x754oGCsKmV5reSmtV7IXj/kpaE1XYY+D9G5PvKKoFfSbiS4M77MdjuwlZKDIKFCffq9rPU+H/s3ZdQ==}
+ '@babel/traverse@7.25.7':
+ resolution: {integrity: sha512-jatJPT1Zjqvh/1FyJs6qAHL+Dzb7sTb+xr7Q+gM1b+1oBsMsQQ4FkVKb6dFlJvLlVssqkRzV05Jzervt9yhnzg==}
engines: {node: '>=6.9.0'}
'@babel/types@7.24.6':
resolution: {integrity: sha512-WaMsgi6Q8zMgMth93GvWPXkhAIEobfsIkLTacoVZoK1J0CevIPGYY2Vo5YvJGqyHqXM6P4ppOYGsIRU8MM9pFQ==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.25.2':
- resolution: {integrity: sha512-YTnYtra7W9e6/oAZEHj0bJehPRUlLH9/fbpT5LfB0NhQXyALCRkRs3zH9v07IYhkgpqX6Z78FnuccZr/l4Fs4Q==}
+ '@babel/types@7.25.8':
+ resolution: {integrity: sha512-JWtuCu8VQsMladxVz/P4HzHUGCAwpuqacmowgXFs5XjxIgKuNjnLokQzuVjlTvIzODaDmpjT3oxcC48vyk9EWg==}
engines: {node: '>=6.9.0'}
'@bcoe/v8-coverage@0.2.3':
@@ -1504,6 +1334,21 @@ packages:
'@bundled-es-modules/tough-cookie@0.1.6':
resolution: {integrity: sha512-dvMHbL464C0zI+Yqxbz6kZ5TOEp7GLW+pry/RWndAR8MJQAXZ2rPmIs8tziTZjeIyhSNZgZbCePtfSbdWqStJw==}
+ '@celo/base@6.1.0':
+ resolution: {integrity: sha512-R6ko2QCfEU32akBsaSNsDYduktgwIKHcJ61SbR7EsXA1VE31/44Qh8kMzfgeahyk375DUCe3pJIKwx5zg1tFHg==}
+
+ '@celo/utils@6.0.1':
+ resolution: {integrity: sha512-X9iK4R4USSgHG87PxpLGHqgKL33bKtBiKZGgPwx4gMM7X+nwpB6Ify/YO1/I+mt9+NN9epPb8/kmYYoWOPYShw==}
+
+ '@chainsafe/as-sha256@0.3.1':
+ resolution: {integrity: sha512-hldFFYuf49ed7DAakWVXSJODuq3pzJEguD8tQ7h+sGkM18vja+OFoJI9krnGmgzyuZC2ETX0NOIcCTy31v2Mtg==}
+
+ '@chainsafe/persistent-merkle-tree@0.4.2':
+ resolution: {integrity: sha512-lLO3ihKPngXLTus/L7WHKaw9PnNJWizlOF1H9NNzHP6Xvh82vzg9F2bzkXhYIFshMZ2gTCEz8tq6STe7r5NDfQ==}
+
+ '@chainsafe/ssz@0.9.4':
+ resolution: {integrity: sha512-77Qtg2N1ayqs4Bg/wvnWfg5Bta7iy7IRh8XqXh7oNMeP2HBbBwx8m6yTpA8p0EHItWPEBkgZd5S5/LSlp3GXuQ==}
+
'@cloudflare/kv-asset-handler@0.3.2':
resolution: {integrity: sha512-EeEjMobfuJrwoctj7FA1y1KEbM0+Q1xSjobIEyie9k4haVEBB7vkDvsasw1pM3rO39mL2akxIAzLMUAtrMHZhA==}
engines: {node: '>=16.13'}
@@ -1547,6 +1392,9 @@ packages:
'@coinbase/wallet-sdk@4.0.4':
resolution: {integrity: sha512-74c040CRnGhfRjr3ArnkAgud86erIqdkPHNt5HR1k9u97uTIZCJww9eGYT67Qf7gHPpGS/xW8Be1D4dvRm63FA==}
+ '@cosmjs/encoding@0.32.4':
+ resolution: {integrity: sha512-tjvaEy6ZGxJchiizzTn7HVRiyTg1i4CObRRaTRPknm5EalE13SV+TCHq38gIDfyUeden4fCuaBVEdBR5+ti7Hw==}
+
'@cspotcode/source-map-support@0.8.1':
resolution: {integrity: sha512-IchNf6dN4tHoMFIn/7OE8LWZ19Y6q/67Bmf6vnGREv8RSbBVb9LPJxEcnwrcwX6ixSvaiGoomAUvu4YSxXrVgw==}
engines: {node: '>=12'}
@@ -1581,6 +1429,9 @@ packages:
'@emotion/unitless@0.7.5':
resolution: {integrity: sha512-OWORNpfjMsSSUBVrRBVGECkhWcULOAJz9ZW8uK9qgxD+87M7jHRcvh/A96XXNhXTLmKcoYSQtBEX7lHMO7YRwg==}
+ '@emotion/unitless@0.8.1':
+ resolution: {integrity: sha512-KOEGMu6dmJZtpadb476IsZBclKvILjopjUii3V+7MnXIQCYh8W3NgNcgwo21n9LXZX6EDIKvqfjYxXebDwxKmQ==}
+
'@ensdomains/address-encoder@0.1.9':
resolution: {integrity: sha512-E2d2gP4uxJQnDu2Kfg1tHNspefzbLT8Tyjrm5sEuim32UkU2sm5xL4VXtgc2X33fmPEw9+jUMpGs4veMbf+PYg==}
@@ -1966,6 +1817,10 @@ packages:
resolution: {integrity: sha512-1nc6VO4jtFd172BbSnTnDQVr9IYBFl1y4xPzZdtkrkKIncBCkdbgfdRV+MiTkJYAtTxvV12GRZLqBFT1PNK6Yw==}
engines: {node: '>=14'}
+ '@ethereumjs/util@8.0.5':
+ resolution: {integrity: sha512-259rXKK3b3D8HRVdRmlOEi6QFvwxdt304hhrEAmpZhsj7ufXEOTIc9JRZPMnXatKjECokdLNBcDOFBeBSzAIaw==}
+ engines: {node: '>=14'}
+
'@ethereumjs/util@8.1.0':
resolution: {integrity: sha512-zQ0IqbdX8FZ9aw11vP+dZkKDkS+kgIvQPHnSAXzP9pLu+Rfu3D3XEeLbicvoXJTYnhZiPmsZUxgdzXwNKxRPbA==}
engines: {node: '>=14'}
@@ -2095,22 +1950,22 @@ packages:
'@vue/compiler-sfc':
optional: true
- '@inquirer/confirm@5.1.0':
- resolution: {integrity: sha512-osaBbIMEqVFjTX5exoqPXs6PilWQdjaLhGtMDXMXg/yxkHXNq43GlxGyTA35lK2HpzUgDN+Cjh/2AmqCN0QJpw==}
+ '@inquirer/confirm@5.1.3':
+ resolution: {integrity: sha512-fuF9laMmHoOgWapF9h9hv6opA5WvmGFHsTYGCmuFxcghIhEhb3dN0CdQR4BUMqa2H506NCj8cGX4jwMsE4t6dA==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
- '@inquirer/core@10.1.1':
- resolution: {integrity: sha512-rmZVXy9iZvO3ZStEe/ayuuwIJ23LSF13aPMlLMTQARX6lGUBDHGV8UB5i9MRrfy0+mZwt5/9bdy8llszSD3NQA==}
+ '@inquirer/core@10.1.4':
+ resolution: {integrity: sha512-5y4/PUJVnRb4bwWY67KLdebWOhOc7xj5IP2J80oWXa64mVag24rwQ1VAdnj7/eDY/odhguW0zQ1Mp1pj6fO/2w==}
engines: {node: '>=18'}
- '@inquirer/figures@1.0.8':
- resolution: {integrity: sha512-tKd+jsmhq21AP1LhexC0pPwsCxEhGgAkg28byjJAd+xhmIs8LUX8JbUc3vBf3PhLxWiB5EvyBE5X7JSPAqMAqg==}
+ '@inquirer/figures@1.0.9':
+ resolution: {integrity: sha512-BXvGj0ehzrngHTPTDqUoDT3NXL8U0RxUk2zJm2A66RhCEIWdtU1v6GuUqNAgArW4PQ9CinqIWyHdQgdwOj06zQ==}
engines: {node: '>=18'}
- '@inquirer/type@3.0.1':
- resolution: {integrity: sha512-+ksJMIy92sOAiAccGpcKZUc3bYO07cADnscIxHBknEm3uNts3movSmBofc1908BNy5edKscxYeAdaX1NXkHS6A==}
+ '@inquirer/type@3.0.2':
+ resolution: {integrity: sha512-ZhQ4TvhwHZF+lGhQ2O/rsjo80XoZR5/5qhOY3t6FJuX5XBg5Be8YzYTvaUGJnc12AUGI2nr4QSUE4PhKSigx7g==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
@@ -2173,6 +2028,9 @@ packages:
'@jridgewell/sourcemap-codec@1.4.15':
resolution: {integrity: sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==}
+ '@jridgewell/sourcemap-codec@1.5.0':
+ resolution: {integrity: sha512-gv3ZRaISU3fjPAgNsriBRqGWQL6quFx04YMPW/zD8XMLsU32mhCCbfbO6KZFLjvYpCZ8zyDEgqsgf+PwPaM7GQ==}
+
'@jridgewell/trace-mapping@0.3.25':
resolution: {integrity: sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==}
@@ -2208,8 +2066,8 @@ packages:
resolution: {integrity: sha512-IoQPmql8q7ABLruW7i4EYVHWUbF74yrp63bRuXV5Zf9BQwcn5H9Ww1eLtROYvI1bUXwOiHZ6qT5CWTrDc/t/AA==}
engines: {node: '>=16.0.0'}
- '@metamask/json-rpc-engine@9.0.2':
- resolution: {integrity: sha512-wteoGUDhiqCgyO6Gdjnm6n+7raoRS+dRHOIsTc7LK2zpezAynav9BIK7QWPcJZeieMTSG5HuYrQf+epLbcdB/g==}
+ '@metamask/json-rpc-engine@9.0.3':
+ resolution: {integrity: sha512-efeRXW7KaL0BJcAeudSGhzu6sD3hMpxx9nl3V+Yemm1bsyc66yVUhYPR+XH+Y6ZvB2p05ywgvd1Ev5PBwFzr/g==}
engines: {node: ^18.18 || >=20}
'@metamask/json-rpc-middleware-stream@7.0.2':
@@ -2239,8 +2097,8 @@ packages:
resolution: {integrity: sha512-VTgWkjWLzb0nupkFl1duQi9Mk8TGT9rsdnQg6DeRrYEFxtFOh0IF8nAwxM/4GWqDl6uIB06lqUBgUrAVWl62Bw==}
engines: {node: '>=16.0.0'}
- '@metamask/rpc-errors@6.3.1':
- resolution: {integrity: sha512-ugDY7cKjF4/yH5LtBaOIKHw/AiGGSAmzptAUEiAEGr/78LwuzcXAxmzEQfSfMIfI+f9Djr8cttq1pRJJKfTuCg==}
+ '@metamask/rpc-errors@6.4.0':
+ resolution: {integrity: sha512-1ugFO1UoirU2esS3juZanS/Fo8C8XYocCuBpfZI5N7ECtoG+zu0wF+uWZASik6CkO6w9n/Iebt4iI4pT0vptpg==}
engines: {node: '>=16.0.0'}
'@metamask/safe-event-emitter@2.0.0':
@@ -2297,10 +2155,15 @@ packages:
resolution: {integrity: sha512-dbIc3C7alOe0agCuBHM1h71UaEaEqOk2W8rAtEn8QGz4haH2Qq7MoK6i7v2guzvkJVVh79c+QCzIqphC3KvrJg==}
engines: {node: '>=16.0.0'}
- '@metamask/utils@9.2.0':
- resolution: {integrity: sha512-01riKC6oc6YJVJBL6g6TgCBwcmzwuVSIIMhnwvWanPWs3ZpUabJzy3GR9PlsBPa2pHd1p0Q6WMVRExWWEHzsQA==}
+ '@metamask/utils@9.3.0':
+ resolution: {integrity: sha512-w8CVbdkDrVXFJbfBSlDfafDR6BAkpDmv1bC1UJVCoVny5tW2RKAdn9i68Xf7asYT4TnUhl/hN4zfUiKQq9II4g==}
engines: {node: '>=16.0.0'}
+ '@moonpay/moonpay-react@1.8.2':
+ resolution: {integrity: sha512-zzG6y/Y41pCVoOu7So2qpINSediVSSN/T5xviOGTBlO874SAvTSVe/7G0aASdRVHP5lwd6NyBjSZZs1ODm/uCQ==}
+ peerDependencies:
+ react: ^18.2.0
+
'@motionone/animation@10.17.0':
resolution: {integrity: sha512-ANfIN9+iq1kGgsZxs+Nz96uiNcPLGTXwfNo2Xz/fcJXniPYpaz/Uyrfa+7I5BPLxCP82sh7quVDudf1GABqHbg==}
@@ -2326,8 +2189,8 @@ packages:
resolution: {integrity: sha512-z10PF9JV6SbjFq+/rYabM+8CVlMokgl8RFGvieSGNTmrkQanfHn+15XBrhG3BgUfvmTeSeyShfOHpG0i9zEdcg==}
deprecated: Motion One for Vue is deprecated. Use Oku Motion instead https://oku-ui.com/motion
- '@mswjs/interceptors@0.37.3':
- resolution: {integrity: sha512-USvgCL/uOGFtVa6SVyRrC8kIAedzRohxIXN5LISlg5C5vLZCn7dgMFVSNhSF9cuBEFrm/O2spDWEZeMnw4ZXYg==}
+ '@mswjs/interceptors@0.37.5':
+ resolution: {integrity: sha512-AAwRb5vXFcY4L+FvZ7LZusDuZ0vEe0Zm8ohn1FM6/X7A3bj4mqmkAcGRWuvC2JwSygNwHAAmMnAI73vPHeqsHA==}
engines: {node: '>=18'}
'@multiformats/sha3@2.0.17':
@@ -2402,10 +2265,6 @@ packages:
'@noble/curves@1.4.0':
resolution: {integrity: sha512-p+4cb332SFCrReJkCYe8Xzm0OWi4Jji5jVdIZRL/PmacmDkFNw6MrrV+gGpiPxLHbV+zKFRywUWbaseT+tZRXg==}
- '@noble/curves@1.6.0':
- resolution: {integrity: sha512-TlaHRXDehJuRNR9TfZDNQ45mMEd5dwUwmicsafcIX4SsNiqnCHKjE/1alYPd/lDRVhxdhUAlv8uEhMCI5zjIJQ==}
- engines: {node: ^14.21.3 || >=16}
-
'@noble/hashes@1.2.0':
resolution: {integrity: sha512-FZfhjEDbT5GRswV3C6uvLPHMiVD6lQBmpoX5+eSiPaMTXte/IKqI5dykDxzZB/WBeK/CDuQRBWarPdi3FNY2zQ==}
@@ -2666,23 +2525,17 @@ packages:
resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==}
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
- '@playwright/test@1.48.2':
- resolution: {integrity: sha512-54w1xCWfXuax7dz4W2M9uw0gDyh+ti/0K/MxcCUxChFh37kkdxPdfZDw5QBbuPUJHr1CiHJ1hXgSs+GgeQc5Zw==}
+ '@playwright/test@1.49.0':
+ resolution: {integrity: sha512-DMulbwQURa8rNIQrf94+jPJQ4FmOVdpE5ZppRNvWVjvhC+6sOeo28r8MgIpQRYouXRtt/FCCXU7zn20jnHR4Qw==}
engines: {node: '>=18'}
hasBin: true
'@polka/url@1.0.0-next.25':
resolution: {integrity: sha512-j7P6Rgr3mmtdkeDGTe0E/aYyWEWVtc5yFXtHCRHs28/jptDEWfaVOc5T7cblqy1XKPPfCxJc/8DwQ5YgLOZOVQ==}
- '@rainbow-me/rainbowkit@2.1.2':
- resolution: {integrity: sha512-nzhS4p7rtE9bAkOKSq+J761+gn6UseVxMdDpRBAr+0+ct/Hv1STErq9TT3GEXNrnAeSldtbxBVIkepa4uGykDA==}
- engines: {node: '>=12.4'}
- peerDependencies:
- '@tanstack/react-query': '>=5.0.0'
- react: ^18.2.0
- react-dom: ^18.2.0
- viem: 2.x
- wagmi: ^2.9.0
+ '@ramp-network/ramp-instant-sdk@4.0.7':
+ resolution: {integrity: sha512-rkGBsg9fX6zFn3h1V3pazhMuOC7oo6nrs2azUMI1/QLsZrYOdHL8Rir7qo0FwYnv7fvuyW7TqI9nVl6wYOVIEg==}
+ engines: {node: '>=6.0.0'}
'@react-native-community/cli-clean@13.6.6':
resolution: {integrity: sha512-cBwJTwl0NyeA4nyMxbhkWZhxtILYkbU3TW3k8AXLg+iGphe0zikYMGB3T+haTvTc6alTyEFwPbimk9bGIqkjAQ==}
@@ -2900,9 +2753,6 @@ packages:
'@scure/base@1.1.6':
resolution: {integrity: sha512-ok9AWwhcgYuGG3Zfhyqg+zwl+Wn5uE+dwC0NV/2qQkx4dABbb/bx96vWu8NSj+BNjjSjno+JRYRjle1jV08k3g==}
- '@scure/base@1.1.9':
- resolution: {integrity: sha512-8YKhl8GHiNI/pU2VMaofa2Tor7PJRAjwQLBBuilkJ9L5+13yVbC7JO/wS7piioAvPSwR3JKM1IJ/u4xQzbcXKg==}
-
'@scure/bip32@1.1.5':
resolution: {integrity: sha512-XyNh1rB0SkEqd3tXcXMi+Xe1fvg+kUIcoRIEujP1Jgv7DqW2r9lg3Ah0NkFaCs9sTkQAQA8kw7xiRXzENi9Rtw==}
@@ -2912,9 +2762,6 @@ packages:
'@scure/bip32@1.4.0':
resolution: {integrity: sha512-sVUpc0Vq3tXCkDGYVWGIZTRfnvu8LoTDaev7vbwh0omSvVORONr960MQWdKqJDCReIEmTj3PAr73O3aoxz7OPg==}
- '@scure/bip32@1.5.0':
- resolution: {integrity: sha512-8EnFYkqEQdnkuGBVpCzKxyIwDCBLDVj3oiX0EKUFre/tOjL/Hqba1D6n/8RcmaQy4f95qQFrO2A8Sr6ybh4NRw==}
-
'@scure/bip39@1.1.1':
resolution: {integrity: sha512-t+wDck2rVkh65Hmv280fYdVdY25J9YeEUIgn2LG1WM6gxFkGzcksoDiUkWVpVp3Oex9xGC68JU2dSbUfwZ2jPg==}
@@ -2924,9 +2771,6 @@ packages:
'@scure/bip39@1.3.0':
resolution: {integrity: sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ==}
- '@scure/bip39@1.4.0':
- resolution: {integrity: sha512-BEEm6p8IueV/ZTfQLp/0vhw4NPnT9oWf5+28nvmeUICjP99f4vr2d+qc7AVGDDtwRep6ifR43Yed9ERVmiITzw==}
-
'@sentry/browser@7.43.0':
resolution: {integrity: sha512-NlRkBYKb9o5IQdGY8Ktps19Hz9RdSuqS1tlLC7Sjr+MqZqSHmhKq8MWJKciRynxBeMbeGt0smExi9BqpVQdCEg==}
engines: {node: '>=8'}
@@ -3087,6 +2931,10 @@ packages:
resolution: {integrity: sha512-EqrNjTReRmb9jQKhceqjGaRP3tBetnuI+p8QAXoUvW+HErjRnSf7fjDXFAYTzy2rI9DKUMaK8bU8iubV6HhNfg==}
engines: {node: '>=18.20.4'}
+ '@socketregistry/define-properties@1.0.5':
+ resolution: {integrity: sha512-IMB5rE7tgw7+TbIz/2NGcZj9NeXNxisXWCxzjElklmSo1vuB536FLQjkXZ7Xbd8DVEXOiR9Lg4Hx+AJ1bUmeFw==}
+ engines: {node: '>=18.20.4'}
+
'@socketregistry/es-define-property@1.0.5':
resolution: {integrity: sha512-zipl+Zs/75Fjt7vE3RqbbDNfdIFsvsmd2wLmwoxI1Z/ID28j5dp7ZzaMesQAQqK+zv24a4WTywQVg7f35E3rcw==}
engines: {node: '>=18.20.4'}
@@ -3303,6 +3151,20 @@ packages:
'@stablelib/x25519@1.0.3':
resolution: {integrity: sha512-KnTbKmUhPhHavzobclVJQG5kuivH+qDLpe84iRqX3CLrKp881cF160JvXJ+hjn1aMyCwYOKeIZefIH/P5cJoRw==}
+ '@stencil/core@4.22.1':
+ resolution: {integrity: sha512-/vaKFIK/BWpGVDTj3u6TE7Nc2SCqG1PmXPtg3mEpiJw1aJZFar/jrZzbvyBOVQ7TGpDdO1ne3esXAQndj73UTQ==}
+ engines: {node: '>=16.0.0', npm: '>=7.10.0'}
+ hasBin: true
+
+ '@stripe/crypto@0.0.4':
+ resolution: {integrity: sha512-gcD/aG0N90ZrNVppWYf9ADPECptw6PVtF67VIeaFP7fhgd2NvNx8erkzlcvk3VIVSY+bZ6YGX7c7cASoySX74Q==}
+ peerDependencies:
+ '@stripe/stripe-js': ^1.46.0
+
+ '@stripe/stripe-js@3.5.0':
+ resolution: {integrity: sha512-pKS3wZnJoL1iTyGBXAvCwduNNeghJHY6QSRSNNvpYnrrQrLZ6Owsazjyynu0e0ObRgks0i7Rv+pe2M7/MBTZpQ==}
+ engines: {node: '>=12.16'}
+
'@svgr/babel-plugin-add-jsx-attribute@8.0.0':
resolution: {integrity: sha512-b9MIk7yhdS1pMCZM8VeNfUlSKVRhsHZNMl5O9SfaX0l0t5wjdgu4IDzGB8bpnGBBOjGST3rRFVsaaEtI4W6f7g==}
engines: {node: '>=14'}
@@ -3395,8 +3257,8 @@ packages:
'@tanstack/query-core@5.22.2':
resolution: {integrity: sha512-z3PwKFUFACMUqe1eyesCIKg3Jv1mysSrYfrEW5ww5DCDUD4zlpTKBvUDaEjsfZzL3ULrFLDM9yVUxI/fega1Qg==}
- '@tanstack/query-devtools@5.58.0':
- resolution: {integrity: sha512-iFdQEFXaYYxqgrv63ots+65FGI+tNp5ZS5PdMU1DWisxk3fez5HG3FyVlbUva+RdYS5hSLbxZ9aw3yEs97GNTw==}
+ '@tanstack/query-devtools@5.61.4':
+ resolution: {integrity: sha512-21Tw+u8E3IJJj4A/Bct4H0uBaDTEu7zBrR79FeSyY+mS2gx5/m316oDtJiKkILc819VSTYt+sFzODoJNcpPqZQ==}
'@tanstack/query-persist-client-core@5.22.2':
resolution: {integrity: sha512-sFDgWoN54uclIDIoImPmDzxTq8HhZEt9pO0JbVHjI6LPZqunMMF9yAq9zFKrpH//jD5f+rBCQsdGyhdpUo9e8Q==}
@@ -3404,10 +3266,10 @@ packages:
'@tanstack/query-sync-storage-persister@5.22.2':
resolution: {integrity: sha512-mDxXURiMPzWXVc+FwDu94VfIt/uHk5+9EgcxJRYtj8Vsx18T0DiiKk1VgVOBLd97C+Sa7z7ujP2D6Y5lphW+hQ==}
- '@tanstack/react-query-devtools@5.59.0':
- resolution: {integrity: sha512-Kz7577FQGU8qmJxROIT/aOwmkTcxfBqgTP6r1AIvuJxVMVHPkp8eQxWQ7BnfBsy/KTJHiV9vMtRVo1+R1tB3vg==}
+ '@tanstack/react-query-devtools@5.62.1':
+ resolution: {integrity: sha512-fxf9m9nwWcP36wY5Vc2OQ9pLbCcTgHmsaBfjD4PQ+Aphze4cmsC8QF9UeAy7LpYHbOA4wycE7MFjD541BRm9+g==}
peerDependencies:
- '@tanstack/react-query': ^5.59.0
+ '@tanstack/react-query': ^5.62.1
react: ^18.2.0
'@tanstack/react-query-persist-client@5.22.2':
@@ -3572,11 +3434,14 @@ packages:
'@types/dom-screen-wake-lock@1.0.3':
resolution: {integrity: sha512-3Iten7X3Zgwvk6kh6/NRdwN7WbZ760YgFCsF5AxDifltUQzW1RaW+WRmcVtgwFzLjaNu64H+0MPJ13yRa8g3Dw==}
+ '@types/elliptic@6.4.18':
+ resolution: {integrity: sha512-UseG6H5vjRiNpQvrhy4VF/JXdA3V/Fp5amvveaL+fs28BZ6xIKJBPnUPRlEaZpysD9MbpfaLi8lbl7PGUAkpWw==}
+
'@types/eslint-scope@3.7.7':
resolution: {integrity: sha512-MzMFlSLBqNF2gcHWO0G1vP/YQyfvrxZ0bF+u7mzUdZ1/xK4A4sru+nraZz5i3iEIk1l1uyicaDVTB4QbbEkAYg==}
- '@types/eslint@9.6.0':
- resolution: {integrity: sha512-gi6WQJ7cHRgZxtkQEoyHMppPjq9Kxo5Tjn2prSKDSmZrCz8TZ3jSRCeTJm+WoM+oB0WG37bRqLzaaU3q7JypGg==}
+ '@types/eslint@8.56.10':
+ resolution: {integrity: sha512-Shavhk87gCtY2fhXDctcfS3e6FdxWkCx1iUZ9eEUbh7rTqlZT0/IzOkCOVt0fCjcFuZ9FPYfuezTBImfHCDBGQ==}
'@types/estree@1.0.5':
resolution: {integrity: sha512-/kYRxGDLWzHOB7q+wtSUQlFrtcdUccpfy+X+9iMBpHK8QLLhx2wIPYuS5DYtR9Wa/YlZAbIovy7qVdB1Aq6Lyw==}
@@ -3632,9 +3497,6 @@ packages:
'@types/node@18.19.33':
resolution: {integrity: sha512-NR9+KrpSajr2qBVp/Yt5TU/rp+b5Mayi3+OlMlcg2cVCfRmcG5PWZ7S4+MG9PZ5gWBoc9Pd0BKSRViuBCRPu0A==}
- '@types/node@18.19.44':
- resolution: {integrity: sha512-ZsbGerYg72WMXUIE9fYxtvfzLEuq6q8mKERdWFnqTmOvudMxnz+CBNRoOwJ2kNpFOncrKjT1hZwxjlFgQ9qvQA==}
-
'@types/normalize-package-data@2.4.4':
resolution: {integrity: sha512-37i+OaWTh9qeK4LSHPsyRC7NahnGotNuZvjLSgcPzblpHB3rrCJxAOgI5gCdKm7coonsaX1Of0ILiTcnZjbfxA==}
@@ -3686,6 +3548,9 @@ packages:
'@types/styled-components@5.1.23':
resolution: {integrity: sha512-zt8oQGU6XB4LH1Xpq169YnAVmt22+swzHJvyKMyTZu/z8+afvgKjjg0s79aAodgNSf36ZOEG6DyVAW/JhLH2Nw==}
+ '@types/stylis@4.2.5':
+ resolution: {integrity: sha512-1Xve+NMN7FWjY14vLoY5tL3BVEQ/n42YLwaqJIPYhotZ9uBHt87VceMwWQpzmdEt2TNXIorIFG+YeCUUW7RInw==}
+
'@types/tough-cookie@4.0.5':
resolution: {integrity: sha512-/Ad8+nIOV7Rl++6f1BdKxFSMgmoqEoYbHRpPcx3JEfv8VRsQe9Z4mCXeJBzxs7mbHY/XOZZuXlRNfhpVPbs6ZA==}
@@ -3816,6 +3681,62 @@ packages:
resolution: {integrity: sha512-9ntIVgsi6gg6FIq9xjEO4VQJvwOqA3jaBFQJ/6TK5AvEup2+cECI6Fh7QiBxmfMHXU0V0J4RyPeOU1VDNzl9cg==}
engines: {node: ^18.18.0 || >=20.0.0}
+ '@usecapsule/core-components@3.19.0':
+ resolution: {integrity: sha512-jIW+iMQRlIkLvY3GvIFXLYQoQIOGz8LE+U/MVm24BSo6LJ2pHzBV7ML/+sAgpjjRPoijihsSo6o201PKRR5xUA==}
+
+ '@usecapsule/core-sdk@2.14.0':
+ resolution: {integrity: sha512-vumPLG4RARfXVqcjRn/+TnH8H6qW5Z3oJC1O7bgKa6eLeCnYKSQpc3j2V1hHUIVBfI0CObcIOV7yjXVDFegxQA==}
+
+ '@usecapsule/rainbowkit-wallet@1.6.0':
+ resolution: {integrity: sha512-u8p7Xy8d6F6ZYKRa0Pulet+HK1IsLPLPWiCR9ld+C1tixVFHAlmpI31EbyvRq0ZNiH/dp41MJlx+HKSssLkUqw==}
+ peerDependencies:
+ '@usecapsule/rainbowkit': 3.x
+ viem: 2.x
+ wagmi: 2.x
+
+ '@usecapsule/rainbowkit@3.6.0':
+ resolution: {integrity: sha512-QbgO4GZ5LSuFBvEZ7Chevx85c5yj6bYjnBQiI5ATnYhADcyjhE0mZ8al4pEB55nE5oEZgRwthlP9u6P3Hz+xfQ==}
+ engines: {node: '>=12.4'}
+ peerDependencies:
+ react: ^18.2.0
+ react-dom: ^18.2.0
+ viem: 2.x
+ wagmi: 2.x
+
+ '@usecapsule/react-common@1.11.0':
+ resolution: {integrity: sha512-dpIawcLzGp4y3CpguY+pCn3fXZewlmjplKpwYFcRlVc1ts7RvE1JKnc3vRLbukMj0CNST3upecKkd9b34sIhUg==}
+ peerDependencies:
+ react: ^18.2.0
+ react-dom: ^18.2.0
+
+ '@usecapsule/react-components@3.19.0':
+ resolution: {integrity: sha512-1TKDz10R3h9aiWk371ICBMEJy5P5Aftp4hJ23fjilm7uDR3eLjMg/YPM5MT9F9ikjugtrYWJCTAsNeAxnjsiCQ==}
+
+ '@usecapsule/react-sdk@4.14.0':
+ resolution: {integrity: sha512-W10zWhjjX2/p2036ditgXqkXPAu0qw3Z0iKzUy7rSW0NE16x/+tEX8RIT9evjY4caqx5c2J9A39LNRtjdACdlw==}
+ peerDependencies:
+ react: ^18.2.0
+ react-dom: ^18.2.0
+
+ '@usecapsule/user-management-client@1.36.0':
+ resolution: {integrity: sha512-eMU1ouFxH0WVSkrJGuQ9OGP42NwYcgSQhOSqtvAr+WZdeYBGkWmc6fi6fca6Ipjbxm8eCNfByf+xid7Ay0mdhg==}
+
+ '@usecapsule/viem-v2-integration@2.14.0':
+ resolution: {integrity: sha512-3/nycYi6z6RuKm5NI/KG/0kfekRMu+o/hY9Yjb13Mfse8r8y08JGunUw646OEW0UEoa7y2E7hV6e6BagxpE3mw==}
+ peerDependencies:
+ viem: 2.x
+
+ '@usecapsule/wagmi-v2-integration@3.14.0-dev.1':
+ resolution: {integrity: sha512-3QbYwDh0RopoEO4D0deJkZizxRbYCNUxH9fkYHQXZzKClRah6QubuTEi+OLOp5oCryEu+HuiWiVefdna3nqBew==}
+ peerDependencies:
+ react: ^18.2.0
+ react-dom: ^18.2.0
+ viem: 2.x
+ wagmi: 2.x
+
+ '@usecapsule/web-sdk@2.14.0':
+ resolution: {integrity: sha512-h5xIwB2bonc2UU5NHSTzueiUrxk505v5ksHx4HyFqaZj9SFkebl+KsijizU39HsGPHAy4rGSjHLsWiJTPNtGVg==}
+
'@vanilla-extract/css@1.14.0':
resolution: {integrity: sha512-rYfm7JciWZ8PFzBM/HDiE2GLnKI3xJ6/vdmVJ5BSgcCZ5CxRlM9Cjqclni9lGzF3eMOijnUhCd/KV8TOzyzbMA==}
@@ -3830,34 +3751,50 @@ packages:
peerDependencies:
'@vanilla-extract/css': ^1.0.0
- '@vitejs/plugin-react@4.3.1':
- resolution: {integrity: sha512-m/V2syj5CuVnaxcUJOQRel/Wr31FFXRFlnOoq1TVtkCxsY5veGMTEmpWHndrhB2U8ScHtCQB1e+4hWYExQc6Lg==}
+ '@vitejs/plugin-react@4.3.3':
+ resolution: {integrity: sha512-NooDe9GpHGqNns1i8XDERg0Vsg5SSYRhRxxyTGogUdkdNt47jal+fbuYi+Yfq6pzRCKXyoPcWisfxE6RIM3GKA==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
vite: ^4.2.0 || ^5.0.0
- '@vitest/coverage-v8@2.0.5':
- resolution: {integrity: sha512-qeFcySCg5FLO2bHHSa0tAZAOnAUbp4L6/A5JDuj9+bt53JREl8hpLjLHEWF0e/gWc8INVpJaqA7+Ene2rclpZg==}
+ '@vitest/coverage-v8@2.1.3':
+ resolution: {integrity: sha512-2OJ3c7UPoFSmBZwqD2VEkUw6A/tzPF0LmW0ZZhhB8PFxuc+9IBG/FaSM+RLEenc7ljzFvGN+G0nGQoZnh7sy2A==}
peerDependencies:
- vitest: 2.0.5
+ '@vitest/browser': 2.1.3
+ vitest: 2.1.3
+ peerDependenciesMeta:
+ '@vitest/browser':
+ optional: true
+
+ '@vitest/expect@2.1.3':
+ resolution: {integrity: sha512-SNBoPubeCJhZ48agjXruCI57DvxcsivVDdWz+SSsmjTT4QN/DfHk3zB/xKsJqMs26bLZ/pNRLnCf0j679i0uWQ==}
- '@vitest/expect@2.0.5':
- resolution: {integrity: sha512-yHZtwuP7JZivj65Gxoi8upUN2OzHTi3zVfjwdpu2WrvCZPLwsJ2Ey5ILIPccoW23dd/zQBlJ4/dhi7DWNyXCpA==}
+ '@vitest/mocker@2.1.3':
+ resolution: {integrity: sha512-eSpdY/eJDuOvuTA3ASzCjdithHa+GIF1L4PqtEELl6Qa3XafdMLBpBlZCIUCX2J+Q6sNmjmxtosAG62fK4BlqQ==}
+ peerDependencies:
+ '@vitest/spy': 2.1.3
+ msw: ^2.3.5
+ vite: ^5.0.0
+ peerDependenciesMeta:
+ msw:
+ optional: true
+ vite:
+ optional: true
- '@vitest/pretty-format@2.0.5':
- resolution: {integrity: sha512-h8k+1oWHfwTkyTkb9egzwNMfJAEx4veaPSnMeKbVSjp4euqGSbQlm5+6VHwTr7u4FJslVVsUG5nopCaAYdOmSQ==}
+ '@vitest/pretty-format@2.1.3':
+ resolution: {integrity: sha512-XH1XdtoLZCpqV59KRbPrIhFCOO0hErxrQCMcvnQete3Vibb9UeIOX02uFPfVn3Z9ZXsq78etlfyhnkmIZSzIwQ==}
- '@vitest/runner@2.0.5':
- resolution: {integrity: sha512-TfRfZa6Bkk9ky4tW0z20WKXFEwwvWhRY+84CnSEtq4+3ZvDlJyY32oNTJtM7AW9ihW90tX/1Q78cb6FjoAs+ig==}
+ '@vitest/runner@2.1.3':
+ resolution: {integrity: sha512-JGzpWqmFJ4fq5ZKHtVO3Xuy1iF2rHGV4d/pdzgkYHm1+gOzNZtqjvyiaDGJytRyMU54qkxpNzCx+PErzJ1/JqQ==}
- '@vitest/snapshot@2.0.5':
- resolution: {integrity: sha512-SgCPUeDFLaM0mIUHfaArq8fD2WbaXG/zVXjRupthYfYGzc8ztbFbu6dUNOblBG7XLMR1kEhS/DNnfCZ2IhdDew==}
+ '@vitest/snapshot@2.1.3':
+ resolution: {integrity: sha512-qWC2mWc7VAXmjAkEKxrScWHWFyCQx/cmiZtuGqMi+WwqQJ2iURsVY4ZfAK6dVo6K2smKRU6l3BPwqEBvhnpQGg==}
- '@vitest/spy@2.0.5':
- resolution: {integrity: sha512-c/jdthAhvJdpfVuaexSrnawxZz6pywlTPe84LUB2m/4t3rl2fTo9NFGBG4oWgaD+FTgDDV8hJ/nibT7IfH3JfA==}
+ '@vitest/spy@2.1.3':
+ resolution: {integrity: sha512-Nb2UzbcUswzeSP7JksMDaqsI43Sj5+Kry6ry6jQJT4b5gAK+NS9NED6mDb8FlMRCX8m5guaHCDZmqYMMWRy5nQ==}
- '@vitest/utils@2.0.5':
- resolution: {integrity: sha512-d8HKbqIcya+GR67mkZbrzhS5kKhtp8dQLcmRZLGTscGVg7yImT82cIrhtn2L8+VujWcy6KZweApgNmPsTAO/UQ==}
+ '@vitest/utils@2.1.3':
+ resolution: {integrity: sha512-xpiVfDSg1RrYT0tX6czgerkpcKFmFOF/gCr30+Mve5V2kewCy4Prn1/NDMSRwaSmT7PRaOF83wu+bEtsY1wrvA==}
'@wagmi/connectors@5.1.4':
resolution: {integrity: sha512-LY8RAHy5ichhc7zknFrfrQ3RYZ/fHGgojBz0zMFae5rRrjkR3fG4gRQ9mauPwykGJmOSZshGiFryG1F1gLBm3A==}
@@ -4035,17 +3972,6 @@ packages:
zod:
optional: true
- abitype@1.0.6:
- resolution: {integrity: sha512-MMSqYh4+C/aVqI2RQaWqbvI4Kxo5cQV40WQ4QFtDnNzCkqChm8MuENhElmynZlO0qUy/ObkEUaXtKqYnx1Kp3A==}
- peerDependencies:
- typescript: '>=5.0.4'
- zod: ^3 >=3.22.0
- peerDependenciesMeta:
- typescript:
- optional: true
- zod:
- optional: true
-
abort-controller@3.0.0:
resolution: {integrity: sha512-h8lQ8tacZYnR3vNQTgibj+tODHI5/+l06Au2Pcriv/Gmet0eaj4TwWH41sO9wnHDiQsEj19q0drzdWdeAHtweg==}
engines: {node: '>=6.5'}
@@ -4077,11 +4003,6 @@ packages:
engines: {node: '>=0.4.0'}
hasBin: true
- acorn@8.12.1:
- resolution: {integrity: sha512-tcpGyI9zbizT9JbV6oYE477V6mTlXvvi0T0G3SNIYE2apm/G5huBa1+K89VGeovbg+jycCrfhl3ADxErOuO6Jg==}
- engines: {node: '>=0.4.0'}
- hasBin: true
-
adm-zip@0.4.16:
resolution: {integrity: sha512-TFi4HBKSGfIKsK5YCkKaaFG2m4PEDyViZmEwof3MTIgzimHLto6muaHVpbrljdIvIrFZzEq/p4nafOeLcYegrg==}
engines: {node: '>=0.3.0'}
@@ -4162,8 +4083,8 @@ packages:
resolution: {integrity: sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==}
engines: {node: '>=8'}
- ansi-regex@6.0.1:
- resolution: {integrity: sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==}
+ ansi-regex@6.1.0:
+ resolution: {integrity: sha512-7HSX4QQb4CspciLpVFwyRe79O3xsIZDDLER21kERQ71oaPodF8jL725AgJMFAYbooIqolJoRLuM81SpeUkpkvA==}
engines: {node: '>=12'}
ansi-styles@3.2.1:
@@ -4236,6 +4157,9 @@ packages:
resolution: {integrity: sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==}
engines: {node: '>=0.8'}
+ assert@2.1.0:
+ resolution: {integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==}
+
assertion-error@1.1.0:
resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==}
@@ -4287,6 +4211,9 @@ packages:
axios@0.25.0:
resolution: {integrity: sha512-cD8FOb0tRH3uuEe6+evtAbgJtfxr7ly3fQjYcMcuPlgkwVS9xboaVIpcDV+cYQe+yGykgwZCs1pzjntcGa6l5g==}
+ axios@1.7.7:
+ resolution: {integrity: sha512-S4kL7XrjgBmvdGut0sN3yJxqYzrDOnivkBiN0OFs6hLiUam3UPvswUo0kqGyhqUZGEOytHyumEdXsAkgCOUf3Q==}
+
axobject-query@3.2.1:
resolution: {integrity: sha512-jsyHu61e6N4Vbz/v18DHwWYKK0bSWLqn47eeDSKPB7m8tqMHF9YJ+mhIk2lVteyZrY8tnSj/jHOv4YiTCuCJgg==}
@@ -4305,11 +4232,6 @@ packages:
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
- babel-plugin-polyfill-corejs3@0.10.6:
- resolution: {integrity: sha512-b37+KR2i/khY5sKmWNVQAnitvquQbNdWy6lJdsr0kmquCKEEUgMKK4SboVM3HtfnZilfjr4MMQ7vY58FVWDtIA==}
- peerDependencies:
- '@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
-
babel-plugin-polyfill-regenerator@0.6.2:
resolution: {integrity: sha512-2R25rQZWP63nGwaAswvDazbPXfrM3HwVoBXK6HcqeKrSrL/JqcC/rDcf95l4r7LXLyxDXc8uQDa064GubtCABg==}
peerDependencies:
@@ -4335,6 +4257,10 @@ packages:
base64-js@1.5.1:
resolution: {integrity: sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==}
+ base64url@3.0.1:
+ resolution: {integrity: sha512-ir1UPr3dkwexU7FdV8qBBbNDRUhMmIekYMFZfi+C/sLNnRESKPl23nB9b2pltqfOQNnGzsDdId90AEtG5tCx4A==}
+ engines: {node: '>=6.0.0'}
+
bcrypt-pbkdf@1.0.2:
resolution: {integrity: sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==}
@@ -4377,6 +4303,9 @@ packages:
resolution: {integrity: sha512-ml9pReCu3M61kGlqoTm2umSXTlRTuGTx0bfYj+uIUKKYycG5NtSbeetV3faSU6R7ajOPw0g/J1PvK4qNy7s5bA==}
engines: {node: '>= 0.8', npm: 1.2.8000 || >= 1.4.16}
+ body-scroll-lock@3.1.5:
+ resolution: {integrity: sha512-Yi1Xaml0EvNA0OYWxXiYNqY24AfWkbA6w5vxE7GWxtKfzIbZM+Qw+aSmkgsbWzbHiy/RCSkUZBplVxTA+E4jJg==}
+
boolbase@1.0.0:
resolution: {integrity: sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==}
@@ -4411,8 +4340,8 @@ packages:
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
- browserslist@4.23.3:
- resolution: {integrity: sha512-btwCFJVjI4YWDNfau8RhZ+B1Q/VLoUITrm3RlP6y1tYGWIOa+InuYiRGXUBXo8nA1qKmHMyLB/iVQg5TT4eFoA==}
+ browserslist@4.24.0:
+ resolution: {integrity: sha512-Rmb62sR1Zpjql25eSanFGEhAxcFwfA1K0GuQcLoaJBAcENegrQut3hYdhXFF1obQfiDyqIW/cLM5HSJ/9k884A==}
engines: {node: ^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7}
hasBin: true
@@ -4524,8 +4453,8 @@ packages:
caniuse-lite@1.0.30001621:
resolution: {integrity: sha512-+NLXZiviFFKX0fk8Piwv3PfLPGtRqJeq2TiNoUff/qB5KJgwecJTvCXDpmlyP/eCI/GUEmp/h/y5j0yckiiZrA==}
- caniuse-lite@1.0.30001651:
- resolution: {integrity: sha512-9Cf+Xv1jJNe1xPZLGuUXLNkE1BoDkqRqYyFJ9TDYSqhduqA4hu4oR9HluGoWYQC/aj8WHjsGVV+bwkh0+tegRg==}
+ caniuse-lite@1.0.30001669:
+ resolution: {integrity: sha512-DlWzFDJqstqtIVx1zeSpIMLjunf5SmwOw0N2Ck/QSQdS8PLS4+9HrLaYei4w8BIAL7IB/UEDu889d8vhCTPA0w==}
canvas@2.11.2:
resolution: {integrity: sha512-ItanGBMrmRV7Py2Z+Xhs7cT+FNt5K0vPL4p9EZ/UX/Mu7hFbkxSjKF2KVtPwX7UYWp7dRKnrTvReflgrItJbdw==}
@@ -4534,9 +4463,17 @@ packages:
capnp-ts@0.7.0:
resolution: {integrity: sha512-XKxXAC3HVPv7r674zP0VC3RTXz+/JKhfyw94ljvF80yynK6VkTnqE3jMuN8b3dUVmmc43TjyxjW4KTsmB3c86g==}
+ case@1.6.3:
+ resolution: {integrity: sha512-mzDSXIPaFwVDvZAHqZ9VlbyF4yyXRuX6IvB06WvPYkqJVO24kX1PPhv9bfpKNFZyxYFmmgo03HUiD8iklmJYRQ==}
+ engines: {node: '>= 0.8.0'}
+
caseless@0.12.0:
resolution: {integrity: sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==}
+ cbor-web@8.1.0:
+ resolution: {integrity: sha512-2hWHHMVrfffgoEmsAUh8vCxHoLa1vgodtC73+C5cSarkJlwTapnqAzcHINlP6Ej0DXuP4OmmJ9LF+JaNM5Lj/g==}
+ engines: {node: '>=12.19'}
+
cbor@5.2.0:
resolution: {integrity: sha512-5IMhi9e1QU76ppa5/ajP1BmMWZ2FHkhAhjeVKQ/EFCgYSEaeVaoGtL7cxJskf9oCCk+XjzaIdc3IuU/dbA/o2A==}
engines: {node: '>=6.0.0'}
@@ -4696,6 +4633,10 @@ packages:
resolution: {integrity: sha512-RpAVKQA5T63xEj6/giIbUEtZwJ4UFIc3ZtvEkiaUERylqe8xb5IvqcgOurZLahv93CLKfxcw5YI+DZcUBRyLXA==}
engines: {node: '>=0.10.0'}
+ color-blend@4.0.0:
+ resolution: {integrity: sha512-fYODTHhI/NG+B5GnzvuL3kiFrK/UnkUezWFTgEPBTY5V+kpyfAn95Vn9sJeeCX6omrCOdxnqCL3CvH+6sXtIbw==}
+ engines: {node: '>=10.0.0'}
+
color-convert@1.9.3:
resolution: {integrity: sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==}
@@ -4713,6 +4654,9 @@ packages:
resolution: {integrity: sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==}
hasBin: true
+ color2k@2.0.3:
+ resolution: {integrity: sha512-zW190nQTIoXcGCaU08DvVNFTmQhUpnJfVuAKfWqUQkflXKpaDdpaYoM0iluLS9lgJNHyBF58KKA2FBEwkD7wog==}
+
colord@2.9.3:
resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==}
@@ -4829,9 +4773,6 @@ packages:
core-js-compat@3.37.1:
resolution: {integrity: sha512-9TNiImhKvQqSUkOvk/mMRZzOANTiEVC7WaBNhHcKM7x+/5E1l5NvsysR19zuDQScE8k+kfQXWRN3AtS/eOSHpg==}
- core-js-compat@3.38.0:
- resolution: {integrity: sha512-75LAicdLa4OJVwFxFbQR3NdnZjNgX6ILpVcVzcC4T2smerB5lELMrJQQQoWV6TiuC/vlaFqgU2tKQx9w5s0e0A==}
-
core-util-is@1.0.2:
resolution: {integrity: sha512-3lqz5YjWTYnW6dlDa5TLaTCcShfar1e40rmcJVwCBJC6mWlFuj0eCHIElmG1g5kyuJ/GD+8Wn4FFCcz4gJPfaQ==}
@@ -4981,12 +4922,12 @@ packages:
resolution: {integrity: sha512-fnULvOpxnC5/Vg3NCiWelDsLiUc9bRwAPs/+LfTLNvetFCtCTN+yQz15C/fs4AwX1R9K5GLtLfn8QW+dWisaAw==}
engines: {node: '>=0.11'}
+ date-fns@3.6.0:
+ resolution: {integrity: sha512-fRHTG8g/Gif+kSh50gaGEdToemgfj74aRX3swtiouboip5JDLAyDE9F11nHMIcvOaXeOC6D7SpNhi7uFyB7Uww==}
+
dayjs@1.11.11:
resolution: {integrity: sha512-okzr3f11N6WuqYtZSvm+F776mB41wRZMhKP+hc34YdW+KmtYYK9iqvHSwo2k9FEH3fhGXvOPV6yz2IcSrfRUDg==}
- dayjs@1.11.12:
- resolution: {integrity: sha512-Rt2g+nTbLlDWZTwwrIXjy9MeiZmSDI375FvZs72ngxx8PDC6YXOeR3q5LAuPzjZQxhiWdRKac7RKV+YyQYfYIg==}
-
debug@2.6.9:
resolution: {integrity: sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==}
peerDependencies:
@@ -5012,8 +4953,8 @@ packages:
supports-color:
optional: true
- debug@4.3.6:
- resolution: {integrity: sha512-O/09Bd4Z1fBrU4VzkhFqVgpPzaGbw6Sm9FEkBT1A/YBXQFGuuSxa1dN2nxgxS34JmKXqYx8CZAwEVoJFImUXIg==}
+ debug@4.3.7:
+ resolution: {integrity: sha512-Er2nc/H7RrMXZBFCEim6TCmMk02Z8vLC2Rbi1KEBggpo0fS6l0S1nnapwmIi3yW/+GOJap1Krg4w0Hg80oCqgQ==}
engines: {node: '>=6.0'}
peerDependencies:
supports-color: '*'
@@ -5227,8 +5168,8 @@ packages:
electron-to-chromium@1.4.783:
resolution: {integrity: sha512-bT0jEz/Xz1fahQpbZ1D7LgmPYZ3iHVY39NcWWro1+hA2IvjiPeaXtfSqrQ+nXjApMvQRE2ASt1itSLRrebHMRQ==}
- electron-to-chromium@1.5.6:
- resolution: {integrity: sha512-jwXWsM5RPf6j9dPYzaorcBSUg6AiqocPEyMpkchkvntaH9HGfOOMZwxMJjDY/XEs3T5dM7uyH1VhRMkqUU9qVw==}
+ electron-to-chromium@1.5.41:
+ resolution: {integrity: sha512-dfdv/2xNjX0P8Vzme4cfzHqnPm5xsZXwsolTYr0eyW18IUmNyG08vL+fttvinTfhKfIKdRoqkDIC9e9iWQCNYQ==}
elliptic@6.5.4:
resolution: {integrity: sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==}
@@ -5307,8 +5248,8 @@ packages:
resolution: {integrity: sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==}
engines: {node: '>= 0.4'}
- es-module-lexer@1.5.4:
- resolution: {integrity: sha512-MVNK56NiMrOwitFB7cqDwq0CQutbw+0BvLshJSse0MUNU+y1FC3bUS/AQg7oUng+/wKrrki7JfmwtVHkVfPLlw==}
+ es-module-lexer@1.5.3:
+ resolution: {integrity: sha512-i1gCgmR9dCl6Vil6UKPI/trA69s08g/syhiDK9TG0Nf1RJjjFI+AzoWW7sPufzkgYAn861skuCwJa0pIIHYxvg==}
es5-ext@0.10.64:
resolution: {integrity: sha512-p2snDhiLaXe6dahss1LddxqEm+SkuDvV8dnIQG0MWjyHpcMNfXKPE+/Cc0y+PhxJX3A4xGNeFCj5oc0BUh6deg==}
@@ -5334,6 +5275,10 @@ packages:
resolution: {integrity: sha512-ErCHMCae19vR8vQGe50xIsVomy19rg6gFu3+r3jkEO46suLMWBksvVyoGgQV+jOfl84ZSOSlmv6Gxa89PmTGmA==}
engines: {node: '>=6'}
+ escalade@3.2.0:
+ resolution: {integrity: sha512-WUj2qlxaQtO4g6Pq5c29GTcWGDyd8itL8zTlipgECz3JesAiiOKotd8JU6otB3PACgG6xkJUyVhboMS+bje/jA==}
+ engines: {node: '>=6'}
+
escape-html@1.0.3:
resolution: {integrity: sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==}
@@ -5646,9 +5591,6 @@ packages:
resolution: {integrity: sha512-2Zks0hf1VLFYI1kbh0I5jP3KHHyCHpkfyHBzsSXRFgl/Bg9mWYfMW8oD+PdMPlEwy5HNsR9JutYy6pMeOh61nw==}
engines: {node: ^14.15.0 || ^16.10.0 || >=18.0.0}
- exponential-backoff@3.1.1:
- resolution: {integrity: sha512-dX7e/LHVJ6W3DE1MHWi9S1EYzDESENfLrYohG2G++ovZrYOkm4Knwa0mc1cn84xJOR4KEU0WSchhLbd0UklbHw==}
-
express@4.19.2:
resolution: {integrity: sha512-5T6nhjsT+EOMzuck8JjBHARTHfMht0POzlA60WV2pMD3gyXw2LZnZ+ueGdNxG+0calOJcWKbpFcuzLZ91YWq9Q==}
engines: {node: '>= 0.10.0'}
@@ -5701,8 +5643,8 @@ packages:
fast-shallow-equal@1.0.0:
resolution: {integrity: sha512-HPtaa38cPgWvaCFmRNhlc6NG7pv6NUHqjPgVAkWGoB9mQMwYB27/K0CvOM5Czy+qpT3e8XJ6Q4aPAnzpNpzNaw==}
- fast-xml-parser@4.4.1:
- resolution: {integrity: sha512-xkjOecfnKGkSsOwtZ5Pz7Us/T6mrbPQrq0nh+aCO5V9nk5NLWmasAHumTKjiPJPWANe+kAZ84Jc8ooJkzZ88Sw==}
+ fast-xml-parser@4.4.0:
+ resolution: {integrity: sha512-kLY3jFlwIYwBNDojclKsNAC12sfD6NwW74QB2CoNGPvtVxjliYehVunB3HYyNi+n4Tt1dAcgwYvmKF/Z18flqg==}
hasBin: true
fastest-levenshtein@1.0.16:
@@ -5718,8 +5660,8 @@ packages:
fb-watchman@2.0.2:
resolution: {integrity: sha512-p5161BqbuCaSnB8jIbzQHOlpgsPmK5rJVDfDKO91Axs5NC1uu3HRQm6wt9cd9/+GtQQIO53JdGXXoyDpTAsgYA==}
- fdir@6.3.0:
- resolution: {integrity: sha512-QOnuT+BOtivR77wYvCWHfGt9s4Pz1VIMbD463vegT5MLqNXy8rYFT/lPVEqf/bhYeT6qmqrNHhsX+rWwe3rOCQ==}
+ fdir@6.4.2:
+ resolution: {integrity: sha512-KnhMXsKSPZlAhp7+IjUkRZKPb4fUyccpDrdFXbi4QL1qkmFh9kVY09Yox+n4MaOb3lHZ1Tv829C3oaaXoMYPDQ==}
peerDependencies:
picomatch: ^3 || ^4
peerDependenciesMeta:
@@ -5788,15 +5730,15 @@ packages:
flow-enums-runtime@0.0.6:
resolution: {integrity: sha512-3PYnM29RFXwvAN6Pc/scUfkI7RwhQ/xqyLUyPNlXUp9S40zI8nup9tUSrTLSVnWGBN38FNiGWbwZOB6uR4OGdw==}
- flow-parser@0.243.0:
- resolution: {integrity: sha512-HCDBfH+kZcY5etWYeAqatjW78gkIryzb9XixRsA8lGI1uyYc7aCpElkkO4H+KIpoyQMiY0VAZPI4cyac3wQe8w==}
+ flow-parser@0.237.1:
+ resolution: {integrity: sha512-PUeG8GQLmrv49vEcFcag7mriJvVs7Yyegnv1DGskvcokhP8UyqWsLV0KoTQ1iAW3ePVUIGUc3MFfBaXwz9MmIg==}
engines: {node: '>=0.4.0'}
fmix@0.1.0:
resolution: {integrity: sha512-Y6hyofImk9JdzU8k5INtTXX1cu8LDlePWDFU5sftm9H+zKCr5SGrVjdhkvsim646cw5zD0nADj8oHyXMZmCZ9w==}
- focus-visible@5.2.1:
- resolution: {integrity: sha512-8Bx950VD1bWTQJEH/AM6SpEk+SU55aVnp4Ujhuuxy3eMEBCRwBnTBnVXr9YAPvZL3/CNjCa8u4IWfNmEO53whA==}
+ focus-visible@5.2.0:
+ resolution: {integrity: sha512-Rwix9pBtC1Nuy5wysTmKy+UjbDJpIfg8eHjw0rjZ1mX4GNLz1Bmd16uDpI3Gk1i70Fgcs8Csg2lPm8HULFg9DQ==}
follow-redirects@1.15.6:
resolution: {integrity: sha512-wWN62YITEaOpSK584EZXJafH1AGpO8RVgElfkuXbTOrPX4fIfOyEpW/CsiNd8JdYrAoOvafRTOEnvsO++qCqFA==}
@@ -5840,6 +5782,23 @@ packages:
fp-ts@1.19.3:
resolution: {integrity: sha512-H5KQDspykdHuztLTg+ajGN0Z2qUjcEf3Ybxc6hLt0k7/zPkn29XnKnxlBPyW2XIddWrGaJBzBl4VLYOtk39yZg==}
+ fp-ts@2.1.1:
+ resolution: {integrity: sha512-YcWhMdDCFCja0MmaDroTgNu+NWWrrnUEn92nvDgrtVy9Z71YFnhNVIghoHPt8gs82ijoMzFGeWKvArbyICiJgw==}
+
+ framer-motion@11.3.28:
+ resolution: {integrity: sha512-dqhoawipEAjqdv32zbv72sOMJZjol7dROWn7t/FOq23WXJ40O4OUybgnO2ldnuS+3YquSn8xO/KKRavZ+TBVOQ==}
+ peerDependencies:
+ '@emotion/is-prop-valid': '*'
+ react: ^18.2.0
+ react-dom: ^18.2.0
+ peerDependenciesMeta:
+ '@emotion/is-prop-valid':
+ optional: true
+ react:
+ optional: true
+ react-dom:
+ optional: true
+
fresh@0.5.2:
resolution: {integrity: sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==}
engines: {node: '>= 0.6'}
@@ -6026,6 +5985,9 @@ packages:
resolution: {integrity: sha512-59LZHPdGZVh695Ud9lRzPBVTtlX9ZCV150Er2W43ro37wVof0ctenSaskPPjN7lVTIN8mSZt8PHUNKZuNQUuxw==}
engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0}
+ gsap@3.12.5:
+ resolution: {integrity: sha512-srBfnk4n+Oe/ZnMIOXt3gT605BX9x5+rh/prT2F1SsNJsU1XuMiP0E2aptW481OnonOGACZWBqseH5Z7csHxhQ==}
+
gzip-size@6.0.0:
resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==}
engines: {node: '>=10'}
@@ -6110,14 +6072,14 @@ packages:
hermes-estree@0.19.1:
resolution: {integrity: sha512-daLGV3Q2MKk8w4evNMKwS8zBE/rcpA800nu1Q5kM08IKijoSnPe9Uo1iIxzPKRkn95IxxsgBMPeYHt3VG4ej2g==}
- hermes-estree@0.23.0:
- resolution: {integrity: sha512-Rkp0PNLGpORw4ktsttkVbpYJbrYKS3hAnkxu8D9nvQi6LvSbuPa+tYw/t2u3Gjc35lYd/k95YkjqyTcN4zspag==}
+ hermes-estree@0.20.1:
+ resolution: {integrity: sha512-SQpZK4BzR48kuOg0v4pb3EAGNclzIlqMj3Opu/mu7bbAoFw6oig6cEt/RAi0zTFW/iW6Iz9X9ggGuZTAZ/yZHg==}
hermes-parser@0.19.1:
resolution: {integrity: sha512-Vp+bXzxYJWrpEuJ/vXxUsLnt0+y4q9zyi4zUlkLqD8FKv4LjIfOvP69R/9Lty3dCyKh0E2BU7Eypqr63/rKT/A==}
- hermes-parser@0.23.0:
- resolution: {integrity: sha512-xLwM4ylfHGwrm+2qXfO1JT/fnqEDGSnpS/9hQ4VLtqTexSviu2ZpBgz07U8jVtndq67qdb/ps0qvaWDZ3fkTyg==}
+ hermes-parser@0.20.1:
+ resolution: {integrity: sha512-BL5P83cwCogI8D7rrDCgsFY0tdYUtmFP9XaXtl2IQjC+2Xo+4okjfXintlTxcIwl4qeGddEl28Z11kbVIw0aNA==}
hermes-profile-transformer@0.0.6:
resolution: {integrity: sha512-cnN7bQUm65UWOy6cbGcCcZ3rpwW8Q/j4OP5aWRhEry4Z2t2aR1cjrbp0BS+KiBN0smvP1caBgAuxutvyvJILzQ==}
@@ -6307,6 +6269,9 @@ packages:
inline-style-prefixer@7.0.0:
resolution: {integrity: sha512-I7GEdScunP1dQ6IM2mQWh6v0mOYdYmH3Bp31UecKdrcUgcURTcctSe1IECdUznSHKSmsHtjrT3CwCPI1pyxfUQ==}
+ inputmask@5.0.9:
+ resolution: {integrity: sha512-s0lUfqcEbel+EQXtehXqwCJGShutgieOaIImFKC/r4reYNvX3foyrChl6LOEvaEgxEbesePIrw1Zi2jhZaDZbQ==}
+
invariant@2.2.4:
resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
@@ -6317,6 +6282,11 @@ packages:
io-ts@1.10.4:
resolution: {integrity: sha512-b23PteSnYXSONJ6JQXRAlvJhuw8KOtkqa87W4wDtvMrud/DTJd5X+NpOOI+O/zZwVq6v0VLAaJ+1EDViKEuN9g==}
+ io-ts@2.0.1:
+ resolution: {integrity: sha512-RezD+WcCfW4VkMkEcQWL/Nmy/nqsWTvTYg7oUmTGzglvSSV2P9h2z1PVeREPFf0GWNzruYleAt1XCMQZSg1xxQ==}
+ peerDependencies:
+ fp-ts: ^2.0.0
+
ipaddr.js@1.9.1:
resolution: {integrity: sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==}
engines: {node: '>= 0.10'}
@@ -6384,6 +6354,10 @@ packages:
is-lower-case@1.1.3:
resolution: {integrity: sha512-+5A1e/WJpLLXZEDlgz4G//WYSHyQBD32qa4Jd3Lw06qQlv3fJHnp3YIHjTQSGzHMgzmVKz2ZP3rBxTHkPw/lxA==}
+ is-nan@1.3.2:
+ resolution: {integrity: sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==}
+ engines: {node: '>= 0.4'}
+
is-node-process@1.2.0:
resolution: {integrity: sha512-Vg4o6/fqPxIjtxgUH5QLJhwZ7gW5diGCVlXpuUfELC62CuxM1iHcRe51f2W1FDy04Ai4KJkagKjx3XaqyfRKXw==}
@@ -6473,11 +6447,6 @@ packages:
peerDependencies:
ws: '*'
- isows@1.0.6:
- resolution: {integrity: sha512-lPHCayd40oW98/I0uvgaHKWCSvkzY27LjWLbtzOm64yQ+G3Q5npjjbdppU65iZXkK1Zt+kH9pfegli0AYfwYYw==}
- peerDependencies:
- ws: '*'
-
isstream@0.1.2:
resolution: {integrity: sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==}
@@ -6551,12 +6520,12 @@ packages:
resolution: {integrity: sha512-gFqAIbuKyyso/3G2qhiO2OM6shY6EPP/R0+mkDbyspxKazh8BXDC5FiFsUjlczgdNz/vfra0da2y+aHrusLG/Q==}
hasBin: true
- jiti@1.21.6:
- resolution: {integrity: sha512-2yTgeWTWzMWkHu6Jp9NKgePDaYHbntiwvYuuJLbbN9vl7DC9DvXKOB2BC3ZZ92D3cvV/aflH0osDfwpHepQ53w==}
+ jiti@2.3.3:
+ resolution: {integrity: sha512-EX4oNDwcXSivPrw2qKH2LB5PoFxEvgtv2JgwW0bU858HoLQ+kutSvjLMUqBd0PeJYEinLWhoI9Ol0eYMqj/wNQ==}
hasBin: true
- joi@17.13.3:
- resolution: {integrity: sha512-otDA4ldcIx+ZXsKHWmp0YizCweVRZG96J10b0FevjfuncLO1oX59THoAmHkNubYJ+9gWsYsp5k8v4ib6oDv1fA==}
+ joi@17.13.1:
+ resolution: {integrity: sha512-vaBlIKCyo4FCUtCm7Eu4QZd/q02bWcxfUO6YSXAZOWF6gzcLBeba8kwotUdYJjDLW8Cz8RywsSOqiNJZW0mNvg==}
js-cookie@2.2.1:
resolution: {integrity: sha512-HvdH2LzI/EAZcUwA8+0nKNtWHqS+ZmijLA30RwZA0bo7ToCckjK5MkGhjED9KoRcXO6BaGI3I9UIzSA1FKFPOQ==}
@@ -6614,6 +6583,11 @@ packages:
engines: {node: '>=4'}
hasBin: true
+ jsesc@3.0.2:
+ resolution: {integrity: sha512-xKqzzWXDttJuOcawBt4KnKHHIf5oQ/Cxax+0PWFG+DFDgHNAdi+TXECADI+RYiFUMmx8792xsMbbgXj4CwnP4g==}
+ engines: {node: '>=6'}
+ hasBin: true
+
json-buffer@3.0.1:
resolution: {integrity: sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==}
@@ -6699,8 +6673,8 @@ packages:
resolution: {integrity: sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==}
engines: {node: '>=6'}
- knip@5.27.4:
- resolution: {integrity: sha512-7t1yqIKxaVGYD1cLI4raVLWi9cNqv+JNbngc8mgvTVJbomnxOg1pjxgCGEztB7eVgD+6VEwf7Jg5WHXzk+Kbpw==}
+ knip@5.33.3:
+ resolution: {integrity: sha512-saUxedVDCa/8p3w445at66vLmYKretzYsX7+elMJ5ROWGzU+1aTRm3EmKELTaho1ue7BlwJB5BxLJROy43+LtQ==}
engines: {node: '>=18.6.0'}
hasBin: true
peerDependencies:
@@ -6729,6 +6703,12 @@ packages:
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
engines: {node: '>= 0.8.0'}
+ libphonenumber-js@1.11.12:
+ resolution: {integrity: sha512-QkJn9/D7zZ1ucvT++TQSvZuSA2xAWeUytU+DiEQwbPKLyrDpvbul2AFs1CGbRAPpSCCk47aRAb5DX5mmcayp4g==}
+
+ libphonenumber-js@1.11.2:
+ resolution: {integrity: sha512-V9mGLlaXN1WETzqQvSu6qf6XVAr3nFuJvWsHcuzCCCo6xUKawwSxOPTpan5CGOSKTn5w/bQuCZcLPJkyysgC3w==}
+
lie@3.1.1:
resolution: {integrity: sha512-RiNhHysUjhrDQntfYSfY4MU24coXXdEOgw9WGcKHNeEwffDYbF//u87M1EWaMGzuFoSbqW0C9C6lEEhDOAswfw==}
@@ -6817,8 +6797,8 @@ packages:
loupe@2.3.7:
resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==}
- loupe@3.1.1:
- resolution: {integrity: sha512-edNu/8D5MKVfGVFRhFf8aAxiTM6Wumfz5XsaatSxlD3w4R1d/WEKUTydCdPGbl9K7QG/Ca3GnDV2sIKIpXRQcw==}
+ loupe@3.1.2:
+ resolution: {integrity: sha512-23I4pFZHmAemUnz8WZXbYRSKYj801VDaNv9ETuMh7IrMc7VuVVSo+Z9iLE3ni30+U48iDWfi30d3twAXBYmnCg==}
lower-case-first@1.0.2:
resolution: {integrity: sha512-UuxaYakO7XeONbKrZf5FEgkantPf5DUqDayzP5VXZrtRPdH86s4kN47I8B3TW10S4QKiE3ziHNf3kRN//okHjA==}
@@ -6869,6 +6849,9 @@ packages:
magic-string@0.30.10:
resolution: {integrity: sha512-iIRwTIf0QKV3UAnYK4PU8uiEc4SRh5jX0mwpIwETPpHdhVM4f53RSwS/vXvN1JhGX+Cs7B8qIq3d6AH49O5fAQ==}
+ magic-string@0.30.12:
+ resolution: {integrity: sha512-Ea8I3sQMVXr8JhN4z+H/d8zwo+tYDgHE9+5G4Wnrwhs0gaK9fXTKx0Tw5Xwsd/bCPTTZNRAdpyzvoeORe9LYpw==}
+
magicast@0.3.4:
resolution: {integrity: sha512-TyDF/Pn36bBji9rWKHlZe+PZb6Mx5V8IHCSxk7X4aljM4e/vyDvZZYwHewdVaqiA0nb3ghfHU/6AUpDxWoER2Q==}
@@ -6957,61 +6940,61 @@ packages:
resolution: {integrity: sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==}
engines: {node: '>= 0.6'}
- metro-babel-transformer@0.80.10:
- resolution: {integrity: sha512-GXHueUzgzcazfzORDxDzWS9jVVRV6u+cR6TGvHOfGdfLzJCj7/D0PretLfyq+MwN20twHxLW+BUXkoaB8sCQBg==}
+ metro-babel-transformer@0.80.9:
+ resolution: {integrity: sha512-d76BSm64KZam1nifRZlNJmtwIgAeZhZG3fi3K+EmPOlrR8rDtBxQHDSN3fSGeNB9CirdTyabTMQCkCup6BXFSQ==}
engines: {node: '>=18'}
- metro-cache-key@0.80.10:
- resolution: {integrity: sha512-57qBhO3zQfoU/hP4ZlLW5hVej2jVfBX6B4NcSfMj4LgDPL3YknWg80IJBxzQfjQY/m+fmMLmPy8aUMHzUp/guA==}
+ metro-cache-key@0.80.9:
+ resolution: {integrity: sha512-hRcYGhEiWIdM87hU0fBlcGr+tHDEAT+7LYNCW89p5JhErFt/QaAkVx4fb5bW3YtXGv5BTV7AspWPERoIb99CXg==}
engines: {node: '>=18'}
- metro-cache@0.80.10:
- resolution: {integrity: sha512-8CBtDJwMguIE5RvV3PU1QtxUG8oSSX54mIuAbRZmcQ0MYiOl9JdrMd4JCBvIyhiZLoSStph425SMyCSnjtJsdA==}
+ metro-cache@0.80.9:
+ resolution: {integrity: sha512-ujEdSI43QwI+Dj2xuNax8LMo8UgKuXJEdxJkzGPU6iIx42nYa1byQ+aADv/iPh5sh5a//h5FopraW5voXSgm2w==}
engines: {node: '>=18'}
- metro-config@0.80.10:
- resolution: {integrity: sha512-0GYAw0LkmGbmA81FepKQepL1KU/85Cyv7sAiWm6QWeV6AcVCpsKg6jGLqGHJ0LLPL60rWzA4TV1DQAlzdJAEtA==}
+ metro-config@0.80.9:
+ resolution: {integrity: sha512-28wW7CqS3eJrunRGnsibWldqgwRP9ywBEf7kg+uzUHkSFJNKPM1K3UNSngHmH0EZjomizqQA2Zi6/y6VdZMolg==}
engines: {node: '>=18'}
- metro-core@0.80.10:
- resolution: {integrity: sha512-nwBB6HbpGlNsZMuzxVqxqGIOsn5F3JKpsp8PziS7Z4mV8a/jA1d44mVOgYmDa2q5WlH5iJfRIIhdz24XRNDlLA==}
+ metro-core@0.80.9:
+ resolution: {integrity: sha512-tbltWQn+XTdULkGdzHIxlxk4SdnKxttvQQV3wpqqFbHDteR4gwCyTR2RyYJvxgU7HELfHtrVbqgqAdlPByUSbg==}
engines: {node: '>=18'}
- metro-file-map@0.80.10:
- resolution: {integrity: sha512-ytsUq8coneaN7ZCVk1IogojcGhLIbzWyiI2dNmw2nnBgV/0A+M5WaTTgZ6dJEz3dzjObPryDnkqWPvIGLCPtiw==}
+ metro-file-map@0.80.9:
+ resolution: {integrity: sha512-sBUjVtQMHagItJH/wGU9sn3k2u0nrCl0CdR4SFMO1tksXLKbkigyQx4cbpcyPVOAmGTVuy3jyvBlELaGCAhplQ==}
engines: {node: '>=18'}
- metro-minify-terser@0.80.10:
- resolution: {integrity: sha512-Xyv9pEYpOsAerrld7cSLIcnCCpv8ItwysOmTA+AKf1q4KyE9cxrH2O2SA0FzMCkPzwxzBWmXwHUr+A89BpEM6g==}
+ metro-minify-terser@0.80.9:
+ resolution: {integrity: sha512-FEeCeFbkvvPuhjixZ1FYrXtO0araTpV6UbcnGgDUpH7s7eR5FG/PiJz3TsuuPP/HwCK19cZtQydcA2QrCw446A==}
engines: {node: '>=18'}
- metro-resolver@0.80.10:
- resolution: {integrity: sha512-EYC5CL7f+bSzrqdk1bylKqFNGabfiI5PDctxoPx70jFt89Jz+ThcOscENog8Jb4LEQFG6GkOYlwmPpsi7kx3QA==}
+ metro-resolver@0.80.9:
+ resolution: {integrity: sha512-wAPIjkN59BQN6gocVsAvvpZ1+LQkkqUaswlT++cJafE/e54GoVkMNCmrR4BsgQHr9DknZ5Um/nKueeN7kaEz9w==}
engines: {node: '>=18'}
- metro-runtime@0.80.10:
- resolution: {integrity: sha512-Xh0N589ZmSIgJYAM+oYwlzTXEHfASZac9TYPCNbvjNTn0EHKqpoJ/+Im5G3MZT4oZzYv4YnvzRtjqS5k0tK94A==}
+ metro-runtime@0.80.9:
+ resolution: {integrity: sha512-8PTVIgrVcyU+X/rVCy/9yxNlvXsBCk5JwwkbAm/Dm+Abo6NBGtNjWF0M1Xo/NWCb4phamNWcD7cHdR91HhbJvg==}
engines: {node: '>=18'}
- metro-source-map@0.80.10:
- resolution: {integrity: sha512-EyZswqJW8Uukv/HcQr6K19vkMXW1nzHAZPWJSEyJFKIbgp708QfRZ6vnZGmrtFxeJEaFdNup4bGnu8/mIOYlyA==}
+ metro-source-map@0.80.9:
+ resolution: {integrity: sha512-RMn+XS4VTJIwMPOUSj61xlxgBvPeY4G6s5uIn6kt6HB6A/k9ekhr65UkkDD7WzHYs3a9o869qU8tvOZvqeQzgw==}
engines: {node: '>=18'}
- metro-symbolicate@0.80.10:
- resolution: {integrity: sha512-qAoVUoSxpfZ2DwZV7IdnQGXCSsf2cAUExUcZyuCqGlY5kaWBb0mx2BL/xbMFDJ4wBp3sVvSBPtK/rt4J7a0xBA==}
+ metro-symbolicate@0.80.9:
+ resolution: {integrity: sha512-Ykae12rdqSs98hg41RKEToojuIW85wNdmSe/eHUgMkzbvCFNVgcC0w3dKZEhSsqQOXapXRlLtHkaHLil0UD/EA==}
engines: {node: '>=18'}
hasBin: true
- metro-transform-plugins@0.80.10:
- resolution: {integrity: sha512-leAx9gtA+2MHLsCeWK6XTLBbv2fBnNFu/QiYhWzMq8HsOAP4u1xQAU0tSgPs8+1vYO34Plyn79xTLUtQCRSSUQ==}
+ metro-transform-plugins@0.80.9:
+ resolution: {integrity: sha512-UlDk/uc8UdfLNJhPbF3tvwajyuuygBcyp+yBuS/q0z3QSuN/EbLllY3rK8OTD9n4h00qZ/qgxGv/lMFJkwP4vg==}
engines: {node: '>=18'}
- metro-transform-worker@0.80.10:
- resolution: {integrity: sha512-zNfNLD8Rz99U+JdOTqtF2o7iTjcDMMYdVS90z6+81Tzd2D0lDWVpls7R1hadS6xwM+ymgXFQTjM6V6wFoZaC0g==}
+ metro-transform-worker@0.80.9:
+ resolution: {integrity: sha512-c/IrzMUVnI0hSVVit4TXzt3A1GiUltGVlzCmLJWxNrBGHGrJhvgePj38+GXl1Xf4Fd4vx6qLUkKMQ3ux73bFLQ==}
engines: {node: '>=18'}
- metro@0.80.10:
- resolution: {integrity: sha512-FDPi0X7wpafmDREXe1lgg3WzETxtXh6Kpq8+IwsG35R2tMyp2kFIqDdshdohuvDt1J/qDARcEPq7V/jElTb1kA==}
+ metro@0.80.9:
+ resolution: {integrity: sha512-Bc57Xf3GO2Xe4UWQsBj/oW6YfLPABEu8jfDVDiNmJvoQW4CO34oDPuYKe4KlXzXhcuNsqOtSxpbjCRRVjhhREg==}
engines: {node: '>=18'}
hasBin: true
@@ -7026,10 +7009,6 @@ packages:
resolution: {integrity: sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==}
engines: {node: '>= 0.6'}
- mime-db@1.53.0:
- resolution: {integrity: sha512-oHlN/w+3MQ3rba9rqFr6V/ypF10LSkdwUysQL7GkXoTgIWeV+tcXGA852TBxH+gsh8UWoyhR1hKcoMJTuWflpg==}
- engines: {node: '>= 0.6'}
-
mime-types@2.1.35:
resolution: {integrity: sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==}
engines: {node: '>= 0.6'}
@@ -7205,8 +7184,8 @@ packages:
ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
- msw@2.6.8:
- resolution: {integrity: sha512-nxXxnH6WALZ9a7rsQp4HU2AaD4iGAiouMmE/MY4al7pXTibgA6OZOuKhmN2WBIM6w9qMKwRtX8p2iOb45B2M/Q==}
+ msw@2.7.0:
+ resolution: {integrity: sha512-BIodwZ19RWfCbYTxWTUfTXc+sg4OwjCAgxU1ZsgmggX/7S3LdUifsbUPJs61j0rWb19CZRGY5if77duhc0uXzw==}
engines: {node: '>=18'}
hasBin: true
peerDependencies:
@@ -7457,8 +7436,8 @@ packages:
oauth-sign@0.9.0:
resolution: {integrity: sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==}
- ob1@0.80.10:
- resolution: {integrity: sha512-dJHyB0S6JkMorUSfSGcYGkkg9kmq3qDUu3ygZUKIfkr47XOPuG35r2Sk6tbwtHXbdKIXmcMvM8DF2CwgdyaHfQ==}
+ ob1@0.80.9:
+ resolution: {integrity: sha512-v9yOxowkZbxWhKOaaTyLjIm1aLy4ebMNcSn4NYJKOAI/Qv+SkfEfszpLr2GIxsccmb2Y2HA9qtsqiIJ80ucpVA==}
engines: {node: '>=18'}
obj-multiplex@1.0.0:
@@ -7588,8 +7567,8 @@ packages:
resolution: {integrity: sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==}
engines: {node: '>=6'}
- package-json-from-dist@1.0.0:
- resolution: {integrity: sha512-dATvCeZN/8wQsGywez1mzHtTlP22H8OEfPrVMLNr4/eGa+ijtLn/6M5f0dY8UKNrC2O9UCU6SSoG3qRKnt7STw==}
+ package-json-from-dist@1.0.1:
+ resolution: {integrity: sha512-UEZIS3/by4OC8vL3P2dTXRETpebLI2NiI5vIrjaD/5UtrkFX/tNbwjTSRAGC/+7CAo2pIcBaRgWmcBBHcsaCIw==}
pako@2.1.0:
resolution: {integrity: sha512-w+eufiZ1WuJYgPXbV/PO3NCMEc3xqylkKHzp8bxp1uW4qaSNQUkwmLLEc3kKsfz8lpV1F8Ht3U1Cm+9Srog2ug==}
@@ -7704,6 +7683,9 @@ packages:
picocolors@1.0.1:
resolution: {integrity: sha512-anP1Z8qwhkbmu7MFP5iTt+wQKXgwzf7zTyGlcdzabySa9vd0Xt392U0rVmz9poOaBj0uHJKyyo9/upk0HrEQew==}
+ picocolors@1.1.1:
+ resolution: {integrity: sha512-xceH2snhtb5M9liqDsmEw56le376mTZkEX/jEb/RxNFyegNul7eNslCXP9FDj/Lcu0X8KEyMceP2ntpaHrDEVA==}
+
picomatch@2.3.1:
resolution: {integrity: sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==}
engines: {node: '>=8.6'}
@@ -7757,13 +7739,13 @@ packages:
pkg-types@1.1.1:
resolution: {integrity: sha512-ko14TjmDuQJ14zsotODv7dBlwxKhUKQEhuhmbqo1uCi9BB0Z2alo/wAXg6q1dTR5TyuqYyWhjtfe/Tsh+X28jQ==}
- playwright-core@1.48.2:
- resolution: {integrity: sha512-sjjw+qrLFlriJo64du+EK0kJgZzoQPsabGF4lBvsid+3CNIZIYLgnMj9V6JY5VhM2Peh20DJWIVpVljLLnlawA==}
+ playwright-core@1.49.0:
+ resolution: {integrity: sha512-R+3KKTQF3npy5GTiKH/T+kdhoJfJojjHESR1YEWhYuEKRVfVaxH3+4+GvXE5xyCngCxhxnykk0Vlah9v8fs3jA==}
engines: {node: '>=18'}
hasBin: true
- playwright@1.48.2:
- resolution: {integrity: sha512-NjYvYgp4BPmiwfe31j4gHLa3J7bD2WiBz8Lk2RoSsmX38SVIARZ18VYjxLjAcDsAhA+F4iSEXTSGgjua0rrlgQ==}
+ playwright@1.49.0:
+ resolution: {integrity: sha512-eKpmys0UFDnfNb3vfsf8Vx2LEOtflgRebl0Im2eQQnYMA4Aqd+Zw8bEOB+7ZKvN76901mRnqdsiOGKxzVTbi7A==}
engines: {node: '>=18'}
hasBin: true
@@ -7815,9 +7797,6 @@ packages:
preact@10.22.0:
resolution: {integrity: sha512-RRurnSjJPj4rp5K6XoP45Ui33ncb7e4H7WiOHVpjbkvqvA3U+N8Z6Qbo0AE6leGYBV66n8EhEaFixvIu3SkxFw==}
- preact@10.23.1:
- resolution: {integrity: sha512-O5UdRsNh4vdZaTieWe3XOgSpdMAmkIYBCT3VhQDlKrzyCm8lUYsk0fmVEvoQQifoOjFRTaHZO69ylrzTW2BH+A==}
-
prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
engines: {node: '>= 0.8.0'}
@@ -7921,6 +7900,9 @@ packages:
resolution: {integrity: sha512-EXtzRZmC+YGmGlDFbXKxQiMZNwCLEO6BANKXG4iCtSIM0yqc/pappSx3RIKr4r0uh5JsBckOXeKrB3Iz7mdQpQ==}
hasBin: true
+ qrcode-with-logos@1.1.1:
+ resolution: {integrity: sha512-vh0LWvwalp7471ODXd4rcXrbKgRpfwfdrjfb3pdr9+Zz/s27+5clRHFxzh5orTm1rusStfHGMACP7GWVAkzpKQ==}
+
qrcode@1.5.3:
resolution: {integrity: sha512-puyri6ApkEHYiVl4CFzo1tDkAZ+ATcnbJrJ6RiBM1Fhctdn/ix9MTE3hRph33omisEbC/2fcfemsseiKgBPKZg==}
engines: {node: '>=10.13.0'}
@@ -7992,8 +7974,8 @@ packages:
peerDependencies:
react: ^18.2.0
- react-devtools-core@5.3.1:
- resolution: {integrity: sha512-7FSb9meX0btdBQLwdFOwt6bGqvRPabmVMMslv8fgoSPqXyuGpgQe36kx8gR86XPw7aV1yVouTp6fyZ0EH+NfUw==}
+ react-devtools-core@5.2.0:
+ resolution: {integrity: sha512-vZK+/gvxxsieAoAyYaiRIVFxlajb7KXhgBDV7OsoMzaAE+IqGpoxusBjIgq5ibqA2IloKu0p9n7tE68z1xs18A==}
react-dom@18.3.1:
resolution: {integrity: sha512-5m4nQKp+rZRb09LNH59GM4BxTh9251/ylbKIbpe7TpGxfJ+9kv6BLkLBXIjjspbgbnIBNqlI23tRnTWT0snUIw==}
@@ -8160,6 +8142,9 @@ packages:
readline@1.3.0:
resolution: {integrity: sha512-k2d6ACCkiNYz222Fs/iNze30rRJ1iIicW7JuX/7/cozvih6YCkFZH+J6mAFDVgv0dRBaAyr4jDqC95R2y4IADg==}
+ readonly-date@1.0.0:
+ resolution: {integrity: sha512-tMKIV7hlk0h4mO3JTmmVuIlJVXjKk3Sep9Bf5OH0O+758ruuVkUy2J9SttDLm91IEX/WHlXPSpxMGjPj4beMIQ==}
+
real-require@0.1.0:
resolution: {integrity: sha512-r/H9MzAWtrv8aSVjPCMFpDMl5q66GqtmmRkRjpHTsp4zBAa+snZyiQNlMONiUmEJcsnaw0wCauJ2GWODr/aFkg==}
engines: {node: '>= 12.13.0'}
@@ -8400,11 +8385,6 @@ packages:
engines: {node: '>=10'}
hasBin: true
- semver@7.6.3:
- resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
- engines: {node: '>=10'}
- hasBin: true
-
send@0.18.0:
resolution: {integrity: sha512-qqWzuOjSFOuqPjFe4NOsMLafToQQwBSOEpS+FwEt3A2V3vKubTquT3vmLTQpFgMXp8AlFWFuP1qKaJZOtPpVXg==}
engines: {node: '>= 0.8.0'}
@@ -8759,14 +8739,21 @@ packages:
style-search@0.1.0:
resolution: {integrity: sha512-Dj1Okke1C3uKKwQcetra4jSuk0DqbzbYtXipzFlFMZtowbF1x7BKJwB9AayVMyFARvU8EDrZdcax4At/452cAg==}
- styled-components@5.3.11:
- resolution: {integrity: sha512-uuzIIfnVkagcVHv9nE0VPlHPSCmXIUGKfJ42LNjxCCTDTL5sgnJ8Z7GZBq0EnLYGln77tPpEpExt2+qa+cZqSw==}
+ styled-components@5.3.6:
+ resolution: {integrity: sha512-hGTZquGAaTqhGWldX7hhfzjnIYBZ0IXQXkCYdvF1Sq3DsUaLx6+NTHC5Jj1ooM2F68sBiVz3lvhfwQs/S3l6qg==}
engines: {node: '>=10'}
peerDependencies:
react: ^18.2.0
react-dom: ^18.2.0
react-is: '>= 16.8.0'
+ styled-components@6.1.13:
+ resolution: {integrity: sha512-M0+N2xSnAtwcVAQeFEsGWFFxXDftHUD7XrKla06QbpUMmbmtFBMMTcKWvFXtWxuD5qQkB8iU5gk6QASlx2ZRMw==}
+ engines: {node: '>= 16'}
+ peerDependencies:
+ react: ^18.2.0
+ react-dom: ^18.2.0
+
styled-jsx@5.1.1:
resolution: {integrity: sha512-pW7uC1l4mBZ8ugbiZrcIsiIvVx1UmTfw7UkC3Um2tmfUq9Bhk8IiyEIPl6F8agHgjzku6j0xQEZbfA5uSgSaCw==}
engines: {node: '>= 12.0.0'}
@@ -8939,8 +8926,8 @@ packages:
uglify-js:
optional: true
- terser@5.31.5:
- resolution: {integrity: sha512-YPmas0L0rE1UyLL/llTWA0SiDOqIcAQYLeUj7cJYzXHlRTAnMSg9pPe4VJ5PlKvTrPQsdVFuiRiwyeNlYgwh2Q==}
+ terser@5.31.0:
+ resolution: {integrity: sha512-Q1JFAoUKE5IMfI4Z/lkE/E6+SwgzO+x4tq4v1AyBLRj8VSYvRO6A/rQrPg1yud4g0En9EKI1TvFRF2tQFcoUkg==}
engines: {node: '>=10'}
hasBin: true
@@ -8972,11 +8959,14 @@ packages:
resolution: {integrity: sha512-G7r3AhovYtr5YKOWQkta8RKAPb+J9IsO4uVmzjl8AZwfhs8UcUwTiD6gcJYSgOtzyjvQKrKYn41syHbUWMkafA==}
engines: {node: '>=0.10.0'}
- tinybench@2.8.0:
- resolution: {integrity: sha512-1/eK7zUnIklz4JUUlL+658n58XO2hHLQfSk1Zf2LKieUjxidN16eKFEoDEfjHc3ohofSSqK3X5yO6VGb6iW8Lw==}
+ tinybench@2.9.0:
+ resolution: {integrity: sha512-0+DUvqWMValLmha6lr4kD8iAMK1HzV0/aKnCtWb9v9641TnP/MFb7Pc2bxoxQjTXAErryXVgUOfv2YqNllqGeg==}
+
+ tinyexec@0.3.1:
+ resolution: {integrity: sha512-WiCJLEECkO18gwqIp6+hJg0//p23HXp4S+gGtAKu3mI2F2/sXC4FvHvXvB0zJVVaTPhx1/tOwdbRsa1sOBIKqQ==}
- tinyglobby@0.2.6:
- resolution: {integrity: sha512-NbBoFBpqfcgd1tCiO8Lkfdk+xrA7mlLR9zgvZcZWQQwU63XAfUePyd6wZBaU93Hqw347lHnwFzttAkemHzzz4g==}
+ tinyglobby@0.2.9:
+ resolution: {integrity: sha512-8or1+BGEdk1Zkkw2ii16qSS7uVrQJPre5A9o/XkWPATkk23FZh/15BKFxPnlTy6vkljZxLqYCzzBMj30ZrSvjw==}
engines: {node: '>=12.0.0'}
tinypool@1.0.1:
@@ -8987,8 +8977,8 @@ packages:
resolution: {integrity: sha512-weEDEq7Z5eTHPDh4xjX789+fHfF+P8boiFB+0vbWzpbnbsEr/GRaohi/uMKxg8RZMXnl1ItAi/IUHWMsjDV7kQ==}
engines: {node: '>=14.0.0'}
- tinyspy@3.0.0:
- resolution: {integrity: sha512-q5nmENpTHgiPVd1cJDDc9cVoYN5x4vCvwT3FMilvKPKneCBZAxn2YWQjDF0UMcE9k0Cay1gBiDfTMU0g+mPMQA==}
+ tinyspy@3.0.2:
+ resolution: {integrity: sha512-n1cw8k1k0x4pgA2+9XrOkFydTerNcJ1zWCO5Nn9scWHTD+5tp8dghT2x1uduQePZTZgd3Tupf+x9BxJjeJi77Q==}
engines: {node: '>=14.0.0'}
title-case@2.1.1:
@@ -9081,9 +9071,6 @@ packages:
tslib@2.6.2:
resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
- tslib@2.6.3:
- resolution: {integrity: sha512-xNvxJEOUiWPGhUuUdQgAJPKOOJfGnIyKySOc09XkKsgdUV/3E2zvwZYdejjmRgPCgcym1juLH3226yA7sEFJKQ==}
-
tsort@0.0.1:
resolution: {integrity: sha512-Tyrf5mxF8Ofs1tNoxA13lFeZ2Zrbd6cKbuH3V+MQ5sb6DtBj5FjrXVsRWT8YvNAQTqNoz66dz1WsbigI22aEnw==}
@@ -9140,8 +9127,8 @@ packages:
resolution: {integrity: sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==}
engines: {node: '>=8'}
- type-fest@4.30.0:
- resolution: {integrity: sha512-G6zXWS1dLj6eagy6sVhOMQiLtJdxQBHIA9Z6HFUNLOlr6MFOgzV8wvmidtPONfPtEUv0uZsy77XJNzTAfwPDaA==}
+ type-fest@4.32.0:
+ resolution: {integrity: sha512-rfgpoi08xagF3JSdtJlCwMq9DGNDE0IMh3Mkpc1wUypg9vPi786AiqeBBKcqvIkq42azsBM85N490fyZjeUftw==}
engines: {node: '>=16'}
type-is@1.6.18:
@@ -9169,8 +9156,9 @@ packages:
engines: {node: '>=14.17'}
hasBin: true
- ua-parser-js@1.0.37:
- resolution: {integrity: sha512-bhTyI94tZofjo+Dn8SN6Zv8nBDvyXTymAdM3LDI/0IboIUwTu1rEhW7v2TfiVsoYWgkQ4kOVqnI8APUFbIQIFQ==}
+ ua-parser-js@1.0.39:
+ resolution: {integrity: sha512-k24RCVWlEcjkdOxYmVJgeD/0a1TiSpqLg+ZalVGV9lsnr4yqu0w7tX/x2xX6G4zpkgQnRf89lxuZ1wsbjXM8lw==}
+ hasBin: true
ufo@1.5.3:
resolution: {integrity: sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==}
@@ -9283,8 +9271,8 @@ packages:
peerDependencies:
browserslist: '>= 4.21.0'
- update-browserslist-db@1.1.0:
- resolution: {integrity: sha512-EdRAaAyk2cUE1wOf2DkEhzxqOQvFOoRJFNS6NeyJ01Gp2beMRpBAINjM2iDXE3KCuKhwnvHIQCJm6ThL2Z+HzQ==}
+ update-browserslist-db@1.1.1:
+ resolution: {integrity: sha512-R8UzCaa9Az+38REPiJ1tXlImTJXlVfgHZsglwBD/k6nj76ctsH1E3q4doGrukiLQd3sGQYu56r5+lo5r94l29A==}
hasBin: true
peerDependencies:
browserslist: '>= 4.21.0'
@@ -9338,6 +9326,11 @@ packages:
peerDependencies:
react: ^18.2.0
+ use-sync-external-store@1.2.2:
+ resolution: {integrity: sha512-PElTlVMwpblvbNqQ82d2n6RjStvdSoNe9FG28kNfz3WiXilJm4DdNkEzRhCZuIDwY8U08WVihhGR5iRqAwfDiw==}
+ peerDependencies:
+ react: ^18.2.0
+
utf-8-validate@5.0.10:
resolution: {integrity: sha512-Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ==}
engines: {node: '>=6.14.2'}
@@ -9412,16 +9405,8 @@ packages:
typescript:
optional: true
- viem@2.21.40:
- resolution: {integrity: sha512-no/mE3l7B0mdUTtvO7z/cTLENttQ/M7+ombqFGXJqsQrxv9wrYsTIGpS3za+FA5a447hY+x9D8Wxny84q1zAaA==}
- peerDependencies:
- typescript: '>=5.0.4'
- peerDependenciesMeta:
- typescript:
- optional: true
-
- vite-node@2.0.5:
- resolution: {integrity: sha512-LdsW4pxj0Ot69FAoXZ1yTnA9bjGohr2yNBU7QKRxpz8ITSkhuDl6h3zS/tvgz4qrNjeRnvrWeXQ8ZF7Um4W00Q==}
+ vite-node@2.1.3:
+ resolution: {integrity: sha512-I1JadzO+xYX887S39Do+paRePCKoiDrWRRjp9kkG5he0t7RXNvPAJPCQSJqbGN4uCrFFeS3Kj3sLqY8NMYBEdA==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
@@ -9463,15 +9448,15 @@ packages:
peerDependencies:
vitest: '*'
- vitest@2.0.5:
- resolution: {integrity: sha512-8GUxONfauuIdeSl5f9GTgVEpg5BTOlplET4WEDaeY2QBiN8wSm68vxN/tb5z405OwppfoCavnwXafiaYBC/xOA==}
+ vitest@2.1.3:
+ resolution: {integrity: sha512-Zrxbg/WiIvUP2uEzelDNTXmEMJXuzJ1kCpbDvaKByFA9MNeO95V+7r/3ti0qzJzrxdyuUw5VduN7k+D3VmVOSA==}
engines: {node: ^18.0.0 || >=20.0.0}
hasBin: true
peerDependencies:
'@edge-runtime/vm': '*'
'@types/node': ^18.0.0 || >=20.0.0
- '@vitest/browser': 2.0.5
- '@vitest/ui': 2.0.5
+ '@vitest/browser': 2.1.3
+ '@vitest/ui': 2.1.3
happy-dom: '*'
jsdom: '*'
peerDependenciesMeta:
@@ -9723,9 +9708,6 @@ packages:
resolution: {integrity: sha512-kgJvQZjkmjOEKimx/tJQsqWfRDPTTcBfYPa9XletxuHLpHcXdx67w8EFn5AW3eVxCutE9dTVHgGa9VYe8vgsEA==}
engines: {node: '>=8.0.0'}
- webauthn-p256@0.0.10:
- resolution: {integrity: sha512-EeYD+gmIT80YkSIDb2iWq0lq2zbHo1CxHlQTeJ+KkCILWpVy3zASH3ByD4bopzfk0uCwXxLqKGLqp2W4O28VFA==}
-
webauthn-p256@0.0.5:
resolution: {integrity: sha512-drMGNWKdaixZNobeORVIqq7k5DsRC9FnG201K2QjeOoQLmtSDaSsVZdkg6n5jUALJKcAG++zBPJXmv6hy0nWFg==}
@@ -9871,8 +9853,8 @@ packages:
utf-8-validate:
optional: true
- ws@6.2.3:
- resolution: {integrity: sha512-jmTjYU0j60B+vHey6TfR3Z7RD61z/hmxBS3VMSGIrroOWXQEneK1zNuotOUrGyBHQj0yrpsLHPWtigEFd13ndA==}
+ ws@6.2.2:
+ resolution: {integrity: sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==}
peerDependencies:
bufferutil: ^4.0.1
utf-8-validate: ^5.0.2
@@ -9894,18 +9876,6 @@ packages:
utf-8-validate:
optional: true
- ws@7.5.10:
- resolution: {integrity: sha512-+dbF1tHwZpXcbOJdVOkzLDxZP1ailvSxM6ZweXTegylPny803bFhA+vqBYw4s31NSAk4S2Qz+AKXK9a4wkdjcQ==}
- engines: {node: '>=8.3.0'}
- peerDependencies:
- bufferutil: ^4.0.1
- utf-8-validate: ^5.0.2
- peerDependenciesMeta:
- bufferutil:
- optional: true
- utf-8-validate:
- optional: true
-
ws@7.5.9:
resolution: {integrity: sha512-F+P9Jil7UiSKSkppIiD94dN07AwvFixvLIj1Og1Rl9GGMuNipJnV9JzjD6XuqmAeiswGvUmNLjr5cFuXwNS77Q==}
engines: {node: '>=8.3.0'}
@@ -9954,18 +9924,6 @@ packages:
utf-8-validate:
optional: true
- ws@8.18.0:
- resolution: {integrity: sha512-8VbfWfHLbbwu3+N6OKsOMpBdT4kXPDDB9cJk2bJ6mh9ucxdlnNvH1e+roYkKmN9Nxw2yjz7VzeO9oOz2zJ04Pw==}
- engines: {node: '>=10.0.0'}
- peerDependencies:
- bufferutil: ^4.0.1
- utf-8-validate: '>=5.0.2'
- peerDependenciesMeta:
- bufferutil:
- optional: true
- utf-8-validate:
- optional: true
-
xhr-request-promise@0.1.3:
resolution: {integrity: sha512-YUBytBsuwgitWtdRzXDDkWAXzhdGB8bYm0sSzMPZT7Z2MBjMSTHFsyCT1yCRATY+XC69DUrQraRAEgcoCRaIPg==}
@@ -10036,8 +9994,8 @@ packages:
resolution: {integrity: sha512-r3vXyErRCYJ7wg28yvBY5VSoAF8ZvlcW9/BwUzEtUsjvX/DKs24dIkuwjtuprwJJHsbyUbLApepYTR1BN4uHrg==}
engines: {node: '>= 6'}
- yaml@2.5.0:
- resolution: {integrity: sha512-2wWLbGbYDiSqqIKoPjar3MPgB94ErzCtrNE1FdqGuaO0pi2JGjmE8aW8TDZwzU7vuxcGRdL/4gPQwQ7hD5AMSw==}
+ yaml@2.4.2:
+ resolution: {integrity: sha512-B3VqDZ+JAg1nZpaEmWtTXUlBneoGx6CPM9b0TENK6aoSu5t73dItudwdgmi6tHlIZZId4dZ9skcAQ2UbcyAeVA==}
engines: {node: '>= 14'}
hasBin: true
@@ -10100,8 +10058,8 @@ packages:
peerDependencies:
ethers: ^5.7.0
- zod-validation-error@3.3.1:
- resolution: {integrity: sha512-uFzCZz7FQis256dqw4AhPQgD6f3pzNca/Zh62RNELavlumQB3nDIUFbF5JQfFLcMbO1s02Q7Xg/gpcOBlEnYZA==}
+ zod-validation-error@3.4.0:
+ resolution: {integrity: sha512-ZOPR9SVY6Pb2qqO5XHt+MkkTRxGXb4EVtnjc9JpXUOtUB1T9Ru7mZOT361AN3MsetVe7R0a1KZshJDZdgp9miQ==}
engines: {node: '>=18.0.0'}
peerDependencies:
zod: ^3.18.0
@@ -10124,6 +10082,21 @@ packages:
react:
optional: true
+ zustand@4.5.5:
+ resolution: {integrity: sha512-+0PALYNJNgK6hldkgDq2vLrw5f6g/jCInz52n9RTpropGgeAf/ioFUCdtsjCqu4gNhW9D01rUQBROoRjdzyn2Q==}
+ engines: {node: '>=12.7.0'}
+ peerDependencies:
+ '@types/react': '>=16.8'
+ immer: '>=9.0.6'
+ react: ^18.2.0
+ peerDependenciesMeta:
+ '@types/react':
+ optional: true
+ immer:
+ optional: true
+ react:
+ optional: true
+
snapshots:
'@adobe/css-tools@4.3.3': {}
@@ -10132,8 +10105,6 @@ snapshots:
'@adraffy/ens-normalize@1.10.1': {}
- '@adraffy/ens-normalize@1.11.0': {}
-
'@ampproject/remapping@2.3.0':
dependencies:
'@jridgewell/gen-mapping': 0.3.5
@@ -10144,14 +10115,14 @@ snapshots:
'@babel/highlight': 7.24.6
picocolors: 1.0.1
- '@babel/code-frame@7.24.7':
+ '@babel/code-frame@7.25.7':
dependencies:
- '@babel/highlight': 7.24.7
+ '@babel/highlight': 7.25.7
picocolors: 1.0.1
'@babel/compat-data@7.24.6': {}
- '@babel/compat-data@7.25.2': {}
+ '@babel/compat-data@7.25.8': {}
'@babel/core@7.24.6':
dependencies:
@@ -10166,7 +10137,27 @@ snapshots:
'@babel/traverse': 7.24.6(supports-color@5.5.0)
'@babel/types': 7.24.6
convert-source-map: 2.0.0
- debug: 4.3.6(supports-color@5.5.0)
+ debug: 4.3.4(supports-color@5.5.0)
+ gensync: 1.0.0-beta.2
+ json5: 2.2.3
+ semver: 6.3.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@babel/core@7.25.8':
+ dependencies:
+ '@ampproject/remapping': 2.3.0
+ '@babel/code-frame': 7.25.7
+ '@babel/generator': 7.25.7
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-module-transforms': 7.25.7(@babel/core@7.25.8)
+ '@babel/helpers': 7.25.7
+ '@babel/parser': 7.25.8
+ '@babel/template': 7.25.7
+ '@babel/traverse': 7.25.7
+ '@babel/types': 7.25.8
+ convert-source-map: 2.0.0
+ debug: 4.3.4(supports-color@5.5.0)
gensync: 1.0.0-beta.2
json5: 2.2.3
semver: 6.3.1
@@ -10180,24 +10171,20 @@ snapshots:
'@jridgewell/trace-mapping': 0.3.25
jsesc: 2.5.2
- '@babel/generator@7.25.0':
+ '@babel/generator@7.25.7':
dependencies:
- '@babel/types': 7.25.2
+ '@babel/types': 7.25.8
'@jridgewell/gen-mapping': 0.3.5
'@jridgewell/trace-mapping': 0.3.25
- jsesc: 2.5.2
+ jsesc: 3.0.2
'@babel/helper-annotate-as-pure@7.24.6':
dependencies:
'@babel/types': 7.24.6
- '@babel/helper-annotate-as-pure@7.24.7':
- dependencies:
- '@babel/types': 7.25.2
-
'@babel/helper-builder-binary-assignment-operator-visitor@7.24.6':
dependencies:
- '@babel/types': 7.25.2
+ '@babel/types': 7.24.6
'@babel/helper-compilation-targets@7.24.6':
dependencies:
@@ -10207,11 +10194,11 @@ snapshots:
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-compilation-targets@7.25.2':
+ '@babel/helper-compilation-targets@7.25.7':
dependencies:
- '@babel/compat-data': 7.25.2
- '@babel/helper-validator-option': 7.24.8
- browserslist: 4.23.3
+ '@babel/compat-data': 7.25.8
+ '@babel/helper-validator-option': 7.25.7
+ browserslist: 4.24.0
lru-cache: 5.1.1
semver: 6.3.1
@@ -10228,18 +10215,18 @@ snapshots:
'@babel/helper-split-export-declaration': 7.24.6
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.25.0(@babel/core@7.24.6)':
+ '@babel/helper-create-class-features-plugin@7.24.6(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-member-expression-to-functions': 7.24.8
- '@babel/helper-optimise-call-expression': 7.24.7
- '@babel/helper-replace-supers': 7.25.0(@babel/core@7.24.6)
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/traverse': 7.25.3
+ '@babel/core': 7.25.8
+ '@babel/helper-annotate-as-pure': 7.24.6
+ '@babel/helper-environment-visitor': 7.24.6
+ '@babel/helper-function-name': 7.24.6
+ '@babel/helper-member-expression-to-functions': 7.24.6
+ '@babel/helper-optimise-call-expression': 7.24.6
+ '@babel/helper-replace-supers': 7.24.6(@babel/core@7.25.8)
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.6
+ '@babel/helper-split-export-declaration': 7.24.6
semver: 6.3.1
- transitivePeerDependencies:
- - supports-color
'@babel/helper-create-regexp-features-plugin@7.24.6(@babel/core@7.24.6)':
dependencies:
@@ -10248,19 +10235,12 @@ snapshots:
regexpu-core: 5.3.2
semver: 6.3.1
- '@babel/helper-create-regexp-features-plugin@7.25.2(@babel/core@7.24.6)':
- dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-annotate-as-pure': 7.24.7
- regexpu-core: 5.3.2
- semver: 6.3.1
-
'@babel/helper-define-polyfill-provider@0.6.2(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
'@babel/helper-compilation-targets': 7.24.6
- '@babel/helper-plugin-utils': 7.24.8
- debug: 4.3.6(supports-color@5.5.0)
+ '@babel/helper-plugin-utils': 7.24.6
+ debug: 4.3.4(supports-color@5.5.0)
lodash.debounce: 4.0.8
resolve: 1.22.8
transitivePeerDependencies:
@@ -10268,10 +10248,6 @@ snapshots:
'@babel/helper-environment-visitor@7.24.6': {}
- '@babel/helper-environment-visitor@7.24.7':
- dependencies:
- '@babel/types': 7.25.2
-
'@babel/helper-function-name@7.24.6':
dependencies:
'@babel/template': 7.24.6
@@ -10283,23 +10259,16 @@ snapshots:
'@babel/helper-member-expression-to-functions@7.24.6':
dependencies:
- '@babel/types': 7.25.2
-
- '@babel/helper-member-expression-to-functions@7.24.8':
- dependencies:
- '@babel/traverse': 7.25.3
- '@babel/types': 7.25.2
- transitivePeerDependencies:
- - supports-color
+ '@babel/types': 7.24.6
'@babel/helper-module-imports@7.24.6':
dependencies:
'@babel/types': 7.24.6
- '@babel/helper-module-imports@7.24.7':
+ '@babel/helper-module-imports@7.25.7':
dependencies:
- '@babel/traverse': 7.25.3
- '@babel/types': 7.25.2
+ '@babel/traverse': 7.25.7
+ '@babel/types': 7.25.8
transitivePeerDependencies:
- supports-color
@@ -10312,27 +10281,32 @@ snapshots:
'@babel/helper-split-export-declaration': 7.24.6
'@babel/helper-validator-identifier': 7.24.6
- '@babel/helper-module-transforms@7.25.2(@babel/core@7.24.6)':
+ '@babel/helper-module-transforms@7.24.6(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-simple-access': 7.24.7
- '@babel/helper-validator-identifier': 7.24.7
- '@babel/traverse': 7.25.3
+ '@babel/core': 7.25.8
+ '@babel/helper-environment-visitor': 7.24.6
+ '@babel/helper-module-imports': 7.24.6
+ '@babel/helper-simple-access': 7.24.6
+ '@babel/helper-split-export-declaration': 7.24.6
+ '@babel/helper-validator-identifier': 7.24.6
+
+ '@babel/helper-module-transforms@7.25.7(@babel/core@7.25.8)':
+ dependencies:
+ '@babel/core': 7.25.8
+ '@babel/helper-module-imports': 7.25.7
+ '@babel/helper-simple-access': 7.25.7
+ '@babel/helper-validator-identifier': 7.25.7
+ '@babel/traverse': 7.25.7
transitivePeerDependencies:
- supports-color
'@babel/helper-optimise-call-expression@7.24.6':
dependencies:
- '@babel/types': 7.25.2
-
- '@babel/helper-optimise-call-expression@7.24.7':
- dependencies:
- '@babel/types': 7.25.2
+ '@babel/types': 7.24.6
'@babel/helper-plugin-utils@7.24.6': {}
- '@babel/helper-plugin-utils@7.24.8': {}
+ '@babel/helper-plugin-utils@7.25.7': {}
'@babel/helper-remap-async-to-generator@7.24.6(@babel/core@7.24.6)':
dependencies:
@@ -10341,15 +10315,6 @@ snapshots:
'@babel/helper-environment-visitor': 7.24.6
'@babel/helper-wrap-function': 7.24.6
- '@babel/helper-remap-async-to-generator@7.25.0(@babel/core@7.24.6)':
- dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-wrap-function': 7.25.0
- '@babel/traverse': 7.25.3
- transitivePeerDependencies:
- - supports-color
-
'@babel/helper-replace-supers@7.24.6(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
@@ -10357,36 +10322,27 @@ snapshots:
'@babel/helper-member-expression-to-functions': 7.24.6
'@babel/helper-optimise-call-expression': 7.24.6
- '@babel/helper-replace-supers@7.25.0(@babel/core@7.24.6)':
+ '@babel/helper-replace-supers@7.24.6(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-member-expression-to-functions': 7.24.8
- '@babel/helper-optimise-call-expression': 7.24.7
- '@babel/traverse': 7.25.3
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.25.8
+ '@babel/helper-environment-visitor': 7.24.6
+ '@babel/helper-member-expression-to-functions': 7.24.6
+ '@babel/helper-optimise-call-expression': 7.24.6
'@babel/helper-simple-access@7.24.6':
dependencies:
'@babel/types': 7.24.6
- '@babel/helper-simple-access@7.24.7':
+ '@babel/helper-simple-access@7.25.7':
dependencies:
- '@babel/traverse': 7.25.3
- '@babel/types': 7.25.2
+ '@babel/traverse': 7.25.7
+ '@babel/types': 7.25.8
transitivePeerDependencies:
- supports-color
'@babel/helper-skip-transparent-expression-wrappers@7.24.6':
dependencies:
- '@babel/types': 7.25.2
-
- '@babel/helper-skip-transparent-expression-wrappers@7.24.7':
- dependencies:
- '@babel/traverse': 7.25.3
- '@babel/types': 7.25.2
- transitivePeerDependencies:
- - supports-color
+ '@babel/types': 7.24.6
'@babel/helper-split-export-declaration@7.24.6':
dependencies:
@@ -10394,45 +10350,42 @@ snapshots:
'@babel/helper-string-parser@7.24.6': {}
- '@babel/helper-string-parser@7.24.8': {}
+ '@babel/helper-string-parser@7.25.7': {}
'@babel/helper-validator-identifier@7.24.6': {}
- '@babel/helper-validator-identifier@7.24.7': {}
+ '@babel/helper-validator-identifier@7.25.7': {}
'@babel/helper-validator-option@7.24.6': {}
- '@babel/helper-validator-option@7.24.8': {}
+ '@babel/helper-validator-option@7.25.7': {}
'@babel/helper-wrap-function@7.24.6':
dependencies:
'@babel/helper-function-name': 7.24.6
'@babel/template': 7.24.6
- '@babel/types': 7.25.2
-
- '@babel/helper-wrap-function@7.25.0':
- dependencies:
- '@babel/template': 7.25.0
- '@babel/traverse': 7.25.3
- '@babel/types': 7.25.2
- transitivePeerDependencies:
- - supports-color
+ '@babel/types': 7.24.6
'@babel/helpers@7.24.6':
dependencies:
'@babel/template': 7.24.6
'@babel/types': 7.24.6
+ '@babel/helpers@7.25.7':
+ dependencies:
+ '@babel/template': 7.25.7
+ '@babel/types': 7.25.8
+
'@babel/highlight@7.24.6':
dependencies:
- '@babel/helper-validator-identifier': 7.24.7
+ '@babel/helper-validator-identifier': 7.24.6
chalk: 2.4.2
js-tokens: 4.0.0
picocolors: 1.0.1
- '@babel/highlight@7.24.7':
+ '@babel/highlight@7.25.7':
dependencies:
- '@babel/helper-validator-identifier': 7.24.7
+ '@babel/helper-validator-identifier': 7.25.7
chalk: 2.4.2
js-tokens: 4.0.0
picocolors: 1.0.1
@@ -10441,9 +10394,9 @@ snapshots:
dependencies:
'@babel/types': 7.24.6
- '@babel/parser@7.25.3':
+ '@babel/parser@7.25.8':
dependencies:
- '@babel/types': 7.25.2
+ '@babel/types': 7.25.8
'@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.24.6(@babel/core@7.24.6)':
dependencies:
@@ -10472,68 +10425,81 @@ snapshots:
'@babel/plugin-proposal-async-generator-functions@7.20.7(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
- '@babel/helper-environment-visitor': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-remap-async-to-generator': 7.25.0(@babel/core@7.24.6)
+ '@babel/helper-environment-visitor': 7.24.6
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-remap-async-to-generator': 7.24.6(@babel/core@7.24.6)
'@babel/plugin-syntax-async-generators': 7.8.4(@babel/core@7.24.6)
- transitivePeerDependencies:
- - supports-color
'@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
- '@babel/helper-create-class-features-plugin': 7.25.0(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.8
- transitivePeerDependencies:
- - supports-color
+ '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6)
+ '@babel/helper-plugin-utils': 7.25.7
+
+ '@babel/plugin-proposal-class-properties@7.18.6(@babel/core@7.25.8)':
+ dependencies:
+ '@babel/core': 7.25.8
+ '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.25.8)
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-proposal-export-default-from@7.24.7(@babel/core@7.24.6)':
+ '@babel/plugin-proposal-export-default-from@7.24.6(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-export-default-from': 7.24.7(@babel/core@7.24.6)
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-export-default-from': 7.24.6(@babel/core@7.24.6)
'@babel/plugin-proposal-logical-assignment-operators@7.20.7(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-logical-assignment-operators': 7.10.4(@babel/core@7.24.6)
'@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.6)
+ '@babel/plugin-proposal-nullish-coalescing-operator@7.18.6(@babel/core@7.25.8)':
+ dependencies:
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.25.8)
+
'@babel/plugin-proposal-numeric-separator@7.18.6(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-numeric-separator': 7.10.4(@babel/core@7.24.6)
'@babel/plugin-proposal-object-rest-spread@7.20.7(@babel/core@7.24.6)':
dependencies:
- '@babel/compat-data': 7.25.2
+ '@babel/compat-data': 7.25.8
'@babel/core': 7.24.6
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-compilation-targets': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-object-rest-spread': 7.8.3(@babel/core@7.24.6)
- '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.6)
+ '@babel/plugin-transform-parameters': 7.24.6(@babel/core@7.24.6)
'@babel/plugin-proposal-optional-catch-binding@7.18.6(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-optional-catch-binding': 7.8.3(@babel/core@7.24.6)
'@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.6
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.6)
- transitivePeerDependencies:
- - supports-color
+
+ '@babel/plugin-proposal-optional-chaining@7.21.0(@babel/core@7.25.8)':
+ dependencies:
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-skip-transparent-expression-wrappers': 7.24.6
+ '@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.25.8)
'@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.24.6)':
dependencies:
@@ -10559,20 +10525,25 @@ snapshots:
'@babel/core': 7.24.6
'@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-export-default-from@7.24.7(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-export-default-from@7.24.6(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-export-namespace-from@7.8.3(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
'@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-flow@7.24.7(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-flow@7.24.6(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
+
+ '@babel/plugin-syntax-flow@7.24.6(@babel/core@7.25.8)':
+ dependencies:
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-syntax-import-assertions@7.24.6(@babel/core@7.24.6)':
dependencies:
@@ -10599,10 +10570,10 @@ snapshots:
'@babel/core': 7.24.6
'@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-jsx@7.24.7(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-jsx@7.24.6(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.24.6
'@babel/plugin-syntax-logical-assignment-operators@7.10.4(@babel/core@7.24.6)':
dependencies:
@@ -10614,6 +10585,11 @@ snapshots:
'@babel/core': 7.24.6
'@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-nullish-coalescing-operator@7.8.3(@babel/core@7.25.8)':
+ dependencies:
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.24.6
+
'@babel/plugin-syntax-numeric-separator@7.10.4(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
@@ -10634,6 +10610,11 @@ snapshots:
'@babel/core': 7.24.6
'@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-optional-chaining@7.8.3(@babel/core@7.25.8)':
+ dependencies:
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.24.6
+
'@babel/plugin-syntax-private-property-in-object@7.14.5(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
@@ -10647,12 +10628,12 @@ snapshots:
'@babel/plugin-syntax-typescript@7.24.6(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-syntax-typescript@7.24.7(@babel/core@7.24.6)':
+ '@babel/plugin-syntax-typescript@7.24.6(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.24.6
'@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.24.6)':
dependencies:
@@ -10665,11 +10646,6 @@ snapshots:
'@babel/core': 7.24.6
'@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-transform-arrow-functions@7.24.7(@babel/core@7.24.6)':
- dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-transform-async-generator-functions@7.24.6(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
@@ -10685,15 +10661,6 @@ snapshots:
'@babel/helper-plugin-utils': 7.24.6
'@babel/helper-remap-async-to-generator': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-async-to-generator@7.24.7(@babel/core@7.24.6)':
- dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-remap-async-to-generator': 7.25.0(@babel/core@7.24.6)
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-block-scoped-functions@7.24.6(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
@@ -10704,11 +10671,6 @@ snapshots:
'@babel/core': 7.24.6
'@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-transform-block-scoping@7.25.0(@babel/core@7.24.6)':
- dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-transform-class-properties@7.24.6(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
@@ -10734,40 +10696,17 @@ snapshots:
'@babel/helper-split-export-declaration': 7.24.6
globals: 11.12.0
- '@babel/plugin-transform-classes@7.25.0(@babel/core@7.24.6)':
- dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-annotate-as-pure': 7.24.7
- '@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.6)
- '@babel/traverse': 7.25.3
- globals: 11.12.0
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-computed-properties@7.24.6(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
'@babel/helper-plugin-utils': 7.24.6
'@babel/template': 7.24.6
- '@babel/plugin-transform-computed-properties@7.24.7(@babel/core@7.24.6)':
- dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/template': 7.25.0
-
'@babel/plugin-transform-destructuring@7.24.6(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
'@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-transform-destructuring@7.24.8(@babel/core@7.24.6)':
- dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-transform-dotall-regex@7.24.6(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
@@ -10797,11 +10736,17 @@ snapshots:
'@babel/helper-plugin-utils': 7.24.6
'@babel/plugin-syntax-export-namespace-from': 7.8.3(@babel/core@7.24.6)
- '@babel/plugin-transform-flow-strip-types@7.25.2(@babel/core@7.24.6)':
+ '@babel/plugin-transform-flow-strip-types@7.24.6(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.24.6)
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-flow': 7.24.6(@babel/core@7.24.6)
+
+ '@babel/plugin-transform-flow-strip-types@7.24.6(@babel/core@7.25.8)':
+ dependencies:
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/plugin-syntax-flow': 7.24.6(@babel/core@7.25.8)
'@babel/plugin-transform-for-of@7.24.6(@babel/core@7.24.6)':
dependencies:
@@ -10816,15 +10761,6 @@ snapshots:
'@babel/helper-function-name': 7.24.6
'@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-transform-function-name@7.25.1(@babel/core@7.24.6)':
- dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-compilation-targets': 7.25.2
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/traverse': 7.25.3
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-json-strings@7.24.6(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
@@ -10836,11 +10772,6 @@ snapshots:
'@babel/core': 7.24.6
'@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-transform-literals@7.25.2(@babel/core@7.24.6)':
- dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-transform-logical-assignment-operators@7.24.6(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
@@ -10865,14 +10796,12 @@ snapshots:
'@babel/helper-plugin-utils': 7.24.6
'@babel/helper-simple-access': 7.24.6
- '@babel/plugin-transform-modules-commonjs@7.24.8(@babel/core@7.24.6)':
+ '@babel/plugin-transform-modules-commonjs@7.24.6(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-module-transforms': 7.25.2(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-simple-access': 7.24.7
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.25.8
+ '@babel/helper-module-transforms': 7.24.6(@babel/core@7.25.8)
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-simple-access': 7.24.6
'@babel/plugin-transform-modules-systemjs@7.24.6(@babel/core@7.24.6)':
dependencies:
@@ -10880,7 +10809,7 @@ snapshots:
'@babel/helper-hoist-variables': 7.24.6
'@babel/helper-module-transforms': 7.24.6(@babel/core@7.24.6)
'@babel/helper-plugin-utils': 7.24.6
- '@babel/helper-validator-identifier': 7.24.7
+ '@babel/helper-validator-identifier': 7.24.6
'@babel/plugin-transform-modules-umd@7.24.6(@babel/core@7.24.6)':
dependencies:
@@ -10894,12 +10823,6 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6)
'@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-transform-named-capturing-groups-regex@7.24.7(@babel/core@7.24.6)':
- dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-transform-new-target@7.24.6(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
@@ -10949,25 +10872,12 @@ snapshots:
'@babel/core': 7.24.6
'@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-transform-parameters@7.24.7(@babel/core@7.24.6)':
- dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-transform-private-methods@7.24.6(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
'@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.24.6)
'@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-transform-private-methods@7.24.7(@babel/core@7.24.6)':
- dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-create-class-features-plugin': 7.25.0(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.8
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-private-property-in-object@7.24.6(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
@@ -10976,16 +10886,6 @@ snapshots:
'@babel/helper-plugin-utils': 7.24.6
'@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.6)
- '@babel/plugin-transform-private-property-in-object@7.24.7(@babel/core@7.24.6)':
- dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.25.0(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-private-property-in-object': 7.14.5(@babel/core@7.24.6)
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-property-literals@7.24.6(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
@@ -11001,25 +10901,30 @@ snapshots:
'@babel/core': 7.24.6
'@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-transform-react-display-name@7.24.7(@babel/core@7.24.6)':
- dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-transform-react-jsx-development@7.24.6(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
'@babel/plugin-transform-react-jsx': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-react-jsx-self@7.24.7(@babel/core@7.24.6)':
+ '@babel/plugin-transform-react-jsx-self@7.25.7(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
+
+ '@babel/plugin-transform-react-jsx-self@7.25.7(@babel/core@7.25.8)':
+ dependencies:
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
- '@babel/plugin-transform-react-jsx-source@7.24.7(@babel/core@7.24.6)':
+ '@babel/plugin-transform-react-jsx-source@7.25.7(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-plugin-utils': 7.25.7
+
+ '@babel/plugin-transform-react-jsx-source@7.25.7(@babel/core@7.25.8)':
+ dependencies:
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
'@babel/plugin-transform-react-jsx@7.24.6(@babel/core@7.24.6)':
dependencies:
@@ -11030,17 +10935,6 @@ snapshots:
'@babel/plugin-syntax-jsx': 7.24.6(@babel/core@7.24.6)
'@babel/types': 7.24.6
- '@babel/plugin-transform-react-jsx@7.25.2(@babel/core@7.24.6)':
- dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.6)
- '@babel/types': 7.25.2
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-react-pure-annotations@7.24.6(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
@@ -11058,13 +10952,13 @@ snapshots:
'@babel/core': 7.24.6
'@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-transform-runtime@7.24.7(@babel/core@7.24.6)':
+ '@babel/plugin-transform-runtime@7.24.6(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
- '@babel/helper-module-imports': 7.24.7
- '@babel/helper-plugin-utils': 7.24.8
+ '@babel/helper-module-imports': 7.25.7
+ '@babel/helper-plugin-utils': 7.25.7
babel-plugin-polyfill-corejs2: 0.4.11(@babel/core@7.24.6)
- babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.24.6)
+ babel-plugin-polyfill-corejs3: 0.10.4(@babel/core@7.24.6)
babel-plugin-polyfill-regenerator: 0.6.2(@babel/core@7.24.6)
semver: 6.3.1
transitivePeerDependencies:
@@ -11075,35 +10969,17 @@ snapshots:
'@babel/core': 7.24.6
'@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-transform-shorthand-properties@7.24.7(@babel/core@7.24.6)':
- dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-transform-spread@7.24.6(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
'@babel/helper-plugin-utils': 7.24.6
'@babel/helper-skip-transparent-expression-wrappers': 7.24.6
- '@babel/plugin-transform-spread@7.24.7(@babel/core@7.24.6)':
- dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- transitivePeerDependencies:
- - supports-color
-
'@babel/plugin-transform-sticky-regex@7.24.6(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
'@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-transform-sticky-regex@7.24.7(@babel/core@7.24.6)':
- dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-transform-template-literals@7.24.6(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
@@ -11122,16 +10998,13 @@ snapshots:
'@babel/helper-plugin-utils': 7.24.6
'@babel/plugin-syntax-typescript': 7.24.6(@babel/core@7.24.6)
- '@babel/plugin-transform-typescript@7.25.2(@babel/core@7.24.6)':
+ '@babel/plugin-transform-typescript@7.24.6(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-annotate-as-pure': 7.24.7
- '@babel/helper-create-class-features-plugin': 7.25.0(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-skip-transparent-expression-wrappers': 7.24.7
- '@babel/plugin-syntax-typescript': 7.24.7(@babel/core@7.24.6)
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.25.8
+ '@babel/helper-annotate-as-pure': 7.24.6
+ '@babel/helper-create-class-features-plugin': 7.24.6(@babel/core@7.25.8)
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/plugin-syntax-typescript': 7.24.6(@babel/core@7.25.8)
'@babel/plugin-transform-unicode-escapes@7.24.6(@babel/core@7.24.6)':
dependencies:
@@ -11150,12 +11023,6 @@ snapshots:
'@babel/helper-create-regexp-features-plugin': 7.24.6(@babel/core@7.24.6)
'@babel/helper-plugin-utils': 7.24.6
- '@babel/plugin-transform-unicode-regex@7.24.7(@babel/core@7.24.6)':
- dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-create-regexp-features-plugin': 7.25.2(@babel/core@7.24.6)
- '@babel/helper-plugin-utils': 7.24.8
-
'@babel/plugin-transform-unicode-sets-regex@7.24.6(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
@@ -11249,12 +11116,12 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/preset-flow@7.24.7(@babel/core@7.24.6)':
+ '@babel/preset-flow@7.24.6(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-validator-option': 7.24.8
- '@babel/plugin-transform-flow-strip-types': 7.25.2(@babel/core@7.24.6)
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.25.7
+ '@babel/helper-validator-option': 7.25.7
+ '@babel/plugin-transform-flow-strip-types': 7.24.6(@babel/core@7.25.8)
'@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.24.6)':
dependencies:
@@ -11282,20 +11149,18 @@ snapshots:
'@babel/plugin-transform-modules-commonjs': 7.24.6(@babel/core@7.24.6)
'@babel/plugin-transform-typescript': 7.24.6(@babel/core@7.24.6)
- '@babel/preset-typescript@7.24.7(@babel/core@7.24.6)':
+ '@babel/preset-typescript@7.24.6(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-plugin-utils': 7.24.8
- '@babel/helper-validator-option': 7.24.8
- '@babel/plugin-syntax-jsx': 7.24.7(@babel/core@7.24.6)
- '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.24.6)
- '@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.24.6)
- transitivePeerDependencies:
- - supports-color
+ '@babel/core': 7.25.8
+ '@babel/helper-plugin-utils': 7.24.6
+ '@babel/helper-validator-option': 7.24.6
+ '@babel/plugin-syntax-jsx': 7.24.6(@babel/core@7.25.8)
+ '@babel/plugin-transform-modules-commonjs': 7.24.6(@babel/core@7.25.8)
+ '@babel/plugin-transform-typescript': 7.24.6(@babel/core@7.25.8)
- '@babel/register@7.24.6(@babel/core@7.24.6)':
+ '@babel/register@7.24.6(@babel/core@7.25.8)':
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.25.8
clone-deep: 4.0.1
find-cache-dir: 2.1.0
make-dir: 2.1.0
@@ -11308,21 +11173,17 @@ snapshots:
dependencies:
regenerator-runtime: 0.14.1
- '@babel/runtime@7.25.0':
- dependencies:
- regenerator-runtime: 0.14.1
-
'@babel/template@7.24.6':
dependencies:
- '@babel/code-frame': 7.24.7
+ '@babel/code-frame': 7.24.6
'@babel/parser': 7.24.6
'@babel/types': 7.24.6
- '@babel/template@7.25.0':
+ '@babel/template@7.25.7':
dependencies:
- '@babel/code-frame': 7.24.7
- '@babel/parser': 7.25.3
- '@babel/types': 7.25.2
+ '@babel/code-frame': 7.25.7
+ '@babel/parser': 7.25.8
+ '@babel/types': 7.25.8
'@babel/traverse@7.24.6(supports-color@5.5.0)':
dependencies:
@@ -11334,19 +11195,19 @@ snapshots:
'@babel/helper-split-export-declaration': 7.24.6
'@babel/parser': 7.24.6
'@babel/types': 7.24.6
- debug: 4.3.6(supports-color@5.5.0)
+ debug: 4.3.4(supports-color@5.5.0)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/traverse@7.25.3':
+ '@babel/traverse@7.25.7':
dependencies:
- '@babel/code-frame': 7.24.7
- '@babel/generator': 7.25.0
- '@babel/parser': 7.25.3
- '@babel/template': 7.25.0
- '@babel/types': 7.25.2
- debug: 4.3.6(supports-color@5.5.0)
+ '@babel/code-frame': 7.25.7
+ '@babel/generator': 7.25.7
+ '@babel/parser': 7.25.8
+ '@babel/template': 7.25.7
+ '@babel/types': 7.25.8
+ debug: 4.3.4(supports-color@5.5.0)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
@@ -11357,10 +11218,10 @@ snapshots:
'@babel/helper-validator-identifier': 7.24.6
to-fast-properties: 2.0.0
- '@babel/types@7.25.2':
+ '@babel/types@7.25.8':
dependencies:
- '@babel/helper-string-parser': 7.24.8
- '@babel/helper-validator-identifier': 7.24.7
+ '@babel/helper-string-parser': 7.25.7
+ '@babel/helper-validator-identifier': 7.25.7
to-fast-properties: 2.0.0
'@bcoe/v8-coverage@0.2.3': {}
@@ -11378,6 +11239,35 @@ snapshots:
'@types/tough-cookie': 4.0.5
tough-cookie: 4.1.4
+ '@celo/base@6.1.0': {}
+
+ '@celo/utils@6.0.1':
+ dependencies:
+ '@celo/base': 6.1.0
+ '@ethereumjs/util': 8.0.5
+ '@types/elliptic': 6.4.18
+ '@types/node': 18.19.33
+ bignumber.js: 9.1.2
+ elliptic: 6.5.5
+ ethereum-cryptography: 1.2.0
+ fp-ts: 2.1.1
+ io-ts: 2.0.1(fp-ts@2.1.1)
+ rlp: 2.2.7
+ web3-eth-abi: 1.10.4
+ web3-utils: 1.10.4
+
+ '@chainsafe/as-sha256@0.3.1': {}
+
+ '@chainsafe/persistent-merkle-tree@0.4.2':
+ dependencies:
+ '@chainsafe/as-sha256': 0.3.1
+
+ '@chainsafe/ssz@0.9.4':
+ dependencies:
+ '@chainsafe/as-sha256': 0.3.1
+ '@chainsafe/persistent-merkle-tree': 0.4.2
+ case: 1.6.3
+
'@cloudflare/kv-asset-handler@0.3.2':
dependencies:
mime: 3.0.0
@@ -11408,7 +11298,7 @@ snapshots:
eth-json-rpc-filters: 6.0.1
eventemitter3: 5.0.1
keccak: 3.0.4
- preact: 10.23.1
+ preact: 10.22.0
sha.js: 2.4.11
transitivePeerDependencies:
- supports-color
@@ -11422,6 +11312,12 @@ snapshots:
preact: 10.22.0
sha.js: 2.4.11
+ '@cosmjs/encoding@0.32.4':
+ dependencies:
+ base64-js: 1.5.1
+ bech32: 1.1.4
+ readonly-date: 1.0.0
+
'@cspotcode/source-map-support@0.8.1':
dependencies:
'@jridgewell/trace-mapping': 0.3.9
@@ -11452,6 +11348,8 @@ snapshots:
'@emotion/unitless@0.7.5': {}
+ '@emotion/unitless@0.8.1': {}
+
'@ensdomains/address-encoder@0.1.9':
dependencies:
bech32: 1.1.4
@@ -11464,9 +11362,9 @@ snapshots:
'@ensdomains/address-encoder@1.0.0-rc.3':
dependencies:
- '@noble/curves': 1.6.0
+ '@noble/curves': 1.4.0
'@noble/hashes': 1.5.0
- '@scure/base': 1.1.9
+ '@scure/base': 1.1.6
'@ensdomains/address-encoder@1.1.1':
dependencies:
@@ -11484,8 +11382,8 @@ snapshots:
'@ensdomains/content-hash@3.1.0-rc.1':
dependencies:
'@ensdomains/address-encoder': 1.0.0-rc.3
- '@noble/curves': 1.6.0
- '@scure/base': 1.1.9
+ '@noble/curves': 1.4.0
+ '@scure/base': 1.1.6
'@ensdomains/dnsprovejs@0.5.1':
dependencies:
@@ -11545,7 +11443,7 @@ snapshots:
'@ensdomains/address-encoder': 1.1.1
'@ensdomains/content-hash': 3.1.0-rc.1
'@ensdomains/dnsprovejs': 0.5.1
- abitype: 1.0.6(typescript@5.4.5)(zod@3.23.8)
+ abitype: 1.0.5(typescript@5.4.5)(zod@3.23.8)
dns-packet: 5.6.1
graphql: 16.8.1
graphql-request: 6.1.0(encoding@0.1.13)(graphql@16.8.1)
@@ -11559,8 +11457,8 @@ snapshots:
'@ensdomains/headless-web3-provider@1.0.8(viem@2.19.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))':
dependencies:
- '@metamask/json-rpc-engine': 9.0.2
- '@metamask/utils': 9.2.0
+ '@metamask/json-rpc-engine': 9.0.3
+ '@metamask/utils': 9.3.0
viem: 2.19.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)
transitivePeerDependencies:
- supports-color
@@ -11571,15 +11469,15 @@ snapshots:
dependencies:
hash-test-vectors: 1.3.2
- '@ensdomains/thorin@0.6.50(react-dom@18.3.1(react@18.3.1))(react-transition-state@1.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(styled-components@5.3.11(@babel/core@7.24.6)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1))':
+ '@ensdomains/thorin@0.6.50(react-dom@18.3.1(react@18.3.1))(react-transition-state@1.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)(styled-components@5.3.6(@babel/core@7.24.6)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1))':
dependencies:
clsx: 1.2.1
- focus-visible: 5.2.1
+ focus-visible: 5.2.0
lodash: 4.17.21
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
react-transition-state: 1.1.5(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
- styled-components: 5.3.11(@babel/core@7.24.6)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1)
+ styled-components: 5.3.6(@babel/core@7.24.6)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1)
ts-pattern: 4.3.0
'@esbuild-plugins/node-globals-polyfill@0.2.3(esbuild@0.17.19)':
@@ -11737,7 +11635,7 @@ snapshots:
'@eslint/eslintrc@2.1.4':
dependencies:
ajv: 6.12.6
- debug: 4.3.6(supports-color@5.5.0)
+ debug: 4.3.4(supports-color@5.5.0)
espree: 9.6.1
globals: 13.24.0
ignore: 5.3.1
@@ -11784,6 +11682,12 @@ snapshots:
'@ethereumjs/util': 8.1.0
ethereum-cryptography: 2.1.3
+ '@ethereumjs/util@8.0.5':
+ dependencies:
+ '@chainsafe/ssz': 0.9.4
+ '@ethereumjs/rlp': 4.0.1
+ ethereum-cryptography: 1.2.0
+
'@ethereumjs/util@8.1.0':
dependencies:
'@ethereumjs/rlp': 4.0.1
@@ -12060,7 +11964,7 @@ snapshots:
'@humanwhocodes/config-array@0.11.14':
dependencies:
'@humanwhocodes/object-schema': 2.0.3
- debug: 4.3.6(supports-color@5.5.0)
+ debug: 4.3.4(supports-color@5.5.0)
minimatch: 3.1.2
transitivePeerDependencies:
- supports-color
@@ -12081,16 +11985,16 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@inquirer/confirm@5.1.0(@types/node@18.19.33)':
+ '@inquirer/confirm@5.1.3(@types/node@18.19.33)':
dependencies:
- '@inquirer/core': 10.1.1(@types/node@18.19.33)
- '@inquirer/type': 3.0.1(@types/node@18.19.33)
+ '@inquirer/core': 10.1.4(@types/node@18.19.33)
+ '@inquirer/type': 3.0.2(@types/node@18.19.33)
'@types/node': 18.19.33
- '@inquirer/core@10.1.1(@types/node@18.19.33)':
+ '@inquirer/core@10.1.4(@types/node@18.19.33)':
dependencies:
- '@inquirer/figures': 1.0.8
- '@inquirer/type': 3.0.1(@types/node@18.19.33)
+ '@inquirer/figures': 1.0.9
+ '@inquirer/type': 3.0.2(@types/node@18.19.33)
ansi-escapes: 4.3.2
cli-width: 4.1.0
mute-stream: 2.0.0
@@ -12101,9 +12005,9 @@ snapshots:
transitivePeerDependencies:
- '@types/node'
- '@inquirer/figures@1.0.8': {}
+ '@inquirer/figures@1.0.9': {}
- '@inquirer/type@3.0.1(@types/node@18.19.33)':
+ '@inquirer/type@3.0.2(@types/node@18.19.33)':
dependencies:
'@types/node': 18.19.33
@@ -12128,7 +12032,7 @@ snapshots:
dependencies:
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.19.44
+ '@types/node': 18.19.33
jest-mock: 29.7.0
'@jest/expect-utils@29.7.0':
@@ -12140,7 +12044,7 @@ snapshots:
dependencies:
'@jest/types': 29.6.3
'@sinonjs/fake-timers': 10.3.0
- '@types/node': 18.19.44
+ '@types/node': 18.19.33
jest-message-util: 29.7.0
jest-mock: 29.7.0
jest-util: 29.7.0
@@ -12153,7 +12057,7 @@ snapshots:
dependencies:
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 18.19.44
+ '@types/node': 18.19.33
'@types/yargs': 15.0.19
chalk: 4.1.2
@@ -12162,7 +12066,7 @@ snapshots:
'@jest/schemas': 29.6.3
'@types/istanbul-lib-coverage': 2.0.6
'@types/istanbul-reports': 3.0.4
- '@types/node': 18.19.44
+ '@types/node': 18.19.33
'@types/yargs': 17.0.32
chalk: 4.1.2
@@ -12183,6 +12087,8 @@ snapshots:
'@jridgewell/sourcemap-codec@1.4.15': {}
+ '@jridgewell/sourcemap-codec@1.5.0': {}
+
'@jridgewell/trace-mapping@0.3.25':
dependencies:
'@jridgewell/resolve-uri': 3.1.2
@@ -12210,7 +12116,7 @@ snapshots:
nopt: 5.0.0
npmlog: 5.0.1
rimraf: 3.0.2
- semver: 7.6.3
+ semver: 7.6.2
tar: 6.2.1
transitivePeerDependencies:
- encoding
@@ -12249,11 +12155,11 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@metamask/json-rpc-engine@9.0.2':
+ '@metamask/json-rpc-engine@9.0.3':
dependencies:
- '@metamask/rpc-errors': 6.3.1
+ '@metamask/rpc-errors': 6.4.0
'@metamask/safe-event-emitter': 3.1.1
- '@metamask/utils': 9.2.0
+ '@metamask/utils': 9.3.0
transitivePeerDependencies:
- supports-color
@@ -12323,9 +12229,9 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@metamask/rpc-errors@6.3.1':
+ '@metamask/rpc-errors@6.4.0':
dependencies:
- '@metamask/utils': 9.2.0
+ '@metamask/utils': 9.3.0
fast-safe-stringify: 2.1.1
transitivePeerDependencies:
- supports-color
@@ -12339,7 +12245,7 @@ snapshots:
bufferutil: 4.0.8
cross-fetch: 4.0.0(encoding@0.1.13)
date-fns: 2.30.0
- debug: 4.3.6(supports-color@5.5.0)
+ debug: 4.3.4(supports-color@5.5.0)
eciesjs: 0.3.18
eventemitter2: 6.4.9
readable-stream: 3.6.2
@@ -12367,7 +12273,7 @@ snapshots:
'@types/dom-screen-wake-lock': 1.0.3
bowser: 2.11.0
cross-fetch: 4.0.0(encoding@0.1.13)
- debug: 4.3.6(supports-color@5.5.0)
+ debug: 4.3.4(supports-color@5.5.0)
eciesjs: 0.3.18
eth-rpc-errors: 4.0.3
eventemitter2: 6.4.9
@@ -12399,7 +12305,7 @@ snapshots:
dependencies:
'@ethereumjs/tx': 4.2.0
'@types/debug': 4.1.12
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@5.5.0)
semver: 7.6.2
superstruct: 1.0.4
transitivePeerDependencies:
@@ -12411,7 +12317,7 @@ snapshots:
'@noble/hashes': 1.4.0
'@scure/base': 1.1.6
'@types/debug': 4.1.12
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@5.5.0)
pony-cause: 2.1.11
semver: 7.6.2
superstruct: 1.0.4
@@ -12419,26 +12325,30 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@metamask/utils@9.2.0':
+ '@metamask/utils@9.3.0':
dependencies:
'@ethereumjs/tx': 4.2.0
'@metamask/superstruct': 3.1.0
'@noble/hashes': 1.4.0
'@scure/base': 1.1.6
'@types/debug': 4.1.12
- debug: 4.3.6(supports-color@5.5.0)
+ debug: 4.3.4(supports-color@5.5.0)
pony-cause: 2.1.11
- semver: 7.6.3
+ semver: 7.6.2
uuid: 9.0.1
transitivePeerDependencies:
- supports-color
+ '@moonpay/moonpay-react@1.8.2(react@18.3.1)':
+ dependencies:
+ react: 18.3.1
+
'@motionone/animation@10.17.0':
dependencies:
'@motionone/easing': 10.17.0
'@motionone/types': 10.17.0
'@motionone/utils': 10.17.0
- tslib: 2.6.3
+ tslib: 2.6.2
'@motionone/dom@10.17.0':
dependencies:
@@ -12447,23 +12357,23 @@ snapshots:
'@motionone/types': 10.17.0
'@motionone/utils': 10.17.0
hey-listen: 1.0.8
- tslib: 2.6.3
+ tslib: 2.6.2
'@motionone/easing@10.17.0':
dependencies:
'@motionone/utils': 10.17.0
- tslib: 2.6.3
+ tslib: 2.6.2
'@motionone/generators@10.17.0':
dependencies:
'@motionone/types': 10.17.0
'@motionone/utils': 10.17.0
- tslib: 2.6.3
+ tslib: 2.6.2
'@motionone/svelte@10.16.4':
dependencies:
'@motionone/dom': 10.17.0
- tslib: 2.6.3
+ tslib: 2.6.2
'@motionone/types@10.17.0': {}
@@ -12471,14 +12381,14 @@ snapshots:
dependencies:
'@motionone/types': 10.17.0
hey-listen: 1.0.8
- tslib: 2.6.3
+ tslib: 2.6.2
'@motionone/vue@10.16.4':
dependencies:
'@motionone/dom': 10.17.0
- tslib: 2.6.3
+ tslib: 2.6.2
- '@mswjs/interceptors@0.37.3':
+ '@mswjs/interceptors@0.37.5':
dependencies:
'@open-draft/deferred-promise': 2.2.0
'@open-draft/logger': 0.3.0
@@ -12540,10 +12450,6 @@ snapshots:
dependencies:
'@noble/hashes': 1.4.0
- '@noble/curves@1.6.0':
- dependencies:
- '@noble/hashes': 1.5.0
-
'@noble/hashes@1.2.0': {}
'@noble/hashes@1.3.3': {}
@@ -12754,28 +12660,15 @@ snapshots:
'@pkgr/core@0.1.1': {}
- '@playwright/test@1.48.2':
+ '@playwright/test@1.49.0':
dependencies:
- playwright: 1.48.2
+ playwright: 1.49.0
'@polka/url@1.0.0-next.25': {}
- '@rainbow-me/rainbowkit@2.1.2(@tanstack/react-query@5.22.2(react@18.3.1))(@types/react@18.2.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@2.19.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(wagmi@2.12.4(@tanstack/query-core@5.22.2)(@tanstack/react-query@5.22.2(react@18.3.1))(@types/react@18.2.21)(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.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.2.21)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@2.78.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.19.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8))':
+ '@ramp-network/ramp-instant-sdk@4.0.7':
dependencies:
- '@tanstack/react-query': 5.22.2(react@18.3.1)
- '@vanilla-extract/css': 1.14.0
- '@vanilla-extract/dynamic': 2.1.0
- '@vanilla-extract/sprinkles': 1.6.1(@vanilla-extract/css@1.14.0)
- clsx: 2.1.0
- qrcode: 1.5.3
- react: 18.3.1
- react-dom: 18.3.1(react@18.3.1)
- react-remove-scroll: 2.5.7(@types/react@18.2.21)(react@18.3.1)
- ua-parser-js: 1.0.37
- viem: 2.19.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)
- wagmi: 2.12.4(@tanstack/query-core@5.22.2)(@tanstack/react-query@5.22.2(react@18.3.1))(@types/react@18.2.21)(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.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.2.21)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@2.78.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.19.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)
- transitivePeerDependencies:
- - '@types/react'
+ body-scroll-lock: 3.1.5
'@react-native-community/cli-clean@13.6.6(encoding@0.1.13)':
dependencies:
@@ -12793,7 +12686,7 @@ snapshots:
cosmiconfig: 5.2.1
deepmerge: 4.3.1
fast-glob: 3.3.2
- joi: 17.13.3
+ joi: 17.13.1
transitivePeerDependencies:
- encoding
@@ -12818,10 +12711,10 @@ snapshots:
hermes-profile-transformer: 0.0.6
node-stream-zip: 1.15.0
ora: 5.4.1
- semver: 7.6.3
+ semver: 7.6.2
strip-ansi: 5.2.0
wcwidth: 1.0.1
- yaml: 2.5.0
+ yaml: 2.4.2
transitivePeerDependencies:
- encoding
@@ -12840,7 +12733,7 @@ snapshots:
chalk: 4.1.2
execa: 5.1.1
fast-glob: 3.3.2
- fast-xml-parser: 4.4.1
+ fast-xml-parser: 4.4.0
logkitty: 0.7.1
transitivePeerDependencies:
- encoding
@@ -12851,7 +12744,7 @@ snapshots:
chalk: 4.1.2
execa: 5.1.1
fast-glob: 3.3.2
- fast-xml-parser: 4.4.1
+ fast-xml-parser: 4.4.0
ora: 5.4.1
transitivePeerDependencies:
- encoding
@@ -12872,7 +12765,7 @@ snapshots:
nocache: 3.0.4
pretty-format: 26.6.2
serve-static: 1.15.0
- ws: 6.2.3(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ ws: 6.2.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
transitivePeerDependencies:
- bufferutil
- encoding
@@ -12889,7 +12782,7 @@ snapshots:
node-fetch: 2.7.0(encoding@0.1.13)
open: 6.4.0
ora: 5.4.1
- semver: 7.6.3
+ semver: 7.6.2
shell-quote: 1.8.1
sudo-prompt: 9.2.1
transitivePeerDependencies:
@@ -12897,7 +12790,7 @@ snapshots:
'@react-native-community/cli-types@13.6.6':
dependencies:
- joi: 17.13.3
+ joi: 17.13.1
'@react-native-community/cli@13.6.6(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)':
dependencies:
@@ -12917,7 +12810,7 @@ snapshots:
fs-extra: 8.1.0
graceful-fs: 4.2.11
prompts: 2.4.2
- semver: 7.6.3
+ semver: 7.6.2
transitivePeerDependencies:
- bufferutil
- encoding
@@ -12938,7 +12831,7 @@ snapshots:
'@babel/core': 7.24.6
'@babel/plugin-proposal-async-generator-functions': 7.20.7(@babel/core@7.24.6)
'@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.6)
- '@babel/plugin-proposal-export-default-from': 7.24.7(@babel/core@7.24.6)
+ '@babel/plugin-proposal-export-default-from': 7.24.6(@babel/core@7.24.6)
'@babel/plugin-proposal-logical-assignment-operators': 7.20.7(@babel/core@7.24.6)
'@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.6)
'@babel/plugin-proposal-numeric-separator': 7.18.6(@babel/core@7.24.6)
@@ -12946,35 +12839,35 @@ snapshots:
'@babel/plugin-proposal-optional-catch-binding': 7.18.6(@babel/core@7.24.6)
'@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.6)
'@babel/plugin-syntax-dynamic-import': 7.8.3(@babel/core@7.24.6)
- '@babel/plugin-syntax-export-default-from': 7.24.7(@babel/core@7.24.6)
- '@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.24.6)
+ '@babel/plugin-syntax-export-default-from': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-syntax-flow': 7.24.6(@babel/core@7.24.6)
'@babel/plugin-syntax-nullish-coalescing-operator': 7.8.3(@babel/core@7.24.6)
'@babel/plugin-syntax-optional-chaining': 7.8.3(@babel/core@7.24.6)
- '@babel/plugin-transform-arrow-functions': 7.24.7(@babel/core@7.24.6)
- '@babel/plugin-transform-async-to-generator': 7.24.7(@babel/core@7.24.6)
- '@babel/plugin-transform-block-scoping': 7.25.0(@babel/core@7.24.6)
- '@babel/plugin-transform-classes': 7.25.0(@babel/core@7.24.6)
- '@babel/plugin-transform-computed-properties': 7.24.7(@babel/core@7.24.6)
- '@babel/plugin-transform-destructuring': 7.24.8(@babel/core@7.24.6)
- '@babel/plugin-transform-flow-strip-types': 7.25.2(@babel/core@7.24.6)
- '@babel/plugin-transform-function-name': 7.25.1(@babel/core@7.24.6)
- '@babel/plugin-transform-literals': 7.25.2(@babel/core@7.24.6)
- '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.24.6)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.24.7(@babel/core@7.24.6)
- '@babel/plugin-transform-parameters': 7.24.7(@babel/core@7.24.6)
- '@babel/plugin-transform-private-methods': 7.24.7(@babel/core@7.24.6)
- '@babel/plugin-transform-private-property-in-object': 7.24.7(@babel/core@7.24.6)
- '@babel/plugin-transform-react-display-name': 7.24.7(@babel/core@7.24.6)
- '@babel/plugin-transform-react-jsx': 7.25.2(@babel/core@7.24.6)
- '@babel/plugin-transform-react-jsx-self': 7.24.7(@babel/core@7.24.6)
- '@babel/plugin-transform-react-jsx-source': 7.24.7(@babel/core@7.24.6)
- '@babel/plugin-transform-runtime': 7.24.7(@babel/core@7.24.6)
- '@babel/plugin-transform-shorthand-properties': 7.24.7(@babel/core@7.24.6)
- '@babel/plugin-transform-spread': 7.24.7(@babel/core@7.24.6)
- '@babel/plugin-transform-sticky-regex': 7.24.7(@babel/core@7.24.6)
- '@babel/plugin-transform-typescript': 7.25.2(@babel/core@7.24.6)
- '@babel/plugin-transform-unicode-regex': 7.24.7(@babel/core@7.24.6)
- '@babel/template': 7.25.0
+ '@babel/plugin-transform-arrow-functions': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-async-to-generator': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-block-scoping': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-classes': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-computed-properties': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-destructuring': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-flow-strip-types': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-function-name': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-literals': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-modules-commonjs': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-parameters': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-private-methods': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-private-property-in-object': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-react-display-name': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-react-jsx': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-react-jsx-self': 7.25.7(@babel/core@7.24.6)
+ '@babel/plugin-transform-react-jsx-source': 7.25.7(@babel/core@7.24.6)
+ '@babel/plugin-transform-runtime': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-shorthand-properties': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-spread': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-sticky-regex': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-typescript': 7.24.6(@babel/core@7.24.6)
+ '@babel/plugin-transform-unicode-regex': 7.24.6(@babel/core@7.24.6)
+ '@babel/template': 7.25.7
'@react-native/babel-plugin-codegen': 0.74.83(@babel/preset-env@7.24.6(@babel/core@7.24.6))
babel-plugin-transform-flow-enums: 0.0.2(@babel/core@7.24.6)
react-refresh: 0.14.2
@@ -12984,7 +12877,7 @@ snapshots:
'@react-native/codegen@0.74.83(@babel/preset-env@7.24.6(@babel/core@7.24.6))':
dependencies:
- '@babel/parser': 7.25.3
+ '@babel/parser': 7.25.8
'@babel/preset-env': 7.24.6(@babel/core@7.24.6)
glob: 7.2.3
hermes-parser: 0.19.1
@@ -13003,9 +12896,9 @@ snapshots:
'@react-native/metro-babel-transformer': 0.74.83(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))
chalk: 4.1.2
execa: 5.1.1
- 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
+ metro: 0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ metro-config: 0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ metro-core: 0.80.9
node-fetch: 2.7.0(encoding@0.1.13)
querystring: 0.2.1
readline: 1.3.0
@@ -13033,7 +12926,7 @@ snapshots:
selfsigned: 2.4.1
serve-static: 1.15.0
temp-dir: 2.0.0
- ws: 6.2.3(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ ws: 6.2.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
transitivePeerDependencies:
- bufferutil
- encoding
@@ -13067,7 +12960,7 @@ snapshots:
'@rnx-kit/chromium-edge-launcher@1.0.0':
dependencies:
- '@types/node': 18.19.44
+ '@types/node': 18.19.33
escape-string-regexp: 4.0.0
is-wsl: 2.2.0
lighthouse-logger: 1.4.2
@@ -13158,7 +13051,7 @@ snapshots:
'@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.8)':
dependencies:
'@safe-global/safe-gateway-typescript-sdk': 3.21.1
- viem: 2.21.40(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)
+ viem: 2.19.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)
transitivePeerDependencies:
- bufferutil
- typescript
@@ -13169,8 +13062,6 @@ snapshots:
'@scure/base@1.1.6': {}
- '@scure/base@1.1.9': {}
-
'@scure/bip32@1.1.5':
dependencies:
'@noble/hashes': 1.2.0
@@ -13189,12 +13080,6 @@ snapshots:
'@noble/hashes': 1.4.0
'@scure/base': 1.1.6
- '@scure/bip32@1.5.0':
- dependencies:
- '@noble/curves': 1.6.0
- '@noble/hashes': 1.5.0
- '@scure/base': 1.1.9
-
'@scure/bip39@1.1.1':
dependencies:
'@noble/hashes': 1.2.0
@@ -13210,11 +13095,6 @@ snapshots:
'@noble/hashes': 1.4.0
'@scure/base': 1.1.6
- '@scure/bip39@1.4.0':
- dependencies:
- '@noble/hashes': 1.5.0
- '@scure/base': 1.1.9
-
'@sentry/browser@7.43.0':
dependencies:
'@sentry/core': 7.43.0
@@ -13421,6 +13301,8 @@ snapshots:
dependencies:
'@socketregistry/original__deep-equal': deep-equal@2.2.3
+ '@socketregistry/define-properties@1.0.5': {}
+
'@socketregistry/es-define-property@1.0.5': {}
'@socketregistry/es-get-iterator@1.0.5': {}
@@ -13585,6 +13467,14 @@ snapshots:
'@stablelib/random': 1.0.2
'@stablelib/wipe': 1.0.1
+ '@stencil/core@4.22.1': {}
+
+ '@stripe/crypto@0.0.4(@stripe/stripe-js@3.5.0)':
+ dependencies:
+ '@stripe/stripe-js': 3.5.0
+
+ '@stripe/stripe-js@3.5.0': {}
+
'@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.24.6)':
dependencies:
'@babel/core': 7.24.6
@@ -13692,7 +13582,7 @@ snapshots:
'@tanstack/query-core@5.22.2': {}
- '@tanstack/query-devtools@5.58.0': {}
+ '@tanstack/query-devtools@5.61.4': {}
'@tanstack/query-persist-client-core@5.22.2':
dependencies:
@@ -13703,9 +13593,9 @@ snapshots:
'@tanstack/query-core': 5.22.2
'@tanstack/query-persist-client-core': 5.22.2
- '@tanstack/react-query-devtools@5.59.0(@tanstack/react-query@5.22.2(react@18.3.1))(react@18.3.1)':
+ '@tanstack/react-query-devtools@5.62.1(@tanstack/react-query@5.22.2(react@18.3.1))(react@18.3.1)':
dependencies:
- '@tanstack/query-devtools': 5.58.0
+ '@tanstack/query-devtools': 5.61.4
'@tanstack/react-query': 5.22.2(react@18.3.1)
react: 18.3.1
@@ -13731,7 +13621,7 @@ snapshots:
lz-string: 1.5.0
pretty-format: 27.5.1
- '@testing-library/jest-dom@6.4.5(@types/jest@29.5.12)(vitest@2.0.5(@types/node@18.19.33)(jsdom@24.1.0(bufferutil@4.0.8)(canvas@2.11.2(encoding@0.1.13))(utf-8-validate@5.0.10))(terser@5.31.5))':
+ '@testing-library/jest-dom@6.4.5(@types/jest@29.5.12)(vitest@2.1.3(@types/node@18.19.33)(jsdom@24.1.0(bufferutil@4.0.8)(canvas@2.11.2(encoding@0.1.13))(utf-8-validate@5.0.10))(msw@2.7.0(@types/node@18.19.33)(typescript@5.4.5))(terser@5.31.0))':
dependencies:
'@adobe/css-tools': 4.3.3
'@babel/runtime': 7.24.6
@@ -13743,7 +13633,7 @@ snapshots:
redent: 3.0.0
optionalDependencies:
'@types/jest': 29.5.12
- vitest: 2.0.5(@types/node@18.19.33)(jsdom@24.1.0(bufferutil@4.0.8)(canvas@2.11.2(encoding@0.1.13))(utf-8-validate@5.0.10))(terser@5.31.5)
+ vitest: 2.1.3(@types/node@18.19.33)(jsdom@24.1.0(bufferutil@4.0.8)(canvas@2.11.2(encoding@0.1.13))(utf-8-validate@5.0.10))(msw@2.7.0(@types/node@18.19.33)(typescript@5.4.5))(terser@5.31.0)
'@testing-library/react-hooks@8.0.1(@types/react@18.2.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
@@ -13781,7 +13671,7 @@ snapshots:
big.js: 6.2.1
bn.js: 5.2.1
cbor: 5.2.0
- debug: 4.3.6(supports-color@5.5.0)
+ debug: 4.3.7
lodash: 4.17.21
semver: 7.6.2
utf8: 3.0.0
@@ -13797,7 +13687,7 @@ snapshots:
'@truffle/contract-schema@3.4.16':
dependencies:
ajv: 6.12.6
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
@@ -13810,7 +13700,7 @@ snapshots:
'@truffle/error': 0.2.2
'@truffle/interface-adapter': 0.5.37(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
bignumber.js: 7.2.1
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@5.5.0)
ethers: 4.0.49
web3: 1.10.0(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
web3-core-helpers: 1.10.0
@@ -13829,7 +13719,7 @@ snapshots:
'@trufflesuite/chromafi': 3.0.0
bn.js: 5.2.1
chalk: 2.4.2
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.7
highlightjs-solidity: 2.0.6
transitivePeerDependencies:
- supports-color
@@ -13872,28 +13762,28 @@ snapshots:
'@types/babel__core@7.20.5':
dependencies:
- '@babel/parser': 7.25.3
- '@babel/types': 7.25.2
+ '@babel/parser': 7.24.6
+ '@babel/types': 7.24.6
'@types/babel__generator': 7.6.8
'@types/babel__template': 7.4.4
'@types/babel__traverse': 7.20.6
'@types/babel__generator@7.6.8':
dependencies:
- '@babel/types': 7.25.2
+ '@babel/types': 7.24.6
'@types/babel__template@7.4.4':
dependencies:
- '@babel/parser': 7.25.3
- '@babel/types': 7.25.2
+ '@babel/parser': 7.24.6
+ '@babel/types': 7.24.6
'@types/babel__traverse@7.20.6':
dependencies:
- '@babel/types': 7.25.2
+ '@babel/types': 7.24.6
'@types/bn.js@4.11.6':
dependencies:
- '@types/node': 18.19.44
+ '@types/node': 18.19.33
'@types/bn.js@5.1.5':
dependencies:
@@ -13903,7 +13793,7 @@ snapshots:
dependencies:
'@types/http-cache-semantics': 4.0.4
'@types/keyv': 3.1.4
- '@types/node': 18.19.44
+ '@types/node': 18.19.33
'@types/responselike': 1.0.3
'@types/cookie@0.6.0': {}
@@ -13914,12 +13804,16 @@ snapshots:
'@types/dom-screen-wake-lock@1.0.3': {}
+ '@types/elliptic@6.4.18':
+ dependencies:
+ '@types/bn.js': 5.1.5
+
'@types/eslint-scope@3.7.7':
dependencies:
- '@types/eslint': 9.6.0
+ '@types/eslint': 8.56.10
'@types/estree': 1.0.5
- '@types/eslint@9.6.0':
+ '@types/eslint@8.56.10':
dependencies:
'@types/estree': 1.0.5
'@types/json-schema': 7.0.15
@@ -13957,7 +13851,7 @@ snapshots:
'@types/keyv@3.1.4':
dependencies:
- '@types/node': 18.19.44
+ '@types/node': 18.19.33
'@types/lru-cache@5.1.1': {}
@@ -13967,7 +13861,7 @@ snapshots:
'@types/node-forge@1.3.11':
dependencies:
- '@types/node': 18.19.44
+ '@types/node': 18.19.33
'@types/node@12.20.55': {}
@@ -13977,10 +13871,6 @@ snapshots:
dependencies:
undici-types: 5.26.5
- '@types/node@18.19.44':
- dependencies:
- undici-types: 5.26.5
-
'@types/normalize-package-data@2.4.4': {}
'@types/pako@2.0.3': {}
@@ -13989,7 +13879,7 @@ snapshots:
'@types/pbkdf2@3.1.2':
dependencies:
- '@types/node': 18.19.44
+ '@types/node': 18.19.33
'@types/prettier@2.7.3': {}
@@ -14009,7 +13899,7 @@ snapshots:
'@types/responselike@1.0.3':
dependencies:
- '@types/node': 18.19.44
+ '@types/node': 18.19.33
'@types/sax@1.2.7':
dependencies:
@@ -14019,7 +13909,7 @@ snapshots:
'@types/secp256k1@4.0.6':
dependencies:
- '@types/node': 18.19.44
+ '@types/node': 18.19.33
'@types/semver@7.5.8': {}
@@ -14033,6 +13923,8 @@ snapshots:
'@types/react': 18.2.21
csstype: 3.1.3
+ '@types/stylis@4.2.5': {}
+
'@types/tough-cookie@4.0.5': {}
'@types/trusted-types@2.0.7': {}
@@ -14059,7 +13951,7 @@ snapshots:
'@typescript-eslint/type-utils': 6.21.0(eslint@8.50.0)(typescript@5.4.5)
'@typescript-eslint/utils': 6.21.0(eslint@8.50.0)(typescript@5.4.5)
'@typescript-eslint/visitor-keys': 6.21.0
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@5.5.0)
eslint: 8.50.0
graphemer: 1.4.0
ignore: 5.3.1
@@ -14077,7 +13969,7 @@ snapshots:
'@typescript-eslint/types': 6.21.0
'@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.5)
'@typescript-eslint/visitor-keys': 6.21.0
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@5.5.0)
eslint: 8.50.0
optionalDependencies:
typescript: 5.4.5
@@ -14103,7 +13995,7 @@ snapshots:
dependencies:
'@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.5)
'@typescript-eslint/utils': 6.21.0(eslint@8.50.0)(typescript@5.4.5)
- debug: 4.3.6(supports-color@5.5.0)
+ debug: 4.3.4(supports-color@5.5.0)
eslint: 8.50.0
ts-api-utils: 1.3.0(typescript@5.4.5)
optionalDependencies:
@@ -14121,7 +14013,7 @@ snapshots:
dependencies:
'@typescript-eslint/types': 5.62.0
'@typescript-eslint/visitor-keys': 5.62.0
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@5.5.0)
globby: 11.1.0
is-glob: 4.0.3
semver: 7.6.2
@@ -14135,7 +14027,7 @@ snapshots:
dependencies:
'@typescript-eslint/types': 6.21.0
'@typescript-eslint/visitor-keys': 6.21.0
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@5.5.0)
globby: 11.1.0
is-glob: 4.0.3
minimatch: 9.0.3
@@ -14150,7 +14042,7 @@ snapshots:
dependencies:
'@typescript-eslint/types': 7.10.0
'@typescript-eslint/visitor-keys': 7.10.0
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@5.5.0)
globby: 11.1.0
is-glob: 4.0.3
minimatch: 9.0.4
@@ -14176,45 +14068,185 @@ snapshots:
- supports-color
- typescript
- '@typescript-eslint/utils@6.21.0(eslint@8.50.0)(typescript@5.4.5)':
+ '@typescript-eslint/utils@6.21.0(eslint@8.50.0)(typescript@5.4.5)':
+ dependencies:
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.50.0)
+ '@types/json-schema': 7.0.15
+ '@types/semver': 7.5.8
+ '@typescript-eslint/scope-manager': 6.21.0
+ '@typescript-eslint/types': 6.21.0
+ '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.5)
+ eslint: 8.50.0
+ semver: 7.6.2
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+
+ '@typescript-eslint/utils@7.10.0(eslint@8.50.0)(typescript@5.4.5)':
+ dependencies:
+ '@eslint-community/eslint-utils': 4.4.0(eslint@8.50.0)
+ '@typescript-eslint/scope-manager': 7.10.0
+ '@typescript-eslint/types': 7.10.0
+ '@typescript-eslint/typescript-estree': 7.10.0(typescript@5.4.5)
+ eslint: 8.50.0
+ transitivePeerDependencies:
+ - supports-color
+ - typescript
+
+ '@typescript-eslint/visitor-keys@5.62.0':
+ dependencies:
+ '@typescript-eslint/types': 5.62.0
+ eslint-visitor-keys: 3.4.3
+
+ '@typescript-eslint/visitor-keys@6.21.0':
+ dependencies:
+ '@typescript-eslint/types': 6.21.0
+ eslint-visitor-keys: 3.4.3
+
+ '@typescript-eslint/visitor-keys@7.10.0':
+ dependencies:
+ '@typescript-eslint/types': 7.10.0
+ eslint-visitor-keys: 3.4.3
+
+ '@usecapsule/core-components@3.19.0':
+ dependencies:
+ '@stencil/core': 4.22.1
+ color-blend: 4.0.0
+ color2k: 2.0.3
+ gsap: 3.12.5
+ inputmask: 5.0.9
+ qrcode-with-logos: 1.1.1
+
+ '@usecapsule/core-sdk@2.14.0':
+ dependencies:
+ '@celo/utils': 6.0.1
+ '@cosmjs/encoding': 0.32.4
+ '@noble/hashes': 1.5.0
+ '@usecapsule/user-management-client': 1.36.0
+ base64url: 3.0.1
+ buffer: 6.0.3
+ ethereumjs-util: 7.1.5
+ libphonenumber-js: 1.11.2
+ node-forge: 1.3.1(patch_hash=nfdrir6ttlr77nd4pr3kkewsuy)
+ qs: 6.12.1
+ transitivePeerDependencies:
+ - debug
+
+ '@usecapsule/rainbowkit-wallet@1.6.0(glwgzza6gedbpe5ymzupq2wudm)':
+ dependencies:
+ '@usecapsule/rainbowkit': 3.6.0(@emotion/is-prop-valid@1.2.2)(@types/react@18.2.21)(immer@9.0.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@2.19.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(wagmi@2.12.4(@tanstack/query-core@5.22.2)(@tanstack/react-query@5.22.2(react@18.3.1))(@types/react@18.2.21)(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.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.2.21)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@2.78.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.19.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8))
+ '@usecapsule/react-sdk': 4.14.0(@emotion/is-prop-valid@1.2.2)(@types/react@18.2.21)(immer@9.0.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@usecapsule/wagmi-v2-integration': 3.14.0-dev.1(@emotion/is-prop-valid@1.2.2)(@types/react@18.2.21)(immer@9.0.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@2.19.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(wagmi@2.12.4(@tanstack/query-core@5.22.2)(@tanstack/react-query@5.22.2(react@18.3.1))(@types/react@18.2.21)(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.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.2.21)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@2.78.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.19.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8))
+ viem: 2.19.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)
+ wagmi: 2.12.4(@tanstack/query-core@5.22.2)(@tanstack/react-query@5.22.2(react@18.3.1))(@types/react@18.2.21)(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.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.2.21)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@2.78.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.19.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)
+ transitivePeerDependencies:
+ - '@emotion/is-prop-valid'
+ - '@types/react'
+ - debug
+ - immer
+ - react
+ - react-dom
+
+ '@usecapsule/rainbowkit@3.6.0(@emotion/is-prop-valid@1.2.2)(@types/react@18.2.21)(immer@9.0.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@2.19.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(wagmi@2.12.4(@tanstack/query-core@5.22.2)(@tanstack/react-query@5.22.2(react@18.3.1))(@types/react@18.2.21)(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.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.2.21)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@2.78.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.19.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8))':
+ dependencies:
+ '@coinbase/wallet-sdk': 3.9.3
+ '@usecapsule/react-sdk': 4.14.0(@emotion/is-prop-valid@1.2.2)(@types/react@18.2.21)(immer@9.0.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@vanilla-extract/css': 1.14.0
+ '@vanilla-extract/dynamic': 2.1.0
+ '@vanilla-extract/sprinkles': 1.6.1(@vanilla-extract/css@1.14.0)
+ clsx: 2.1.0
+ qrcode: 1.5.3
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ react-remove-scroll: 2.5.7(@types/react@18.2.21)(react@18.3.1)
+ ua-parser-js: 1.0.39
+ viem: 2.19.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)
+ wagmi: 2.12.4(@tanstack/query-core@5.22.2)(@tanstack/react-query@5.22.2(react@18.3.1))(@types/react@18.2.21)(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.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.2.21)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@2.78.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.19.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)
+ transitivePeerDependencies:
+ - '@emotion/is-prop-valid'
+ - '@types/react'
+ - debug
+ - immer
+ - supports-color
+
+ '@usecapsule/react-common@1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@moonpay/moonpay-react': 1.8.2(react@18.3.1)
+ '@ramp-network/ramp-instant-sdk': 4.0.7
+ '@stripe/crypto': 0.0.4(@stripe/stripe-js@3.5.0)
+ '@stripe/stripe-js': 3.5.0
+ '@usecapsule/web-sdk': 2.14.0
+ libphonenumber-js: 1.11.12
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ styled-components: 6.1.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ transitivePeerDependencies:
+ - debug
+
+ '@usecapsule/react-components@3.19.0':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.50.0)
- '@types/json-schema': 7.0.15
- '@types/semver': 7.5.8
- '@typescript-eslint/scope-manager': 6.21.0
- '@typescript-eslint/types': 6.21.0
- '@typescript-eslint/typescript-estree': 6.21.0(typescript@5.4.5)
- eslint: 8.50.0
- semver: 7.6.2
+ '@usecapsule/core-components': 3.19.0
+
+ '@usecapsule/react-sdk@4.14.0(@emotion/is-prop-valid@1.2.2)(@types/react@18.2.21)(immer@9.0.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@usecapsule/react-common': 1.11.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@usecapsule/react-components': 3.19.0
+ '@usecapsule/web-sdk': 2.14.0
+ date-fns: 3.6.0
+ detect-browser: 5.3.0
+ framer-motion: 11.3.28(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ libphonenumber-js: 1.11.12
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ styled-components: 6.1.13(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ zustand: 4.5.5(@types/react@18.2.21)(immer@9.0.21)(react@18.3.1)
transitivePeerDependencies:
- - supports-color
- - typescript
+ - '@emotion/is-prop-valid'
+ - '@types/react'
+ - debug
+ - immer
- '@typescript-eslint/utils@7.10.0(eslint@8.50.0)(typescript@5.4.5)':
+ '@usecapsule/user-management-client@1.36.0':
dependencies:
- '@eslint-community/eslint-utils': 4.4.0(eslint@8.50.0)
- '@typescript-eslint/scope-manager': 7.10.0
- '@typescript-eslint/types': 7.10.0
- '@typescript-eslint/typescript-estree': 7.10.0(typescript@5.4.5)
- eslint: 8.50.0
+ axios: 1.7.7
+ libphonenumber-js: 1.11.2
+ qs: 6.12.1
transitivePeerDependencies:
- - supports-color
- - typescript
+ - debug
- '@typescript-eslint/visitor-keys@5.62.0':
+ '@usecapsule/viem-v2-integration@2.14.0(viem@2.19.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))':
dependencies:
- '@typescript-eslint/types': 5.62.0
- eslint-visitor-keys: 3.4.3
+ '@usecapsule/core-sdk': 2.14.0
+ viem: 2.19.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)
+ transitivePeerDependencies:
+ - debug
- '@typescript-eslint/visitor-keys@6.21.0':
+ '@usecapsule/wagmi-v2-integration@3.14.0-dev.1(@emotion/is-prop-valid@1.2.2)(@types/react@18.2.21)(immer@9.0.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@2.19.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(wagmi@2.12.4(@tanstack/query-core@5.22.2)(@tanstack/react-query@5.22.2(react@18.3.1))(@types/react@18.2.21)(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.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.2.21)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@2.78.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.19.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8))':
dependencies:
- '@typescript-eslint/types': 6.21.0
- eslint-visitor-keys: 3.4.3
+ '@usecapsule/react-sdk': 4.14.0(@emotion/is-prop-valid@1.2.2)(@types/react@18.2.21)(immer@9.0.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@usecapsule/viem-v2-integration': 2.14.0(viem@2.19.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ viem: 2.19.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)
+ wagmi: 2.12.4(@tanstack/query-core@5.22.2)(@tanstack/react-query@5.22.2(react@18.3.1))(@types/react@18.2.21)(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.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.2.21)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@2.78.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.19.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)
+ transitivePeerDependencies:
+ - '@emotion/is-prop-valid'
+ - '@types/react'
+ - debug
+ - immer
- '@typescript-eslint/visitor-keys@7.10.0':
+ '@usecapsule/web-sdk@2.14.0':
dependencies:
- '@typescript-eslint/types': 7.10.0
- eslint-visitor-keys: 3.4.3
+ '@usecapsule/core-sdk': 2.14.0
+ '@usecapsule/user-management-client': 1.36.0
+ assert: 2.1.0
+ base64url: 3.0.1
+ buffer: 6.0.3
+ cbor-web: 8.1.0
+ node-forge: 1.3.1(patch_hash=nfdrir6ttlr77nd4pr3kkewsuy)
+ ua-parser-js: 1.0.39
+ transitivePeerDependencies:
+ - debug
'@vanilla-extract/css@1.14.0':
dependencies:
@@ -14240,66 +14272,74 @@ snapshots:
dependencies:
'@vanilla-extract/css': 1.14.0
- '@vitejs/plugin-react@4.3.1(vite@5.2.11(@types/node@18.19.33)(terser@5.31.5))':
+ '@vitejs/plugin-react@4.3.3(vite@5.2.11(@types/node@18.19.33)(terser@5.31.0))':
dependencies:
- '@babel/core': 7.24.6
- '@babel/plugin-transform-react-jsx-self': 7.24.7(@babel/core@7.24.6)
- '@babel/plugin-transform-react-jsx-source': 7.24.7(@babel/core@7.24.6)
+ '@babel/core': 7.25.8
+ '@babel/plugin-transform-react-jsx-self': 7.25.7(@babel/core@7.25.8)
+ '@babel/plugin-transform-react-jsx-source': 7.25.7(@babel/core@7.25.8)
'@types/babel__core': 7.20.5
react-refresh: 0.14.2
- vite: 5.2.11(@types/node@18.19.33)(terser@5.31.5)
+ vite: 5.2.11(@types/node@18.19.33)(terser@5.31.0)
transitivePeerDependencies:
- supports-color
- '@vitest/coverage-v8@2.0.5(vitest@2.0.5(@types/node@18.19.33)(jsdom@24.1.0(bufferutil@4.0.8)(canvas@2.11.2(encoding@0.1.13))(utf-8-validate@5.0.10))(terser@5.31.5))':
+ '@vitest/coverage-v8@2.1.3(vitest@2.1.3(@types/node@18.19.33)(jsdom@24.1.0(bufferutil@4.0.8)(canvas@2.11.2(encoding@0.1.13))(utf-8-validate@5.0.10))(msw@2.7.0(@types/node@18.19.33)(typescript@5.4.5))(terser@5.31.0))':
dependencies:
'@ampproject/remapping': 2.3.0
'@bcoe/v8-coverage': 0.2.3
- debug: 4.3.6(supports-color@5.5.0)
+ debug: 4.3.7
istanbul-lib-coverage: 3.2.2
istanbul-lib-report: 3.0.1
istanbul-lib-source-maps: 5.0.6
istanbul-reports: 3.1.7
- magic-string: 0.30.10
+ magic-string: 0.30.12
magicast: 0.3.4
std-env: 3.7.0
test-exclude: 7.0.1
tinyrainbow: 1.2.0
- vitest: 2.0.5(@types/node@18.19.33)(jsdom@24.1.0(bufferutil@4.0.8)(canvas@2.11.2(encoding@0.1.13))(utf-8-validate@5.0.10))(terser@5.31.5)
+ vitest: 2.1.3(@types/node@18.19.33)(jsdom@24.1.0(bufferutil@4.0.8)(canvas@2.11.2(encoding@0.1.13))(utf-8-validate@5.0.10))(msw@2.7.0(@types/node@18.19.33)(typescript@5.4.5))(terser@5.31.0)
transitivePeerDependencies:
- supports-color
- '@vitest/expect@2.0.5':
+ '@vitest/expect@2.1.3':
dependencies:
- '@vitest/spy': 2.0.5
- '@vitest/utils': 2.0.5
+ '@vitest/spy': 2.1.3
+ '@vitest/utils': 2.1.3
chai: 5.1.1
tinyrainbow: 1.2.0
- '@vitest/pretty-format@2.0.5':
+ '@vitest/mocker@2.1.3(@vitest/spy@2.1.3)(msw@2.7.0(@types/node@18.19.33)(typescript@5.4.5))(vite@5.2.11(@types/node@18.19.33)(terser@5.31.0))':
+ dependencies:
+ '@vitest/spy': 2.1.3
+ estree-walker: 3.0.3
+ magic-string: 0.30.12
+ optionalDependencies:
+ msw: 2.7.0(@types/node@18.19.33)(typescript@5.4.5)
+ vite: 5.2.11(@types/node@18.19.33)(terser@5.31.0)
+
+ '@vitest/pretty-format@2.1.3':
dependencies:
tinyrainbow: 1.2.0
- '@vitest/runner@2.0.5':
+ '@vitest/runner@2.1.3':
dependencies:
- '@vitest/utils': 2.0.5
+ '@vitest/utils': 2.1.3
pathe: 1.1.2
- '@vitest/snapshot@2.0.5':
+ '@vitest/snapshot@2.1.3':
dependencies:
- '@vitest/pretty-format': 2.0.5
- magic-string: 0.30.10
+ '@vitest/pretty-format': 2.1.3
+ magic-string: 0.30.12
pathe: 1.1.2
- '@vitest/spy@2.0.5':
+ '@vitest/spy@2.1.3':
dependencies:
- tinyspy: 3.0.0
+ tinyspy: 3.0.2
- '@vitest/utils@2.0.5':
+ '@vitest/utils@2.1.3':
dependencies:
- '@vitest/pretty-format': 2.0.5
- estree-walker: 3.0.3
- loupe: 3.1.1
+ '@vitest/pretty-format': 2.1.3
+ loupe: 3.1.2
tinyrainbow: 1.2.0
'@wagmi/connectors@5.1.4(@types/react@18.2.21)(@wagmi/core@2.13.3(@tanstack/query-core@5.22.2)(@types/react@18.2.21)(immer@9.0.21)(react@18.3.1)(typescript@5.4.5)(viem@2.19.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8)))(bufferutil@4.0.8)(encoding@0.1.13)(react-dom@18.3.1(react@18.3.1))(react-native@0.74.1(@babel/core@7.24.6)(@babel/preset-env@7.24.6(@babel/core@7.24.6))(@types/react@18.2.21)(bufferutil@4.0.8)(encoding@0.1.13)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@2.78.0)(typescript@5.4.5)(utf-8-validate@5.0.10)(viem@2.19.4(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8))(zod@3.23.8)':
@@ -14483,7 +14523,7 @@ snapshots:
'@walletconnect/jsonrpc-utils': 1.0.8
'@walletconnect/safe-json': 1.0.2
events: 3.3.0
- ws: 7.5.10(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10)
transitivePeerDependencies:
- bufferutil
- utf-8-validate
@@ -14774,11 +14814,6 @@ snapshots:
typescript: 5.4.5
zod: 3.23.8
- abitype@1.0.6(typescript@5.4.5)(zod@3.23.8):
- optionalDependencies:
- typescript: 5.4.5
- zod: 3.23.8
-
abort-controller@3.0.0:
dependencies:
event-target-shim: 5.0.1
@@ -14790,9 +14825,9 @@ snapshots:
mime-types: 2.1.35
negotiator: 0.6.3
- acorn-import-assertions@1.9.0(acorn@8.12.1):
+ acorn-import-assertions@1.9.0(acorn@8.11.3):
dependencies:
- acorn: 8.12.1
+ acorn: 8.11.3
acorn-jsx@5.3.2(acorn@8.11.3):
dependencies:
@@ -14802,21 +14837,19 @@ snapshots:
acorn@8.11.3: {}
- acorn@8.12.1: {}
-
adm-zip@0.4.16: {}
aes-js@3.0.0: {}
agent-base@6.0.2:
dependencies:
- debug: 4.3.6(supports-color@5.5.0)
+ debug: 4.3.4(supports-color@5.5.0)
transitivePeerDependencies:
- supports-color
agent-base@7.1.1:
dependencies:
- debug: 4.3.6(supports-color@5.5.0)
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
@@ -14877,7 +14910,7 @@ snapshots:
ansi-regex@5.0.1: {}
- ansi-regex@6.0.1: {}
+ ansi-regex@6.1.0: {}
ansi-styles@3.2.1:
dependencies:
@@ -14941,6 +14974,14 @@ snapshots:
assert-plus@1.0.0: {}
+ assert@2.1.0:
+ dependencies:
+ call-bind: 1.0.7
+ is-nan: 1.3.2
+ object-is: '@socketregistry/object-is@1.0.5'
+ object.assign: '@socketregistry/object.assign@1.0.5'
+ util: 0.12.5
+
assertion-error@1.1.0: {}
assertion-error@2.0.1: {}
@@ -14949,7 +14990,7 @@ snapshots:
ast-types@0.15.2:
dependencies:
- tslib: 2.6.3
+ tslib: 2.6.2
astral-regex@1.0.0: {}
@@ -14959,7 +15000,7 @@ snapshots:
async-mutex@0.2.6:
dependencies:
- tslib: 2.6.3
+ tslib: 2.6.2
asynckit@0.4.0: {}
@@ -14983,13 +15024,21 @@ snapshots:
transitivePeerDependencies:
- debug
+ axios@1.7.7:
+ dependencies:
+ follow-redirects: 1.15.6(debug@4.3.4)
+ form-data: 4.0.0
+ proxy-from-env: 1.1.0
+ transitivePeerDependencies:
+ - debug
+
axobject-query@3.2.1:
dependencies:
dequal: 2.0.3
- babel-core@7.0.0-bridge.0(@babel/core@7.24.6):
+ babel-core@7.0.0-bridge.0(@babel/core@7.25.8):
dependencies:
- '@babel/core': 7.24.6
+ '@babel/core': 7.25.8
babel-plugin-polyfill-corejs2@0.4.11(@babel/core@7.24.6):
dependencies:
@@ -15008,14 +15057,6 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.24.6):
- dependencies:
- '@babel/core': 7.24.6
- '@babel/helper-define-polyfill-provider': 0.6.2(@babel/core@7.24.6)
- core-js-compat: 3.38.0
- transitivePeerDependencies:
- - supports-color
-
babel-plugin-polyfill-regenerator@0.6.2(@babel/core@7.24.6):
dependencies:
'@babel/core': 7.24.6
@@ -15023,20 +15064,20 @@ snapshots:
transitivePeerDependencies:
- supports-color
- babel-plugin-styled-components@2.1.4(@babel/core@7.24.6)(styled-components@5.3.11(@babel/core@7.24.6)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1)):
+ babel-plugin-styled-components@2.1.4(@babel/core@7.24.6)(styled-components@5.3.6(@babel/core@7.24.6)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1)):
dependencies:
'@babel/helper-annotate-as-pure': 7.24.6
'@babel/helper-module-imports': 7.24.6
'@babel/plugin-syntax-jsx': 7.24.6(@babel/core@7.24.6)
lodash: 4.17.21
picomatch: 2.3.1
- styled-components: 5.3.11(@babel/core@7.24.6)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1)
+ styled-components: 5.3.6(@babel/core@7.24.6)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1)
transitivePeerDependencies:
- '@babel/core'
babel-plugin-transform-flow-enums@0.0.2(@babel/core@7.24.6):
dependencies:
- '@babel/plugin-syntax-flow': 7.24.7(@babel/core@7.24.6)
+ '@babel/plugin-syntax-flow': 7.24.6(@babel/core@7.24.6)
transitivePeerDependencies:
- '@babel/core'
@@ -15050,6 +15091,8 @@ snapshots:
base64-js@1.5.1: {}
+ base64url@3.0.1: {}
+
bcrypt-pbkdf@1.0.2:
dependencies:
tweetnacl: 0.14.5
@@ -15097,6 +15140,8 @@ snapshots:
transitivePeerDependencies:
- supports-color
+ body-scroll-lock@3.1.5: {}
+
boolbase@1.0.0: {}
bowser@2.11.0: {}
@@ -15145,12 +15190,12 @@ snapshots:
node-releases: 2.0.14
update-browserslist-db: 1.0.16(browserslist@4.23.0)
- browserslist@4.23.3:
+ browserslist@4.24.0:
dependencies:
- caniuse-lite: 1.0.30001651
- electron-to-chromium: 1.5.6
+ caniuse-lite: 1.0.30001669
+ electron-to-chromium: 1.5.41
node-releases: 2.0.18
- update-browserslist-db: 1.1.0(browserslist@4.23.3)
+ update-browserslist-db: 1.1.1(browserslist@4.24.0)
bs58@4.0.1:
dependencies:
@@ -15258,7 +15303,7 @@ snapshots:
caniuse-lite@1.0.30001621: {}
- caniuse-lite@1.0.30001651: {}
+ caniuse-lite@1.0.30001669: {}
canvas@2.11.2(encoding@0.1.13):
dependencies:
@@ -15272,13 +15317,17 @@ snapshots:
capnp-ts@0.7.0:
dependencies:
- debug: 4.3.6(supports-color@5.5.0)
+ debug: 4.3.4(supports-color@5.5.0)
tslib: 2.6.2
transitivePeerDependencies:
- supports-color
+ case@1.6.3: {}
+
caseless@0.12.0: {}
+ cbor-web@8.1.0: {}
+
cbor@5.2.0:
dependencies:
bignumber.js: 9.1.2
@@ -15307,7 +15356,7 @@ snapshots:
assertion-error: 2.0.1
check-error: 2.1.1
deep-eql: 5.0.2
- loupe: 3.1.1
+ loupe: 3.1.2
pathval: 2.0.0
chalk@2.4.2:
@@ -15403,7 +15452,7 @@ snapshots:
chrome-launcher@0.15.2:
dependencies:
- '@types/node': 18.19.44
+ '@types/node': 18.19.33
escape-string-regexp: 4.0.0
is-wsl: 2.2.0
lighthouse-logger: 1.4.2
@@ -15499,6 +15548,8 @@ snapshots:
code-point-at@1.1.0: {}
+ color-blend@4.0.0: {}
+
color-convert@1.9.3:
dependencies:
color-name: 1.1.3
@@ -15514,6 +15565,8 @@ snapshots:
color-support@1.1.3:
optional: true
+ color2k@2.0.3: {}
+
colord@2.9.3: {}
colorette@1.4.0: {}
@@ -15540,7 +15593,7 @@ snapshots:
compressible@2.0.18:
dependencies:
- mime-db: 1.53.0
+ mime-db: 1.52.0
compression@1.7.4:
dependencies:
@@ -15625,10 +15678,6 @@ snapshots:
dependencies:
browserslist: 4.23.0
- core-js-compat@3.38.0:
- dependencies:
- browserslist: 4.23.3
-
core-util-is@1.0.2: {}
core-util-is@1.0.3: {}
@@ -15798,11 +15847,11 @@ snapshots:
date-fns@2.30.0:
dependencies:
- '@babel/runtime': 7.25.0
+ '@babel/runtime': 7.24.6
- dayjs@1.11.11: {}
+ date-fns@3.6.0: {}
- dayjs@1.11.12: {}
+ dayjs@1.11.11: {}
debug@2.6.9:
dependencies:
@@ -15812,17 +15861,21 @@ snapshots:
dependencies:
ms: 2.1.3
- debug@4.3.4(supports-color@8.1.1):
+ debug@4.3.4(supports-color@5.5.0):
dependencies:
ms: 2.1.2
optionalDependencies:
- supports-color: 8.1.1
+ supports-color: 5.5.0
- debug@4.3.6(supports-color@5.5.0):
+ debug@4.3.4(supports-color@8.1.1):
dependencies:
ms: 2.1.2
optionalDependencies:
- supports-color: 5.5.0
+ supports-color: 8.1.1
+
+ debug@4.3.7:
+ dependencies:
+ ms: 2.1.3
decamelize-keys@1.1.1:
dependencies:
@@ -15940,7 +15993,7 @@ snapshots:
docker-compose@0.24.8:
dependencies:
- yaml: 2.5.0
+ yaml: 2.4.2
doctrine@2.1.0:
dependencies:
@@ -15981,7 +16034,7 @@ snapshots:
dot-case@3.0.4:
dependencies:
no-case: 3.0.4
- tslib: 2.6.3
+ tslib: 2.6.2
dotenv@16.4.5: {}
@@ -16017,7 +16070,7 @@ snapshots:
electron-to-chromium@1.4.783: {}
- electron-to-chromium@1.5.6: {}
+ electron-to-chromium@1.5.41: {}
elliptic@6.5.4:
dependencies:
@@ -16064,7 +16117,7 @@ snapshots:
engine.io-client@6.5.3(bufferutil@4.0.8)(utf-8-validate@5.0.10):
dependencies:
'@socket.io/component-emitter': 3.1.2
- debug: 4.3.6(supports-color@5.5.0)
+ debug: 4.3.4(supports-color@5.5.0)
engine.io-parser: 5.2.2
ws: 8.11.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
xmlhttprequest-ssl: 2.0.0
@@ -16115,7 +16168,7 @@ snapshots:
es-errors@1.3.0: {}
- es-module-lexer@1.5.4: {}
+ es-module-lexer@1.5.3: {}
es5-ext@0.10.64:
dependencies:
@@ -16185,6 +16238,8 @@ snapshots:
escalade@3.1.2: {}
+ escalade@3.2.0: {}
+
escape-html@1.0.3: {}
escape-string-regexp@1.0.5: {}
@@ -16253,7 +16308,7 @@ snapshots:
eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.50.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.50.0):
dependencies:
- debug: 4.3.6(supports-color@5.5.0)
+ debug: 4.3.4(supports-color@5.5.0)
enhanced-resolve: 5.16.1
eslint: 8.50.0
eslint-module-utils: 2.8.1(@typescript-eslint/parser@6.21.0(eslint@8.50.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.1(@typescript-eslint/parser@6.21.0(eslint@8.50.0)(typescript@5.4.5))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.29.1)(eslint@8.50.0))(eslint@8.50.0)
@@ -16326,14 +16381,14 @@ snapshots:
object.entries: '@socketregistry/object.entries@1.0.5'
object.fromentries: '@socketregistry/object.fromentries@1.0.5'
- eslint-plugin-prettier@5.1.3(@types/eslint@9.6.0)(eslint-config-prettier@9.1.0(eslint@8.50.0))(eslint@8.50.0)(prettier@3.0.3):
+ eslint-plugin-prettier@5.1.3(@types/eslint@8.56.10)(eslint-config-prettier@9.1.0(eslint@8.50.0))(eslint@8.50.0)(prettier@3.0.3):
dependencies:
eslint: 8.50.0
prettier: 3.0.3
prettier-linter-helpers: 1.0.0
synckit: 0.8.8
optionalDependencies:
- '@types/eslint': 9.6.0
+ '@types/eslint': 8.56.10
eslint-config-prettier: 9.1.0(eslint@8.50.0)
eslint-plugin-react-hooks@4.6.2(eslint@8.50.0):
@@ -16370,13 +16425,13 @@ snapshots:
- supports-color
- typescript
- eslint-plugin-vitest@0.4.1(@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.50.0)(typescript@5.4.5))(eslint@8.50.0)(typescript@5.4.5))(eslint@8.50.0)(typescript@5.4.5)(vitest@2.0.5(@types/node@18.19.33)(jsdom@24.1.0(bufferutil@4.0.8)(canvas@2.11.2(encoding@0.1.13))(utf-8-validate@5.0.10))(terser@5.31.5)):
+ eslint-plugin-vitest@0.4.1(@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.50.0)(typescript@5.4.5))(eslint@8.50.0)(typescript@5.4.5))(eslint@8.50.0)(typescript@5.4.5)(vitest@2.1.3(@types/node@18.19.33)(jsdom@24.1.0(bufferutil@4.0.8)(canvas@2.11.2(encoding@0.1.13))(utf-8-validate@5.0.10))(msw@2.7.0(@types/node@18.19.33)(typescript@5.4.5))(terser@5.31.0)):
dependencies:
'@typescript-eslint/utils': 7.10.0(eslint@8.50.0)(typescript@5.4.5)
eslint: 8.50.0
optionalDependencies:
'@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.50.0)(typescript@5.4.5))(eslint@8.50.0)(typescript@5.4.5)
- vitest: 2.0.5(@types/node@18.19.33)(jsdom@24.1.0(bufferutil@4.0.8)(canvas@2.11.2(encoding@0.1.13))(utf-8-validate@5.0.10))(terser@5.31.5)
+ vitest: 2.1.3(@types/node@18.19.33)(jsdom@24.1.0(bufferutil@4.0.8)(canvas@2.11.2(encoding@0.1.13))(utf-8-validate@5.0.10))(msw@2.7.0(@types/node@18.19.33)(typescript@5.4.5))(terser@5.31.0)
transitivePeerDependencies:
- supports-color
- typescript
@@ -16405,7 +16460,7 @@ snapshots:
ajv: 6.12.6
chalk: 4.1.2
cross-spawn: 7.0.3
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@5.5.0)
doctrine: 3.0.0
escape-string-regexp: 4.0.0
eslint-scope: 7.2.2
@@ -16703,8 +16758,6 @@ snapshots:
jest-util: 29.7.0
optional: true
- exponential-backoff@3.1.1: {}
-
express@4.19.2:
dependencies:
accepts: 1.3.8
@@ -16780,7 +16833,7 @@ snapshots:
fast-shallow-equal@1.0.0: {}
- fast-xml-parser@4.4.1:
+ fast-xml-parser@4.4.0:
dependencies:
strnum: 1.0.5
@@ -16796,7 +16849,7 @@ snapshots:
dependencies:
bser: 2.1.1
- fdir@6.3.0(picomatch@4.0.2):
+ fdir@6.4.2(picomatch@4.0.2):
optionalDependencies:
picomatch: 4.0.2
@@ -16880,17 +16933,17 @@ snapshots:
flow-enums-runtime@0.0.6: {}
- flow-parser@0.243.0: {}
+ flow-parser@0.237.1: {}
fmix@0.1.0:
dependencies:
imul: 1.0.1
- focus-visible@5.2.1: {}
+ focus-visible@5.2.0: {}
follow-redirects@1.15.6(debug@4.3.4):
optionalDependencies:
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@5.5.0)
foreground-child@3.3.0:
dependencies:
@@ -16927,6 +16980,16 @@ snapshots:
fp-ts@1.19.3: {}
+ fp-ts@2.1.1: {}
+
+ framer-motion@11.3.28(@emotion/is-prop-valid@1.2.2)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ dependencies:
+ tslib: 2.6.2
+ optionalDependencies:
+ '@emotion/is-prop-valid': 1.2.2
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+
fresh@0.5.2: {}
fs-constants@1.0.0: {}
@@ -17052,7 +17115,7 @@ snapshots:
jackspeak: 3.4.3
minimatch: 9.0.4
minipass: 7.1.2
- package-json-from-dist: 1.0.0
+ package-json-from-dist: 1.0.1
path-scurry: 1.11.1
glob@7.1.7:
@@ -17176,6 +17239,8 @@ snapshots:
graphql@16.8.1: {}
+ gsap@3.12.5: {}
+
gzip-size@6.0.0:
dependencies:
duplexer: 0.1.2
@@ -17230,7 +17295,7 @@ snapshots:
axios: 0.21.4(debug@4.3.4)
chalk: 4.1.2
chokidar: 3.6.0
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@5.5.0)
enquirer: 2.4.1
ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
form-data: 4.0.0
@@ -17263,7 +17328,7 @@ snapshots:
chalk: 2.4.2
chokidar: 3.6.0
ci-info: 2.0.0
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@5.5.0)
enquirer: 2.4.1
env-paths: 2.2.1
ethereum-cryptography: 1.2.0
@@ -17334,15 +17399,15 @@ snapshots:
hermes-estree@0.19.1: {}
- hermes-estree@0.23.0: {}
+ hermes-estree@0.20.1: {}
hermes-parser@0.19.1:
dependencies:
hermes-estree: 0.19.1
- hermes-parser@0.23.0:
+ hermes-parser@0.20.1:
dependencies:
- hermes-estree: 0.23.0
+ hermes-estree: 0.20.1
hermes-profile-transformer@0.0.6:
dependencies:
@@ -17404,7 +17469,7 @@ snapshots:
http-proxy-agent@7.0.2:
dependencies:
agent-base: 7.1.1
- debug: 4.3.6(supports-color@5.5.0)
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
@@ -17429,14 +17494,14 @@ snapshots:
https-proxy-agent@5.0.1:
dependencies:
agent-base: 6.0.2
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@5.5.0)
transitivePeerDependencies:
- supports-color
https-proxy-agent@7.0.4:
dependencies:
agent-base: 7.1.1
- debug: 4.3.6(supports-color@5.5.0)
+ debug: 4.3.7
transitivePeerDependencies:
- supports-color
@@ -17454,7 +17519,7 @@ snapshots:
i18next-browser-languagedetector@7.1.0:
dependencies:
- '@babel/runtime': 7.25.0
+ '@babel/runtime': 7.24.6
i18next-http-backend@1.4.5(encoding@0.1.13):
dependencies:
@@ -17468,7 +17533,7 @@ snapshots:
i18next@23.11.5:
dependencies:
- '@babel/runtime': 7.25.0
+ '@babel/runtime': 7.24.6
iconv-lite@0.4.24:
dependencies:
@@ -17534,6 +17599,8 @@ snapshots:
css-in-js-utils: 3.1.0
fast-loops: 1.1.3
+ inputmask@5.0.9: {}
+
invariant@2.2.4:
dependencies:
loose-envify: 1.4.0
@@ -17544,6 +17611,10 @@ snapshots:
dependencies:
fp-ts: 1.19.3
+ io-ts@2.0.1(fp-ts@2.1.1):
+ dependencies:
+ fp-ts: 2.1.1
+
ipaddr.js@1.9.1: {}
iron-webcrypto@1.2.1: {}
@@ -17588,6 +17659,11 @@ snapshots:
dependencies:
lower-case: 1.1.4
+ is-nan@1.3.2:
+ dependencies:
+ call-bind: 1.0.7
+ define-properties: '@socketregistry/define-properties@1.0.5'
+
is-node-process@1.2.0: {}
is-number@7.0.0: {}
@@ -17655,10 +17731,6 @@ snapshots:
dependencies:
ws: 8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
- isows@1.0.6(ws@8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)):
- dependencies:
- ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
-
isstream@0.1.2: {}
istanbul-lib-coverage@3.2.2: {}
@@ -17672,7 +17744,7 @@ snapshots:
istanbul-lib-source-maps@5.0.6:
dependencies:
'@jridgewell/trace-mapping': 0.3.25
- debug: 4.3.6(supports-color@5.5.0)
+ debug: 4.3.7
istanbul-lib-coverage: 3.2.2
transitivePeerDependencies:
- supports-color
@@ -17706,7 +17778,7 @@ snapshots:
'@jest/environment': 29.7.0
'@jest/fake-timers': 29.7.0
'@jest/types': 29.6.3
- '@types/node': 18.19.44
+ '@types/node': 18.19.33
jest-mock: 29.7.0
jest-util: 29.7.0
@@ -17722,7 +17794,7 @@ snapshots:
jest-message-util@29.7.0:
dependencies:
- '@babel/code-frame': 7.24.7
+ '@babel/code-frame': 7.25.7
'@jest/types': 29.6.3
'@types/stack-utils': 2.0.3
chalk: 4.1.2
@@ -17735,13 +17807,13 @@ snapshots:
jest-mock@29.7.0:
dependencies:
'@jest/types': 29.6.3
- '@types/node': 18.19.44
+ '@types/node': 18.19.33
jest-util: 29.7.0
jest-util@29.7.0:
dependencies:
'@jest/types': 29.6.3
- '@types/node': 18.19.44
+ '@types/node': 18.19.33
chalk: 4.1.2
ci-info: 3.9.0
graceful-fs: 4.2.11
@@ -17758,7 +17830,7 @@ snapshots:
jest-worker@27.5.1:
dependencies:
- '@types/node': 18.19.44
+ '@types/node': 18.19.33
merge-stream: 2.0.0
supports-color: 8.1.1
@@ -17770,16 +17842,16 @@ snapshots:
jest-worker@29.7.0:
dependencies:
- '@types/node': 18.19.44
+ '@types/node': 18.19.33
jest-util: 29.7.0
merge-stream: 2.0.0
supports-color: 8.1.1
jiti@1.21.0: {}
- jiti@1.21.6: {}
+ jiti@2.3.3: {}
- joi@17.13.3:
+ joi@17.13.1:
dependencies:
'@hapi/hoek': 9.3.0
'@hapi/topo': 5.1.0
@@ -17814,19 +17886,19 @@ snapshots:
jscodeshift@0.14.0(@babel/preset-env@7.24.6(@babel/core@7.24.6)):
dependencies:
- '@babel/core': 7.24.6
- '@babel/parser': 7.25.3
- '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.24.6)
- '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.24.6)
- '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.24.6)
- '@babel/plugin-transform-modules-commonjs': 7.24.8(@babel/core@7.24.6)
+ '@babel/core': 7.25.8
+ '@babel/parser': 7.25.8
+ '@babel/plugin-proposal-class-properties': 7.18.6(@babel/core@7.25.8)
+ '@babel/plugin-proposal-nullish-coalescing-operator': 7.18.6(@babel/core@7.25.8)
+ '@babel/plugin-proposal-optional-chaining': 7.21.0(@babel/core@7.25.8)
+ '@babel/plugin-transform-modules-commonjs': 7.24.6(@babel/core@7.25.8)
'@babel/preset-env': 7.24.6(@babel/core@7.24.6)
- '@babel/preset-flow': 7.24.7(@babel/core@7.24.6)
- '@babel/preset-typescript': 7.24.7(@babel/core@7.24.6)
- '@babel/register': 7.24.6(@babel/core@7.24.6)
- babel-core: 7.0.0-bridge.0(@babel/core@7.24.6)
+ '@babel/preset-flow': 7.24.6(@babel/core@7.25.8)
+ '@babel/preset-typescript': 7.24.6(@babel/core@7.25.8)
+ '@babel/register': 7.24.6(@babel/core@7.25.8)
+ babel-core: 7.0.0-bridge.0(@babel/core@7.25.8)
chalk: 4.1.2
- flow-parser: 0.243.0
+ flow-parser: 0.237.1
graceful-fs: 4.2.11
micromatch: 4.0.7
neo-async: 2.6.2
@@ -17858,7 +17930,7 @@ snapshots:
whatwg-encoding: 3.1.1
whatwg-mimetype: 4.0.0
whatwg-url: 14.0.0
- ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ ws: 8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
xml-name-validator: 5.0.0
optionalDependencies:
canvas: 2.11.2(encoding@0.1.13)
@@ -17871,6 +17943,8 @@ snapshots:
jsesc@2.5.2: {}
+ jsesc@3.0.2: {}
+
json-buffer@3.0.1: {}
json-parse-better-errors@1.0.2: {}
@@ -17959,7 +18033,7 @@ snapshots:
kleur@3.0.3: {}
- knip@5.27.4(@types/node@18.19.33)(typescript@5.4.5):
+ knip@5.33.3(@types/node@18.19.33)(typescript@5.4.5):
dependencies:
'@nodelib/fs.walk': 1.2.8
'@snyk/github-codeowners': 1.1.0
@@ -17967,7 +18041,7 @@ snapshots:
easy-table: 1.2.0
enhanced-resolve: 5.17.1
fast-glob: 3.3.2
- jiti: 1.21.6
+ jiti: 2.3.3
js-yaml: 4.1.0
minimist: 1.2.8
picocolors: 1.0.1
@@ -17978,7 +18052,7 @@ snapshots:
summary: 2.1.0
typescript: 5.4.5
zod: 3.23.8
- zod-validation-error: 3.3.1(zod@3.23.8)
+ zod-validation-error: 3.4.0(zod@3.23.8)
known-css-properties@0.25.0: {}
@@ -17999,6 +18073,10 @@ snapshots:
prelude-ls: 1.2.1
type-check: 0.4.0
+ libphonenumber-js@1.11.12: {}
+
+ libphonenumber-js@1.11.2: {}
+
lie@3.1.1:
dependencies:
immediate: 3.0.6
@@ -18026,7 +18104,7 @@ snapshots:
http-shutdown: 1.2.2
jiti: 1.21.0
mlly: 1.7.0
- node-forge: 1.3.1
+ node-forge: 1.3.1(patch_hash=nfdrir6ttlr77nd4pr3kkewsuy)
pathe: 1.1.2
std-env: 3.7.0
ufo: 1.5.3
@@ -18107,7 +18185,7 @@ snapshots:
logkitty@0.7.1:
dependencies:
ansi-fragments: 0.2.1
- dayjs: 1.11.12
+ dayjs: 1.11.11
yargs: 15.4.1
loose-envify@1.4.0:
@@ -18118,9 +18196,7 @@ snapshots:
dependencies:
get-func-name: 2.0.2
- loupe@3.1.1:
- dependencies:
- get-func-name: 2.0.2
+ loupe@3.1.2: {}
lower-case-first@1.0.2:
dependencies:
@@ -18130,7 +18206,7 @@ snapshots:
lower-case@2.0.2:
dependencies:
- tslib: 2.6.3
+ tslib: 2.6.2
lowercase-keys@2.0.0: {}
@@ -18169,10 +18245,14 @@ snapshots:
dependencies:
'@jridgewell/sourcemap-codec': 1.4.15
+ magic-string@0.30.12:
+ dependencies:
+ '@jridgewell/sourcemap-codec': 1.5.0
+
magicast@0.3.4:
dependencies:
- '@babel/parser': 7.25.3
- '@babel/types': 7.25.2
+ '@babel/parser': 7.24.6
+ '@babel/types': 7.24.6
source-map-js: 1.2.0
make-dir@2.1.0:
@@ -18187,7 +18267,7 @@ snapshots:
make-dir@4.0.0:
dependencies:
- semver: 7.6.3
+ semver: 7.6.2
make-error@1.3.6: {}
@@ -18254,53 +18334,46 @@ snapshots:
methods@1.1.2: {}
- metro-babel-transformer@0.80.10:
+ metro-babel-transformer@0.80.9:
dependencies:
- '@babel/core': 7.24.6
- flow-enums-runtime: 0.0.6
- hermes-parser: 0.23.0
+ '@babel/core': 7.25.8
+ hermes-parser: 0.20.1
nullthrows: 1.1.1
transitivePeerDependencies:
- supports-color
- metro-cache-key@0.80.10:
- dependencies:
- flow-enums-runtime: 0.0.6
+ metro-cache-key@0.80.9: {}
- metro-cache@0.80.10:
+ metro-cache@0.80.9:
dependencies:
- exponential-backoff: 3.1.1
- flow-enums-runtime: 0.0.6
- metro-core: 0.80.10
+ metro-core: 0.80.9
+ rimraf: 3.0.2
- metro-config@0.80.10(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10):
+ metro-config@0.80.9(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)(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
+ metro: 0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ metro-cache: 0.80.9
+ metro-core: 0.80.9
+ metro-runtime: 0.80.9
transitivePeerDependencies:
- bufferutil
- encoding
- supports-color
- utf-8-validate
- metro-core@0.80.10:
+ metro-core@0.80.9:
dependencies:
- flow-enums-runtime: 0.0.6
lodash.throttle: 4.1.1
- metro-resolver: 0.80.10
+ metro-resolver: 0.80.9
- metro-file-map@0.80.10:
+ metro-file-map@0.80.9:
dependencies:
anymatch: 3.1.3
debug: 2.6.9
fb-watchman: 2.0.2
- flow-enums-runtime: 0.0.6
graceful-fs: 4.2.11
invariant: 2.2.4
jest-worker: 29.7.0
@@ -18313,39 +18386,33 @@ snapshots:
transitivePeerDependencies:
- supports-color
- metro-minify-terser@0.80.10:
+ metro-minify-terser@0.80.9:
dependencies:
- flow-enums-runtime: 0.0.6
- terser: 5.31.5
+ terser: 5.31.0
- metro-resolver@0.80.10:
- dependencies:
- flow-enums-runtime: 0.0.6
+ metro-resolver@0.80.9: {}
- metro-runtime@0.80.10:
+ metro-runtime@0.80.9:
dependencies:
- '@babel/runtime': 7.25.0
- flow-enums-runtime: 0.0.6
+ '@babel/runtime': 7.24.6
- metro-source-map@0.80.10:
+ metro-source-map@0.80.9:
dependencies:
- '@babel/traverse': 7.25.3
- '@babel/types': 7.25.2
- flow-enums-runtime: 0.0.6
+ '@babel/traverse': 7.25.7
+ '@babel/types': 7.25.8
invariant: 2.2.4
- metro-symbolicate: 0.80.10
+ metro-symbolicate: 0.80.9
nullthrows: 1.1.1
- ob1: 0.80.10
+ ob1: 0.80.9
source-map: 0.5.7
vlq: 1.0.1
transitivePeerDependencies:
- supports-color
- metro-symbolicate@0.80.10:
+ metro-symbolicate@0.80.9:
dependencies:
- flow-enums-runtime: 0.0.6
invariant: 2.2.4
- metro-source-map: 0.80.10
+ metro-source-map: 0.80.9
nullthrows: 1.1.1
source-map: 0.5.7
through2: 2.0.5
@@ -18353,31 +18420,29 @@ snapshots:
transitivePeerDependencies:
- supports-color
- metro-transform-plugins@0.80.10:
+ metro-transform-plugins@0.80.9:
dependencies:
- '@babel/core': 7.24.6
- '@babel/generator': 7.25.0
- '@babel/template': 7.25.0
- '@babel/traverse': 7.25.3
- flow-enums-runtime: 0.0.6
+ '@babel/core': 7.25.8
+ '@babel/generator': 7.25.7
+ '@babel/template': 7.25.7
+ '@babel/traverse': 7.25.7
nullthrows: 1.1.1
transitivePeerDependencies:
- supports-color
- 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.6
- '@babel/generator': 7.25.0
- '@babel/parser': 7.25.3
- '@babel/types': 7.25.2
- flow-enums-runtime: 0.0.6
- 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
- metro-minify-terser: 0.80.10
- metro-source-map: 0.80.10
- metro-transform-plugins: 0.80.10
+ metro-transform-worker@0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10):
+ dependencies:
+ '@babel/core': 7.25.8
+ '@babel/generator': 7.25.7
+ '@babel/parser': 7.25.8
+ '@babel/types': 7.25.8
+ metro: 0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ metro-babel-transformer: 0.80.9
+ metro-cache: 0.80.9
+ metro-cache-key: 0.80.9
+ metro-minify-terser: 0.80.9
+ metro-source-map: 0.80.9
+ metro-transform-plugins: 0.80.9
nullthrows: 1.1.1
transitivePeerDependencies:
- bufferutil
@@ -18385,15 +18450,15 @@ snapshots:
- supports-color
- utf-8-validate
- metro@0.80.10(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10):
+ metro@0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10):
dependencies:
- '@babel/code-frame': 7.24.7
- '@babel/core': 7.24.6
- '@babel/generator': 7.25.0
- '@babel/parser': 7.25.3
- '@babel/template': 7.25.0
- '@babel/traverse': 7.25.3
- '@babel/types': 7.25.2
+ '@babel/code-frame': 7.25.7
+ '@babel/core': 7.25.8
+ '@babel/generator': 7.25.7
+ '@babel/parser': 7.25.8
+ '@babel/template': 7.25.7
+ '@babel/traverse': 7.25.7
+ '@babel/types': 7.25.8
accepts: 1.3.8
chalk: 4.1.2
ci-info: 2.0.0
@@ -18401,34 +18466,34 @@ snapshots:
debug: 2.6.9
denodeify: 1.2.1
error-stack-parser: 2.1.4
- flow-enums-runtime: 0.0.6
graceful-fs: 4.2.11
- hermes-parser: 0.23.0
+ hermes-parser: 0.20.1
image-size: 1.1.1
invariant: 2.2.4
jest-worker: 29.7.0
jsc-safe-url: 0.2.4
lodash.throttle: 4.1.1
- 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)(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
- metro-runtime: 0.80.10
- 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)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ metro-babel-transformer: 0.80.9
+ metro-cache: 0.80.9
+ metro-cache-key: 0.80.9
+ metro-config: 0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
+ metro-core: 0.80.9
+ metro-file-map: 0.80.9
+ metro-resolver: 0.80.9
+ metro-runtime: 0.80.9
+ metro-source-map: 0.80.9
+ metro-symbolicate: 0.80.9
+ metro-transform-plugins: 0.80.9
+ metro-transform-worker: 0.80.9(bufferutil@4.0.8)(encoding@0.1.13)(utf-8-validate@5.0.10)
mime-types: 2.1.35
node-fetch: 2.7.0(encoding@0.1.13)
nullthrows: 1.1.1
+ rimraf: 3.0.2
serialize-error: 2.1.0
source-map: 0.5.7
strip-ansi: 6.0.1
throat: 5.0.0
- ws: 7.5.10(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10)
yargs: 17.7.2
transitivePeerDependencies:
- bufferutil
@@ -18445,8 +18510,6 @@ snapshots:
mime-db@1.52.0: {}
- mime-db@1.53.0: {}
-
mime-types@2.1.35:
dependencies:
mime-db: 1.52.0
@@ -18485,7 +18548,7 @@ snapshots:
stoppable: 1.1.0
undici: 5.28.4
workerd: 1.20240512.0
- ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ ws: 8.17.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
youch: 3.3.3
zod: 3.23.8
transitivePeerDependencies:
@@ -18629,25 +18692,25 @@ snapshots:
ms@2.1.3: {}
- msw@2.6.8(@types/node@18.19.33)(typescript@5.4.5):
+ msw@2.7.0(@types/node@18.19.33)(typescript@5.4.5):
dependencies:
'@bundled-es-modules/cookie': 2.0.1
'@bundled-es-modules/statuses': 1.0.1
'@bundled-es-modules/tough-cookie': 0.1.6
- '@inquirer/confirm': 5.1.0(@types/node@18.19.33)
- '@mswjs/interceptors': 0.37.3
+ '@inquirer/confirm': 5.1.3(@types/node@18.19.33)
+ '@mswjs/interceptors': 0.37.5
'@open-draft/deferred-promise': 2.2.0
'@open-draft/until': 2.1.0
'@types/cookie': 0.6.0
'@types/statuses': 2.0.5
- chalk: 4.1.2
graphql: 16.8.1
headers-polyfill: 4.0.3
is-node-process: 1.2.0
outvariant: 1.4.3
path-to-regexp: 6.3.0
+ picocolors: 1.1.1
strict-event-emitter: 0.5.1
- type-fest: 4.30.0
+ type-fest: 4.32.0
yargs: 17.7.2
optionalDependencies:
typescript: 5.4.5
@@ -18767,7 +18830,7 @@ snapshots:
no-case@3.0.4:
dependencies:
lower-case: 2.0.2
- tslib: 2.6.3
+ tslib: 2.6.2
nocache@3.0.4: {}
@@ -18805,7 +18868,7 @@ snapshots:
fetch-blob: 3.2.0
formdata-polyfill: 4.0.10
- node-forge@1.3.1: {}
+ node-forge@1.3.1(patch_hash=nfdrir6ttlr77nd4pr3kkewsuy): {}
node-gyp-build@4.8.1: {}
@@ -18888,9 +18951,7 @@ snapshots:
oauth-sign@0.9.0: {}
- ob1@0.80.10:
- dependencies:
- flow-enums-runtime: 0.0.6
+ ob1@0.80.9: {}
obj-multiplex@1.0.0:
dependencies:
@@ -19024,7 +19085,7 @@ snapshots:
p-try@2.2.0: {}
- package-json-from-dist@1.0.0: {}
+ package-json-from-dist@1.0.1: {}
pako@2.1.0: {}
@@ -19049,7 +19110,7 @@ snapshots:
parse-json@5.2.0:
dependencies:
- '@babel/code-frame': 7.24.7
+ '@babel/code-frame': 7.24.6
error-ex: 1.3.2
json-parse-even-better-errors: 2.3.1
lines-and-columns: 1.2.4
@@ -19129,6 +19190,8 @@ snapshots:
picocolors@1.0.1: {}
+ picocolors@1.1.1: {}
+
picomatch@2.3.1: {}
picomatch@4.0.2: {}
@@ -19180,11 +19243,11 @@ snapshots:
mlly: 1.7.0
pathe: 1.1.2
- playwright-core@1.48.2: {}
+ playwright-core@1.49.0: {}
- playwright@1.48.2:
+ playwright@1.49.0:
dependencies:
- playwright-core: 1.48.2
+ playwright-core: 1.49.0
optionalDependencies:
fsevents: 2.3.2
@@ -19230,8 +19293,6 @@ snapshots:
preact@10.22.0: {}
- preact@10.23.1: {}
-
prelude-ls@1.2.1: {}
prettier-linter-helpers@1.0.0:
@@ -19327,6 +19388,10 @@ snapshots:
qrcode-terminal@0.12.0: {}
+ qrcode-with-logos@1.1.1:
+ dependencies:
+ qrcode: 1.5.3
+
qrcode@1.5.3:
dependencies:
dijkstrajs: 1.0.3
@@ -19398,10 +19463,10 @@ snapshots:
react: 18.3.1
tween-functions: 1.2.0
- react-devtools-core@5.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10):
+ react-devtools-core@5.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10):
dependencies:
shell-quote: 1.8.1
- ws: 7.5.10(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10)
transitivePeerDependencies:
- bufferutil
- utf-8-validate
@@ -19468,21 +19533,21 @@ snapshots:
jest-environment-node: 29.7.0
jsc-android: 250231.0.0
memoize-one: 5.2.1
- metro-runtime: 0.80.10
- metro-source-map: 0.80.10
+ metro-runtime: 0.80.9
+ metro-source-map: 0.80.9
mkdirp: 0.5.6
nullthrows: 1.1.1
pretty-format: 26.6.2
promise: 8.3.0
react: 18.3.1
- react-devtools-core: 5.3.1(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ react-devtools-core: 5.2.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
react-refresh: 0.14.2
react-shallow-renderer: 16.15.0(react@18.3.1)
regenerator-runtime: 0.13.11
scheduler: 0.24.0-canary-efb381bbf-20230505
stacktrace-parser: 0.1.10
whatwg-fetch: 3.6.20
- ws: 6.2.3(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ ws: 6.2.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
yargs: 17.7.2
optionalDependencies:
'@types/react': 18.2.21
@@ -19636,6 +19701,8 @@ snapshots:
readline@1.3.0: {}
+ readonly-date@1.0.0: {}
+
real-require@0.1.0: {}
recast@0.21.5:
@@ -19643,7 +19710,7 @@ snapshots:
ast-types: 0.15.2
esprima: 4.0.1
source-map: 0.6.1
- tslib: 2.6.3
+ tslib: 2.6.2
redent@3.0.0:
dependencies:
@@ -19662,7 +19729,7 @@ snapshots:
regenerator-transform@0.15.2:
dependencies:
- '@babel/runtime': 7.25.0
+ '@babel/runtime': 7.24.6
regexpu-core@5.3.2:
dependencies:
@@ -19839,7 +19906,7 @@ snapshots:
rxjs@7.8.1:
dependencies:
- tslib: 2.6.3
+ tslib: 2.6.2
safe-stable-stringify@2.4.3: {}
@@ -19891,7 +19958,7 @@ snapshots:
selfsigned@2.4.1:
dependencies:
'@types/node-forge': 1.3.11
- node-forge: 1.3.1
+ node-forge: 1.3.1(patch_hash=nfdrir6ttlr77nd4pr3kkewsuy)
semver@5.7.2: {}
@@ -19899,8 +19966,6 @@ snapshots:
semver@7.6.2: {}
- semver@7.6.3: {}
-
send@0.18.0:
dependencies:
debug: 2.6.9
@@ -20050,7 +20115,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.6(supports-color@5.5.0)
+ debug: 4.3.4(supports-color@5.5.0)
engine.io-client: 6.5.3(bufferutil@4.0.8)(utf-8-validate@5.0.10)
socket.io-parser: 4.2.4
transitivePeerDependencies:
@@ -20061,7 +20126,7 @@ snapshots:
socket.io-parser@4.2.4:
dependencies:
'@socket.io/component-emitter': 3.1.2
- debug: 4.3.6(supports-color@5.5.0)
+ debug: 4.3.4(supports-color@5.5.0)
transitivePeerDependencies:
- supports-color
@@ -20259,7 +20324,7 @@ snapshots:
strip-ansi@7.1.0:
dependencies:
- ansi-regex: 6.0.1
+ ansi-regex: 6.1.0
strip-bom@2.0.0:
dependencies:
@@ -20289,14 +20354,14 @@ snapshots:
style-search@0.1.0: {}
- styled-components@5.3.11(@babel/core@7.24.6)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1):
+ styled-components@5.3.6(@babel/core@7.24.6)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1):
dependencies:
'@babel/helper-module-imports': 7.24.6
'@babel/traverse': 7.24.6(supports-color@5.5.0)
'@emotion/is-prop-valid': 1.2.2
'@emotion/stylis': 0.8.5
'@emotion/unitless': 0.7.5
- babel-plugin-styled-components: 2.1.4(@babel/core@7.24.6)(styled-components@5.3.11(@babel/core@7.24.6)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1))
+ babel-plugin-styled-components: 2.1.4(@babel/core@7.24.6)(styled-components@5.3.6(@babel/core@7.24.6)(react-dom@18.3.1(react@18.3.1))(react-is@18.3.1)(react@18.3.1))
css-to-react-native: 3.2.0
hoist-non-react-statics: 3.3.2
react: 18.3.1
@@ -20307,6 +20372,20 @@ snapshots:
transitivePeerDependencies:
- '@babel/core'
+ 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.24.6)(react@18.3.1):
dependencies:
client-only: 0.0.1
@@ -20380,7 +20459,7 @@ snapshots:
colord: 2.9.3
cosmiconfig: 7.1.0
css-functions-list: 3.2.2
- debug: 4.3.4(supports-color@8.1.1)
+ debug: 4.3.4(supports-color@5.5.0)
fast-glob: 3.3.2
fastest-levenshtein: 1.0.16
file-entry-cache: 6.0.1
@@ -20546,15 +20625,15 @@ snapshots:
jest-worker: 27.5.1
schema-utils: 3.3.0
serialize-javascript: 6.0.2
- terser: 5.31.5
+ terser: 5.31.0
webpack: 5.91.0(esbuild@0.17.19)
optionalDependencies:
esbuild: 0.17.19
- terser@5.31.5:
+ terser@5.31.0:
dependencies:
'@jridgewell/source-map': 0.3.6
- acorn: 8.12.1
+ acorn: 8.11.3
commander: 2.20.3
source-map-support: 0.5.21
@@ -20583,18 +20662,20 @@ snapshots:
timed-out@4.0.1: {}
- tinybench@2.8.0: {}
+ tinybench@2.9.0: {}
+
+ tinyexec@0.3.1: {}
- tinyglobby@0.2.6:
+ tinyglobby@0.2.9:
dependencies:
- fdir: 6.3.0(picomatch@4.0.2)
+ fdir: 6.4.2(picomatch@4.0.2)
picomatch: 4.0.2
tinypool@1.0.1: {}
tinyrainbow@1.2.0: {}
- tinyspy@3.0.0: {}
+ tinyspy@3.0.2: {}
title-case@2.1.1:
dependencies:
@@ -20680,8 +20761,6 @@ snapshots:
tslib@2.6.2: {}
- tslib@2.6.3: {}
-
tsort@0.0.1: {}
tsutils@3.21.0(typescript@5.4.5):
@@ -20719,7 +20798,7 @@ snapshots:
type-fest@0.8.1: {}
- type-fest@4.30.0: {}
+ type-fest@4.32.0: {}
type-is@1.6.18:
dependencies:
@@ -20748,7 +20827,7 @@ snapshots:
typescript@5.4.5: {}
- ua-parser-js@1.0.37: {}
+ ua-parser-js@1.0.39: {}
ufo@1.5.3: {}
@@ -20824,11 +20903,11 @@ snapshots:
escalade: 3.1.2
picocolors: 1.0.1
- update-browserslist-db@1.1.0(browserslist@4.23.3):
+ update-browserslist-db@1.1.1(browserslist@4.24.0):
dependencies:
- browserslist: 4.23.3
- escalade: 3.1.2
- picocolors: 1.0.1
+ browserslist: 4.24.0
+ escalade: 3.2.0
+ picocolors: 1.1.1
upper-case-first@1.1.2:
dependencies:
@@ -20873,6 +20952,10 @@ snapshots:
dependencies:
react: 18.3.1
+ use-sync-external-store@1.2.2(react@18.3.1):
+ dependencies:
+ react: 18.3.1
+
utf-8-validate@5.0.10:
dependencies:
node-gyp-build: 4.8.1
@@ -20944,31 +21027,12 @@ snapshots:
- utf-8-validate
- zod
- viem@2.21.40(bufferutil@4.0.8)(typescript@5.4.5)(utf-8-validate@5.0.10)(zod@3.23.8):
- dependencies:
- '@adraffy/ens-normalize': 1.11.0
- '@noble/curves': 1.6.0
- '@noble/hashes': 1.5.0
- '@scure/bip32': 1.5.0
- '@scure/bip39': 1.4.0
- abitype: 1.0.6(typescript@5.4.5)(zod@3.23.8)
- isows: 1.0.6(ws@8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10))
- webauthn-p256: 0.0.10
- ws: 8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10)
- optionalDependencies:
- typescript: 5.4.5
- transitivePeerDependencies:
- - bufferutil
- - utf-8-validate
- - zod
-
- vite-node@2.0.5(@types/node@18.19.33)(terser@5.31.5):
+ vite-node@2.1.3(@types/node@18.19.33)(terser@5.31.0):
dependencies:
cac: 6.7.14
- debug: 4.3.6(supports-color@5.5.0)
+ debug: 4.3.7
pathe: 1.1.2
- tinyrainbow: 1.2.0
- vite: 5.2.11(@types/node@18.19.33)(terser@5.31.5)
+ vite: 5.2.11(@types/node@18.19.33)(terser@5.31.0)
transitivePeerDependencies:
- '@types/node'
- less
@@ -20979,14 +21043,14 @@ snapshots:
- supports-color
- terser
- vite-plugin-magical-svg@1.3.0(vite@5.2.11(@types/node@18.19.33)(terser@5.31.5)):
+ vite-plugin-magical-svg@1.3.0(vite@5.2.11(@types/node@18.19.33)(terser@5.31.0)):
dependencies:
magic-string: 0.30.10
svgo: 3.3.2
- vite: 5.2.11(@types/node@18.19.33)(terser@5.31.5)
+ vite: 5.2.11(@types/node@18.19.33)(terser@5.31.0)
xml2js: 0.6.2
- vite@5.2.11(@types/node@18.19.33)(terser@5.31.5):
+ vite@5.2.11(@types/node@18.19.33)(terser@5.31.0):
dependencies:
esbuild: 0.20.2
postcss: 8.4.38
@@ -20994,33 +21058,33 @@ snapshots:
optionalDependencies:
'@types/node': 18.19.33
fsevents: 2.3.3
- terser: 5.31.5
+ terser: 5.31.0
- vitest-canvas-mock@0.3.3(vitest@2.0.5(@types/node@18.19.33)(jsdom@24.1.0(bufferutil@4.0.8)(canvas@2.11.2(encoding@0.1.13))(utf-8-validate@5.0.10))(terser@5.31.5)):
+ vitest-canvas-mock@0.3.3(vitest@2.1.3(@types/node@18.19.33)(jsdom@24.1.0(bufferutil@4.0.8)(canvas@2.11.2(encoding@0.1.13))(utf-8-validate@5.0.10))(msw@2.7.0(@types/node@18.19.33)(typescript@5.4.5))(terser@5.31.0)):
dependencies:
jest-canvas-mock: 2.5.2
- vitest: 2.0.5(@types/node@18.19.33)(jsdom@24.1.0(bufferutil@4.0.8)(canvas@2.11.2(encoding@0.1.13))(utf-8-validate@5.0.10))(terser@5.31.5)
+ vitest: 2.1.3(@types/node@18.19.33)(jsdom@24.1.0(bufferutil@4.0.8)(canvas@2.11.2(encoding@0.1.13))(utf-8-validate@5.0.10))(msw@2.7.0(@types/node@18.19.33)(typescript@5.4.5))(terser@5.31.0)
- vitest@2.0.5(@types/node@18.19.33)(jsdom@24.1.0(bufferutil@4.0.8)(canvas@2.11.2(encoding@0.1.13))(utf-8-validate@5.0.10))(terser@5.31.5):
+ vitest@2.1.3(@types/node@18.19.33)(jsdom@24.1.0(bufferutil@4.0.8)(canvas@2.11.2(encoding@0.1.13))(utf-8-validate@5.0.10))(msw@2.7.0(@types/node@18.19.33)(typescript@5.4.5))(terser@5.31.0):
dependencies:
- '@ampproject/remapping': 2.3.0
- '@vitest/expect': 2.0.5
- '@vitest/pretty-format': 2.0.5
- '@vitest/runner': 2.0.5
- '@vitest/snapshot': 2.0.5
- '@vitest/spy': 2.0.5
- '@vitest/utils': 2.0.5
+ '@vitest/expect': 2.1.3
+ '@vitest/mocker': 2.1.3(@vitest/spy@2.1.3)(msw@2.7.0(@types/node@18.19.33)(typescript@5.4.5))(vite@5.2.11(@types/node@18.19.33)(terser@5.31.0))
+ '@vitest/pretty-format': 2.1.3
+ '@vitest/runner': 2.1.3
+ '@vitest/snapshot': 2.1.3
+ '@vitest/spy': 2.1.3
+ '@vitest/utils': 2.1.3
chai: 5.1.1
- debug: 4.3.6(supports-color@5.5.0)
- execa: 8.0.1
- magic-string: 0.30.10
+ debug: 4.3.7
+ magic-string: 0.30.12
pathe: 1.1.2
std-env: 3.7.0
- tinybench: 2.8.0
+ tinybench: 2.9.0
+ tinyexec: 0.3.1
tinypool: 1.0.1
tinyrainbow: 1.2.0
- vite: 5.2.11(@types/node@18.19.33)(terser@5.31.5)
- vite-node: 2.0.5(@types/node@18.19.33)(terser@5.31.5)
+ vite: 5.2.11(@types/node@18.19.33)(terser@5.31.0)
+ vite-node: 2.1.3(@types/node@18.19.33)(terser@5.31.0)
why-is-node-running: 2.3.0
optionalDependencies:
'@types/node': 18.19.33
@@ -21028,6 +21092,7 @@ snapshots:
transitivePeerDependencies:
- less
- lightningcss
+ - msw
- sass
- stylus
- sugarss
@@ -21108,7 +21173,7 @@ snapshots:
wait-on@6.0.1:
dependencies:
axios: 0.25.0
- joi: 17.13.3
+ joi: 17.13.1
lodash: 4.17.21
minimist: 1.2.8
rxjs: 7.8.1
@@ -21548,11 +21613,6 @@ snapshots:
- supports-color
- utf-8-validate
- webauthn-p256@0.0.10:
- dependencies:
- '@noble/curves': 1.6.0
- '@noble/hashes': 1.5.0
-
webauthn-p256@0.0.5:
dependencies:
'@noble/curves': 1.4.0
@@ -21574,7 +21634,7 @@ snapshots:
lodash: 4.17.21
opener: 1.5.2
sirv: 1.0.19
- ws: 7.5.10(bufferutil@4.0.8)(utf-8-validate@5.0.10)
+ ws: 7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10)
transitivePeerDependencies:
- bufferutil
- utf-8-validate
@@ -21588,12 +21648,12 @@ snapshots:
'@webassemblyjs/ast': 1.12.1
'@webassemblyjs/wasm-edit': 1.12.1
'@webassemblyjs/wasm-parser': 1.12.1
- acorn: 8.12.1
- acorn-import-assertions: 1.9.0(acorn@8.12.1)
- browserslist: 4.23.3
+ acorn: 8.11.3
+ acorn-import-assertions: 1.9.0(acorn@8.11.3)
+ browserslist: 4.24.0
chrome-trace-event: 1.0.4
enhanced-resolve: 5.17.1
- es-module-lexer: 1.5.4
+ es-module-lexer: 1.5.3
eslint-scope: 5.1.1
events: 3.3.0
glob-to-regexp: 0.4.1
@@ -21750,7 +21810,7 @@ snapshots:
bufferutil: 4.0.8
utf-8-validate: 5.0.10
- ws@6.2.3(bufferutil@4.0.8)(utf-8-validate@5.0.10):
+ ws@6.2.2(bufferutil@4.0.8)(utf-8-validate@5.0.10):
dependencies:
async-limiter: 1.0.1
optionalDependencies:
@@ -21762,11 +21822,6 @@ snapshots:
bufferutil: 4.0.8
utf-8-validate: 5.0.10
- ws@7.5.10(bufferutil@4.0.8)(utf-8-validate@5.0.10):
- optionalDependencies:
- bufferutil: 4.0.8
- utf-8-validate: 5.0.10
-
ws@7.5.9(bufferutil@4.0.8)(utf-8-validate@5.0.10):
optionalDependencies:
bufferutil: 4.0.8
@@ -21787,11 +21842,6 @@ snapshots:
bufferutil: 4.0.8
utf-8-validate: 5.0.10
- ws@8.18.0(bufferutil@4.0.8)(utf-8-validate@5.0.10):
- optionalDependencies:
- bufferutil: 4.0.8
- utf-8-validate: 5.0.10
-
xhr-request-promise@0.1.3:
dependencies:
xhr-request: 1.1.0
@@ -21861,7 +21911,7 @@ snapshots:
yaml@1.10.2: {}
- yaml@2.5.0: {}
+ yaml@2.4.2: {}
yargs-parser@18.1.3:
dependencies:
@@ -21953,7 +22003,7 @@ snapshots:
dependencies:
ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10)
- zod-validation-error@3.3.1(zod@3.23.8):
+ zod-validation-error@3.4.0(zod@3.23.8):
dependencies:
zod: 3.23.8
@@ -21966,3 +22016,11 @@ snapshots:
'@types/react': 18.2.21
immer: 9.0.21
react: 18.3.1
+
+ zustand@4.5.5(@types/react@18.2.21)(immer@9.0.21)(react@18.3.1):
+ dependencies:
+ use-sync-external-store: 1.2.2(react@18.3.1)
+ optionalDependencies:
+ '@types/react': 18.2.21
+ immer: 9.0.21
+ react: 18.3.1
diff --git a/public/locales/en/common.json b/public/locales/en/common.json
index e2c54a1af..feb1582c5 100644
--- a/public/locales/en/common.json
+++ b/public/locales/en/common.json
@@ -98,7 +98,8 @@
"noPrimaryName": "No Primary Name",
"viewProfile": "View Profile",
"viewDetails": "View Details",
- "register": "Register"
+ "register": "Register",
+ "myWallet": "My Wallet"
},
"name": {
"registered": "Registered",
@@ -418,5 +419,22 @@
"ownerNotManager": "You must be connected as the Manager of this name to set the verification record. You can view and update the Manager under the Ownership tab.",
"wrongAccount": "You must be connected as {{ nameOrAddress }} to set the verification record.",
"default": "We could't verify your account. Please return to Dentity and try again."
+ },
+ "networkNotifications": {
+ "Ethereum": {
+ "title": "Switch to Ethereum?",
+ "description": "You've selected Ethereum (mainnet) in your wallet.",
+ "action": "Go to app.ens.domains"
+ },
+ "Sepolia": {
+ "title": "Switch to Sepolia?",
+ "description": "You've selected Sepolia (testnet) in your wallet.",
+ "action": "Go to sepolia.app.ens.domains"
+ },
+ "Holesky": {
+ "title": "Switch to Holesky?",
+ "description": "You've selected Holesky (testnet) in your wallet.",
+ "action": "Go to holesky.app.ens.domains"
+ }
}
}
diff --git a/src/components/@molecules/ConnectButton/ConnectButton.test.tsx b/src/components/@molecules/ConnectButton/ConnectButton.test.tsx
new file mode 100644
index 000000000..73353302c
--- /dev/null
+++ b/src/components/@molecules/ConnectButton/ConnectButton.test.tsx
@@ -0,0 +1,51 @@
+import { mockFunction, render, screen } from '@app/test-utils'
+
+import { useConnectModal } from '@usecapsule/rainbowkit'
+import { beforeEach, describe, expect, it, vi } from 'vitest'
+
+import { useAccountSafely } from '@app/hooks/account/useAccountSafely'
+import useHasPendingTransactions from '@app/hooks/transactions/useHasPendingTransactions'
+import { useBreakpoint } from '@app/utils/BreakpointProvider'
+
+import { ConnectButton, HeaderConnect } from './ConnectButton'
+
+vi.mock('@app/utils/BreakpointProvider')
+vi.mock('@app/hooks/account/useAccountSafely')
+vi.mock('@app/hooks/useRouterWithHistory')
+vi.mock('@app/hooks/transactions/useHasPendingTransactions')
+
+const mockUseAccountSafely = mockFunction(useAccountSafely)
+const mockUseBreakpoint = mockFunction(useBreakpoint)
+
+describe('ConnectButton', () => {
+ beforeEach(() => {
+ mockUseBreakpoint.mockReturnValue({
+ sm: false,
+ })
+ })
+ it('should call openConnectModal when clicked', () => {
+ render()
+ screen.debug()
+ screen.getByTestId('body-connect-button').click()
+ expect(useConnectModal().openConnectModal).toHaveBeenCalled()
+ })
+})
+
+describe('HeaderConnect', () => {
+ beforeEach(() => {
+ mockUseBreakpoint.mockReturnValue({
+ sm: false,
+ })
+ })
+ it('should render ConnectButton when not connected', () => {
+ mockUseAccountSafely.mockReturnValue({ address: undefined })
+ render()
+ expect(screen.getByTestId('connect-button')).toBeInTheDocument()
+ })
+
+ it('should render HeaderProfile when connected', () => {
+ mockUseAccountSafely.mockReturnValue({ address: '0x123' })
+ render()
+ expect(screen.getByTestId('header-profile')).toBeInTheDocument()
+ })
+})
diff --git a/src/components/ConnectButton.tsx b/src/components/@molecules/ConnectButton/ConnectButton.tsx
similarity index 66%
rename from src/components/ConnectButton.tsx
rename to src/components/@molecules/ConnectButton/ConnectButton.tsx
index 921891df9..cae566938 100644
--- a/src/components/ConnectButton.tsx
+++ b/src/components/@molecules/ConnectButton/ConnectButton.tsx
@@ -1,21 +1,10 @@
-import { useConnectModal } from '@rainbow-me/rainbowkit'
-import { Key, ReactNode } from 'react'
+import { useConnectModal } from '@usecapsule/rainbowkit'
import { useTranslation } from 'react-i18next'
import styled, { css } from 'styled-components'
import type { Address } from 'viem'
-import { useDisconnect, useEnsAvatar } from 'wagmi'
-
-import {
- Button,
- CheckSVG,
- CogSVG,
- CopySVG,
- ExitSVG,
- mq,
- PersonSVG,
- Profile,
-} from '@ensdomains/thorin'
-import { DropdownItem } from '@ensdomains/thorin/dist/types/components/molecules/Dropdown/Dropdown'
+import { useConnections, useDisconnect, useEnsAvatar } from 'wagmi'
+
+import { Button, mq, PersonSVG, Profile } from '@ensdomains/thorin'
import { useAccountSafely } from '@app/hooks/account/useAccountSafely'
import { usePrimaryName } from '@app/hooks/ensjs/public/usePrimaryName'
@@ -25,9 +14,9 @@ import { useRouterWithHistory } from '@app/hooks/useRouterWithHistory'
import { useZorb } from '@app/hooks/useZorb'
import { useBreakpoint } from '@app/utils/BreakpointProvider'
import { ensAvatarConfig } from '@app/utils/query/ipfsGateway'
-import { shortenAddress } from '@app/utils/utils'
+import { hasCapsuleConnection } from '@app/utils/utils'
-import BaseLink from './@atoms/BaseLink'
+import { getDropdownItems } from './utils'
const StyledButtonWrapper = styled.div<{ $isTabBar?: boolean; $large?: boolean }>(
({ theme, $isTabBar, $large }) => [
@@ -66,14 +55,6 @@ const StyledButtonWrapper = styled.div<{ $isTabBar?: boolean; $large?: boolean }
],
)
-const SectionDivider = styled.div(
- ({ theme }) => css`
- width: calc(100% + ${theme.space['4']});
- height: 1px;
- background-color: ${theme.colors.border};
- `,
-)
-
const PersonOverlay = styled.div(
({ theme }) => css`
display: flex;
@@ -115,7 +96,9 @@ export const ConnectButton = ({ isTabBar, large, inHeader }: Props) => {