diff --git a/.github/workflows/knip.yaml b/.github/workflows/knip.yaml
index 23efc3516..cc5736103 100644
--- a/.github/workflows/knip.yaml
+++ b/.github/workflows/knip.yaml
@@ -8,6 +8,9 @@ jobs:
steps:
- uses: actions/checkout@v4
+ - name: Install corepack
+ run: npm i -g corepack
+
- name: Install pnpm
run: npm i -g --force corepack && corepack enable pnpm
diff --git a/.github/workflows/pages-deployment.yaml b/.github/workflows/pages-deployment.yaml
index 49f9ad936..f4dee36c9 100644
--- a/.github/workflows/pages-deployment.yaml
+++ b/.github/workflows/pages-deployment.yaml
@@ -3,11 +3,11 @@ name: Cloudflare Pages
env:
SENTRY_AUTH_TOKEN: ${{ secrets.SENTRY_AUTH_TOKEN }}
NEXT_PUBLIC_INTERCOM_ID: re9q5yti
+ NEXT_PUBLIC_PARA_API_KEY_PROD: ${{ secrets.PARA_API_KEY_PROD }}
NEXT_PUBLIC_DRPC_KEY: AnmpasF2C0JBqeAEzxVO8aTteiMlrW4R75hpDonbV6cR
on: [push]
jobs:
-
deploy:
if: ${{ always() }}
runs-on: ubuntu-latest
@@ -21,6 +21,9 @@ jobs:
- name: Install Misc. Deps
run: sudo apt-get install -y libcairo2-dev libjpeg8-dev libpango1.0-dev libgif-dev build-essential g++
+ - name: Install corepack
+ run: npm i -g corepack
+
- name: Install pnpm
run: npm i -g --force corepack && corepack enable pnpm
diff --git a/.github/workflows/test.yaml b/.github/workflows/test.yaml
index cec2d1d8a..fd22d30be 100644
--- a/.github/workflows/test.yaml
+++ b/.github/workflows/test.yaml
@@ -11,6 +11,9 @@ jobs:
steps:
- uses: actions/checkout@v4
+ - name: Install corepack
+ run: npm i -g corepack
+
- name: Install pnpm
run: npm i -g --force corepack && corepack enable pnpm
@@ -34,6 +37,9 @@ jobs:
steps:
- uses: actions/checkout@v4
+ - name: Install corepack
+ run: npm i -g corepack
+
- name: Install pnpm
run: npm i -g --force corepack && corepack enable pnpm
@@ -67,6 +73,9 @@ jobs:
steps:
- uses: actions/checkout@v4
+ - name: Install corepack
+ run: npm i -g corepack
+
- name: Install pnpm
run: npm i -g --force corepack && corepack enable pnpm
@@ -97,10 +106,44 @@ jobs:
runs-on: ubuntu-latest
strategy:
matrix:
- shard: [1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23, 24, 25, 26, 27, 28, 29]
+ shard:
+ [
+ 1,
+ 2,
+ 3,
+ 4,
+ 5,
+ 6,
+ 7,
+ 8,
+ 9,
+ 10,
+ 11,
+ 12,
+ 13,
+ 14,
+ 15,
+ 16,
+ 17,
+ 18,
+ 19,
+ 20,
+ 21,
+ 22,
+ 23,
+ 24,
+ 25,
+ 26,
+ 27,
+ 28,
+ 29,
+ ]
steps:
- uses: actions/checkout@v4
+ - name: Install corepack
+ run: npm i -g corepack
+
- name: Install pnpm
run: npm i -g --force corepack && corepack enable pnpm
@@ -152,6 +195,9 @@ jobs:
- uses: actions/checkout@v4
- run: ./scripts/check-chrome.sh
+ - name: Install corepack
+ run: npm i -g corepack
+
- name: Install pnpm
run: npm i -g --force corepack && corepack enable pnpm
@@ -183,7 +229,7 @@ jobs:
"pnpm wrangle" \
"pnpm wait-on http://127.0.0.1:8788 && pnpm playwright test --shard=${{matrix.shard}}/${{strategy.job-total}} --project=stateful"
env:
- # NEXT_PUBLIC_GRAPH_URI: https://api.studio.thegraph.com/query/49574/ensholesky/version/latest
+ NEXT_PUBLIC_CHAIN_NAME: holesky
SECRET_WORDS: ${{ secrets.SECRET_WORDS }}
- uses: actions/upload-artifact@v4
diff --git a/.gitignore b/.gitignore
index a233a869f..e479ca1ca 100644
--- a/.gitignore
+++ b/.gitignore
@@ -72,3 +72,5 @@ tsconfig.vitest-temp.json
.sentryclirc
.dev.vars
+
+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..28cb5e1e7 100644
--- a/e2e/specs/stateful/profile.spec.ts
+++ b/e2e/specs/stateful/profile.spec.ts
@@ -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/e2e/specs/stateless/ownership.spec.ts b/e2e/specs/stateless/ownership.spec.ts
index 233f91bd6..e6d5c0b50 100644
--- a/e2e/specs/stateless/ownership.spec.ts
+++ b/e2e/specs/stateless/ownership.spec.ts
@@ -1166,9 +1166,9 @@ test.describe('Extend name', () => {
await expect(extendNamesModal.getInvoiceTransactionFee).toContainText('$0.13')
await expect(extendNamesModal.getInvoiceTotal).toContainText(/\$10\.1/)
await extendNamesModal.getCounterMinusButton.click()
- await expect(extendNamesModal.getInvoiceExtensionFee).toContainText('$5.00')
+ await expect(extendNamesModal.getInvoiceExtensionFee).toContainText(/\$5\.0/)
await expect(extendNamesModal.getInvoiceTransactionFee).toContainText('$0.13')
- await expect(extendNamesModal.getInvoiceTotal).toContainText('$5.13')
+ await expect(extendNamesModal.getInvoiceTotal).toContainText(/\$5\.1/)
})
await test.step('should extend', async () => {
diff --git a/e2e/specs/stateless/verifications.spec.ts b/e2e/specs/stateless/verifications.spec.ts
index 9ecde2925..79fef56a3 100644
--- a/e2e/specs/stateless/verifications.spec.ts
+++ b/e2e/specs/stateless/verifications.spec.ts
@@ -685,9 +685,11 @@ test.describe('OAuth flow', () => {
})
})
- await page.goto(`/?iss=${DENTITY_ISS}&code=dummyCode`)
+ await page.goto('/')
await login.connect()
+ await page.goto(`/?iss=${DENTITY_ISS}&code=dummyCode`)
+
await expect(page).toHaveURL(`/${name}`)
await expect(transactionModal.transactionModal).toBeVisible()
diff --git a/next.config.mjs b/next.config.mjs
index 30ee68f9b..ab28c31ab 100644
--- a/next.config.mjs
+++ b/next.config.mjs
@@ -23,12 +23,23 @@ const babelIncludeRegexes = [
* @type {import('next').NextConfig}
* */
const nextConfig = {
+ transpilePackages: [
+ '@getpara/rainbowkit',
+ '@getpara/rainbowkit-wallet',
+ '@getpara/core-components',
+ '@getpara/react-components',
+ '@getpara/react-sdk',
+ '@getpara/core-sdk',
+ '@getpara/web-sdk',
+ '@getpara/wagmi-v2-integration',
+ '@getpara/viem-v2-integration',
+ ],
reactStrictMode: true,
compiler: {
styledComponents: true,
},
// change to true once infinite loop is fixed
- swcMinify: false,
+ swcMinify: true,
images: {
domains: ['metadata.ens.domains'],
},
diff --git a/package.json b/package.json
index 5d71d022a..7f687f328 100644
--- a/package.json
+++ b/package.json
@@ -3,10 +3,12 @@
"version": "0.1.123",
"scripts": {
"dev": "NODE_NO_WARNINGS=1 next dev",
- "dev:https": "next-dev-https --https --qr --port 3000",
+ "dev:holesky": "NEXT_PUBLIC_CHAIN_NAME=holesky pnpm dev",
+ "dev:sepolia": "NEXT_PUBLIC_CHAIN_NAME=sepolia pnpm dev",
+ "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",
@@ -55,7 +57,6 @@
"@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",
"@splidejs/react-splide": "^0.7.12",
"@svgr/webpack": "^8.1.0",
@@ -64,10 +65,14 @@
"@tanstack/react-query": "5.22.2",
"@tanstack/react-query-devtools": "^5.59.0",
"@tanstack/react-query-persist-client": "5.22.2",
+ "@getpara/rainbowkit": "1.2.0-dev.4",
+ "@getpara/rainbowkit-wallet": "1.2.0-dev.4",
"@wagmi/core": "2.13.3",
"calendar-link": "^2.8.0",
"dequal": "2.0.3",
"dns-packet": "^5.4.0",
+ "form-data": "^4.0.0",
+ "glob": "^8.0.3",
"graphql-request": "6.1.0",
"i18next": "^21.9.1",
"i18next-browser-languagedetector": "^6.1.5",
@@ -75,6 +80,7 @@
"idb-keyval": "^6.2.1",
"immer": "^9.0.15",
"iso-639-1": "^2.1.15",
+ "node-forge": "1.3.1",
"markdown-to-jsx": "^7.7.3",
"next": "13.5.8",
"node-fetch": "^3.3.2",
@@ -273,8 +279,9 @@
"wrtc": "https://registry.npmjs.org/@koush/wrtc/-/wrtc-0.5.2.tgz"
},
"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",
+ "node-forge@1.3.1": "patches/node-forge@1.3.1.patch",
+ "react-confetti@6.1.0": "patches/react-confetti@6.1.0.patch",
"hardhat-deploy@0.12.4": "patches/hardhat-deploy@0.12.4.patch",
"@nomicfoundation/hardhat-viem@2.0.3": "patches/@nomicfoundation%2Fhardhat-viem@2.0.3.patch",
"@ensdomains/ens-test-env@0.6.0": "patches/@ensdomains__ens-test-env@0.6.0.patch"
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..35cc29b6f 100644
--- a/playwright/fixtures/login.ts
+++ b/playwright/fixtures/login.ts
@@ -43,16 +43,13 @@ export class Login {
await expect(this.page.getByText('Confirm connection in the extension')).toBeVisible({
timeout: 15000,
})
+ await expect.poll(() => this.wallet.getPendingRequestCount(Web3RequestKind.RequestPermissions)).toBeGreaterThanOrEqual(1)
// 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 expect.poll(() => this.wallet.getPendingRequestCount(Web3RequestKind.RequestAccounts)).toBeGreaterThanOrEqual(1)
await this.wallet.authorize(Web3RequestKind.RequestAccounts)
- expect(this.wallet.getPendingRequestCount(Web3RequestKind.RequestAccounts)).toEqual(0)
- await expect(this.getProfileButton).toBeVisible()
+ await expect.poll(() => this.wallet.getPendingRequestCount(Web3RequestKind.RequestAccounts)).toEqual(0)
+ await expect.poll(() => this.getProfileButton.isVisible()).toBe(true)
}
async switchTo(user: User) {
diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml
index 4ce24672e..e8fc48570 100644
--- a/pnpm-lock.yaml
+++ b/pnpm-lock.yaml
@@ -116,6 +116,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
@@ -132,16 +135,22 @@ importers:
version: 3.0.0
'@ensdomains/ens-contracts':
specifier: 1.4.0-beta.2
- version: 1.4.0-beta.2(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10))
+ version: 1.4.0-beta.2(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10))
'@ensdomains/ens-test-env':
specifier: 0.6.0
version: 0.6.0(patch_hash=3g375zkti3ohnao75xzuai66lu)
'@ensdomains/ensjs':
specifier: 4.0.3-alpha.12
- version: 4.0.3-alpha.12(typescript@5.7.3)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1))(zod@3.24.1)
+ version: 4.0.3-alpha.12(typescript@5.7.3)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2))(zod@3.24.2)
'@ensdomains/thorin':
specifier: 1.0.0-beta.24
version: 1.0.0-beta.24(@vanilla-extract/css@1.14.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@getpara/rainbowkit':
+ specifier: 1.2.0-dev.4
+ version: 1.2.0-dev.4(@emotion/is-prop-valid@1.3.1)(@types/react@18.3.12)(immer@9.0.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2))(wagmi@2.12.4(@tanstack/query-core@5.22.2)(@tanstack/react-query@5.22.2(react@18.3.1))(@types/react@18.3.12)(bufferutil@4.0.9)(immer@9.0.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.34.8)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2))(zod@3.24.2))
+ '@getpara/rainbowkit-wallet':
+ specifier: 1.2.0-dev.4
+ version: 1.2.0-dev.4(xsk53jsxf3smxlxet4jy3cn5ym)
'@metamask/post-message-stream':
specifier: ^6.1.2
version: 6.2.0
@@ -151,12 +160,9 @@ importers:
'@noble/hashes':
specifier: ^1.3.2
version: 1.7.1
- '@rainbow-me/rainbowkit':
- specifier: 2.1.2
- version: 2.1.2(@tanstack/react-query@5.22.2(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1))(wagmi@2.12.4(@tanstack/query-core@5.22.2)(@tanstack/react-query@5.22.2(react@18.3.1))(@types/react@18.3.12)(bufferutil@4.0.9)(immer@9.0.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.31.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1))(zod@3.24.1))
'@sentry/nextjs':
specifier: 7.43.x
- version: 7.43.0(next@13.5.8(@babel/core@7.26.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ version: 7.43.0(next@13.5.8(@babel/core@7.26.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
'@splidejs/react-splide':
specifier: ^0.7.12
version: 0.7.12
@@ -174,13 +180,13 @@ importers:
version: 5.22.2(react@18.3.1)
'@tanstack/react-query-devtools':
specifier: ^5.59.0
- version: 5.64.2(@tanstack/react-query@5.22.2(react@18.3.1))(react@18.3.1)
+ version: 5.66.9(@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)
'@wagmi/core':
specifier: 2.13.3
- version: 2.13.3(@tanstack/query-core@5.22.2)(@types/react@18.3.12)(immer@9.0.21)(react@18.3.1)(typescript@5.7.3)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1))
+ version: 2.13.3(@tanstack/query-core@5.22.2)(@types/react@18.3.12)(immer@9.0.21)(react@18.3.1)(typescript@5.7.3)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2))
calendar-link:
specifier: ^2.8.0
version: 2.8.0
@@ -190,6 +196,12 @@ importers:
dns-packet:
specifier: ^5.4.0
version: 5.6.1
+ form-data:
+ specifier: ^4.0.0
+ version: 4.0.2
+ glob:
+ specifier: ^8.0.3
+ version: 8.1.0
graphql-request:
specifier: 6.1.0
version: 6.1.0(graphql@16.10.0)
@@ -213,13 +225,16 @@ importers:
version: 2.1.15
markdown-to-jsx:
specifier: ^7.7.3
- version: 7.7.3(react@18.3.1)
+ version: 7.7.4(react@18.3.1)
next:
specifier: 13.5.8
- version: 13.5.8(@babel/core@7.26.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 13.5.8(@babel/core@7.26.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
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
@@ -246,13 +261,13 @@ importers:
version: 3.0.0(react@18.3.1)
react-use-intercom:
specifier: ^5.1.4
- version: 5.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ version: 5.4.3(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.26.0)(react-dom@18.3.1(react@18.3.1))(react-is@17.0.2)(react@18.3.1)
+ version: 5.3.11(@babel/core@7.26.9)(react-dom@18.3.1(react@18.3.1))(react-is@17.0.2)(react@18.3.1)
tinyglobby:
specifier: ^0.2.6
- version: 0.2.10
+ version: 0.2.12
ts-pattern:
specifier: ^4.3.0
version: 4.3.0
@@ -261,10 +276,10 @@ importers:
version: 0.7.0(immer@9.0.21)(react@18.3.1)
viem:
specifier: 2.19.4
- version: 2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1)
+ version: 2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2)
wagmi:
specifier: 2.12.4
- version: 2.12.4(@tanstack/query-core@5.22.2)(@tanstack/react-query@5.22.2(react@18.3.1))(@types/react@18.3.12)(bufferutil@4.0.9)(immer@9.0.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.31.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1))(zod@3.24.1)
+ version: 2.12.4(@tanstack/query-core@5.22.2)(@tanstack/react-query@5.22.2(react@18.3.1))(@types/react@18.3.12)(bufferutil@4.0.9)(immer@9.0.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.34.8)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2))(zod@3.24.2)
devDependencies:
'@cloudflare/workers-types':
specifier: ^3.14.1
@@ -274,10 +289,10 @@ importers:
version: 0.1.1
'@ensdomains/hardhat-toolbox-viem-extended':
specifier: ^0.0.5
- version: 0.0.5(@nomicfoundation/hardhat-viem@2.0.3(patch_hash=znglrikwqnjywwr7ebopjjz3mm)(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10))(typescript@5.7.3)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1))(zod@3.24.1))(hardhat-deploy@0.12.4(patch_hash=tlkqdaxsrdu4rtoksxd5dvmjze)(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10))(typescript@5.7.3)
+ version: 0.0.5(@nomicfoundation/hardhat-viem@2.0.3(patch_hash=znglrikwqnjywwr7ebopjjz3mm)(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10))(typescript@5.7.3)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2))(zod@3.24.2))(hardhat-deploy@0.12.4(patch_hash=tlkqdaxsrdu4rtoksxd5dvmjze)(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10))(typescript@5.7.3)
'@ensdomains/headless-web3-provider':
specifier: ^1.0.8
- version: 1.0.8(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1))
+ version: 1.0.8(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2))
'@ianvs/prettier-plugin-sort-imports':
specifier: ^4.1.0
version: 4.4.1(prettier@3.0.3)
@@ -286,16 +301,16 @@ importers:
version: 13.5.8(bufferutil@4.0.9)(utf-8-validate@5.0.10)
'@nomicfoundation/hardhat-toolbox-viem':
specifier: ^3.0.0
- version: 3.0.0(@nomicfoundation/hardhat-verify@2.0.12(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10)))(@nomicfoundation/hardhat-viem@2.0.3(patch_hash=znglrikwqnjywwr7ebopjjz3mm)(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10))(typescript@5.7.3)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1))(zod@3.24.1))(@types/node@20.17.19)(chai@4.5.0)(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10))(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1))
+ version: 3.0.0(@nomicfoundation/hardhat-verify@2.0.13(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10)))(@nomicfoundation/hardhat-viem@2.0.3(patch_hash=znglrikwqnjywwr7ebopjjz3mm)(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10))(typescript@5.7.3)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2))(zod@3.24.2))(@types/node@20.17.19)(chai@4.5.0)(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10))(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2))
'@nomicfoundation/hardhat-viem':
specifier: 2.0.3
- version: 2.0.3(patch_hash=znglrikwqnjywwr7ebopjjz3mm)(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10))(typescript@5.7.3)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1))(zod@3.24.1)
+ version: 2.0.3(patch_hash=znglrikwqnjywwr7ebopjjz3mm)(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10))(typescript@5.7.3)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2))(zod@3.24.2)
'@openzeppelin/contracts':
specifier: ^4.7.3
version: 4.9.6
'@playwright/test':
specifier: ^1.48.2
- version: 1.49.1
+ version: 1.50.1
'@testing-library/dom':
specifier: ^10.4.0
version: 10.4.0
@@ -331,7 +346,7 @@ importers:
version: 5.1.23
'@types/ws':
specifier: ^8.5.10
- version: 8.5.13
+ version: 8.5.14
'@typescript-eslint/eslint-plugin':
specifier: ^6.7.4
version: 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.50.0)(typescript@5.7.3))(eslint@8.50.0)(typescript@5.7.3)
@@ -340,10 +355,10 @@ importers:
version: 6.21.0(eslint@8.50.0)(typescript@5.7.3)
'@vitejs/plugin-react':
specifier: ^4.3.4
- version: 4.3.4(vite@5.4.14(@types/node@20.17.19))
+ version: 4.3.4(vite@6.2.0(@types/node@20.17.19)(jiti@2.4.2)(yaml@2.7.0))
'@vitest/coverage-v8':
specifier: ^3.0.5
- version: 3.0.7(vitest@3.0.7(@types/debug@4.1.12)(@types/node@20.17.19)(jsdom@24.1.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(msw@2.7.0(@types/node@20.17.19)(typescript@5.7.3)))
+ version: 3.0.7(vitest@3.0.7(@types/debug@4.1.12)(@types/node@20.17.19)(jiti@2.4.2)(jsdom@24.1.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(msw@2.7.3(@types/node@20.17.19)(typescript@5.7.3))(yaml@2.7.0))
'@vitest/spy':
specifier: ^3.0.5
version: 3.0.7
@@ -379,7 +394,7 @@ importers:
version: 0.3.9
eslint-plugin-import:
specifier: ^2.28.1
- version: 2.31.0(@typescript-eslint/parser@6.21.0(eslint@8.50.0)(typescript@5.7.3))(eslint-import-resolver-typescript@3.7.0)(eslint@8.50.0)
+ version: 2.31.0(@typescript-eslint/parser@6.21.0(eslint@8.50.0)(typescript@5.7.3))(eslint-import-resolver-typescript@3.8.3)(eslint@8.50.0)
eslint-plugin-jsx-a11y:
specifier: ^6.7.1
version: 6.10.2(eslint@8.50.0)
@@ -397,16 +412,16 @@ importers:
version: 6.5.0(eslint@8.50.0)(typescript@5.7.3)
eslint-plugin-vitest:
specifier: 0.4.x
- version: 0.4.1(@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.50.0)(typescript@5.7.3))(eslint@8.50.0)(typescript@5.7.3))(eslint@8.50.0)(typescript@5.7.3)(vitest@3.0.7(@types/debug@4.1.12)(@types/node@20.17.19)(jsdom@24.1.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(msw@2.7.0(@types/node@20.17.19)(typescript@5.7.3)))
+ version: 0.4.1(@typescript-eslint/eslint-plugin@6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.50.0)(typescript@5.7.3))(eslint@8.50.0)(typescript@5.7.3))(eslint@8.50.0)(typescript@5.7.3)(vitest@3.0.7(@types/debug@4.1.12)(@types/node@20.17.19)(jiti@2.4.2)(jsdom@24.1.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(msw@2.7.3(@types/node@20.17.19)(typescript@5.7.3))(yaml@2.7.0))
ethers:
specifier: ^5.7.2
version: 5.7.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)
hardhat:
specifier: ^2.22.18
- version: 2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10)
+ version: 2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10)
hardhat-dependency-compiler:
specifier: ^1.1.3
- version: 1.2.1(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10))
+ version: 1.2.1(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10))
hardhat-deploy:
specifier: ^0.12.4
version: 0.12.4(patch_hash=tlkqdaxsrdu4rtoksxd5dvmjze)(bufferutil@4.0.9)(utf-8-validate@5.0.10)
@@ -418,22 +433,22 @@ importers:
version: 24.1.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)
knip:
specifier: ^5.44.0
- version: 5.44.5(@types/node@20.17.19)(typescript@5.7.3)
+ version: 5.45.0(@types/node@20.17.19)(typescript@5.7.3)
msw:
specifier: ^2.7.0
- version: 2.7.0(@types/node@20.17.19)(typescript@5.7.3)
+ version: 2.7.3(@types/node@20.17.19)(typescript@5.7.3)
next-dev-https:
specifier: ^0.1.2
- version: 0.1.2(patch_hash=q5l3x5627ujg3rak6l6v24c2cq)(next@13.5.8(@babel/core@7.26.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ version: 0.1.2(patch_hash=q5l3x5627ujg3rak6l6v24c2cq)(next@13.5.8(@babel/core@7.26.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
next-router-mock:
specifier: ^0.9.10
- version: 0.9.13(next@13.5.8(@babel/core@7.26.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
+ version: 0.9.13(next@13.5.8(@babel/core@7.26.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)
pako:
specifier: ^2.1.0
version: 2.1.0
postcss-styled-syntax:
specifier: ^0.7.1
- version: 0.7.1(postcss@8.5.1)
+ version: 0.7.1(postcss@8.5.3)
prettier:
specifier: 3.0.3
version: 3.0.3
@@ -463,27 +478,27 @@ importers:
version: 0.18.3
vite-plugin-magical-svg:
specifier: ^1.3.0
- version: 1.3.0(vite@5.4.14(@types/node@20.17.19))
+ version: 1.5.0(vite@6.2.0(@types/node@20.17.19)(jiti@2.4.2)(yaml@2.7.0))
vitest:
specifier: ^3.0.5
- version: 3.0.7(@types/debug@4.1.12)(@types/node@20.17.19)(jsdom@24.1.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(msw@2.7.0(@types/node@20.17.19)(typescript@5.7.3))
+ version: 3.0.7(@types/debug@4.1.12)(@types/node@20.17.19)(jiti@2.4.2)(jsdom@24.1.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(msw@2.7.3(@types/node@20.17.19)(typescript@5.7.3))(yaml@2.7.0)
vitest-canvas-mock:
specifier: ^0.3.3
- version: 0.3.3(vitest@3.0.7(@types/debug@4.1.12)(@types/node@20.17.19)(jsdom@24.1.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(msw@2.7.0(@types/node@20.17.19)(typescript@5.7.3)))
+ version: 0.3.3(vitest@3.0.7(@types/debug@4.1.12)(@types/node@20.17.19)(jiti@2.4.2)(jsdom@24.1.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(msw@2.7.3(@types/node@20.17.19)(typescript@5.7.3))(yaml@2.7.0))
wait-on:
specifier: ^8.0.2
version: 8.0.2
wrangler:
specifier: ^3.26.0
- version: 3.103.2(@cloudflare/workers-types@3.19.0)(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ version: 3.109.3(@cloudflare/workers-types@3.19.0)(bufferutil@4.0.9)(utf-8-validate@5.0.10)
ws:
specifier: ^8.16.0
- version: 8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ version: 8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)
packages:
- '@adobe/css-tools@4.4.1':
- resolution: {integrity: sha512-12WGKBQzjUAI4ayyF4IAtfw2QR/IDoqk6jTddXDhtYTJF9ASmoE1zst7cVtP0aL/F1jUJL5r+JxKXKEgHNbEUQ==}
+ '@adobe/css-tools@4.4.2':
+ resolution: {integrity: sha512-baYZExFpsdkBNuvGKTKWCwKH57HRZLVtycZS05WTQNVOiXVSeAki3nU35zlRbToeMW8aHlJfyS+1C4BOv27q0A==}
'@adraffy/ens-normalize@1.10.0':
resolution: {integrity: sha512-nA9XHtlAkYfJxY7bce8DcN7eKxWWCWkU+1GR9d+U6MbNpfwQp8TI7vqOsBsMcHoT4mBu2kypKoSKnghEzOOq5Q==}
@@ -502,16 +517,16 @@ packages:
resolution: {integrity: sha512-RJlIHRueQgwWitWgF8OdFYGZX328Ax5BCemNGlqHfplnRT9ESi8JkFlvaVYbS+UubVY6dpv87Fs2u5M29iNFVQ==}
engines: {node: '>=6.9.0'}
- '@babel/compat-data@7.26.5':
- resolution: {integrity: sha512-XvcZi1KWf88RVbF9wn8MN6tYFloU5qX8KjuF3E1PVBmJ9eypXfs4GRiJwLuTZL0iSnJUKn1BFPa5BPZZJyFzPg==}
+ '@babel/compat-data@7.26.8':
+ resolution: {integrity: sha512-oH5UPLMWR3L2wEFLnFJ1TZXqHufiTKAiLfqw5zkhS4dKXLJ10yVztfil/twG8EDTA4F/tvVNw9nOl4ZMslB8rQ==}
engines: {node: '>=6.9.0'}
- '@babel/core@7.26.0':
- resolution: {integrity: sha512-i1SLeK+DzNnQ3LL/CswPCa/E5u4lh1k6IAEphON8F+cXt0t9euTshDru0q7/IqMa1PMPz5RnHuHscF8/ZJsStg==}
+ '@babel/core@7.26.9':
+ resolution: {integrity: sha512-lWBYIrF7qK5+GjY5Uy+/hEgp8OJWOD/rpy74GplYRhEauvbHDeFB8t5hPOZxCZ0Oxf4Cc36tK51/l3ymJysrKw==}
engines: {node: '>=6.9.0'}
- '@babel/generator@7.26.5':
- resolution: {integrity: sha512-2caSP6fN9I7HOe6nqhtft7V4g7/V/gfDsC3Ag4W7kEzzvRGKqiv0pu0HogPiZ3KaVSoNDhUws6IJjDjpfmYIXw==}
+ '@babel/generator@7.26.9':
+ resolution: {integrity: sha512-kEWdzjOAUMW4hAyrzJ0ZaTOu9OmpyDIQicIh0zg0EEcEkYXZb2TjtBhnHi2ViX7PKwZqF4xwqfAm299/QMP3lg==}
engines: {node: '>=6.9.0'}
'@babel/helper-annotate-as-pure@7.25.9':
@@ -522,8 +537,8 @@ packages:
resolution: {integrity: sha512-IXuyn5EkouFJscIDuFF5EsiSolseme1s0CZB+QxVugqJLYmKdxI1VfIBOst0SUu4rnk2Z7kqTwmoO1lp3HIfnA==}
engines: {node: '>=6.9.0'}
- '@babel/helper-create-class-features-plugin@7.25.9':
- resolution: {integrity: sha512-UTZQMvt0d/rSz6KI+qdu7GQze5TIajwTS++GUozlw8VBJDEOAqSXwm1WvmYEZwqdqSGQshRocPDqrt4HBZB3fQ==}
+ '@babel/helper-create-class-features-plugin@7.26.9':
+ resolution: {integrity: sha512-ubbUqCofvxPRurw5L8WTsCLSkQiVpov4Qx0WMA+jUN+nXBK8ADPlJO1grkFw5CWKC5+sZSOfuGMdX1aI1iT9Sg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0
@@ -593,12 +608,12 @@ packages:
resolution: {integrity: sha512-ETzz9UTjQSTmw39GboatdymDq4XIQbR8ySgVrylRhPOFpsd+JrKHIuF0de7GCWmem+T4uC5z7EZguod7Wj4A4g==}
engines: {node: '>=6.9.0'}
- '@babel/helpers@7.26.0':
- resolution: {integrity: sha512-tbhNuIxNcVb21pInl3ZSjksLCvgdZy9KwJ8brv993QtIVKJBBkYXz4q4ZbAv31GdnC+R90np23L5FbEBlthAEw==}
+ '@babel/helpers@7.26.9':
+ resolution: {integrity: sha512-Mz/4+y8udxBKdmzt/UjPACs4G3j5SshJJEFFKxlCGPydG4JAHXxjWjAwjd09tf6oINvl1VfMJo+nB7H2YKQ0dA==}
engines: {node: '>=6.9.0'}
- '@babel/parser@7.26.5':
- resolution: {integrity: sha512-SRJ4jYmXRqV1/Xc+TIVG84WjHBXKlxO9sHQnA2Pf12QQEAp1LOh6kDzNHXcUnbH1QI0FDoPPVOt+vyUDucxpaw==}
+ '@babel/parser@7.26.9':
+ resolution: {integrity: sha512-81NWa1njQblgZbQHxWHpxxCzNsa3ZwvFqpUg7P+NNUU6f3UU2jBEg4OlF/J6rl8+PQGh1q6/zWScd001YwcA5A==}
engines: {node: '>=6.0.0'}
hasBin: true
@@ -674,8 +689,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-async-generator-functions@7.25.9':
- resolution: {integrity: sha512-RXV6QAzTBbhDMO9fWwOmwwTuYaiPbggWQ9INdZqAYeSHyG7FzQ+nOZaUUjNwKv9pV3aE4WFqFm1Hnbci5tBCAw==}
+ '@babel/plugin-transform-async-generator-functions@7.26.8':
+ resolution: {integrity: sha512-He9Ej2X7tNf2zdKMAGOsmg2MrFc+hfoAhd3po4cWfo/NWjzEAKa0oQruj1ROVUdl0e6fb6/kE/G3SSxE0lRJOg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -764,8 +779,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-for-of@7.25.9':
- resolution: {integrity: sha512-LqHxduHoaGELJl2uhImHwRQudhCM50pT46rIBNvtT/Oql3nqiS3wOwP+5ten7NpYSXrrVLgtZU3DZmPtWZo16A==}
+ '@babel/plugin-transform-for-of@7.26.9':
+ resolution: {integrity: sha512-Hry8AusVm8LW5BVFgiyUReuoGzPUpdHQQqJY5bZnbbf+ngOHWuCuYFKw/BqaaWlvEUrF91HMhDtEaI1hZzNbLg==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -974,20 +989,20 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-template-literals@7.25.9':
- resolution: {integrity: sha512-o97AE4syN71M/lxrCtQByzphAdlYluKPDBzDVzMmfCobUjjhAryZV0AIpRPrxN0eAkxXO6ZLEScmt+PNhj2OTw==}
+ '@babel/plugin-transform-template-literals@7.26.8':
+ resolution: {integrity: sha512-OmGDL5/J0CJPJZTHZbi2XpO0tyT2Ia7fzpW5GURwdtp2X3fMmN8au/ej6peC/T33/+CRiIpA8Krse8hFGVmT5Q==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typeof-symbol@7.25.9':
- resolution: {integrity: sha512-v61XqUMiueJROUv66BVIOi0Fv/CUuZuZMl5NkRoCVxLAnMexZ0A3kMe7vvZ0nulxMuMp0Mk6S5hNh48yki08ZA==}
+ '@babel/plugin-transform-typeof-symbol@7.26.7':
+ resolution: {integrity: sha512-jfoTXXZTgGg36BmhqT3cAYK5qkmqvJpvNrPhaK/52Vgjhw4Rq29s9UqpWWV0D6yuRmgiFH/BUVlkl96zJWqnaw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/plugin-transform-typescript@7.26.5':
- resolution: {integrity: sha512-GJhPO0y8SD5EYVCy2Zr+9dSZcEgaSmq5BLR0Oc25TOEhC+ba49vUAGZFjy8v79z9E1mdldq4x9d1xgh4L1d5dQ==}
+ '@babel/plugin-transform-typescript@7.26.8':
+ resolution: {integrity: sha512-bME5J9AC8ChwA7aEPJ6zym3w7aObZULHhbNLU0bKUhKsAkylkzUdq+0kdymh9rzi8nlNFl2bmldFBCKNJBUpuw==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1016,8 +1031,8 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0
- '@babel/preset-env@7.26.0':
- resolution: {integrity: sha512-H84Fxq0CQJNdPFT2DrfnylZ3cf5K43rGfWK4LJGPpjKHiZlk0/RzwEus3PDDZZg+/Er7lCA03MVacueUuXdzfw==}
+ '@babel/preset-env@7.26.9':
+ resolution: {integrity: sha512-vX3qPGE8sEKEAZCWk05k3cpTAE3/nOYca++JA+Rd0z2NCNzabmYvEiSShKzm10zdquOIAVXsy2Ei/DTW34KlKQ==}
engines: {node: '>=6.9.0'}
peerDependencies:
'@babel/core': ^7.0.0-0
@@ -1039,20 +1054,20 @@ packages:
peerDependencies:
'@babel/core': ^7.0.0-0
- '@babel/runtime@7.26.0':
- resolution: {integrity: sha512-FDSOghenHTiToteC/QRlv2q3DhPZ/oOXTBoirfWNx1Cx3TMVcGWQtMMmQcSvb/JjpNeGzx8Pq/b4fKEJuWm1sw==}
+ '@babel/runtime@7.26.9':
+ resolution: {integrity: sha512-aA63XwOkcl4xxQa3HjPMqOP6LiK0ZDv3mUPYEFXkpHbaFjtGggE1A61FjFzJnB+p7/oy2gA8E+rcBNl/zC1tMg==}
engines: {node: '>=6.9.0'}
- '@babel/template@7.25.9':
- resolution: {integrity: sha512-9DGttpmPvIxBb/2uwpVo3dqJ+O6RooAFOS+lB+xDqoE2PVCE8nfoHMdZLpfCQRLwvohzXISPZcgxt80xLfsuwg==}
+ '@babel/template@7.26.9':
+ resolution: {integrity: sha512-qyRplbeIpNZhmzOysF/wFMuP9sctmh2cFzRAZOn1YapxBsE1i9bJIY586R/WBLfLcmcBlM8ROBiQURnnNy+zfA==}
engines: {node: '>=6.9.0'}
- '@babel/traverse@7.26.5':
- resolution: {integrity: sha512-rkOSPOw+AXbgtwUga3U4u8RpoK9FEFWBNAlTpcnkLFjL5CT+oyHNuUUC/xx6XefEJ16r38r8Bc/lfp6rYuHeJQ==}
+ '@babel/traverse@7.26.9':
+ resolution: {integrity: sha512-ZYW7L+pL8ahU5fXmNbPF+iZFHCv5scFak7MZ9bwaRPLUhHh7QQEMjZUg0HevihoqCM5iSYHN61EyCoZvqC+bxg==}
engines: {node: '>=6.9.0'}
- '@babel/types@7.26.5':
- resolution: {integrity: sha512-L6mZmwFDK6Cjh1nRCLXpa6no13ZIioJDz7mdkzHv399pThrTa/k0nUlNaenOeh2kWu/iaOQYElEpKPUswUa9Vg==}
+ '@babel/types@7.26.9':
+ resolution: {integrity: sha512-Y3IR1cRnOxOCDvMmNiym7XpXQ93iGDDPHx+Zj+NM+rg0fBaShfQLkg+hKPaZCEvg5N/LeCo4+Rj/i3FuJsIQaw==}
engines: {node: '>=6.9.0'}
'@bcoe/v8-coverage@1.0.2':
@@ -1068,36 +1083,51 @@ packages:
'@bundled-es-modules/tough-cookie@0.1.6':
resolution: {integrity: sha512-dvMHbL464C0zI+Yqxbz6kZ5TOEp7GLW+pry/RWndAR8MJQAXZ2rPmIs8tziTZjeIyhSNZgZbCePtfSbdWqStJw==}
+ '@celo/base@7.0.1':
+ resolution: {integrity: sha512-isHpstVDNsjeFD7QtBUPwghnKV+qMr55Kh9qk4qyFh7ciQry0nxx0SQjQ638vO3JLkykjHZoRFstL+/+7RGz5A==}
+
+ '@celo/utils@8.0.1':
+ resolution: {integrity: sha512-Jmom6QCm1NQiK6rvXW+Eu5WIEP5e+mG+dkRiN2SuaIbYSsMfqyaJNg9dUXhdGilQSOyKrcZYQE5mzwDLtScJGQ==}
+
+ '@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.4':
resolution: {integrity: sha512-YLPHc8yASwjNkmcDMQMY35yiWjoKAKnhUbPRszBRS0YgH+IXtsMp61j+yTcnCE3oO2DgP0U3iejLC8FTtKDC8Q==}
engines: {node: '>=16.13'}
- '@cloudflare/workerd-darwin-64@1.20241230.0':
- resolution: {integrity: sha512-BZHLg4bbhNQoaY1Uan81O3FV/zcmWueC55juhnaI7NAobiQth9RppadPNpxNAmS9fK2mR5z8xrwMQSQrHmztyQ==}
+ '@cloudflare/workerd-darwin-64@1.20250214.0':
+ resolution: {integrity: sha512-cDvvedWDc5zrgDnuXe2qYcz/TwBvzmweO55C7XpPuAWJ9Oqxv81PkdekYxD8mH989aQ/GI5YD0Fe6fDYlM+T3Q==}
engines: {node: '>=16'}
cpu: [x64]
os: [darwin]
- '@cloudflare/workerd-darwin-arm64@1.20241230.0':
- resolution: {integrity: sha512-lllxycj7EzYoJ0VOJh8M3palUgoonVrILnzGrgsworgWlIpgjfXGS7b41tEGCw6AxSxL9prmTIGtfSPUvn/rjg==}
+ '@cloudflare/workerd-darwin-arm64@1.20250214.0':
+ resolution: {integrity: sha512-NytCvRveVzu0mRKo+tvZo3d/gCUway3B2ZVqSi/TS6NXDGBYIJo7g6s3BnTLS74kgyzeDOjhu9j/RBJBS809qw==}
engines: {node: '>=16'}
cpu: [arm64]
os: [darwin]
- '@cloudflare/workerd-linux-64@1.20241230.0':
- resolution: {integrity: sha512-Y3mHcW0KghOmWdNZyHYpEOG4Ba/ga8tht5vj1a+WXfagEjMO8Y98XhZUlCaYa9yB7Wh5jVcK5LM2jlO/BLgqpA==}
+ '@cloudflare/workerd-linux-64@1.20250214.0':
+ resolution: {integrity: sha512-pQ7+aHNHj8SiYEs4d/6cNoimE5xGeCMfgU1yfDFtA9YGN9Aj2BITZgOWPec+HW7ZkOy9oWlNrO6EvVjGgB4tbQ==}
engines: {node: '>=16'}
cpu: [x64]
os: [linux]
- '@cloudflare/workerd-linux-arm64@1.20241230.0':
- resolution: {integrity: sha512-IAjhsWPlHzhhkJ6I49sDG6XfMnhPvv0szKGXxTWQK/IWMrbGdHm4RSfNKBSoLQm67jGMIzbmcrX9UIkms27Y1g==}
+ '@cloudflare/workerd-linux-arm64@1.20250214.0':
+ resolution: {integrity: sha512-Vhlfah6Yd9ny1npNQjNgElLIjR6OFdEbuR3LCfbLDCwzWEBFhIf7yC+Tpp/a0Hq7kLz3sLdktaP7xl3PJhyOjA==}
engines: {node: '>=16'}
cpu: [arm64]
os: [linux]
- '@cloudflare/workerd-windows-64@1.20241230.0':
- resolution: {integrity: sha512-y5SPIk9iOb2gz+yWtHxoeMnjPnkYQswiCJ480oHC6zexnJLlKTpcmBCjDH1nWCT4pQi8F25gaH8thgElf4NvXQ==}
+ '@cloudflare/workerd-windows-64@1.20250214.0':
+ resolution: {integrity: sha512-GMwMyFbkjBKjYJoKDhGX8nuL4Gqe3IbVnVWf2Q6086CValyIknupk5J6uQWGw2EBU3RGO3x4trDXT5WphQJZDQ==}
engines: {node: '>=16'}
cpu: [x64]
os: [win32]
@@ -1111,23 +1141,26 @@ 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'}
- '@csstools/color-helpers@5.0.1':
- resolution: {integrity: sha512-MKtmkA0BX87PKaO1NFRTFH+UnkgnmySQOvNxJubsadusqPEC2aJ9MOQiMceZJJ6oitUl/i0L6u0M1IrmAOmgBA==}
+ '@csstools/color-helpers@5.0.2':
+ resolution: {integrity: sha512-JqWH1vsgdGcw2RR6VliXXdA0/59LttzlU8UlRT/iUUsEeWfYq8I+K0yhihEUTTHLRm1EXvpsCx3083EU15ecsA==}
engines: {node: '>=18'}
- '@csstools/css-calc@2.1.1':
- resolution: {integrity: sha512-rL7kaUnTkL9K+Cvo2pnCieqNpTKgQzy5f+N+5Iuko9HAoasP+xgprVh7KN/MaJVvVL1l0EzQq2MoqBHKSrDrag==}
+ '@csstools/css-calc@2.1.2':
+ resolution: {integrity: sha512-TklMyb3uBB28b5uQdxjReG4L80NxAqgrECqLZFQbyLekwwlcDDS8r3f07DKqeo8C4926Br0gf/ZDe17Zv4wIuw==}
engines: {node: '>=18'}
peerDependencies:
'@csstools/css-parser-algorithms': ^3.0.4
'@csstools/css-tokenizer': ^3.0.3
- '@csstools/css-color-parser@3.0.7':
- resolution: {integrity: sha512-nkMp2mTICw32uE5NN+EsJ4f5N+IGFeCFu4bGpiKgb2Pq/7J/MpyLBeQ5ry4KKtRFZaYs6sTmcMYrSRIyj5DFKA==}
+ '@csstools/css-color-parser@3.0.8':
+ resolution: {integrity: sha512-pdwotQjCCnRPuNi06jFuP68cykU1f3ZWExLe/8MQ1LOs8Xq+fTkYgd+2V8mWUWMrOn9iS2HftPVaMZDaXzGbhQ==}
engines: {node: '>=18'}
peerDependencies:
'@csstools/css-parser-algorithms': ^3.0.4
@@ -1168,12 +1201,21 @@ packages:
'@emmetio/scanner@1.0.4':
resolution: {integrity: sha512-IqRuJtQff7YHHBk4G8YZ45uB9BaAGcwQeVzgj/zj8/UdOhtQpEIupUhSk8dys6spFIWVZVeK20CzGEnqR5SbqA==}
+ '@emnapi/runtime@1.3.1':
+ resolution: {integrity: sha512-kEBmG8KyqtxJZv+ygbEim+KCGtIq1fC22Ms3S4ziXmYKm8uyoLX0MHONVKwp+9opg390VaKRNt4a7A9NwmpNhw==}
+
'@emotion/hash@0.9.2':
resolution: {integrity: sha512-MyqliTZGuOm3+5ZRSaaBGP3USLw6+EGykkwZns2EPC5g8jJ4z9OrdZY9apkl3+UP9+sdz76YYkwCKP5gh8iY3g==}
+ '@emotion/is-prop-valid@1.2.2':
+ resolution: {integrity: sha512-uNsoYd37AFmaCdXlg6EYD1KaPOaRWRByMCYzbKUX4+hhMfrxdVSelShywL4JVaAeM/eHUOSprYBQls+/neX3pw==}
+
'@emotion/is-prop-valid@1.3.1':
resolution: {integrity: sha512-/ACwoqx7XQi9knQs/G0qKvv5teDMhD7bXYns9N/wM8ah8iNb8jZ2uNO0YOgiq2o2poIvVtJS2YALasQuMSQ7Kw==}
+ '@emotion/memoize@0.8.1':
+ resolution: {integrity: sha512-W2P2c/VRW1/1tLox0mVUalvnWXxavmv/Oum2aPsRcoDJuob75FC3Y8FbpfLwUegRcxINtGUMPq0tFCvYNTBXNA==}
+
'@emotion/memoize@0.9.0':
resolution: {integrity: sha512-30FAj7/EoJ5mwVPOWhAyCX+FPfMDrVecJAM+Iw9NRoSl4BBAQeqj4cApHHUXOVvIPgLVDsCFoz/hGD+5QQD1GQ==}
@@ -1183,6 +1225,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@1.0.0-rc.3':
resolution: {integrity: sha512-8o6zH69rObIqDY4PusEWuN9jvVOct+9jj9AOPO7ifc3ev8nmsly0e8TE1sHkhk0iKFbd3DlSsUnJ+yuRWmdLCQ==}
@@ -1249,9 +1294,9 @@ packages:
peerDependencies:
esbuild: '*'
- '@esbuild/aix-ppc64@0.21.5':
- resolution: {integrity: sha512-1SDgH6ZSPTlggy1yI6+Dbkiz8xzpHJEVAlF/AM1tHPLsf5STom9rwtjE4hKAF20FfXXNTFqEYXyJNWh1GiZedQ==}
- engines: {node: '>=12'}
+ '@esbuild/aix-ppc64@0.25.0':
+ resolution: {integrity: sha512-O7vun9Sf8DFjH2UtqK8Ku3LkquL9SZL8OLY1T5NZkA34+wG3OQF7cl4Ql8vdNzM6fzBbYfLaiRLIOZ+2FOCgBQ==}
+ engines: {node: '>=18'}
cpu: [ppc64]
os: [aix]
@@ -1261,9 +1306,9 @@ packages:
cpu: [arm64]
os: [android]
- '@esbuild/android-arm64@0.21.5':
- resolution: {integrity: sha512-c0uX9VAUBQ7dTDCjq+wdyGLowMdtR/GoC2U5IYk/7D1H1JYC0qseD7+11iMP2mRLN9RcCMRcjC4YMclCzGwS/A==}
- engines: {node: '>=12'}
+ '@esbuild/android-arm64@0.25.0':
+ resolution: {integrity: sha512-grvv8WncGjDSyUBjN9yHXNt+cq0snxXbDxy5pJtzMKGmmpPxeAmAhWxXI+01lU5rwZomDgD3kJwulEnhTRUd6g==}
+ engines: {node: '>=18'}
cpu: [arm64]
os: [android]
@@ -1273,9 +1318,9 @@ packages:
cpu: [arm]
os: [android]
- '@esbuild/android-arm@0.21.5':
- resolution: {integrity: sha512-vCPvzSjpPHEi1siZdlvAlsPxXl7WbOVUBBAowWug4rJHb68Ox8KualB+1ocNvT5fjv6wpkX6o/iEpbDrf68zcg==}
- engines: {node: '>=12'}
+ '@esbuild/android-arm@0.25.0':
+ resolution: {integrity: sha512-PTyWCYYiU0+1eJKmw21lWtC+d08JDZPQ5g+kFyxP0V+es6VPPSUhM6zk8iImp2jbV6GwjX4pap0JFbUQN65X1g==}
+ engines: {node: '>=18'}
cpu: [arm]
os: [android]
@@ -1285,9 +1330,9 @@ packages:
cpu: [x64]
os: [android]
- '@esbuild/android-x64@0.21.5':
- resolution: {integrity: sha512-D7aPRUUNHRBwHxzxRvp856rjUHRFW1SdQATKXH2hqA0kAZb1hKmi02OpYRacl0TxIGz/ZmXWlbZgjwWYaCakTA==}
- engines: {node: '>=12'}
+ '@esbuild/android-x64@0.25.0':
+ resolution: {integrity: sha512-m/ix7SfKG5buCnxasr52+LI78SQ+wgdENi9CqyCXwjVR2X4Jkz+BpC3le3AoBPYTC9NHklwngVXvbJ9/Akhrfg==}
+ engines: {node: '>=18'}
cpu: [x64]
os: [android]
@@ -1297,9 +1342,9 @@ packages:
cpu: [arm64]
os: [darwin]
- '@esbuild/darwin-arm64@0.21.5':
- resolution: {integrity: sha512-DwqXqZyuk5AiWWf3UfLiRDJ5EDd49zg6O9wclZ7kUMv2WRFr4HKjXp/5t8JZ11QbQfUS6/cRCKGwYhtNAY88kQ==}
- engines: {node: '>=12'}
+ '@esbuild/darwin-arm64@0.25.0':
+ resolution: {integrity: sha512-mVwdUb5SRkPayVadIOI78K7aAnPamoeFR2bT5nszFUZ9P8UpK4ratOdYbZZXYSqPKMHfS1wdHCJk1P1EZpRdvw==}
+ engines: {node: '>=18'}
cpu: [arm64]
os: [darwin]
@@ -1309,9 +1354,9 @@ packages:
cpu: [x64]
os: [darwin]
- '@esbuild/darwin-x64@0.21.5':
- resolution: {integrity: sha512-se/JjF8NlmKVG4kNIuyWMV/22ZaerB+qaSi5MdrXtd6R08kvs2qCN4C09miupktDitvh8jRFflwGFBQcxZRjbw==}
- engines: {node: '>=12'}
+ '@esbuild/darwin-x64@0.25.0':
+ resolution: {integrity: sha512-DgDaYsPWFTS4S3nWpFcMn/33ZZwAAeAFKNHNa1QN0rI4pUjgqf0f7ONmXf6d22tqTY+H9FNdgeaAa+YIFUn2Rg==}
+ engines: {node: '>=18'}
cpu: [x64]
os: [darwin]
@@ -1321,9 +1366,9 @@ packages:
cpu: [arm64]
os: [freebsd]
- '@esbuild/freebsd-arm64@0.21.5':
- resolution: {integrity: sha512-5JcRxxRDUJLX8JXp/wcBCy3pENnCgBR9bN6JsY4OmhfUtIHe3ZW0mawA7+RDAcMLrMIZaf03NlQiX9DGyB8h4g==}
- engines: {node: '>=12'}
+ '@esbuild/freebsd-arm64@0.25.0':
+ resolution: {integrity: sha512-VN4ocxy6dxefN1MepBx/iD1dH5K8qNtNe227I0mnTRjry8tj5MRk4zprLEdG8WPyAPb93/e4pSgi1SoHdgOa4w==}
+ engines: {node: '>=18'}
cpu: [arm64]
os: [freebsd]
@@ -1333,9 +1378,9 @@ packages:
cpu: [x64]
os: [freebsd]
- '@esbuild/freebsd-x64@0.21.5':
- resolution: {integrity: sha512-J95kNBj1zkbMXtHVH29bBriQygMXqoVQOQYA+ISs0/2l3T9/kj42ow2mpqerRBxDJnmkUDCaQT/dfNXWX/ZZCQ==}
- engines: {node: '>=12'}
+ '@esbuild/freebsd-x64@0.25.0':
+ resolution: {integrity: sha512-mrSgt7lCh07FY+hDD1TxiTyIHyttn6vnjesnPoVDNmDfOmggTLXRv8Id5fNZey1gl/V2dyVK1VXXqVsQIiAk+A==}
+ engines: {node: '>=18'}
cpu: [x64]
os: [freebsd]
@@ -1345,9 +1390,9 @@ packages:
cpu: [arm64]
os: [linux]
- '@esbuild/linux-arm64@0.21.5':
- resolution: {integrity: sha512-ibKvmyYzKsBeX8d8I7MH/TMfWDXBF3db4qM6sy+7re0YXya+K1cem3on9XgdT2EQGMu4hQyZhan7TeQ8XkGp4Q==}
- engines: {node: '>=12'}
+ '@esbuild/linux-arm64@0.25.0':
+ resolution: {integrity: sha512-9QAQjTWNDM/Vk2bgBl17yWuZxZNQIF0OUUuPZRKoDtqF2k4EtYbpyiG5/Dk7nqeK6kIJWPYldkOcBqjXjrUlmg==}
+ engines: {node: '>=18'}
cpu: [arm64]
os: [linux]
@@ -1357,9 +1402,9 @@ packages:
cpu: [arm]
os: [linux]
- '@esbuild/linux-arm@0.21.5':
- resolution: {integrity: sha512-bPb5AHZtbeNGjCKVZ9UGqGwo8EUu4cLq68E95A53KlxAPRmUyYv2D6F0uUI65XisGOL1hBP5mTronbgo+0bFcA==}
- engines: {node: '>=12'}
+ '@esbuild/linux-arm@0.25.0':
+ resolution: {integrity: sha512-vkB3IYj2IDo3g9xX7HqhPYxVkNQe8qTK55fraQyTzTX/fxaDtXiEnavv9geOsonh2Fd2RMB+i5cbhu2zMNWJwg==}
+ engines: {node: '>=18'}
cpu: [arm]
os: [linux]
@@ -1369,9 +1414,9 @@ packages:
cpu: [ia32]
os: [linux]
- '@esbuild/linux-ia32@0.21.5':
- resolution: {integrity: sha512-YvjXDqLRqPDl2dvRODYmmhz4rPeVKYvppfGYKSNGdyZkA01046pLWyRKKI3ax8fbJoK5QbxblURkwK/MWY18Tg==}
- engines: {node: '>=12'}
+ '@esbuild/linux-ia32@0.25.0':
+ resolution: {integrity: sha512-43ET5bHbphBegyeqLb7I1eYn2P/JYGNmzzdidq/w0T8E2SsYL1U6un2NFROFRg1JZLTzdCoRomg8Rvf9M6W6Gg==}
+ engines: {node: '>=18'}
cpu: [ia32]
os: [linux]
@@ -1381,9 +1426,9 @@ packages:
cpu: [loong64]
os: [linux]
- '@esbuild/linux-loong64@0.21.5':
- resolution: {integrity: sha512-uHf1BmMG8qEvzdrzAqg2SIG/02+4/DHB6a9Kbya0XDvwDEKCoC8ZRWI5JJvNdUjtciBGFQ5PuBlpEOXQj+JQSg==}
- engines: {node: '>=12'}
+ '@esbuild/linux-loong64@0.25.0':
+ resolution: {integrity: sha512-fC95c/xyNFueMhClxJmeRIj2yrSMdDfmqJnyOY4ZqsALkDrrKJfIg5NTMSzVBr5YW1jf+l7/cndBfP3MSDpoHw==}
+ engines: {node: '>=18'}
cpu: [loong64]
os: [linux]
@@ -1393,9 +1438,9 @@ packages:
cpu: [mips64el]
os: [linux]
- '@esbuild/linux-mips64el@0.21.5':
- resolution: {integrity: sha512-IajOmO+KJK23bj52dFSNCMsz1QP1DqM6cwLUv3W1QwyxkyIWecfafnI555fvSGqEKwjMXVLokcV5ygHW5b3Jbg==}
- engines: {node: '>=12'}
+ '@esbuild/linux-mips64el@0.25.0':
+ resolution: {integrity: sha512-nkAMFju7KDW73T1DdH7glcyIptm95a7Le8irTQNO/qtkoyypZAnjchQgooFUDQhNAy4iu08N79W4T4pMBwhPwQ==}
+ engines: {node: '>=18'}
cpu: [mips64el]
os: [linux]
@@ -1405,9 +1450,9 @@ packages:
cpu: [ppc64]
os: [linux]
- '@esbuild/linux-ppc64@0.21.5':
- resolution: {integrity: sha512-1hHV/Z4OEfMwpLO8rp7CvlhBDnjsC3CttJXIhBi+5Aj5r+MBvy4egg7wCbe//hSsT+RvDAG7s81tAvpL2XAE4w==}
- engines: {node: '>=12'}
+ '@esbuild/linux-ppc64@0.25.0':
+ resolution: {integrity: sha512-NhyOejdhRGS8Iwv+KKR2zTq2PpysF9XqY+Zk77vQHqNbo/PwZCzB5/h7VGuREZm1fixhs4Q/qWRSi5zmAiO4Fw==}
+ engines: {node: '>=18'}
cpu: [ppc64]
os: [linux]
@@ -1417,9 +1462,9 @@ packages:
cpu: [riscv64]
os: [linux]
- '@esbuild/linux-riscv64@0.21.5':
- resolution: {integrity: sha512-2HdXDMd9GMgTGrPWnJzP2ALSokE/0O5HhTUvWIbD3YdjME8JwvSCnNGBnTThKGEB91OZhzrJ4qIIxk/SBmyDDA==}
- engines: {node: '>=12'}
+ '@esbuild/linux-riscv64@0.25.0':
+ resolution: {integrity: sha512-5S/rbP5OY+GHLC5qXp1y/Mx//e92L1YDqkiBbO9TQOvuFXM+iDqUNG5XopAnXoRH3FjIUDkeGcY1cgNvnXp/kA==}
+ engines: {node: '>=18'}
cpu: [riscv64]
os: [linux]
@@ -1429,9 +1474,9 @@ packages:
cpu: [s390x]
os: [linux]
- '@esbuild/linux-s390x@0.21.5':
- resolution: {integrity: sha512-zus5sxzqBJD3eXxwvjN1yQkRepANgxE9lgOW2qLnmr8ikMTphkjgXu1HR01K4FJg8h1kEEDAqDcZQtbrRnB41A==}
- engines: {node: '>=12'}
+ '@esbuild/linux-s390x@0.25.0':
+ resolution: {integrity: sha512-XM2BFsEBz0Fw37V0zU4CXfcfuACMrppsMFKdYY2WuTS3yi8O1nFOhil/xhKTmE1nPmVyvQJjJivgDT+xh8pXJA==}
+ engines: {node: '>=18'}
cpu: [s390x]
os: [linux]
@@ -1441,33 +1486,45 @@ packages:
cpu: [x64]
os: [linux]
- '@esbuild/linux-x64@0.21.5':
- resolution: {integrity: sha512-1rYdTpyv03iycF1+BhzrzQJCdOuAOtaqHTWJZCWvijKD2N5Xu0TtVC8/+1faWqcP9iBCWOmjmhoH94dH82BxPQ==}
- engines: {node: '>=12'}
+ '@esbuild/linux-x64@0.25.0':
+ resolution: {integrity: sha512-9yl91rHw/cpwMCNytUDxwj2XjFpxML0y9HAOH9pNVQDpQrBxHy01Dx+vaMu0N1CKa/RzBD2hB4u//nfc+Sd3Cw==}
+ engines: {node: '>=18'}
cpu: [x64]
os: [linux]
+ '@esbuild/netbsd-arm64@0.25.0':
+ resolution: {integrity: sha512-RuG4PSMPFfrkH6UwCAqBzauBWTygTvb1nxWasEJooGSJ/NwRw7b2HOwyRTQIU97Hq37l3npXoZGYMy3b3xYvPw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [netbsd]
+
'@esbuild/netbsd-x64@0.17.19':
resolution: {integrity: sha512-CwFq42rXCR8TYIjIfpXCbRX0rp1jo6cPIUPSaWwzbVI4aOfX96OXY8M6KNmtPcg7QjYeDmN+DD0Wp3LaBOLf4Q==}
engines: {node: '>=12'}
cpu: [x64]
os: [netbsd]
- '@esbuild/netbsd-x64@0.21.5':
- resolution: {integrity: sha512-Woi2MXzXjMULccIwMnLciyZH4nCIMpWQAs049KEeMvOcNADVxo0UBIQPfSmxB3CWKedngg7sWZdLvLczpe0tLg==}
- engines: {node: '>=12'}
+ '@esbuild/netbsd-x64@0.25.0':
+ resolution: {integrity: sha512-jl+qisSB5jk01N5f7sPCsBENCOlPiS/xptD5yxOx2oqQfyourJwIKLRA2yqWdifj3owQZCL2sn6o08dBzZGQzA==}
+ engines: {node: '>=18'}
cpu: [x64]
os: [netbsd]
+ '@esbuild/openbsd-arm64@0.25.0':
+ resolution: {integrity: sha512-21sUNbq2r84YE+SJDfaQRvdgznTD8Xc0oc3p3iW/a1EVWeNj/SdUCbm5U0itZPQYRuRTW20fPMWMpcrciH2EJw==}
+ engines: {node: '>=18'}
+ cpu: [arm64]
+ os: [openbsd]
+
'@esbuild/openbsd-x64@0.17.19':
resolution: {integrity: sha512-cnq5brJYrSZ2CF6c35eCmviIN3k3RczmHz8eYaVlNasVqsNY+JKohZU5MKmaOI+KkllCdzOKKdPs762VCPC20g==}
engines: {node: '>=12'}
cpu: [x64]
os: [openbsd]
- '@esbuild/openbsd-x64@0.21.5':
- resolution: {integrity: sha512-HLNNw99xsvx12lFBUwoT8EVCsSvRNDVxNpjZ7bPn947b8gJPzeHWyNVhFsaerc0n3TsbOINvRP2byTZ5LKezow==}
- engines: {node: '>=12'}
+ '@esbuild/openbsd-x64@0.25.0':
+ resolution: {integrity: sha512-2gwwriSMPcCFRlPlKx3zLQhfN/2WjJ2NSlg5TKLQOJdV0mSxIcYNTMhk3H3ulL/cak+Xj0lY1Ym9ysDV1igceg==}
+ engines: {node: '>=18'}
cpu: [x64]
os: [openbsd]
@@ -1477,9 +1534,9 @@ packages:
cpu: [x64]
os: [sunos]
- '@esbuild/sunos-x64@0.21.5':
- resolution: {integrity: sha512-6+gjmFpfy0BHU5Tpptkuh8+uw3mnrvgs+dSPQXQOv3ekbordwnzTVEb4qnIvQcYXq6gzkyTnoZ9dZG+D4garKg==}
- engines: {node: '>=12'}
+ '@esbuild/sunos-x64@0.25.0':
+ resolution: {integrity: sha512-bxI7ThgLzPrPz484/S9jLlvUAHYMzy6I0XiU1ZMeAEOBcS0VePBFxh1JjTQt3Xiat5b6Oh4x7UC7IwKQKIJRIg==}
+ engines: {node: '>=18'}
cpu: [x64]
os: [sunos]
@@ -1489,9 +1546,9 @@ packages:
cpu: [arm64]
os: [win32]
- '@esbuild/win32-arm64@0.21.5':
- resolution: {integrity: sha512-Z0gOTd75VvXqyq7nsl93zwahcTROgqvuAcYDUr+vOv8uHhNSKROyU961kgtCD1e95IqPKSQKH7tBTslnS3tA8A==}
- engines: {node: '>=12'}
+ '@esbuild/win32-arm64@0.25.0':
+ resolution: {integrity: sha512-ZUAc2YK6JW89xTbXvftxdnYy3m4iHIkDtK3CLce8wg8M2L+YZhIvO1DKpxrd0Yr59AeNNkTiic9YLf6FTtXWMw==}
+ engines: {node: '>=18'}
cpu: [arm64]
os: [win32]
@@ -1501,9 +1558,9 @@ packages:
cpu: [ia32]
os: [win32]
- '@esbuild/win32-ia32@0.21.5':
- resolution: {integrity: sha512-SWXFF1CL2RVNMaVs+BBClwtfZSvDgtL//G/smwAc5oVK/UPu2Gu9tIaRgFmYFFKrmg3SyAjSrElf0TiJ1v8fYA==}
- engines: {node: '>=12'}
+ '@esbuild/win32-ia32@0.25.0':
+ resolution: {integrity: sha512-eSNxISBu8XweVEWG31/JzjkIGbGIJN/TrRoiSVZwZ6pkC6VX4Im/WV2cz559/TXLcYbcrDN8JtKgd9DJVIo8GA==}
+ engines: {node: '>=18'}
cpu: [ia32]
os: [win32]
@@ -1513,9 +1570,9 @@ packages:
cpu: [x64]
os: [win32]
- '@esbuild/win32-x64@0.21.5':
- resolution: {integrity: sha512-tQd/1efJuzPC6rCFwEvLtci/xNFcTZknmXs98FYDfGE4wP9ClFV98nyKrzJKVPMhdDnjzLhdUyMX4PsQAPjwIw==}
- engines: {node: '>=12'}
+ '@esbuild/win32-x64@0.25.0':
+ resolution: {integrity: sha512-ZENoHJBxA20C2zFzh6AI4fT6RraMzjYw4xKWemRTRmRVtN9c5DcH9r/f2ihEkMjOW5eGgrwCslG/+Y/3bL+DHQ==}
+ engines: {node: '>=18'}
cpu: [x64]
os: [win32]
@@ -1545,10 +1602,19 @@ packages:
engines: {node: '>=14'}
hasBin: true
+ '@ethereumjs/rlp@5.0.2':
+ resolution: {integrity: sha512-DziebCdg4JpGlEqEdGgXmjqcFoJi+JGulUXwEjsZGAscAQ7MyD/7LE/GVCP29vEQxKc7AAwjT3A2ywHp2xfoCA==}
+ engines: {node: '>=18'}
+ hasBin: true
+
'@ethereumjs/tx@4.2.0':
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'}
@@ -1647,6 +1713,62 @@ packages:
resolution: {integrity: sha512-vBZP4NlzfOlerQTnba4aqZoMhE/a9HY7HRqoOPaETQcSQuWEIyZMHGfVu6w9wGtGK5fED5qRs2DteVCjOH60sA==}
engines: {node: '>=14'}
+ '@getpara/core-components@1.5.0':
+ resolution: {integrity: sha512-VEqa8Wt/jaDNtlbUmy2yZVw0qAX0EsKN0ZD7QnhAlyQx4bo27SW2LHMKmB3ewNB67jg7bLxMRadaZ2elR+arSA==}
+
+ '@getpara/core-sdk@1.5.0':
+ resolution: {integrity: sha512-yNLohWkNEUloph+XpcMQPRG2Wa9U2D/HS7DM1Toxi6yB8FcGq6v72ZQd1mDA0Vvy2TUmDBvyqOh+Lxd546m8vw==}
+
+ '@getpara/rainbowkit-wallet@1.2.0-dev.4':
+ resolution: {integrity: sha512-Ac+Pz4yJOQxyj4//yfLIxt6/7AkSwwNdqD/ANG9u5NjTqeUWuc62eRhmr9i04u9gLVfudMG11CEu5F2PNAMeIQ==}
+ peerDependencies:
+ '@getpara/rainbowkit': 1.x
+ viem: 2.x
+ wagmi: 2.x
+
+ '@getpara/rainbowkit@1.2.0-dev.4':
+ resolution: {integrity: sha512-vwRuBVmeXu5p7cZtalrnRIMLbt9SG4RRQ92AHSm06HAry3SaVFF7RenPsISVI4GZig0Bp8tlQ1W7Bf2pey/Ttw==}
+ engines: {node: '>=12.4'}
+ peerDependencies:
+ react: ^18.2.0
+ react-dom: ^18.2.0
+ viem: 2.x
+ wagmi: 2.x
+
+ '@getpara/react-common@1.5.0':
+ resolution: {integrity: sha512-Rg8KgRinWutCQjlQQYXkIVxjVAZ8sAfzoAJWTYaR03EO2+ZXACsPGTyBdsFDHKJD/KaHNIOYfDdxyVlN1Bh/Sw==}
+ peerDependencies:
+ react: ^18.2.0
+ react-dom: ^18.2.0
+
+ '@getpara/react-components@1.5.0':
+ resolution: {integrity: sha512-q1aUQh6CjvkiPxJF2N1cendXXgod5mtiXoWEx3SZ3V7z2jAhCZP4cGno0FaZF/SfnrpdvaLLhkgYdiFkFMsHgA==}
+
+ '@getpara/react-sdk@1.5.0':
+ resolution: {integrity: sha512-7YtkH0zvgoB5E6icYdJrBj9u6Zm+RvntsV0CokS5G3oxpG5Cukqy24G6OZjKL202TSfPIL+LclDUkdhQ89sdyg==}
+ peerDependencies:
+ react: ^18.2.0
+ react-dom: ^18.2.0
+
+ '@getpara/user-management-client@1.5.0':
+ resolution: {integrity: sha512-7RwtOtVBg31wNH36NvxgCR1tnVlCA5VG7G1pw49iY0G/UcquklhML5RKlD29n3+OCiIFTuwtB/dSF5D/2VMddQ==}
+
+ '@getpara/viem-v2-integration@1.5.0':
+ resolution: {integrity: sha512-+85HwQO60bv0pd90orADx92wMWKsHf5/mnkjfXuGVWj396fTRMfujqudCCdohMUixIxhXKrfr83SL8ZtvJstow==}
+ peerDependencies:
+ viem: 2.x
+
+ '@getpara/wagmi-v2-integration@1.5.0':
+ resolution: {integrity: sha512-MCcV6r0IAC7g+jNZN3a1uBsgP0B0NpjCWcmi21CAOo18ps2l1rbYNqghN75w3SEI2TiRvE9e7YWynchKaMjSQQ==}
+ peerDependencies:
+ react: ^18.2.0
+ react-dom: ^18.2.0
+ viem: 2.x
+ wagmi: 2.x
+
+ '@getpara/web-sdk@1.5.0':
+ resolution: {integrity: sha512-8/QNaHiCxQ+ZxLHVP7DjgZk/6fUUtAnNHR1NeWGoF2W/25ty9QUw3QYmm23ULvshqgN/EoIhGQQUFRVOhiRa5g==}
+
'@graphql-typed-document-node/core@3.2.0':
resolution: {integrity: sha512-mB9oAsNCm9aM3/SOv4YtBMqZbYj10R7dkq8byBqxGY/ncFwhf2oQzMV+LCRlWoDSEBJ3COiR1yeDvMtsoOsuFQ==}
peerDependencies:
@@ -1680,25 +1802,141 @@ packages:
'@vue/compiler-sfc':
optional: true
- '@inquirer/confirm@5.1.3':
- resolution: {integrity: sha512-fuF9laMmHoOgWapF9h9hv6opA5WvmGFHsTYGCmuFxcghIhEhb3dN0CdQR4BUMqa2H506NCj8cGX4jwMsE4t6dA==}
+ '@img/sharp-darwin-arm64@0.33.5':
+ resolution: {integrity: sha512-UT4p+iz/2H4twwAoLCqfA9UH5pI6DggwKEGuaPy7nCVQ8ZsiY5PIcrRvD1DzuY3qYL07NtIQcWnBSY/heikIFQ==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@img/sharp-darwin-x64@0.33.5':
+ resolution: {integrity: sha512-fyHac4jIc1ANYGRDxtiqelIbdWkIuQaI84Mv45KvGRRxSAa7o7d1ZKAOBaYbnepLC1WqxfpimdeWfvqqSGwR2Q==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [x64]
+ os: [darwin]
+
+ '@img/sharp-libvips-darwin-arm64@1.0.4':
+ resolution: {integrity: sha512-XblONe153h0O2zuFfTAbQYAX2JhYmDHeWikp1LM9Hul9gVPjFY427k6dFEcOL72O01QxQsWi761svJ/ev9xEDg==}
+ cpu: [arm64]
+ os: [darwin]
+
+ '@img/sharp-libvips-darwin-x64@1.0.4':
+ resolution: {integrity: sha512-xnGR8YuZYfJGmWPvmlunFaWJsb9T/AO2ykoP3Fz/0X5XV2aoYBPkX6xqCQvUTKKiLddarLaxpzNe+b1hjeWHAQ==}
+ cpu: [x64]
+ os: [darwin]
+
+ '@img/sharp-libvips-linux-arm64@1.0.4':
+ resolution: {integrity: sha512-9B+taZ8DlyyqzZQnoeIvDVR/2F4EbMepXMc/NdVbkzsJbzkUjhXv/70GQJ7tdLA4YJgNP25zukcxpX2/SueNrA==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@img/sharp-libvips-linux-arm@1.0.5':
+ resolution: {integrity: sha512-gvcC4ACAOPRNATg/ov8/MnbxFDJqf/pDePbBnuBDcjsI8PssmjoKMAz4LtLaVi+OnSb5FK/yIOamqDwGmXW32g==}
+ cpu: [arm]
+ os: [linux]
+
+ '@img/sharp-libvips-linux-s390x@1.0.4':
+ resolution: {integrity: sha512-u7Wz6ntiSSgGSGcjZ55im6uvTrOxSIS8/dgoVMoiGE9I6JAfU50yH5BoDlYA1tcuGS7g/QNtetJnxA6QEsCVTA==}
+ cpu: [s390x]
+ os: [linux]
+
+ '@img/sharp-libvips-linux-x64@1.0.4':
+ resolution: {integrity: sha512-MmWmQ3iPFZr0Iev+BAgVMb3ZyC4KeFc3jFxnNbEPas60e1cIfevbtuyf9nDGIzOaW9PdnDciJm+wFFaTlj5xYw==}
+ cpu: [x64]
+ os: [linux]
+
+ '@img/sharp-libvips-linuxmusl-arm64@1.0.4':
+ resolution: {integrity: sha512-9Ti+BbTYDcsbp4wfYib8Ctm1ilkugkA/uscUn6UXK1ldpC1JjiXbLfFZtRlBhjPZ5o1NCLiDbg8fhUPKStHoTA==}
+ cpu: [arm64]
+ os: [linux]
+
+ '@img/sharp-libvips-linuxmusl-x64@1.0.4':
+ resolution: {integrity: sha512-viYN1KX9m+/hGkJtvYYp+CCLgnJXwiQB39damAO7WMdKWlIhmYTfHjwSbQeUK/20vY154mwezd9HflVFM1wVSw==}
+ cpu: [x64]
+ os: [linux]
+
+ '@img/sharp-linux-arm64@0.33.5':
+ resolution: {integrity: sha512-JMVv+AMRyGOHtO1RFBiJy/MBsgz0x4AWrT6QoEVVTyh1E39TrCUpTRI7mx9VksGX4awWASxqCYLCV4wBZHAYxA==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm64]
+ os: [linux]
+
+ '@img/sharp-linux-arm@0.33.5':
+ resolution: {integrity: sha512-JTS1eldqZbJxjvKaAkxhZmBqPRGmxgu+qFKSInv8moZ2AmT5Yib3EQ1c6gp493HvrvV8QgdOXdyaIBrhvFhBMQ==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm]
+ os: [linux]
+
+ '@img/sharp-linux-s390x@0.33.5':
+ resolution: {integrity: sha512-y/5PCd+mP4CA/sPDKl2961b+C9d+vPAveS33s6Z3zfASk2j5upL6fXVPZi7ztePZ5CuH+1kW8JtvxgbuXHRa4Q==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [s390x]
+ os: [linux]
+
+ '@img/sharp-linux-x64@0.33.5':
+ resolution: {integrity: sha512-opC+Ok5pRNAzuvq1AG0ar+1owsu842/Ab+4qvU879ippJBHvyY5n2mxF1izXqkPYlGuP/M556uh53jRLJmzTWA==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [x64]
+ os: [linux]
+
+ '@img/sharp-linuxmusl-arm64@0.33.5':
+ resolution: {integrity: sha512-XrHMZwGQGvJg2V/oRSUfSAfjfPxO+4DkiRh6p2AFjLQztWUuY/o8Mq0eMQVIY7HJ1CDQUJlxGGZRw1a5bqmd1g==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [arm64]
+ os: [linux]
+
+ '@img/sharp-linuxmusl-x64@0.33.5':
+ resolution: {integrity: sha512-WT+d/cgqKkkKySYmqoZ8y3pxx7lx9vVejxW/W4DOFMYVSkErR+w7mf2u8m/y4+xHe7yY9DAXQMWQhpnMuFfScw==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [x64]
+ os: [linux]
+
+ '@img/sharp-wasm32@0.33.5':
+ resolution: {integrity: sha512-ykUW4LVGaMcU9lu9thv85CbRMAwfeadCJHRsg2GmeRa/cJxsVY9Rbd57JcMxBkKHag5U/x7TSBpScF4U8ElVzg==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [wasm32]
+
+ '@img/sharp-win32-ia32@0.33.5':
+ resolution: {integrity: sha512-T36PblLaTwuVJ/zw/LaH0PdZkRz5rd3SmMHX8GSmR7vtNSP5Z6bQkExdSK7xGWyxLw4sUknBuugTelgw2faBbQ==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [ia32]
+ os: [win32]
+
+ '@img/sharp-win32-x64@0.33.5':
+ resolution: {integrity: sha512-MpY/o8/8kj+EcnxwvrP4aTJSWw/aZ7JIGR4aBeZkZw5B7/Jn+tY9/VNwtcoGmdT7GfggGIU4kygOMSbYnOrAbg==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+ cpu: [x64]
+ os: [win32]
+
+ '@inquirer/confirm@5.1.6':
+ resolution: {integrity: sha512-6ZXYK3M1XmaVBZX6FCfChgtponnL0R6I7k8Nu+kaoNkT828FVZTcca1MqmWQipaW2oNREQl5AaPCUOOCVNdRMw==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
- '@inquirer/core@10.1.4':
- resolution: {integrity: sha512-5y4/PUJVnRb4bwWY67KLdebWOhOc7xj5IP2J80oWXa64mVag24rwQ1VAdnj7/eDY/odhguW0zQ1Mp1pj6fO/2w==}
+ '@inquirer/core@10.1.7':
+ resolution: {integrity: sha512-AA9CQhlrt6ZgiSy6qoAigiA1izOa751ugX6ioSjqgJ+/Gd+tEN/TORk5sUYNjXuHWfW0r1n/a6ak4u/NqHHrtA==}
engines: {node: '>=18'}
+ peerDependencies:
+ '@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
- '@inquirer/figures@1.0.9':
- resolution: {integrity: sha512-BXvGj0ehzrngHTPTDqUoDT3NXL8U0RxUk2zJm2A66RhCEIWdtU1v6GuUqNAgArW4PQ9CinqIWyHdQgdwOj06zQ==}
+ '@inquirer/figures@1.0.10':
+ resolution: {integrity: sha512-Ey6176gZmeqZuY/W/nZiUyvmb1/qInjcpiZjXWi6nON+nxJpD1bxtSoBxNliGISae32n6OwbY+TSXPZ1CfS4bw==}
engines: {node: '>=18'}
- '@inquirer/type@3.0.2':
- resolution: {integrity: sha512-ZhQ4TvhwHZF+lGhQ2O/rsjo80XoZR5/5qhOY3t6FJuX5XBg5Be8YzYTvaUGJnc12AUGI2nr4QSUE4PhKSigx7g==}
+ '@inquirer/type@3.0.4':
+ resolution: {integrity: sha512-2MNFrDY8jkFYc9Il9DgLsHhMzuHnOYM1+CUYVWbzu9oT0hC7V7EcYvdCKeoll/Fcci04A+ERZ9wcc7cQ8lTkIA==}
engines: {node: '>=18'}
peerDependencies:
'@types/node': '>=18'
+ peerDependenciesMeta:
+ '@types/node':
+ optional: true
'@isaacs/cliui@8.0.2':
resolution: {integrity: sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==}
@@ -1854,6 +2092,11 @@ packages:
resolution: {integrity: sha512-w8CVbdkDrVXFJbfBSlDfafDR6BAkpDmv1bC1UJVCoVny5tW2RKAdn9i68Xf7asYT4TnUhl/hN4zfUiKQq9II4g==}
engines: {node: '>=16.0.0'}
+ '@moonpay/moonpay-react@1.8.10':
+ resolution: {integrity: sha512-N6IuLZNVExyjOCikHU/DuyN+9gkUsVc/usTAaTL5mXOwClfWH3UFJGJUt3CY/gloVZSPnhldbVfjisyoRd4J4A==}
+ peerDependencies:
+ react: ^18.2.0
+
'@motionone/animation@10.18.0':
resolution: {integrity: sha512-9z2p5GFGCm0gBsZbi8rVMOAJCtw1WqBTIPw3ozk06gDvZInBPIsQcHgYogEJ4yuHJ+akuW8g1SEIOpTOvYs8hw==}
@@ -1879,8 +2122,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.5':
- resolution: {integrity: sha512-AAwRb5vXFcY4L+FvZ7LZusDuZ0vEe0Zm8ohn1FM6/X7A3bj4mqmkAcGRWuvC2JwSygNwHAAmMnAI73vPHeqsHA==}
+ '@mswjs/interceptors@0.37.6':
+ resolution: {integrity: sha512-wK+5pLK5XFmgtH3aQ2YVvA3HohS3xqV/OxuVOdNx9Wpnz7VE/fnC+e1A7ln6LFYeck7gOJ/dsZV6OLplOtAJ2w==}
engines: {node: '>=18'}
'@multiformats/sha3@2.0.17':
@@ -1949,12 +2192,23 @@ packages:
cpu: [x64]
os: [win32]
+ '@noble/ciphers@1.1.3':
+ resolution: {integrity: sha512-Ygv6WnWJHLLiW4fnNDC1z+i13bud+enXOFRBlpxI+NJliPWx5wdR+oWlTjLuBPTqjUjtHXtjkU6w3kuuH6upZA==}
+ engines: {node: ^14.21.3 || >=16}
+
+ '@noble/curves@1.3.0':
+ resolution: {integrity: sha512-t01iSXPuN+Eqzb4eBX0S5oubSqXbK/xXa1Ne18Hj8f9pStxztHCE2gfboSp/dZRLSqfuLpRK2nDXDK+W9puocA==}
+
'@noble/curves@1.4.0':
resolution: {integrity: sha512-p+4cb332SFCrReJkCYe8Xzm0OWi4Jji5jVdIZRL/PmacmDkFNw6MrrV+gGpiPxLHbV+zKFRywUWbaseT+tZRXg==}
'@noble/curves@1.4.2':
resolution: {integrity: sha512-TavHr8qycMChk8UwMld0ZDRvatedkzWfH8IiaeGCfymOP5i0hSCozz9vHOL0nkwk7HRMlFnAiKpS2jrUmSybcw==}
+ '@noble/curves@1.8.0':
+ resolution: {integrity: sha512-j84kjAbzEnQHaSIhRPUmB3/eVXu2k3dKPl2LOrR8fSOIL+89U+7lV117EWHtq/GHM3ReGHM46iRBdZfpc4HRUQ==}
+ engines: {node: ^14.21.3 || >=16}
+
'@noble/curves@1.8.1':
resolution: {integrity: sha512-warwspo+UYUPep0Q+vtdVB4Ugn8GGQj8iyB3gnRWsztmUHTI3S1nhdiWNsPUGL0vud7JlRRk1XEu7Lq1KGTnMQ==}
engines: {node: ^14.21.3 || >=16}
@@ -1962,10 +2216,18 @@ packages:
'@noble/hashes@1.2.0':
resolution: {integrity: sha512-FZfhjEDbT5GRswV3C6uvLPHMiVD6lQBmpoX5+eSiPaMTXte/IKqI5dykDxzZB/WBeK/CDuQRBWarPdi3FNY2zQ==}
+ '@noble/hashes@1.3.3':
+ resolution: {integrity: sha512-V7/fPHgl+jsVPXqqeOzT8egNj2iBIVt+ECeMMG8TdcnTikP3oaBtUVqpT/gYCR68aEBJSF+XbYUxStjbFMqIIA==}
+ engines: {node: '>= 16'}
+
'@noble/hashes@1.4.0':
resolution: {integrity: sha512-V1JJ1WTRUqHHrOSh597hURcMqVKVGL/ea3kv0gSnEdsEZ0/+VyPghM1lMNGc00z7CIQorSvbKpuJkxvuHbvdbg==}
engines: {node: '>= 16'}
+ '@noble/hashes@1.7.0':
+ resolution: {integrity: sha512-HXydb0DgzTpDPwbVeDGCG1gIu7X6+AuU6Zl6av/E/KG8LMsvPntvq+w17CHRpKBmN6Ybdrt1eP3k4cj8DJa78w==}
+ engines: {node: ^14.21.3 || >=16}
+
'@noble/hashes@1.7.1':
resolution: {integrity: sha512-B8XBPsn4vT/KJAGqDzbwztd+6Yte3P4V7iafm24bxgDe/mlRuK6xmWPuCNrKt2vDafZ8MfJLlchDG/vYafQEjQ==}
engines: {node: ^14.21.3 || >=16}
@@ -2001,36 +2263,36 @@ packages:
resolution: {integrity: sha512-nn5ozdjYQpUCZlWGuxcJY/KpxkWQs4DcbMCmKojjyrYDEAGy4Ce19NN4v5MduafTwJlbKc99UA8YhSVqq9yPZA==}
engines: {node: '>=12.4.0'}
- '@nomicfoundation/edr-darwin-arm64@0.7.0':
- resolution: {integrity: sha512-vAH20oh4GaSB/iQFTRcoO8jLc0CLd9XuLY9I7vtcqZWAiM4U1J4Y8cu67PWmtxbvUQOqXR7S6FtAr8/AlWm14g==}
+ '@nomicfoundation/edr-darwin-arm64@0.8.0':
+ resolution: {integrity: sha512-sKTmOu/P5YYhxT0ThN2Pe3hmCE/5Ag6K/eYoiavjLWbR7HEb5ZwPu2rC3DpuUk1H+UKJqt7o4/xIgJxqw9wu6A==}
engines: {node: '>= 18'}
- '@nomicfoundation/edr-darwin-x64@0.7.0':
- resolution: {integrity: sha512-WHDdIrPvLlgXQr2eKypBM5xOZAwdxhDAEQIvEMQL8tEEm2qYW2bliUlssBPrs8E3bdivFbe1HizImslMAfU3+g==}
+ '@nomicfoundation/edr-darwin-x64@0.8.0':
+ resolution: {integrity: sha512-8ymEtWw1xf1Id1cc42XIeE+9wyo3Dpn9OD/X8GiaMz9R70Ebmj2g+FrbETu8o6UM+aL28sBZQCiCzjlft2yWAg==}
engines: {node: '>= 18'}
- '@nomicfoundation/edr-linux-arm64-gnu@0.7.0':
- resolution: {integrity: sha512-WXpJB54ukz1no7gxCPXVEw9pgl/9UZ/WO3l1ctyv/T7vOygjqA4SUd6kppTs6MNXAuTiisPtvJ/fmvHiMBLrsw==}
+ '@nomicfoundation/edr-linux-arm64-gnu@0.8.0':
+ resolution: {integrity: sha512-h/wWzS2EyQuycz+x/SjMRbyA+QMCCVmotRsgM1WycPARvVZWIVfwRRsKoXKdCftsb3S8NTprqBdJlOmsFyETFA==}
engines: {node: '>= 18'}
- '@nomicfoundation/edr-linux-arm64-musl@0.7.0':
- resolution: {integrity: sha512-1iZYOcEgc+zJI7JQrlAFziuy9sBz1WgnIx3HIIu0J7lBRZ/AXeHHgATb+4InqxtEx9O3W8A0s7f11SyFqJL4Aw==}
+ '@nomicfoundation/edr-linux-arm64-musl@0.8.0':
+ resolution: {integrity: sha512-gnWxDgdkka0O9GpPX/gZT3REeKYV28Guyg13+Vj/bbLpmK1HmGh6Kx+fMhWv+Ht/wEmGDBGMCW1wdyT/CftJaQ==}
engines: {node: '>= 18'}
- '@nomicfoundation/edr-linux-x64-gnu@0.7.0':
- resolution: {integrity: sha512-wSjC94WcR5MM8sg9w3OsAmT6+bbmChJw6uJKoXR3qscps/jdhjzJWzfgT0XGRq3XMUfimyafW2RWOyfX3ouhrQ==}
+ '@nomicfoundation/edr-linux-x64-gnu@0.8.0':
+ resolution: {integrity: sha512-DTMiAkgAx+nyxcxKyxFZk1HPakXXUCgrmei7r5G7kngiggiGp/AUuBBWFHi8xvl2y04GYhro5Wp+KprnLVoAPA==}
engines: {node: '>= 18'}
- '@nomicfoundation/edr-linux-x64-musl@0.7.0':
- resolution: {integrity: sha512-Us22+AZ7wkG1mZwxqE4S4ZcuwkEA5VrUiBOJSvKHGOgy6vFvB/Euh5Lkp4GovwjrtiXuvyGO2UmtkzymZKDxZw==}
+ '@nomicfoundation/edr-linux-x64-musl@0.8.0':
+ resolution: {integrity: sha512-iTITWe0Zj8cNqS0xTblmxPbHVWwEtMiDC+Yxwr64d7QBn/1W0ilFQ16J8gB6RVVFU3GpfNyoeg3tUoMpSnrm6Q==}
engines: {node: '>= 18'}
- '@nomicfoundation/edr-win32-x64-msvc@0.7.0':
- resolution: {integrity: sha512-HAry0heTsWkzReVtjHwoIq3BgFCvXpVhJ5qPmTnegZGsr/KxqvMmHyDMifzKao4bycU8yrpTSyOiAJt27RWjzQ==}
+ '@nomicfoundation/edr-win32-x64-msvc@0.8.0':
+ resolution: {integrity: sha512-mNRDyd/C3j7RMcwapifzv2K57sfA5xOw8g2U84ZDvgSrXVXLC99ZPxn9kmolb+dz8VMm9FONTZz9ESS6v8DTnA==}
engines: {node: '>= 18'}
- '@nomicfoundation/edr@0.7.0':
- resolution: {integrity: sha512-+Zyu7TE47TGNcPhOfWLPA/zISs32WDMXrhSWdWYyPHDVn/Uux5TVuOeScKb0BR/R8EJ+leR8COUF/EGxvDOVKg==}
+ '@nomicfoundation/edr@0.8.0':
+ resolution: {integrity: sha512-dwWRrghSVBQDpt0wP+6RXD8BMz2i/9TI34TcmZqeEAZuCLei3U9KZRgGTKVAM1rMRvrpf5ROfPqrWNetKVUTag==}
engines: {node: '>= 18'}
'@nomicfoundation/ethereumjs-common@4.0.4':
@@ -2078,8 +2340,8 @@ packages:
typescript: ^5.0.4
viem: ^2.7.6
- '@nomicfoundation/hardhat-verify@2.0.12':
- resolution: {integrity: sha512-Lg3Nu7DCXASQRVI/YysjuAX2z8jwOCbS0w5tz2HalWGSTZThqA0v9N0v0psHbKNqzPJa8bNOeapIVSziyJTnAg==}
+ '@nomicfoundation/hardhat-verify@2.0.13':
+ resolution: {integrity: sha512-i57GX1sC0kYGyRVnbQrjjyBTpWTKgrvKC+jH8CMKV6gHp959Upb8lKaZ58WRHIU0espkulTxLnacYeUDirwJ2g==}
peerDependencies:
hardhat: ^2.0.4
@@ -2148,23 +2410,17 @@ packages:
resolution: {integrity: sha512-cq8o4cWH0ibXh9VGi5P20Tu9XF/0fFXl9EUinr9QfTM7a7p0oTA4iJRCQWppXR1Pg8dSM0UCItCkPwsk9qWWYA==}
engines: {node: ^12.20.0 || ^14.18.0 || >=16.0.0}
- '@playwright/test@1.49.1':
- resolution: {integrity: sha512-Ky+BVzPz8pL6PQxHqNRW1k3mIyv933LML7HktS8uik0bUXNCdPhoS/kLihiO1tMf/egaJb4IutXd7UywvXEW+g==}
+ '@playwright/test@1.50.1':
+ resolution: {integrity: sha512-Jii3aBg+CEDpgnuDxEp/h7BimHcUTDlpEtce89xEumlJ5ef2hqepZ+PWp1DDpYC/VO9fmWVI1IlEaoI5fK9FXQ==}
engines: {node: '>=18'}
hasBin: true
'@polka/url@1.0.0-next.28':
resolution: {integrity: sha512-8LduaNlMZGwdZ6qWrKlfa+2M4gahzFkprZiAt2TF8uS0qQgBizKXpXURqvTJ4WtmupWxaLqjRb2UCTe72mu+Aw==}
- '@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'}
'@rollup/plugin-commonjs@24.0.0':
resolution: {integrity: sha512-0w0wyykzdyRRPHOb0cQt14mIBLujfAv6GgP6g8nvg/iBxEm112t3YPPq+Buqe2+imvElTka+bjNlJ/gB56TD8g==}
@@ -2184,98 +2440,98 @@ packages:
rollup:
optional: true
- '@rollup/rollup-android-arm-eabi@4.31.0':
- resolution: {integrity: sha512-9NrR4033uCbUBRgvLcBrJofa2KY9DzxL2UKZ1/4xA/mnTNyhZCWBuD8X3tPm1n4KxcgaraOYgrFKSgwjASfmlA==}
+ '@rollup/rollup-android-arm-eabi@4.34.8':
+ resolution: {integrity: sha512-q217OSE8DTp8AFHuNHXo0Y86e1wtlfVrXiAlwkIvGRQv9zbc6mE3sjIVfwI8sYUyNxwOg0j/Vm1RKM04JcWLJw==}
cpu: [arm]
os: [android]
- '@rollup/rollup-android-arm64@4.31.0':
- resolution: {integrity: sha512-iBbODqT86YBFHajxxF8ebj2hwKm1k8PTBQSojSt3d1FFt1gN+xf4CowE47iN0vOSdnd+5ierMHBbu/rHc7nq5g==}
+ '@rollup/rollup-android-arm64@4.34.8':
+ resolution: {integrity: sha512-Gigjz7mNWaOL9wCggvoK3jEIUUbGul656opstjaUSGC3eT0BM7PofdAJaBfPFWWkXNVAXbaQtC99OCg4sJv70Q==}
cpu: [arm64]
os: [android]
- '@rollup/rollup-darwin-arm64@4.31.0':
- resolution: {integrity: sha512-WHIZfXgVBX30SWuTMhlHPXTyN20AXrLH4TEeH/D0Bolvx9PjgZnn4H677PlSGvU6MKNsjCQJYczkpvBbrBnG6g==}
+ '@rollup/rollup-darwin-arm64@4.34.8':
+ resolution: {integrity: sha512-02rVdZ5tgdUNRxIUrFdcMBZQoaPMrxtwSb+/hOfBdqkatYHR3lZ2A2EGyHq2sGOd0Owk80oV3snlDASC24He3Q==}
cpu: [arm64]
os: [darwin]
- '@rollup/rollup-darwin-x64@4.31.0':
- resolution: {integrity: sha512-hrWL7uQacTEF8gdrQAqcDy9xllQ0w0zuL1wk1HV8wKGSGbKPVjVUv/DEwT2+Asabf8Dh/As+IvfdU+H8hhzrQQ==}
+ '@rollup/rollup-darwin-x64@4.34.8':
+ resolution: {integrity: sha512-qIP/elwR/tq/dYRx3lgwK31jkZvMiD6qUtOycLhTzCvrjbZ3LjQnEM9rNhSGpbLXVJYQ3rq39A6Re0h9tU2ynw==}
cpu: [x64]
os: [darwin]
- '@rollup/rollup-freebsd-arm64@4.31.0':
- resolution: {integrity: sha512-S2oCsZ4hJviG1QjPY1h6sVJLBI6ekBeAEssYKad1soRFv3SocsQCzX6cwnk6fID6UQQACTjeIMB+hyYrFacRew==}
+ '@rollup/rollup-freebsd-arm64@4.34.8':
+ resolution: {integrity: sha512-IQNVXL9iY6NniYbTaOKdrlVP3XIqazBgJOVkddzJlqnCpRi/yAeSOa8PLcECFSQochzqApIOE1GHNu3pCz+BDA==}
cpu: [arm64]
os: [freebsd]
- '@rollup/rollup-freebsd-x64@4.31.0':
- resolution: {integrity: sha512-pCANqpynRS4Jirn4IKZH4tnm2+2CqCNLKD7gAdEjzdLGbH1iO0zouHz4mxqg0uEMpO030ejJ0aA6e1PJo2xrPA==}
+ '@rollup/rollup-freebsd-x64@4.34.8':
+ resolution: {integrity: sha512-TYXcHghgnCqYFiE3FT5QwXtOZqDj5GmaFNTNt3jNC+vh22dc/ukG2cG+pi75QO4kACohZzidsq7yKTKwq/Jq7Q==}
cpu: [x64]
os: [freebsd]
- '@rollup/rollup-linux-arm-gnueabihf@4.31.0':
- resolution: {integrity: sha512-0O8ViX+QcBd3ZmGlcFTnYXZKGbFu09EhgD27tgTdGnkcYXLat4KIsBBQeKLR2xZDCXdIBAlWLkiXE1+rJpCxFw==}
+ '@rollup/rollup-linux-arm-gnueabihf@4.34.8':
+ resolution: {integrity: sha512-A4iphFGNkWRd+5m3VIGuqHnG3MVnqKe7Al57u9mwgbyZ2/xF9Jio72MaY7xxh+Y87VAHmGQr73qoKL9HPbXj1g==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm-musleabihf@4.31.0':
- resolution: {integrity: sha512-w5IzG0wTVv7B0/SwDnMYmbr2uERQp999q8FMkKG1I+j8hpPX2BYFjWe69xbhbP6J9h2gId/7ogesl9hwblFwwg==}
+ '@rollup/rollup-linux-arm-musleabihf@4.34.8':
+ resolution: {integrity: sha512-S0lqKLfTm5u+QTxlFiAnb2J/2dgQqRy/XvziPtDd1rKZFXHTyYLoVL58M/XFwDI01AQCDIevGLbQrMAtdyanpA==}
cpu: [arm]
os: [linux]
- '@rollup/rollup-linux-arm64-gnu@4.31.0':
- resolution: {integrity: sha512-JyFFshbN5xwy6fulZ8B/8qOqENRmDdEkcIMF0Zz+RsfamEW+Zabl5jAb0IozP/8UKnJ7g2FtZZPEUIAlUSX8cA==}
+ '@rollup/rollup-linux-arm64-gnu@4.34.8':
+ resolution: {integrity: sha512-jpz9YOuPiSkL4G4pqKrus0pn9aYwpImGkosRKwNi+sJSkz+WU3anZe6hi73StLOQdfXYXC7hUfsQlTnjMd3s1A==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-arm64-musl@4.31.0':
- resolution: {integrity: sha512-kpQXQ0UPFeMPmPYksiBL9WS/BDiQEjRGMfklVIsA0Sng347H8W2iexch+IEwaR7OVSKtr2ZFxggt11zVIlZ25g==}
+ '@rollup/rollup-linux-arm64-musl@4.34.8':
+ resolution: {integrity: sha512-KdSfaROOUJXgTVxJNAZ3KwkRc5nggDk+06P6lgi1HLv1hskgvxHUKZ4xtwHkVYJ1Rep4GNo+uEfycCRRxht7+Q==}
cpu: [arm64]
os: [linux]
- '@rollup/rollup-linux-loongarch64-gnu@4.31.0':
- resolution: {integrity: sha512-pMlxLjt60iQTzt9iBb3jZphFIl55a70wexvo8p+vVFK+7ifTRookdoXX3bOsRdmfD+OKnMozKO6XM4zR0sHRrQ==}
+ '@rollup/rollup-linux-loongarch64-gnu@4.34.8':
+ resolution: {integrity: sha512-NyF4gcxwkMFRjgXBM6g2lkT58OWztZvw5KkV2K0qqSnUEqCVcqdh2jN4gQrTn/YUpAcNKyFHfoOZEer9nwo6uQ==}
cpu: [loong64]
os: [linux]
- '@rollup/rollup-linux-powerpc64le-gnu@4.31.0':
- resolution: {integrity: sha512-D7TXT7I/uKEuWiRkEFbed1UUYZwcJDU4vZQdPTcepK7ecPhzKOYk4Er2YR4uHKme4qDeIh6N3XrLfpuM7vzRWQ==}
+ '@rollup/rollup-linux-powerpc64le-gnu@4.34.8':
+ resolution: {integrity: sha512-LMJc999GkhGvktHU85zNTDImZVUCJ1z/MbAJTnviiWmmjyckP5aQsHtcujMjpNdMZPT2rQEDBlJfubhs3jsMfw==}
cpu: [ppc64]
os: [linux]
- '@rollup/rollup-linux-riscv64-gnu@4.31.0':
- resolution: {integrity: sha512-wal2Tc8O5lMBtoePLBYRKj2CImUCJ4UNGJlLwspx7QApYny7K1cUYlzQ/4IGQBLmm+y0RS7dwc3TDO/pmcneTw==}
+ '@rollup/rollup-linux-riscv64-gnu@4.34.8':
+ resolution: {integrity: sha512-xAQCAHPj8nJq1PI3z8CIZzXuXCstquz7cIOL73HHdXiRcKk8Ywwqtx2wrIy23EcTn4aZ2fLJNBB8d0tQENPCmw==}
cpu: [riscv64]
os: [linux]
- '@rollup/rollup-linux-s390x-gnu@4.31.0':
- resolution: {integrity: sha512-O1o5EUI0+RRMkK9wiTVpk2tyzXdXefHtRTIjBbmFREmNMy7pFeYXCFGbhKFwISA3UOExlo5GGUuuj3oMKdK6JQ==}
+ '@rollup/rollup-linux-s390x-gnu@4.34.8':
+ resolution: {integrity: sha512-DdePVk1NDEuc3fOe3dPPTb+rjMtuFw89gw6gVWxQFAuEqqSdDKnrwzZHrUYdac7A7dXl9Q2Vflxpme15gUWQFA==}
cpu: [s390x]
os: [linux]
- '@rollup/rollup-linux-x64-gnu@4.31.0':
- resolution: {integrity: sha512-zSoHl356vKnNxwOWnLd60ixHNPRBglxpv2g7q0Cd3Pmr561gf0HiAcUBRL3S1vPqRC17Zo2CX/9cPkqTIiai1g==}
+ '@rollup/rollup-linux-x64-gnu@4.34.8':
+ resolution: {integrity: sha512-8y7ED8gjxITUltTUEJLQdgpbPh1sUQ0kMTmufRF/Ns5tI9TNMNlhWtmPKKHCU0SilX+3MJkZ0zERYYGIVBYHIA==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-linux-x64-musl@4.31.0':
- resolution: {integrity: sha512-ypB/HMtcSGhKUQNiFwqgdclWNRrAYDH8iMYH4etw/ZlGwiTVxBz2tDrGRrPlfZu6QjXwtd+C3Zib5pFqID97ZA==}
+ '@rollup/rollup-linux-x64-musl@4.34.8':
+ resolution: {integrity: sha512-SCXcP0ZpGFIe7Ge+McxY5zKxiEI5ra+GT3QRxL0pMMtxPfpyLAKleZODi1zdRHkz5/BhueUrYtYVgubqe9JBNQ==}
cpu: [x64]
os: [linux]
- '@rollup/rollup-win32-arm64-msvc@4.31.0':
- resolution: {integrity: sha512-JuhN2xdI/m8Hr+aVO3vspO7OQfUFO6bKLIRTAy0U15vmWjnZDLrEgCZ2s6+scAYaQVpYSh9tZtRijApw9IXyMw==}
+ '@rollup/rollup-win32-arm64-msvc@4.34.8':
+ resolution: {integrity: sha512-YHYsgzZgFJzTRbth4h7Or0m5O74Yda+hLin0irAIobkLQFRQd1qWmnoVfwmKm9TXIZVAD0nZ+GEb2ICicLyCnQ==}
cpu: [arm64]
os: [win32]
- '@rollup/rollup-win32-ia32-msvc@4.31.0':
- resolution: {integrity: sha512-U1xZZXYkvdf5MIWmftU8wrM5PPXzyaY1nGCI4KI4BFfoZxHamsIe+BtnPLIvvPykvQWlVbqUXdLa4aJUuilwLQ==}
+ '@rollup/rollup-win32-ia32-msvc@4.34.8':
+ resolution: {integrity: sha512-r3NRQrXkHr4uWy5TOjTpTYojR9XmF0j/RYgKCef+Ag46FWUTltm5ziticv8LdNsDMehjJ543x/+TJAek/xBA2w==}
cpu: [ia32]
os: [win32]
- '@rollup/rollup-win32-x64-msvc@4.31.0':
- resolution: {integrity: sha512-ul8rnCsUumNln5YWwz0ted2ZHFhzhRRnkpBZ+YRuHoRAlUji9KChpOUOndY7uykrPEPXVbHLlsdo6v5yXo/TXw==}
+ '@rollup/rollup-win32-x64-msvc@4.34.8':
+ resolution: {integrity: sha512-U0FaE5O1BCpZSeE6gBl3c5ObhePQSfk9vDRToMmTkbhCOgW4jqvtS5LGyQ76L1fH8sM0keRp4uDTsbjiUyjk0g==}
cpu: [x64]
os: [win32]
@@ -2291,8 +2547,8 @@ packages:
'@safe-global/safe-apps-sdk@9.1.0':
resolution: {integrity: sha512-N5p/ulfnnA2Pi2M3YeWjULeWbjo7ei22JwU/IXnhoHzKq3pYCN6ynL9mJBOlvDVv892EgLPCWCOwQk/uBT2v0Q==}
- '@safe-global/safe-gateway-typescript-sdk@3.22.7':
- resolution: {integrity: sha512-r1OML6y1oBL6E5ZADg9smzvVzOOgsTLfRXYuT/7fW1Eqg2nJKcALoLLfH6sJAcHvobHUZXcjxKPINDwNJq0N9g==}
+ '@safe-global/safe-gateway-typescript-sdk@3.22.9':
+ resolution: {integrity: sha512-7ojVK/crhOaGowEO8uYWaopZzcr5rR76emgllGIfjCLR70aY4PbASpi9Pbs+7jIRzPDBBkM0RBo+zYx5UduX8Q==}
engines: {node: '>=16'}
'@scure/base@1.1.9':
@@ -2313,10 +2569,30 @@ packages:
'@scure/bip39@1.3.0':
resolution: {integrity: sha512-disdg7gHuTDZtY+ZdkmLpPCk7fxZSu3gBiEGuoC1XYxv9cGx3Z6cpTggCgW6odSOOIXCiDjuGejW+aJKCY/pIQ==}
+ '@sentry-internal/browser-utils@9.2.0':
+ resolution: {integrity: sha512-KulBtFSibPXN3sFtbikdskOokPpkEYf+VSexd0Emklo8iu/RcL4in+drsA2Z+dk+yDGEi7+TWBB7zghopuTa+g==}
+ engines: {node: '>=18'}
+
+ '@sentry-internal/feedback@9.2.0':
+ resolution: {integrity: sha512-3rl2uBoXkz2N+OVzMkOQVK2MakC+U0lPh4FqBVOcAYiqovGnzobgpvdP5Um+lM/00oCtkJ1+8KjbW1ZnV1/cKQ==}
+ engines: {node: '>=18'}
+
+ '@sentry-internal/replay-canvas@9.2.0':
+ resolution: {integrity: sha512-+q5dmEzMXs8/Fcl74mf8D8t3/W1pYPVse6jt0dNzo5o1z/LWgWY0LlImmlPU1QBIlUzB6VZkgfaKen8wZdcOVA==}
+ engines: {node: '>=18'}
+
+ '@sentry-internal/replay@9.2.0':
+ resolution: {integrity: sha512-/7YS9BNPOSuuguT2/yS103vXmAKe13j+B0lreRgWPxUnfSsCQvmJ4UNuat61qJNl1MbJDCurG5eN94QwRqg6kA==}
+ engines: {node: '>=18'}
+
'@sentry/browser@7.43.0':
resolution: {integrity: sha512-NlRkBYKb9o5IQdGY8Ktps19Hz9RdSuqS1tlLC7Sjr+MqZqSHmhKq8MWJKciRynxBeMbeGt0smExi9BqpVQdCEg==}
engines: {node: '>=8'}
+ '@sentry/browser@9.2.0':
+ resolution: {integrity: sha512-U4JpFq3eYrXmuTSzG+rUgNr37FSok0nJlcygVqrTesh8+wV48D8maEbiKJ0txjaJ2h1E5rK09zutSPSS3Bp4uA==}
+ engines: {node: '>=18'}
+
'@sentry/cli@1.77.3':
resolution: {integrity: sha512-c3eDqcDRmy4TFz2bFU5Y6QatlpoBPPa8cxBooaS4aMQpnIdLYPF1xhyyiW0LQlDUNc3rRjNF7oN5qKoaRoMTQQ==}
engines: {node: '>= 8'}
@@ -2330,6 +2606,10 @@ packages:
resolution: {integrity: sha512-zvMZgEi7ptLBwDnd+xR/u4zdSe5UzS4S3ZhoemdQrn1PxsaVySD/ptyzLoGSZEABqlRxGHnQrZ78MU1hUDvKuQ==}
engines: {node: '>=8'}
+ '@sentry/core@9.2.0':
+ resolution: {integrity: sha512-REnEuneWyv3DkZfr0ZCQOZRCkBxUuWMY7aJ7BwWU9t3CFRUIPO0ePiXb2eZJEkDtalJK+m9pSTDUbChtrzQmLA==}
+ engines: {node: '>=18'}
+
'@sentry/hub@5.30.0':
resolution: {integrity: sha512-2tYrGnzb1gKz2EkMDQcfLrDTvmGcQPuWxLnJKXJvYTQDGLlEvi2tWz1VIHjunmOvJrB5aIQLhm+dcMRwFZDCqQ==}
engines: {node: '>=6'}
@@ -2511,8 +2791,8 @@ packages:
resolution: {integrity: sha512-xknlSx99HYF6t4cRLVMg9iW1eR8kKG92m/Yz7Bo9pntIpvLlKs3Rm+eCwEzTjp+NZacGTxG0T2IP/vGwGD2d8Q==}
engines: {node: '>=18.20.4'}
- '@socketregistry/indent-string@1.0.9':
- resolution: {integrity: sha512-75PAGR3ixLvK1uuyfmVoAUbzhnmFLxRXoWZA17pTejW8dB/73cuOr6tkrhZUvvW2jRTKSUeNssxH7zT+OvAc4Q==}
+ '@socketregistry/indent-string@1.0.10':
+ resolution: {integrity: sha512-t3E86MlonYNppxaRlJmJjnY4CpIKKf9YNvC//q6cYyA6wDTgvGe/y1Bsj1zRDiurQG5uSclCkwEkLUKaoK+0PQ==}
engines: {node: '>=18.20.4'}
'@socketregistry/internal-slot@1.0.5':
@@ -2527,8 +2807,8 @@ packages:
resolution: {integrity: sha512-qAlAJYlInVS26BHdi/e9laPdRepu55HBLwyfxiHcE52xhH7xXoll4dmxsVJPTIke5EzjeYL1ID3hqlc8YM8V7w==}
engines: {node: '>=18.20.4'}
- '@socketregistry/is-core-module@1.0.6':
- resolution: {integrity: sha512-FtwZj5lnDAICZxED7RpNtEwG+bNgRAWVtRSUjVlr9S8LypbHJY6ZpRHVp7R3udY96xncFVtuG4z2Ac4ozU31tA==}
+ '@socketregistry/is-core-module@1.0.7':
+ resolution: {integrity: sha512-aQ0Egq4PesHYPv+GI78RiDKdHvgkjOZGsOopWSQNaR9C4fZuH80YryEv9zJoX+9UmcNLYUACFjDwt71Ena7r8A==}
engines: {node: '>=18.20.4'}
'@socketregistry/is-date-object@1.0.6':
@@ -2575,6 +2855,10 @@ packages:
resolution: {integrity: sha512-VFUMXtgcqb+A05izEwgTepGsf0rm9UMPTa2KyF5xPiaSuj6nhpZ8+aFQKjJ3NsoZaIGzS2hJfxeVuLV/Zt4eag==}
engines: {node: '>=18.20.4'}
+ '@socketregistry/object-is@1.0.5':
+ resolution: {integrity: sha512-1wbyo9IBBptFo2TaPgSCDIgqs77zkvCeR+ymUWYEq3O2eB+WdPXOFCcqBKl2fEKbfXNJG4xj4PNd41OF9yu5Fg==}
+ engines: {node: '>=18.20.4'}
+
'@socketregistry/object-keys@1.0.5':
resolution: {integrity: sha512-WnFTS0sWPWutYLuMENJTKBYYX6LYTDfG48V3KdXzNZvwKhl5i3abKKpw3M8NowgrUwfuPSXxwHUZSWEwrxqtbw==}
engines: {node: '>=18.20.4'}
@@ -2615,20 +2899,20 @@ packages:
resolution: {integrity: sha512-cGbuGDw5S3sHnFC5jDQVOoayEqyPT68wTICM6flA/y7woSkjw+ReJ985s57tOZy0isz6HiOOAtX7oveg0gJJWw==}
engines: {node: '>=18.20.4'}
- '@socketregistry/safe-buffer@1.0.5':
- resolution: {integrity: sha512-wOsct2TbdGKvXHRJGKgwWLvs4HqVCVJ/8/saHxjnbR/6uIdb/XYGJcwb+P61SRrW5695bAsIrYFJZbyhTsqLLQ==}
+ '@socketregistry/safe-buffer@1.0.6':
+ resolution: {integrity: sha512-1ZTYFb9BVgK2a/uYIR6la7dJOnC2ccvqbxNsvq91SCMAdMKJe9gnPHM8E36GoVgL7SUE90+cUbzPHAYzouz6UQ==}
engines: {node: '>=18.20.4'}
'@socketregistry/safe-regex-test@1.0.5':
resolution: {integrity: sha512-Kgl0XZQLtsEqEOI8SiKPkzwJ6/ZnQniWVtt4hlm+YregIdRz8glqqC152xbPJIKJHYrN5ybr8W3hZN7wgsdnIQ==}
engines: {node: '>=18.20.4'}
- '@socketregistry/safer-buffer@1.0.5':
- resolution: {integrity: sha512-x6W5FZJwngd3UqOA0TXucXuD/RdGm4NHvnDYC2topSlfyA2vtTff9lcXpuQqzi/TxxlHEfYc0toRA+VDQSdfxw==}
+ '@socketregistry/safer-buffer@1.0.7':
+ resolution: {integrity: sha512-1zmje9QQgkndL9iPD3cupQk0HqY9axZwSipTZ1NNPh+aED46oVxdzkUIMBu62YlB0M1gljIiW53/F7E1qNQL8A==}
engines: {node: '>=18.20.4'}
- '@socketregistry/set-function-length@1.0.5':
- resolution: {integrity: sha512-QtuipG5L+FLe7gbWBtQnbGAlIA9cjih6WYjrM2vVimSsV4esy/6VepqqYoddSTYka/iL0ynQpR3fRSMsGi9IJA==}
+ '@socketregistry/set-function-length@1.0.6':
+ resolution: {integrity: sha512-G0Cf60NR1/+LELk3k9rXG5+DVCMvuNJWX8fjXnQDbyFiHzTS70dsXMgeiQda0tusl8KH1f+cgCPNaeosRyQlwA==}
engines: {node: '>=18.20.4'}
'@socketregistry/side-channel@1.0.7':
@@ -2699,9 +2983,6 @@ packages:
'@stablelib/constant-time@1.0.1':
resolution: {integrity: sha512-tNOs3uD0vSJcK6z1fvef4Y+buN7DXhzHDPqRLSXUel1UfqMB1PWNsnnAezrKfEwTLpN0cGH2p9NNjs6IqeD0eg==}
- '@stablelib/ed25519@1.0.3':
- resolution: {integrity: sha512-puIMWaX9QlRsbhxfDc5i+mNPMY+0TmQEskunY1rZEBPi1acBCVQAhnsk/1Hk50DGPtVsZtAWQg4NHGlVaO9Hqg==}
-
'@stablelib/hash@1.0.1':
resolution: {integrity: sha512-eTPJc/stDkdtOcrNMZ6mcMK1e6yBbqRBaNW55XA1jU8w/7QdnCF0CmMmOD1m7VSkBR44PWrMHU2l6r8YEQHMgg==}
@@ -2726,15 +3007,26 @@ packages:
'@stablelib/sha256@1.0.1':
resolution: {integrity: sha512-GIIH3e6KH+91FqGV42Kcj71Uefd/QEe7Dy42sBTeqppXV95ggCcxLTk39bEr+lZfJmp+ghsR07J++ORkRELsBQ==}
- '@stablelib/sha512@1.0.1':
- resolution: {integrity: sha512-13gl/iawHV9zvDKciLo1fQ8Bgn2Pvf7OV6amaRVKiq3pjQ3UmEpXxWiAfV8tYjUpeZroBxtyrwtdooQT/i3hzw==}
-
'@stablelib/wipe@1.0.1':
resolution: {integrity: sha512-WfqfX/eXGiAd3RJe4VU2snh/ZPwtSjLG4ynQ/vYzvghTh7dHFcI1wl+nrkWG6lGhukOxOsUHfv8dUXr58D0ayg==}
'@stablelib/x25519@1.0.3':
resolution: {integrity: sha512-KnTbKmUhPhHavzobclVJQG5kuivH+qDLpe84iRqX3CLrKp881cF160JvXJ+hjn1aMyCwYOKeIZefIH/P5cJoRw==}
+ '@stencil/core@4.27.0':
+ resolution: {integrity: sha512-GOA+pvSpwL734yijTB8+LHesqPq3o/K6IaCrNoZybNVpe6lgVfvciDwPeP1XOj6JZpA/Lp8Uh3U9znoS8qgwOA==}
+ 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'}
@@ -2819,8 +3111,8 @@ packages:
'@tanstack/query-core@5.22.2':
resolution: {integrity: sha512-z3PwKFUFACMUqe1eyesCIKg3Jv1mysSrYfrEW5ww5DCDUD4zlpTKBvUDaEjsfZzL3ULrFLDM9yVUxI/fega1Qg==}
- '@tanstack/query-devtools@5.64.2':
- resolution: {integrity: sha512-3DautR5UpVZdk/qNIhioZVF7g8fdQZ1U98sBEEk4Tzz3tihSBNMPgwlP40nzgbPEDBIrn/j/oyyvNBVSo083Vw==}
+ '@tanstack/query-devtools@5.65.0':
+ resolution: {integrity: sha512-g5y7zc07U9D3esMdqUfTEVu9kMHoIaVBsD0+M3LPdAdD710RpTcLiNvJY1JkYXqkq9+NV+CQoemVNpQPBXVsJg==}
'@tanstack/query-persist-client-core@5.22.2':
resolution: {integrity: sha512-sFDgWoN54uclIDIoImPmDzxTq8HhZEt9pO0JbVHjI6LPZqunMMF9yAq9zFKrpH//jD5f+rBCQsdGyhdpUo9e8Q==}
@@ -2828,10 +3120,10 @@ packages:
'@tanstack/query-sync-storage-persister@5.22.2':
resolution: {integrity: sha512-mDxXURiMPzWXVc+FwDu94VfIt/uHk5+9EgcxJRYtj8Vsx18T0DiiKk1VgVOBLd97C+Sa7z7ujP2D6Y5lphW+hQ==}
- '@tanstack/react-query-devtools@5.64.2':
- resolution: {integrity: sha512-+ZjJVnPzc8BUV/Eklu2k9T/IAyAyvwoCHqOaOrk2sbU33LFhM52BpX4eyENXn0bx5LwV3DJZgEQlIzucoemfGQ==}
+ '@tanstack/react-query-devtools@5.66.9':
+ resolution: {integrity: sha512-70G6AR35he53SYUcUK6EdqNR18zejCv1rM6900gjZP408EAex56YLwVSeijzk9lWeU2J42G9Fjh0i1WngUTsgw==}
peerDependencies:
- '@tanstack/react-query': ^5.64.2
+ '@tanstack/react-query': ^5.66.9
react: ^18.2.0
'@tanstack/react-query-persist-client@5.22.2':
@@ -2966,12 +3258,18 @@ packages:
'@types/ms@2.1.0':
resolution: {integrity: sha512-GsCCIZDE/p3i96vtEqx+7dBUGXrc7zeSK3wwPHIaRThS+9OhWIXRqzs4d6k1SVU8g91DrNRWxWUGhp5KXQb2VA==}
+ '@types/node-fetch@2.6.12':
+ resolution: {integrity: sha512-8nneRWKCg3rMtF69nLQJnOYUcbafYeFSjqkw3jCRLsqkWFlHaoQrr5mXmofFGOx3DKn7UfmBMyov8ySvLRVldA==}
+
'@types/node-forge@1.3.11':
resolution: {integrity: sha512-FQx220y22OKNTqaByeBGqHWYz4cl94tpcxeFdvBo3wjG6XPBuZ0BNgNZRV5J5TFmmcsJ4IzsLkmGRiQbnYsBEQ==}
'@types/node@17.0.45':
resolution: {integrity: sha512-w+tIMs3rq2afQdsPJlODhoUEKzFP1ayaoyl1CcnwtIlsVe7K7bA1NGm4s3PraqTLlXnbIN84zuBlxBWo1u9BLw==}
+ '@types/node@18.19.76':
+ resolution: {integrity: sha512-yvR7Q9LdPz2vGpmpJX5LolrgRdWvB67MJKDPSgIIzpFbaf9a1j/f5DnLp5VDyHGMR0QZHlTr1afsD87QCXFHKw==}
+
'@types/node@20.17.19':
resolution: {integrity: sha512-LEwC7o1ifqg/6r2gn9Dns0f1rhK+fPFDoMiceTJ6kWmVk6bgXBI/9IOWfVan4WiAavK9pIVWdX0/e3J+eEUh5A==}
@@ -3013,14 +3311,17 @@ 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==}
'@types/trusted-types@2.0.7':
resolution: {integrity: sha512-ScaPdn1dQczgbl0QFTeTOmVHFULt394XJgOQNoyVhZ6r2vLnMLJfBPd53SB52T/3G36VI1/g2MZaX0cwDuXsfw==}
- '@types/ws@8.5.13':
- resolution: {integrity: sha512-osM/gWBTPKgHV8XkTunnegTRIsvF6owmf5w+JtAfOw472dptdm0dlGv4xCt6GwQRcC2XVOvvRE/0bAoQcL2QkA==}
+ '@types/ws@8.5.14':
+ resolution: {integrity: sha512-bd/YFLW+URhBzMXurx7lWByOu+xzU9+kb3RboOteXYDfW+tr+JZa99OyNmPINEGB/ahzKrEuc8rcv4gnpJmxTw==}
'@types/yargs-parser@21.0.3':
resolution: {integrity: sha512-I4q9QU9MQv4oEOz4tAHJtNz1cwuLxn2F3xcc2iV5WdqLPpUnj30aUuxt1mAxYTG+oe8CZMV/+6rU4S4gRDzqtQ==}
@@ -3284,8 +3585,8 @@ packages:
'@walletconnect/relay-api@1.0.11':
resolution: {integrity: sha512-tLPErkze/HmC9aCmdZOhtVmYZq1wKfWTJtygQHoWtgg722Jd4homo54Cs4ak2RUFUZIGO2RsOpIcWipaua5D5Q==}
- '@walletconnect/relay-auth@1.0.4':
- resolution: {integrity: sha512-kKJcS6+WxYq5kshpPaxGHdwf5y98ZwbfuS4EE/NkQzqrDFm5Cj+dP8LofzWvjrrLkZq7Afy7WrQMXdLy8Sx7HQ==}
+ '@walletconnect/relay-auth@1.1.0':
+ resolution: {integrity: sha512-qFw+a9uRz26jRCDgL7Q5TA9qYIgcNY8jpJzI1zAWNZ8i7mQjaijRnWFKsCHAU9CyGjvt6RKrRXyFtFOpWTVmCQ==}
'@walletconnect/safe-json@1.0.2':
resolution: {integrity: sha512-Ogb7I27kZ3LPC3ibn8ldyUr5544t3/STow9+lzz7Sfo808YD7SBWk7SAsdBFlYgP2zDRy2hS3sKRcuSRM0OTmA==}
@@ -3353,6 +3654,10 @@ packages:
peerDependencies:
acorn: ^6.0.0 || ^7.0.0 || ^8.0.0
+ acorn-walk@8.3.2:
+ resolution: {integrity: sha512-cjkyv4OtNCIeqhHrfS81QWXoCBPExR/J62oyEqepVw8WaQeSqpW2uhuLPh1m9eWhDuOo/jUXVTlifvesOWp/4A==}
+ engines: {node: '>=0.4.0'}
+
acorn-walk@8.3.4:
resolution: {integrity: sha512-ueEepnujpqee2o5aIYnvHU6C0A42MNdsIDeqy5BydrkuC5R1ZuUFnm27EeFJGoEHJQgn3uleRvmTXaJgfXbt4g==}
engines: {node: '>=0.4.0'}
@@ -3449,6 +3754,9 @@ packages:
as-table@1.0.55:
resolution: {integrity: sha512-xvsWESUJn0JN421Xb9MQw6AsMHRCUknCe0Wjlxvjud80mU4E6hQf1A6NzQKcYNmYw62MfzEtXc+badstZP3JpQ==}
+ assert@2.1.0:
+ resolution: {integrity: sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==}
+
assertion-error@1.1.0:
resolution: {integrity: sha512-jgsaNduz+ndvGyFt3uSuWqvy4lCnIJiovtouQN5JZHOKCS2QuhEdbcQHFhVksz2N2U9hXJo8odG7ETyWlEeuDw==}
@@ -3495,8 +3803,8 @@ 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==}
+ babel-plugin-polyfill-corejs3@0.11.1:
+ resolution: {integrity: sha512-yGCqvBT4rwMczo28xkH/noxJ6MZ4nJfkVYdoDaC/utLtWrXxv27HVrzAeSbqR8SxDsp46n0YF47EbHoixy6rXQ==}
peerDependencies:
'@babel/core': ^7.4.0 || ^8.0.0-0 <8.0.0
@@ -3547,9 +3855,16 @@ 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'}
+
bech32@1.1.4:
resolution: {integrity: sha512-s0IrSOzLlbvX7yp4WBfPITzpAU8sqQcpsmwXDiKwrG4r491vwCO/XpejasRNl0piBMe/DvP4Tz0mIS/X1DPJBQ==}
+ bignumber.js@9.1.2:
+ resolution: {integrity: sha512-2/mKyZH9K85bzOEfhXDBFZTGd1CTs+5IHpeFQo9luiBG7hghdC851Pj2WAhb6E3R6b9tZj/XKhbg4fum+Kepug==}
+
binary-extensions@2.3.0:
resolution: {integrity: sha512-Ceh+7ox5qe7LJuLHoY0feh3pHuUDHAcRUeyL2VYghZwfpkNIy/+8Ocg0a3UuSoYzavmylwuLWQOf3hl0jjMMIw==}
engines: {node: '>=8'}
@@ -3563,6 +3878,9 @@ packages:
bn.js@5.2.1:
resolution: {integrity: sha512-eXRvHzWyYPBuB4NBy0cmYQjGitUrtqwbvlzP3G6VFnNRbsZQIxQ10PbKKHt8gZ/HW/D/747aDl+QkDqg3KQLMQ==}
+ 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==}
@@ -3634,8 +3952,8 @@ packages:
calendar-link@2.8.0:
resolution: {integrity: sha512-N1mXUpoMc2czw30LxPHKNSGuekwXeZ2AHlQVfpY/6aBkFEbDpO9c8suM/NIJ9eSVLu0HaCgmAq0MeXZDgva/nw==}
- call-bind-apply-helpers@1.0.1:
- resolution: {integrity: sha512-BhYE+WDaywFg2TBWYNXAE+8B1ATnThNBqXHP5nQu0jWJdVvY2hvkpyB3qOmtmDePiS5/BDQ8wASEWGMWRG148g==}
+ call-bind-apply-helpers@1.0.2:
+ resolution: {integrity: sha512-Sp1ablJ0ivDkSzjcaJdxEunN5/XvksFJ2sMBFfq6x0ryhQV/2b/KwFe21cMpmHtPOSij8K99/wSfoEuTObmuMQ==}
engines: {node: '>= 0.4'}
call-bind@1.0.8:
@@ -3661,11 +3979,16 @@ packages:
camelize@1.0.1:
resolution: {integrity: sha512-dU+Tx2fsypxTgtLoE36npi3UqcjSSMNYfkqgmoEhtZrraP5VWq0K7FkWVTYa8eMPtnU/G2txVsfdCJTn9uzpuQ==}
- caniuse-lite@1.0.30001695:
- resolution: {integrity: sha512-vHyLade6wTgI2u1ec3WQBxv+2BrTERV28UXQu9LO6lZ9pYeMk34vjXFLOxo1A4UBA8XTL4njRQZdno/yYaSmWw==}
+ caniuse-lite@1.0.30001700:
+ resolution: {integrity: sha512-2S6XIXwaE7K7erT8dY+kLQcpa5ms63XlRkMkReXjle+kf6c5g38vyMl+Z5y8dSxOFDhcFe+nxnn261PLxBSQsQ==}
- capnp-ts@0.7.0:
- resolution: {integrity: sha512-XKxXAC3HVPv7r674zP0VC3RTXz+/JKhfyw94ljvF80yynK6VkTnqE3jMuN8b3dUVmmc43TjyxjW4KTsmB3c86g==}
+ case@1.6.3:
+ resolution: {integrity: sha512-mzDSXIPaFwVDvZAHqZ9VlbyF4yyXRuX6IvB06WvPYkqJVO24kX1PPhv9bfpKNFZyxYFmmgo03HUiD8iklmJYRQ==}
+ engines: {node: '>= 0.8.0'}
+
+ cbor-web@8.1.0:
+ resolution: {integrity: sha512-2hWHHMVrfffgoEmsAUh8vCxHoLa1vgodtC73+C5cSarkJlwTapnqAzcHINlP6Ej0DXuP4OmmJ9LF+JaNM5Lj/g==}
+ engines: {node: '>=12.19'}
cbor@10.0.3:
resolution: {integrity: sha512-72Jnj81xMsqepqdcSdf2+fflz/UDsThOHy5hj2MW5F5xzHL8Oa0KQ6I6V9CwVUPxg5pf+W9xp6W2KilaRXWWtw==}
@@ -3767,6 +4090,10 @@ packages:
resolution: {integrity: sha512-eYm0QWBtUrBWZWG0d386OGAw16Z995PiOVo2B7bjWSbHedGl5e0ZWaq65kOGgUSNesEIDkB9ISbTg/JK9dhCZA==}
engines: {node: '>=6'}
+ color-blend@4.0.0:
+ resolution: {integrity: sha512-fYODTHhI/NG+B5GnzvuL3kiFrK/UnkUezWFTgEPBTY5V+kpyfAn95Vn9sJeeCX6omrCOdxnqCL3CvH+6sXtIbw==}
+ engines: {node: '>=10.0.0'}
+
color-convert@2.0.1:
resolution: {integrity: sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==}
engines: {node: '>=7.0.0'}
@@ -3774,6 +4101,16 @@ packages:
color-name@1.1.4:
resolution: {integrity: sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==}
+ color-string@1.9.1:
+ resolution: {integrity: sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==}
+
+ color2k@2.0.3:
+ resolution: {integrity: sha512-zW190nQTIoXcGCaU08DvVNFTmQhUpnJfVuAKfWqUQkflXKpaDdpaYoM0iluLS9lgJNHyBF58KKA2FBEwkD7wog==}
+
+ color@4.2.3:
+ resolution: {integrity: sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==}
+ engines: {node: '>=12.5.0'}
+
colord@2.9.3:
resolution: {integrity: sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==}
@@ -3817,10 +4154,6 @@ packages:
confusing-browser-globals@1.0.11:
resolution: {integrity: sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==}
- consola@3.4.0:
- resolution: {integrity: sha512-EiPU8G6dQG0GFHNR8ljnZFki/8a+cQwEQ+7wpxdChl02Q8HXlwEZWD5lqAF8vC2sEC3Tehr8hy7vErz88LHyUA==}
- engines: {node: ^14.18.0 || >=16.10.0}
-
convert-source-map@2.0.0:
resolution: {integrity: sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==}
@@ -3831,6 +4164,10 @@ packages:
resolution: {integrity: sha512-aSWTXFzaKWkvHO1Ny/s+ePFpvKsPnjc551iI41v3ny/ow6tBG5Vd+FuqGNhh1LxOmVzOlGUriIlOaokOvhaStA==}
engines: {node: '>= 0.6'}
+ cookie@0.5.0:
+ resolution: {integrity: sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==}
+ engines: {node: '>= 0.6'}
+
cookie@0.7.2:
resolution: {integrity: sha512-yki5XnKuf750l50uGTllt6kKILY4nQ1eNIQatoXEByZ5dWgnKqbnqmTrBE5B4N7lrMJKQ2ytWMiTO2o0v6Ew/w==}
engines: {node: '>= 0.6'}
@@ -3889,8 +4226,8 @@ packages:
resolution: {integrity: sha512-uV2QOWP2nWzsy2aMp8aRibhi9dlzF5Hgh5SHaB9OiTGEyDTiJJyx0uy51QXdyWbtAHNua4XJzUKca3OzKUd3vA==}
engines: {node: '>= 8'}
- crossws@0.3.2:
- resolution: {integrity: sha512-S2PpQHRcgYABOS2465b34wqTOn5dbLL+iSvyweJYGGFLDsKq88xrjDXUiEhfYkhWZq1HuS6of3okRHILbkrqxw==}
+ crossws@0.3.4:
+ resolution: {integrity: sha512-uj0O1ETYX1Bh6uSgktfPvwDiPYGQ3aI4qVsaC/LWpkIzGj1nUYm5FK3K+t11oOlpN01lGbprFCH4wBlKdJjVgw==}
css-color-keywords@1.0.0:
resolution: {integrity: sha512-FyyrDHZKEjXDpNJYvVsV960FiqQyXc/LlYmsxl2BcdMb2WPx0OGRVgTg55rPSyLSNMqP52R9r8geSp7apN3Ofg==}
@@ -3981,6 +4318,9 @@ 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.13:
resolution: {integrity: sha512-oaMBel6gjolK862uaPQOVTA7q3TZhuSvuMQAAglQDOWYO9A91IrAOUJEyKVlqJlHE0vq5p5UXxzdPfMH/x6xNg==}
@@ -4018,8 +4358,8 @@ packages:
resolution: {integrity: sha512-9iE1PgSik9HeIIw2JO94IidnE3eBoQrFJ3w7sFuzSX4DpmZ3v5sZpUiV5Swcf6mQEF+Y0ru8Neo+p+nyh2J+hQ==}
engines: {node: '>=10'}
- decimal.js@10.4.3:
- resolution: {integrity: sha512-VBBaLc1MgL5XpzgIP7ny5Z6Nx3UrRkIViUkPUdtl9aya5amy3De1gsUUSB1g3+3sExYNjCAsAznmukyxCb1GRA==}
+ decimal.js@10.5.0:
+ resolution: {integrity: sha512-8vDa8Qxvr/+d94hSh5P3IJwI5t8/c0KsMp+g8bNw9cY2icONa5aPfvKeieW1WlG0WQYwwhJ7mjui2xtiePQSXw==}
decode-uri-component@0.2.2:
resolution: {integrity: sha512-FqUYQ+8o158GyGTrMFJms9qh3CqTKvAqgqsTnkLI8sKu0028orqBhxNMFkFen0zGyg6epACD32pjVk58ngIErQ==}
@@ -4071,6 +4411,13 @@ packages:
detect-browser@5.3.0:
resolution: {integrity: sha512-53rsFbGdwMwlF7qvCt0ypLM5V5/Mbl0szB7GPN8y9NCcbknYOeVVXdrXEq+90IwAfrrzt6Hd+u2E2ntakICU8w==}
+ detect-europe-js@0.1.2:
+ resolution: {integrity: sha512-lgdERlL3u0aUdHocoouzT10d9I89VVhk0qNRmll7mXdGfJT1/wqZ2ZLA4oJAjeACPY5fT1wsbq2AT+GkuInsow==}
+
+ detect-libc@2.0.3:
+ resolution: {integrity: sha512-bwy0MGW55bG41VqxxypOsdSdGqLwXPI/focwgTYCFMbdUiBAxLg9CFzG08sz2aqzknwiX7Hkl0bQENjg8iLByw==}
+ engines: {node: '>=8'}
+
detect-node-es@1.1.0:
resolution: {integrity: sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==}
@@ -4154,8 +4501,8 @@ packages:
eciesjs@0.3.21:
resolution: {integrity: sha512-6FiThm7KlTihph8ROhq/BHEglGCJSwq6c8KVgcCcJiNJFNlbrFtfnTqZobVmWIB764mzhZTOBFyinADSXXvTLg==}
- electron-to-chromium@1.5.84:
- resolution: {integrity: sha512-I+DQ8xgafao9Ha6y0qjHHvpZ9OfyA1qKlkHkjywxzniORU2awxyz7f/iVJcULmrF2yrM3nHQf+iDjJtbbexd/g==}
+ electron-to-chromium@1.5.104:
+ resolution: {integrity: sha512-Us9M2L4cO/zMBqVkJtnj353nQhMju9slHm62NprKTmdF3HH8wYOtNvDFq/JB2+ZRoGLzdvYDiATlMHs98XBM1g==}
elliptic@6.5.4:
resolution: {integrity: sha512-iLhC6ULemrljPZb+QutR5TQGB+pdW6KGD5RSegS+8sorOZT+rdQFbsQFJgvN3eRqNALqJer4oQ16YvJHlU8hzQ==}
@@ -4178,15 +4525,15 @@ packages:
end-of-stream@1.4.4:
resolution: {integrity: sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==}
- engine.io-client@6.6.2:
- resolution: {integrity: sha512-TAr+NKeoVTjEVW8P3iHguO1LO6RlUz9O5Y8o7EY0fU+gY1NYqas7NN3slpFtbXEsLMHk0h90fJMfKjRkQ0qUIw==}
+ engine.io-client@6.6.3:
+ resolution: {integrity: sha512-T0iLjnyNWahNyv/lcjS2y4oE358tVS/SYQNxYXGAJ9/GLgH4VCvOQ/mhTjqU88mLZCQgiG8RIegFHYCdVC+j5w==}
engine.io-parser@5.2.3:
resolution: {integrity: sha512-HqD3yTBfnBxIrbnM1DoD6Pcq8NECnh8d4As1Qgh0z5Gg3jRRIqijury0CL3ghu/edArpUYiYqQiDUQBIs4np3Q==}
engines: {node: '>=10.0.0'}
- enhanced-resolve@5.18.0:
- resolution: {integrity: sha512-0/r0MySGYG8YqlayBZ6MuCfECmHFdJ5qyPh8s8wa5Hnm6SaFLSK1VYCbj+NKp090Nm1caZhD+QTnmxO7esYGyQ==}
+ enhanced-resolve@5.18.1:
+ resolution: {integrity: sha512-ZSW3ma5GkcQBIpwZTSRAI8N71Uuwgs93IezB7mf7R60tC8ZbJideoDNKjHn2O9KIlx6rkGTTEk1xUCK2E1Y2Yg==}
engines: {node: '>=10.13.0'}
enquirer@2.4.1:
@@ -4234,9 +4581,9 @@ packages:
engines: {node: '>=12'}
hasBin: true
- esbuild@0.21.5:
- resolution: {integrity: sha512-mg3OPMV4hXywwpoDxu3Qda5xCKQi+vCTZq8S9J/EpkhB2HzKXq4SNFZE3+NK93JYxc8VMSep+lOUSC/RVKaBqw==}
- engines: {node: '>=12'}
+ esbuild@0.25.0:
+ resolution: {integrity: sha512-BXq5mqc8ltbaN34cDqWuYKyNhX8D/Z0J1xdtdQ8UcIIIyJyz+ZMKUt58tF3SrZ85jcfN/PZYhjR5uDQAYNVbuw==}
+ engines: {node: '>=18'}
hasBin: true
escalade@3.2.0:
@@ -4294,8 +4641,8 @@ packages:
eslint-import-resolver-node@0.3.9:
resolution: {integrity: sha512-WFj2isz22JahUv+B788TlO3N6zL3nNJGU8CcZbPZvVEkBPaJdCV4vy5wyghty5ROFbCRnm132v8BScu5/1BQ8g==}
- eslint-import-resolver-typescript@3.7.0:
- resolution: {integrity: sha512-Vrwyi8HHxY97K5ebydMtffsWAn1SCR9eol49eCd5fJS4O1WV7PaAjbcjmbfJJSMz/t4Mal212Uz/fQZrOB8mow==}
+ eslint-import-resolver-typescript@3.8.3:
+ resolution: {integrity: sha512-A0bu4Ks2QqDWNpeEgTQMPTngaMhuDu4yv6xpftBMAf+1ziXnpx+eSR1WRfoPTe2BAiAjHFZ7kSNx1fvr5g5pmQ==}
engines: {node: ^14.18.0 || >=16.0.0}
peerDependencies:
eslint: '*'
@@ -4454,6 +4801,9 @@ packages:
eth-rpc-errors@4.0.3:
resolution: {integrity: sha512-Z3ymjopaoft7JDoxZcEb3pwdGh7yiYMhOwm2doUt6ASXlMavpNlK6Cre0+IMl2VSGyEU9rkiperQhp5iRxn5Pg==}
+ ethereum-bloom-filters@1.2.0:
+ resolution: {integrity: sha512-28hyiE7HVsWubqhpVLVmZXFd4ITeHi+BUu05o9isf0GUpMtzBUi+8/gFrGaGYzvGAJQmJ3JKj77Mk9G98T84rA==}
+
ethereum-cryptography@0.1.3:
resolution: {integrity: sha512-w8/4x1SGGzc+tO97TASLja6SLd3fRIK2tLVcV2Gx4IB21hE19atll5Cq9o3d0ZmAYC/8aw0ipieTSiekAea4SQ==}
@@ -4470,9 +4820,17 @@ packages:
ethereumjs-util@6.2.1:
resolution: {integrity: sha512-W2Ktez4L01Vexijrm5EB6w7dg4n/TgpoYU4avuT5T3Vmnw/eCRtiBrJfQYS/DCSvDIOLn2k57GcHdeBcgVxAqw==}
+ ethereumjs-util@7.1.5:
+ resolution: {integrity: sha512-SDl5kKrQAudFBUe5OJM9Ac6WmMyYmXX/6sTmLZ3ffG2eY6ZIGBes3pEDxNN6V72WyOw4CPD5RomKdsa8DAAwLg==}
+ engines: {node: '>=10.0.0'}
+
ethers@5.7.2:
resolution: {integrity: sha512-wswUsmWo1aOK8rR7DIKiWSw9DbLWe6x98Jrn8wcTflTVvaXhAMaB5zGAXy0GYQEQp9iO1iSHWVyARQm11zUtyg==}
+ ethjs-unit@0.1.6:
+ resolution: {integrity: sha512-/Sn9Y0oKl0uqQuvgFk/zQgR7aw1g36qX/jzSQ5lSwlO0GigPymk4eGQfeNTD03w1dPOqfz8V77Cy43jH56pagw==}
+ engines: {node: '>=6.5.0', npm: '>=3'}
+
ethjs-util@0.1.6:
resolution: {integrity: sha512-CUnVOQq7gSpDHZVVrQW8ExxUETWrnrvXYvYz55wOU8Uj4VCgw56XC2B/fVqQN+f7gmrnRHSLVnFAwsCuNwji8w==}
engines: {node: '>=6.5.0', npm: '>=3'}
@@ -4541,8 +4899,8 @@ packages:
fastest-stable-stringify@2.0.2:
resolution: {integrity: sha512-bijHueCGd0LqqNK9b5oCMHc0MluJAx0cwqASgbWMvkO01lCYgIhacVRLcaDz3QnyYIRNJRDwMb41VuT6pHJ91Q==}
- fastq@1.18.0:
- resolution: {integrity: sha512-QKHXPW0hD8g4UET03SdOdunzSouc9N4AuHdsX8XNcTsuz+yYFILVNIX4l9yHABMhiEI9Db0JTTIpu0wB+Y1QQw==}
+ fastq@1.19.0:
+ resolution: {integrity: sha512-7SFSRCNjBQIZH/xZR3iy5iQYR8aGBE0h3VG6/cwlbrpdciNYBMotQav8c1XI3HjHH+NikUpP53nPdlZSdWmFzA==}
fdir@6.4.3:
resolution: {integrity: sha512-PMXmW2y1hDDfTSRc9gaXIuCCRpuoz3Kaz8cUelp3smouvfT632ozg2vrT6lJsHKKOF59YLbOGfAWGUcKEfRMQw==}
@@ -4590,8 +4948,8 @@ packages:
resolution: {integrity: sha512-b6suED+5/3rTpUBdG1gupIl8MPFCAMA0QXwmljLhvCUKcUvdE4gWky9zpuGCcXHOsz4J9wPGNWq6OKpmIzz3hQ==}
hasBin: true
- flatted@3.3.2:
- resolution: {integrity: sha512-AiwGJM8YcNOaobumgtng+6NHuOqC3A7MixFeDafM3X9cIUM+xUXoS5Vfgf+OihAYe20fxqNM9yPBXJzRtZ/4eA==}
+ flatted@3.3.3:
+ resolution: {integrity: sha512-GX+ysw4PBCz0PzosHDepZGANEuFCMLrnRTiEy9McGjmkCQYwRq4A/X786G/fjM/+OjsWSU1ZrY5qyARZmO/uwg==}
fmix@0.1.0:
resolution: {integrity: sha512-Y6hyofImk9JdzU8k5INtTXX1cu8LDlePWDFU5sftm9H+zKCr5SGrVjdhkvsim646cw5zD0nADj8oHyXMZmCZ9w==}
@@ -4605,12 +4963,12 @@ packages:
debug:
optional: true
- foreground-child@3.3.0:
- resolution: {integrity: sha512-Ld2g8rrAyMYFXBhEqMz8ZAHBi4J4uS1i/CxGMDnjyFWddMXLVcDp051DZfu+t7+ab7Wv6SMqpWmyFIj5UbfFvg==}
+ foreground-child@3.3.1:
+ resolution: {integrity: sha512-gIXjKqtFuWEgzFRJA9WCQeSJLZDjgJUOMCMzxtvFq/37KojM1BFGufqsCy0r4qSQmYLsZYMeyRqzIWOMup03sw==}
engines: {node: '>=14'}
- form-data@4.0.1:
- resolution: {integrity: sha512-tzN8e4TX8+kkxGPK8D5u0FNmjPUjw3lwC9lSLxxoB/+GtsJG91CO8bSWy73APlgAZzZbXEYZJuxjkHH2w+Ezhw==}
+ form-data@4.0.2:
+ resolution: {integrity: sha512-hGfm/slu0ZabnNt4oaRZ6uREyfCj6P4fT/n6A1rGV+Z0VdGXjfOhVUpkn6qVQONHGIFwmveGXyDs75+nr6FM8w==}
engines: {node: '>= 6'}
formdata-polyfill@4.0.10:
@@ -4620,6 +4978,23 @@ packages:
fp-ts@1.19.3:
resolution: {integrity: sha512-H5KQDspykdHuztLTg+ajGN0Z2qUjcEf3Ybxc6hLt0k7/zPkn29XnKnxlBPyW2XIddWrGaJBzBl4VLYOtk39yZg==}
+ fp-ts@2.16.9:
+ resolution: {integrity: sha512-+I2+FnVB+tVaxcYyQkHUq7ZdKScaBlX53A41mxQtpIccsfyv8PzdzP7fzp2AY832T4aoK6UZ5WRX/ebGd8uZuQ==}
+
+ 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
+
fs-extra@10.1.0:
resolution: {integrity: sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==}
engines: {node: '>=12'}
@@ -4656,8 +5031,8 @@ packages:
get-func-name@2.0.2:
resolution: {integrity: sha512-8vXOvuE167CtIc3OyItco7N/dpRtBbYOsPsXCz7X/PMnlGjYjSGuZJgM1Y7mmew7BKf9BqvLX2tnOVy1BBUsxQ==}
- get-intrinsic@1.2.7:
- resolution: {integrity: sha512-VW6Pxhsrk0KAOqs3WEd0klDiF/+V7gQOpAvY1jVU/LHmaD/kQO4523aiJuikX/QAKYiW6x8Jh+RJej1almdtCA==}
+ get-intrinsic@1.3.0:
+ resolution: {integrity: sha512-9fSjSaos/fRIVIp+xSJlE6lfwhES7LNtKaCBIamHsjr2na1BiABJPo0mOjjz8GJDURarmCPGqaiVg5mfjb98CQ==}
engines: {node: '>= 0.4'}
get-nonce@1.0.1:
@@ -4740,12 +5115,15 @@ packages:
resolution: {integrity: sha512-AjqGKbDGUFRKIRCP9tCKiIGHyriz2oHEbPIbEtcSLSs4YjReZOIPQQWek4+6hjw62H9QShXHyaGivGiYVLeYFQ==}
engines: {node: ^12.22.0 || ^14.16.0 || ^16.0.0 || >=17.0.0}
+ gsap@3.12.7:
+ resolution: {integrity: sha512-V4GsyVamhmKefvcAKaoy0h6si0xX7ogwBoBSs2CTJwt7luW0oZzC0LhdkyuKV8PJAXr7Yaj8pMjCKD4GJ+eEMg==}
+
gzip-size@6.0.0:
resolution: {integrity: sha512-ax7ZYomf6jqPTQ4+XCpUGyXKHk5WweS+e05MBO4/y3WJ5RkmPXNKvX+bx1behVILVwr6JSQvZAku021CHPXG3Q==}
engines: {node: '>=10'}
- h3@1.14.0:
- resolution: {integrity: sha512-ao22eiONdgelqcnknw0iD645qW0s9NnrJHr5OBz4WOMdBdycfSas1EQf1wXRsm+PcB2Yoj43pjBPwqIpJQTeWg==}
+ h3@1.15.1:
+ resolution: {integrity: sha512-+ORaOBttdUm1E2Uu/obAyCguiI7MbBvsLTndc3gyK3zU+SYLoZXlyCP9Xgy0gikkGufFLTZXCXD6+4BsufnmHA==}
hardhat-dependency-compiler@1.2.1:
resolution: {integrity: sha512-xG5iwbspTtxOEiP5UsPngEYQ1Hg+fjTjliapIjdTQmwGkCPofrsDhQDV2O/dopcYzcR68nTx2X8xTewYHgA2rQ==}
@@ -4756,8 +5134,8 @@ packages:
hardhat-deploy@0.12.4:
resolution: {integrity: sha512-bYO8DIyeGxZWlhnMoCBon9HNZb6ji0jQn7ngP1t5UmGhC8rQYhji7B73qETMOFhzt5ECZPr+U52duj3nubsqdQ==}
- hardhat@2.22.18:
- resolution: {integrity: sha512-2+kUz39gvMo56s75cfLBhiFedkQf+gXdrwCcz4R/5wW0oBdwiyfj2q9BIkMoaA0WIGYYMU2I1Cc4ucTunhfjzw==}
+ hardhat@2.22.19:
+ resolution: {integrity: sha512-jptJR5o6MCgNbhd7eKa3mrteR+Ggq1exmE5RUL5ydQEVKcZm0sss5laa86yZ0ixIavIvF4zzS7TdGDuyopj0sQ==}
hasBin: true
peerDependencies:
ts-node: '*'
@@ -4889,8 +5267,8 @@ packages:
immutable@4.3.7:
resolution: {integrity: sha512-1hqclzwYwjRDFLjcFxOM5AYkkG0rpFPpr1RLPMEuGczoS7YA8gLhy8SWXYRAA/XwfEHpfo3cw5JGioS32fnMRw==}
- import-fresh@3.3.0:
- resolution: {integrity: sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==}
+ import-fresh@3.3.1:
+ resolution: {integrity: sha512-TR3KfrTZTYLPB6jUjfx6MF9WcWrHL9su5TObK4ZkYgBdWKPOFoSoQIdEuTuR82pmtxH2spWG9h6etwfr1pLBqQ==}
engines: {node: '>=6'}
imul@1.0.1:
@@ -4914,18 +5292,29 @@ packages:
inline-style-prefixer@7.0.1:
resolution: {integrity: sha512-lhYo5qNTQp3EvSSp3sRvXMbVQTLrvGV6DycRMJ5dm2BLMiJ30wpXKdDdgX+GmJZ5uQMucwRKHamXSst3Sj/Giw==}
+ inputmask@5.0.9:
+ resolution: {integrity: sha512-s0lUfqcEbel+EQXtehXqwCJGShutgieOaIImFKC/r4reYNvX3foyrChl6LOEvaEgxEbesePIrw1Zi2jhZaDZbQ==}
+
invariant@2.2.4:
resolution: {integrity: sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==}
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
+
iron-webcrypto@1.2.1:
resolution: {integrity: sha512-feOM6FaSr6rEABp/eDfVseKyTMDt+KGpeB35SkVn9Tyn0CqvVsY3EwI0v5i8nMHyJnzCIQf7nsy3p41TPkJZhg==}
is-arrayish@0.2.1:
resolution: {integrity: sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==}
+ is-arrayish@0.3.2:
+ resolution: {integrity: sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==}
+
is-binary-path@2.1.0:
resolution: {integrity: sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==}
engines: {node: '>=8'}
@@ -4962,6 +5351,10 @@ packages:
resolution: {integrity: sha512-WvtOiug1VFrE9v1Cydwm+FnXd3+w9GaeVUss5W4v/SLy3UW00vP+6iNF2SdnfiBoLy4bTqVdkftNGTUeOFVsbA==}
engines: {node: '>=6.5.0', npm: '>=3'}
+ 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==}
@@ -4987,6 +5380,9 @@ packages:
is-reference@1.2.1:
resolution: {integrity: sha512-U82MsXXiFIrjCK4otLT+o2NA2Cd2g5MLoOVXUZjIOhLurrRxpEXzI8O0KZHr3IjLvlAH1kTPYSuqer5T9ZVBKQ==}
+ is-standalone-pwa@0.1.1:
+ resolution: {integrity: sha512-9Cbovsa52vNQCjdXOzeQq5CnCbAcRk05aU62K20WO372NrTv0NxibLFCK6lQ4/iZEFdEA3p3t2VNOn8AJ53F5g==}
+
is-stream@2.0.1:
resolution: {integrity: sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==}
engines: {node: '>=8'}
@@ -5148,8 +5544,8 @@ packages:
resolution: {integrity: sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==}
engines: {node: '>=0.10.0'}
- knip@5.44.5:
- resolution: {integrity: sha512-qXHVRsipmxZNKVb5IWUVHwQtr96Dfo3vnWszRgwMI2VhsW9EBi7b/2YlELrrqfPr0lwVnwhUUuNgYwvke+PdGA==}
+ knip@5.45.0:
+ resolution: {integrity: sha512-OUyO9FUEVCM6/j0gl+PP/LDeJEs4hIdE8n4vK4xrtjN1g3Qu4Ws1oexbWTCJ+8xt8Tgse4Yvhx96OqF/UVl3Ug==}
engines: {node: '>=18.18.0'}
hasBin: true
peerDependencies:
@@ -5170,6 +5566,12 @@ packages:
resolution: {integrity: sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==}
engines: {node: '>= 0.8.0'}
+ libphonenumber-js@1.11.2:
+ resolution: {integrity: sha512-V9mGLlaXN1WETzqQvSu6qf6XVAr3nFuJvWsHcuzCCCo6xUKawwSxOPTpan5CGOSKTn5w/bQuCZcLPJkyysgC3w==}
+
+ libphonenumber-js@1.11.20:
+ resolution: {integrity: sha512-/ipwAMvtSZRdiQBHqW1qxqeYiBMzncOQLVA+62MWYr7N4m7Q2jqpJ0WgT7zlOEOpyLRSqrMXidbJpC0J77AaKA==}
+
lie@3.1.1:
resolution: {integrity: sha512-RiNhHysUjhrDQntfYSfY4MU24coXXdEOgw9WGcKHNeEwffDYbF//u87M1EWaMGzuFoSbqW0C9C6lEEhDOAswfw==}
@@ -5204,6 +5606,7 @@ packages:
lodash.isequal@4.5.0:
resolution: {integrity: sha512-pDo3lu8Jhfjqls6GkMgpahsF9kCyayhgykjyLMNFTKWrpVdAQtYyB4muAMWozBB4ig/dtWAmsMxLEI8wuz+DYQ==}
+ deprecated: This package is deprecated. Use require('node:util').isDeepStrictEqual instead.
lodash.memoize@4.1.2:
resolution: {integrity: sha512-t7j+NzmgnQzTAYXcsHYLgimltOV1MXHtlOWf6GjL9Kj8GK5FInw5JotxvbOs+IvV1/Dzo04/fCGfLVs7aXb4Ag==}
@@ -5228,9 +5631,6 @@ packages:
loupe@2.3.7:
resolution: {integrity: sha512-zSMINGVYkdpYSOBmLi0D1Uo7JU9nVdQKrHxC8eYlV+9YKK9WePqAlL7lSlorG/U2Fw1w0hTBmaa/jrQ3UbPHtA==}
- loupe@3.1.2:
- resolution: {integrity: sha512-23I4pFZHmAemUnz8WZXbYRSKYj801VDaNv9ETuMh7IrMc7VuVVSo+Z9iLE3ni30+U48iDWfi30d3twAXBYmnCg==}
-
loupe@3.1.3:
resolution: {integrity: sha512-kkIp7XSkP78ZxJEsSxW3712C6teJVoeHHwgo9zJ380de7IYyJ2ISlxojcH2pC5OFLewESmnRi/+XCDIEEVyoug==}
@@ -5270,14 +5670,14 @@ packages:
make-error@1.3.6:
resolution: {integrity: sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==}
- markdown-to-jsx@7.7.3:
- resolution: {integrity: sha512-o35IhJDFP6Fv60zPy+hbvZSQMmgvSGdK5j8NRZ7FeZMY+Bgqw+dSg7SC1ZEzC26++CiOUCqkbq96/c3j/FfTEQ==}
+ markdown-to-jsx@7.7.4:
+ resolution: {integrity: sha512-1bSfXyBKi+EYS3YY+e0Csuxf8oZ3decdfhOav/Z7Wrk89tjudyL5FOmwZQUoy0/qVXGUl+6Q3s2SWtpDEWITfQ==}
engines: {node: '>= 10'}
peerDependencies:
react: ^18.2.0
- match-all@1.2.6:
- resolution: {integrity: sha512-0EESkXiTkWzrQQntBu2uzKvLu6vVkUGz40nGPbSZuegcfE5UuSzNjLaIu76zJWuaT/2I3Z/8M06OlUOZLGwLlQ==}
+ match-all@1.2.7:
+ resolution: {integrity: sha512-qSpsBKarh55r9KyXzFC3xBLRf2GlGasba2em9kbpRsSlGvdTAqjx3QD0r3FKSARiW+OE4iMHYsolM3aX9n5djw==}
math-intrinsics@1.1.0:
resolution: {integrity: sha512-/IXtbwEk5HTPyEwyKX6hGkYXxM9nbj64B+ilVJnC/R6B0pH5G4V3b0pVbL7DBj4tkhBAppbQUlf6F6Xl9LHu1g==}
@@ -5343,8 +5743,8 @@ packages:
resolution: {integrity: sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==}
engines: {node: '>=4'}
- miniflare@3.20241230.2:
- resolution: {integrity: sha512-gFC3IaUKrLGdtA6y6PLpC/QE5YAjB5ITCfBZHkosRyFZ9ApaCHKcHRvrEFMc/R19QxxtHD+G3tExEHp7MmtsYQ==}
+ miniflare@3.20250214.0:
+ resolution: {integrity: sha512-XKwn+X/V2CEpbRhoeaIcJHpV/Duz5Md5rxVT8I6S1oqd3aLZkn8cUX1tuxHpUvfQSPuXwWH+2ESLNnTf9PKEWg==}
engines: {node: '>=16.13'}
hasBin: true
@@ -5415,8 +5815,8 @@ packages:
ms@2.1.3:
resolution: {integrity: sha512-6FlzubTLZG3J2a/NVCAleEhjzq5oxgHyaCU9yYXvcLsvoVaHJq/s5xXI6/XXP6tz7R9xAOtHnSO/tXtF3WRTlA==}
- msw@2.7.0:
- resolution: {integrity: sha512-BIodwZ19RWfCbYTxWTUfTXc+sg4OwjCAgxU1ZsgmggX/7S3LdUifsbUPJs61j0rWb19CZRGY5if77duhc0uXzw==}
+ msw@2.7.3:
+ resolution: {integrity: sha512-+mycXv8l2fEAjFZ5sjrtjJDmm2ceKGjrNbBr1durRg6VkU9fNUE/gsmQ51hWbHqs+l35W1iM+ZsmOD9Fd6lspw==}
engines: {node: '>=18'}
hasBin: true
peerDependencies:
@@ -5531,6 +5931,9 @@ packages:
resolution: {integrity: sha512-LA4ZjwlnUblHVgq0oBF3Jl/6h/Nvs5fzBLwdEF4nuxnFdsfajde4WfxtJr3CaiH+F6ewcIB/q4jQ4UzPyid+CQ==}
hasBin: true
+ node-mock-http@1.0.0:
+ resolution: {integrity: sha512-0uGYQ1WQL1M5kKvGRXWQ3uZCHtLTO8hln3oBjIusM75WoesZ909uQJs/Hb946i2SS+Gsrhkaa6iAO17jRIv6DQ==}
+
node-releases@2.0.19:
resolution: {integrity: sha512-xxOWJsBKtzAq7DY0J+DTzuz58K8e7sJbdgwkbMWQe8UYB6ekmsQ45q0M/tJDsGaZmbC+l7n57UV8Hl5tHxO9uw==}
@@ -5545,14 +5948,18 @@ packages:
nth-check@2.1.1:
resolution: {integrity: sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==}
+ number-to-bn@1.7.0:
+ resolution: {integrity: sha512-wsJ9gfSz1/s4ZsJN01lyonwuxA1tml6X1yBDnfpMglypcBRFZZkus26EdPSlqS5GJfYddVZa22p3VNb3z5m5Ig==}
+ engines: {node: '>=6.5.0', npm: '>=3'}
+
nwsapi@2.2.16:
resolution: {integrity: sha512-F1I/bimDpj3ncaNDhfyMWuFqmQDBwDB0Fogc2qpL3BWvkQteFD/8BzWuIRl83rq0DXfm8SGt/HFhLXZyljTXcQ==}
obj-multiplex@1.0.0:
resolution: {integrity: sha512-0GNJAOsHoBHeNTvl5Vt6IWnpUEcc3uSRxzBri7EDyIcMgYvnY2JL2qdeV5zTMjWQX5OHcD5amcW2HFfDh0gjIA==}
- object-inspect@1.13.3:
- resolution: {integrity: sha512-kDCGIbxkDSXE3euJZZXzc6to7fCrKHNI/hSRQnRuQ+BWjFNzZwiFF8fj/6o2t2G9/jTj8PSIYTfCLelLZEeRpA==}
+ object-inspect@1.13.4:
+ resolution: {integrity: sha512-W67iLl4J2EXEGTbfeHCffrjDfitvLANg0UlX3wFUUSTx92KXRFegMHUVgSqE+wvhAbi4WqjGg9czysTV2Epbew==}
engines: {node: '>= 0.4'}
obliterator@2.0.5:
@@ -5713,13 +6120,13 @@ packages:
pkg-types@1.3.1:
resolution: {integrity: sha512-/Jm5M4RvtBFVkKWRu2BLUTNP8/M2a+UwuAX+ae4770q1qVGtfjG+WTCupoZixokjmHiry8uI+dlY8KXYV5HVVQ==}
- playwright-core@1.49.1:
- resolution: {integrity: sha512-BzmpVcs4kE2CH15rWfzpjzVGhWERJfmnXmniSyKeRZUs9Ws65m+RGIi7mjJK/euCegfn3i7jvqWeWyHe9y3Vgg==}
+ playwright-core@1.50.1:
+ resolution: {integrity: sha512-ra9fsNWayuYumt+NiM069M6OkcRb1FZSK8bgi66AtpFoWkg2+y0bJSNmkFrWhMbEBbVKC/EruAHH3g0zmtwGmQ==}
engines: {node: '>=18'}
hasBin: true
- playwright@1.49.1:
- resolution: {integrity: sha512-VYL8zLoNTBxVOrJBbDuRgDWa3i+mfQgDTrL8Ah9QXZ7ax4Dsj0MSq5bYgytRnDVVe+njoKnfsYkH3HzqVj5UZA==}
+ playwright@1.50.1:
+ resolution: {integrity: sha512-G8rwsOQJ63XG6BbKj2w5rHeavFjy5zynBA9zsJMMtBoe/Uf757oG12NXz6e6OirF7RCrTVAKFXbLmn1RbL7Qaw==}
engines: {node: '>=18'}
hasBin: true
@@ -5757,12 +6164,16 @@ packages:
resolution: {integrity: sha512-PS08Iboia9mts/2ygV3eLpY5ghnUcfLV/EXTOW1E2qYxJKGGBUtNjN76FYHnMs36RmARn41bC0AZmn+rR0OVpQ==}
engines: {node: ^10 || ^12 || >=14}
- postcss@8.5.1:
- resolution: {integrity: sha512-6oz2beyjc5VMn/KV1pPw8fliQkhBXrVn1Z3TVyqZxU8kZpzEKhBdmCFqI6ZbmGtamQvQGuU1sgPTk8ZrXDD7jQ==}
+ postcss@8.4.49:
+ resolution: {integrity: sha512-OCVPnIObs4N29kxTjzLfUryOkvZEq+pf8jTF0lg8E7uETuWHA+v7j3c/xJmiqpX450191LlmZfUKkXxkTry7nA==}
engines: {node: ^10 || ^12 || >=14}
- preact@10.25.4:
- resolution: {integrity: sha512-jLdZDb+Q+odkHJ+MpW/9U5cODzqnB+fy2EiHSZES7ldV5LK7yjlVzTp7R8Xy6W6y75kfK8iWYtFVH7lvjwrCMA==}
+ postcss@8.5.3:
+ resolution: {integrity: sha512-dle9A3yYxlBSrt8Fu+IpjGT8SY8hN0mlaA6GY8t0P5PjIOZemULz/E2Bnm/2dcUOena75OTNkHI76uZBNUUq3A==}
+ engines: {node: ^10 || ^12 || >=14}
+
+ preact@10.26.2:
+ resolution: {integrity: sha512-0gNmv4qpS9HaN3+40CLBAnKe0ZfyE4ZWo5xKlC1rVrr0ckkEvJvAQqKaHANdFKsGstoxrY4AItZ7kZSGVoVjgg==}
prelude-ls@1.2.1:
resolution: {integrity: sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==}
@@ -5835,11 +6246,19 @@ 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'}
hasBin: true
+ qrcode@1.5.4:
+ resolution: {integrity: sha512-1ca71Zgiu6ORjHqFBDpnSMTR2ReToX4l1Au1VFLyVeBTFavzQnv5JxMFr3ukHVKpSrSA2MCk0lNJSykjUfz7Zg==}
+ engines: {node: '>=10.13.0'}
+ hasBin: true
+
qs@6.14.0:
resolution: {integrity: sha512-YWWTjgABSKcvs/nWBi9PycY/JiPJqOD4JA6o9Sej2AtvSGarXxKC3OQSk4pAarbdQlKAh5D4FCQkJNkW+GAn3w==}
engines: {node: '>=0.6'}
@@ -5969,8 +6388,8 @@ packages:
peerDependencies:
react: ^18.2.0
- react-use-intercom@5.4.1:
- resolution: {integrity: sha512-KfrFYTAyRuUn8hZiqzVMkVujOOWAQyclT1v3FMpqBHcdoyml31VsrvUDi95pX1hLBJ39kX4FKwzAi1OL9IsbDQ==}
+ react-use-intercom@5.4.3:
+ resolution: {integrity: sha512-evTgJWzBB+0G3lb8PKQlWIRub/VyfaJrNAgSb3HpCq6EQjI12r0F2kriUkE2EWbbj7HSA05SG+weA0Hb+kzq1g==}
peerDependencies:
react: ^18.2.0
react-dom: ^18.2.0
@@ -5999,10 +6418,13 @@ packages:
resolution: {integrity: sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==}
engines: {node: '>=8.10.0'}
- readdirp@4.1.1:
- resolution: {integrity: sha512-h80JrZu/MHUZCyHu5ciuoI0+WxsCxzxJTILn6Fs8rxSnFPh+UVHYfeIxK1nVGugMqkfC4vJcBOYbkfkwYK0+gw==}
+ readdirp@4.1.2:
+ resolution: {integrity: sha512-GDhwkLfywWL2s6vEjyhri+eXmfH6j1L7JE27WhqLeYzoh/A3DBaYGEj2H/HFZCn/kMfim73FXxEJTw06WtxQwg==}
engines: {node: '>= 14.18.0'}
+ 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'}
@@ -6075,8 +6497,8 @@ packages:
resolution: {integrity: sha512-U7WjGVG9sH8tvjW5SmGbQuui75FiyjAX72HX15DwBBwF9dNiQZRQAg9nnPhYy+TUnE0+VcrttuvNI8oSxZcocA==}
hasBin: true
- reusify@1.0.4:
- resolution: {integrity: sha512-U9nH88a3fc/ekCF1l0/UP1IosiuIjyTh7hBvXVMHYgVcfGvt897Xguj2UOLDeI5BG2m7/uwyaLVT6fbtCwTyzw==}
+ reusify@1.1.0:
+ resolution: {integrity: sha512-g6QUff04oZpHs0eG5p83rFLhHeV00ug/Yf9nZM6fLeUrPguBTkTQOdpAWWspMh55TZfVQDPaN3NQJfbVRAxdIw==}
engines: {iojs: '>=1.0.0', node: '>=0.10.0'}
rimraf@3.0.2:
@@ -6119,8 +6541,8 @@ packages:
engines: {node: '>=10.0.0'}
hasBin: true
- rollup@4.31.0:
- resolution: {integrity: sha512-9cCE8P4rZLx9+PjoyqHLs31V9a9Vpvfo4qNcs6JCiGWYhw2gijSetFbH6SSy1whnkgcefnUwr8sad7tgqsGvnw==}
+ rollup@4.34.8:
+ resolution: {integrity: sha512-489gTVMzAYdiZHFVA/ig/iYFllCcWFHMvUHI1rpFmkoUtRlQxqh6/yiNqnYibjMZ2b/+FUQwldG+aLsEt6bglQ==}
engines: {node: '>=18.0.0', npm: '>=8.0.0'}
hasBin: true
@@ -6136,8 +6558,8 @@ packages:
run-parallel@1.2.0:
resolution: {integrity: sha512-5l4VyZR86LZ/lDxZTR6jqL8AFE2S0IFLMP26AbjsLVADxHdhB/c0GUsH+y39UfCi3dzz8OlQuPmnaJOMoDHQBA==}
- rxjs@7.8.1:
- resolution: {integrity: sha512-AA3TVj+0A2iuIoQkWEK/tqFjBq2j+6PO6Y0zJcvzLAFhEFIO3HL0vls9hWLncZbAAbK0mar7oZ4V079I/qPMxg==}
+ rxjs@7.8.2:
+ resolution: {integrity: sha512-dhKf903U/PQZY6boNNtAGdWbG85WAbjT/1xYoZIC7FAY0yWapOBQVsVrDl58W86//e1VpMNBtRV4MaXfdMySFA==}
safe-push-apply@1.0.0:
resolution: {integrity: sha512-iKE9w/Z7xCzUMIZqdBsp6pEQvwuEebH4vdpjcDWnyzaI6yl6O9FHvVpmGelvEHNsoY6wGblkxR6Zty/h00WiSA==}
@@ -6188,8 +6610,8 @@ packages:
resolution: {integrity: sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==}
hasBin: true
- semver@7.6.3:
- resolution: {integrity: sha512-oVekP1cKtI+CTDvHWYFUcMtsK/00wmAEfyqKfNdARm8u1wNVhSgaX7A8d4UuIlUI5e84iEwOhs7ZPYRmzU9U6A==}
+ semver@7.7.1:
+ resolution: {integrity: sha512-hlq8tAfn0m/61p4BVRcPzIGr6LKiMwo4VM6dGi6pt4qcRkmNzTcWq6eCEjEh+qXjkMDvPlOFFSGwQjoEa6gyMA==}
engines: {node: '>=10'}
hasBin: true
@@ -6220,6 +6642,10 @@ packages:
shallowequal@1.1.0:
resolution: {integrity: sha512-y0m1JoUZSlPAjXVtPPW70aZWfIL/dSP7AFkRnniLCrK/8MDKog3TySTBmckD+RObVxH0v4Tox67+F14PdED2oQ==}
+ sharp@0.33.5:
+ resolution: {integrity: sha512-haPVm1EkS9pgvHrQ/F3Xy+hgcuMV0Wm9vfIBSiwZ05k+xgb0PkBQpGsAA/oWdDobNaZTH5ppvHtzCFbnSEwHVw==}
+ engines: {node: ^18.17.0 || ^20.3.0 || >=21.0.0}
+
shebang-command@2.0.0:
resolution: {integrity: sha512-kHxr2zZpYtdmrN1qDjrrX/Z1rR1kG8Dx+gkpK1G4eXmvXswmcE1hTWBWYUzlraYw1/yZp6YuDY77YtvbN0dmDA==}
engines: {node: '>=8'}
@@ -6239,6 +6665,9 @@ packages:
resolution: {integrity: sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==}
engines: {node: '>=14'}
+ simple-swizzle@0.2.2:
+ resolution: {integrity: sha512-JA//kQgZtbuY83m+xT+tXJkmJncGMTFT+C+g2h2R9uxkYIrE2yy9sgmcLhCnw57/WSD+Eh3J97FPEDFnbXnDUg==}
+
sirv@1.0.19:
resolution: {integrity: sha512-JuLThK3TnZG1TAKDwNIqNq6QA2afLOCcm+iE8D1Kj3GA40pSPsxQjjJl0J8X3tsR7T+CP1GavpzLwYkgVLWrZQ==}
engines: {node: '>= 10'}
@@ -6340,8 +6769,8 @@ packages:
stacktrace-js@2.0.2:
resolution: {integrity: sha512-Je5vBeY4S1r/RnLydLl0TBTi3F2qdfWmYsGvtfZgEI+SCprPppaIhQf5nGcal4gI4cGpCV/duLcAzT1np6sQqg==}
- stacktrace-parser@0.1.10:
- resolution: {integrity: sha512-KJP1OCML99+8fhOHxwwzyWrlUuVX5GQ0ZpJTd1DFXhdkrvg1szxfHhawXUZ3g9TkXORQd4/WG68jMlQZ2p8wlg==}
+ stacktrace-parser@0.1.11:
+ resolution: {integrity: sha512-WjlahMgHmCJpqzU8bIBy4qtsZdU9lRlcZE3Lvyej6t4tuOuv1vk57OW3MBrj6hXBFx/nNoC9MPMTcr5YA7NQbg==}
engines: {node: '>=6'}
stacktracey@2.1.8:
@@ -6435,6 +6864,13 @@ packages:
react-dom: ^18.2.0
react-is: '>= 16.8.0'
+ styled-components@6.1.15:
+ resolution: {integrity: sha512-PpOTEztW87Ua2xbmLa7yssjNyUF9vE7wdldRfn1I2E6RTkqknkBYpj771OxM/xrvRGinLy2oysa7GOd7NcZZIA==}
+ 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'}
@@ -6472,8 +6908,11 @@ packages:
engines: {node: '>=18.12.0'}
hasBin: true
- stylis@4.3.5:
- resolution: {integrity: sha512-K7npNOKGRYuhAFFzkzMGfxFDpN6gDwf8hcMiE+uveTVbBgm93HrNP3ZDUpKqzZ4pG7TP6fmb+EMAQPjq9FqqvA==}
+ stylis@4.3.2:
+ resolution: {integrity: sha512-bhtUjWd/z6ltJiQwg0dUfxEJ+W+jdqQd8TbWLWyeIJHlnsqmGLRFFd8e5mA0AZi/zx90smXRlN66YMTcaSFifg==}
+
+ stylis@4.3.6:
+ resolution: {integrity: sha512-yQ3rwFWRfwNUY7H5vpU0wfdkNSnvnJinhF9830Swlaxl03zsOjCfmX0ugac+3LtK0lYSgwL/KXc8oYL3mG4YFQ==}
summary@2.1.0:
resolution: {integrity: sha512-nMIjMrd5Z2nuB2RZCKJfFMjgS3fygbeyGk9PxPPaJR1RIcyN9yn4A63Isovzm3ZtQuEkLBVgMdPup8UeLH7aQw==}
@@ -6557,8 +6996,8 @@ packages:
tinyexec@0.3.2:
resolution: {integrity: sha512-KQQR9yN7R5+OSwaK0XQoj22pwHoTlgYqmUscPYoknOoWCWfj/5/ABTMRi69FrKU5ffPVh5QcFikpWJI/P1ocHA==}
- tinyglobby@0.2.10:
- resolution: {integrity: sha512-Zc+8eJlFMvgatPZTl6A9L/yht8QqdmUNtURHaKZLmKBE12hNPSrqNkUp2cs3M/UKmNVVAMFQYSjYIVHDjW5zew==}
+ tinyglobby@0.2.12:
+ resolution: {integrity: sha512-qkf4trmKSIiMTs/E63cxH+ojC2unam7rJ0WrauAzpT3ECNTxGRMlaXxVbfxMUC/w0LaYk6jQ4y/nGR9uBO3tww==}
engines: {node: '>=12.0.0'}
tinypool@1.0.2:
@@ -6642,6 +7081,9 @@ packages:
tslib@1.14.1:
resolution: {integrity: sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==}
+ tslib@2.6.2:
+ resolution: {integrity: sha512-AEYxH93jGFPn/a2iVAwW87VuUIkR1FVUKB77NwMF7nBTDkDrrT/Hpt/IrCJ0QXhW27jTBDcf5ZY7w6RiqTMw2Q==}
+
tslib@2.8.1:
resolution: {integrity: sha512-oJFu94HQb+KVduSUQL7wnpmqnfmLsOA/nAh6b6EH0wCEoK0/mPeXU6c3wKDV83MkOuHPRHtSXKKU99IBazS/2w==}
@@ -6683,8 +7125,8 @@ packages:
resolution: {integrity: sha512-Ne2YiiGN8bmrmJJEuTWTLJR32nh/JdL1+PSicowtNb0WFpn59GK8/lfD61bVtzguz7b3PBt74nxpv/Pw5po5Rg==}
engines: {node: '>=8'}
- type-fest@4.33.0:
- resolution: {integrity: sha512-s6zVrxuyKbbAsSAD5ZPTB77q4YIdRctkTbJ2/Dqlinwz+8ooH2gd+YA7VA6Pa93KML9GockVvoxjZ2vHP+mu8g==}
+ type-fest@4.35.0:
+ resolution: {integrity: sha512-2/AwEFQDFEy30iOLjrvHDIH7e4HEWH+f1Yl1bI5XMqzuoCUqwYCdxachgsgv0og/JdVZUhbfjcJAoHj5L1753A==}
engines: {node: '>=16'}
typescript-logging@1.0.1:
@@ -6702,10 +7144,17 @@ packages:
engines: {node: '>=14.17'}
hasBin: true
+ ua-is-frozen@0.1.2:
+ resolution: {integrity: sha512-RwKDW2p3iyWn4UbaxpP2+VxwqXh0jpvdxsYpZ5j/MLLiQOfbsV5shpgQiw93+KMYQPcteeMQ289MaAFzs3G9pw==}
+
ua-parser-js@1.0.40:
resolution: {integrity: sha512-z6PJ8Lml+v3ichVojCiB8toQJBuwR42ySM4ezjXIqXK3M0HczmKQ3LF4rhU55PfD99KEEXQG6yb7iOMyvYuHew==}
hasBin: true
+ ua-parser-js@2.0.2:
+ resolution: {integrity: sha512-NoaPjzMmuUlo5bJ2jrdkzvHL8gpcgVrhUugAqsqsundDO3R8rw7R0OwxLoWhcKtsTb+6u3z9dES8m6+vxEcJog==}
+ hasBin: true
+
ufo@1.5.4:
resolution: {integrity: sha512-UsUk3byDzKd04EyoZ7U4DOlxQaD14JUKQl6/P7wiX4FNvUfm3XL246n9W5AmqwW5RSFJ27NAuM0iLscAOYUiGQ==}
@@ -6715,6 +7164,9 @@ packages:
uncrypto@0.1.3:
resolution: {integrity: sha512-Ql87qFHB3s/De2ClA9e0gsnS6zXG27SkTiSJwjCc9MebbfapQfuPzumMIUMi38ezPZVNFcHI9sUIepeQfw8J8Q==}
+ undici-types@5.26.5:
+ resolution: {integrity: sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==}
+
undici-types@6.19.8:
resolution: {integrity: sha512-ve2KP6f/JnbPBFyobGHuerC9g1FYGn/F8n1LWTwNxCEzd6IfqTwUQcNXgEtmmQ6DlRrC1hrSrBnCZPokRrDHjw==}
@@ -6722,11 +7174,8 @@ packages:
resolution: {integrity: sha512-zICwjrDrcrUE0pyyJc1I2QzBkLM8FINsgOrt6WjA+BgajVq9Nxu2PbFFXUrAggLfDXlZGZBVZYw7WNV5KiBiBA==}
engines: {node: '>=14.0'}
- unenv-nightly@2.0.0-20250109-100802-88ad671:
- resolution: {integrity: sha512-Uij6gODNNNNsNBoDlnaMvZI99I6YlVJLRfYH8AOLMlbFrW7k2w872v9VLuIdch2vF8QBeSC4EftIh5sG4ibzdA==}
-
- unenv@1.10.0:
- resolution: {integrity: sha512-wY5bskBQFL9n3Eca5XnhH6KbUo/tfvkwm9OpcdCvLaeA7piBNbavbOKJySEwQ1V0RH6HvNlSAFRTpvTqgKRQXQ==}
+ unenv@2.0.0-rc.1:
+ resolution: {integrity: sha512-PU5fb40H8X149s117aB4ytbORcCvlASdtF97tfls4BPIyj4PeVxvpSuy1jAptqYHqB0vb2w2sHvzM0XWcp2OKg==}
unfetch@4.2.0:
resolution: {integrity: sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==}
@@ -6763,27 +7212,27 @@ packages:
resolution: {integrity: sha512-pjy2bYhSsufwWlKwPc+l3cN7+wuJlK6uz0YdJEOlQDbl6jo/YlPi4mb8agUkVC8BF7V8NuzeyPNqRksA3hztKQ==}
engines: {node: '>= 0.8'}
- unstorage@1.14.4:
- resolution: {integrity: sha512-1SYeamwuYeQJtJ/USE1x4l17LkmQBzg7deBJ+U9qOBoHo15d1cDxG4jM31zKRgF7pG0kirZy4wVMX6WL6Zoscg==}
+ unstorage@1.15.0:
+ resolution: {integrity: sha512-m40eHdGY/gA6xAPqo8eaxqXgBuzQTlAKfmB1iF7oCKXE1HfwHwzDJBywK+qQGn52dta+bPlZluPF7++yR3p/bg==}
peerDependencies:
'@azure/app-configuration': ^1.8.0
'@azure/cosmos': ^4.2.0
'@azure/data-tables': ^13.3.0
- '@azure/identity': ^4.5.0
+ '@azure/identity': ^4.6.0
'@azure/keyvault-secrets': ^4.9.0
'@azure/storage-blob': ^12.26.0
'@capacitor/preferences': ^6.0.3
- '@deno/kv': '>=0.8.4'
+ '@deno/kv': '>=0.9.0'
'@netlify/blobs': ^6.5.0 || ^7.0.0 || ^8.1.0
'@planetscale/database': ^1.19.0
'@upstash/redis': ^1.34.3
- '@vercel/blob': '>=0.27.0'
+ '@vercel/blob': '>=0.27.1'
'@vercel/kv': ^1.0.1
aws4fetch: ^1.0.20
db0: '>=0.2.1'
idb-keyval: ^6.2.1
ioredis: ^5.4.2
- uploadthing: ^7.4.1
+ uploadthing: ^7.4.4
peerDependenciesMeta:
'@azure/app-configuration':
optional: true
@@ -6865,10 +7314,18 @@ packages:
peerDependencies:
react: ^18.2.0
+ use-sync-external-store@1.4.0:
+ resolution: {integrity: sha512-9WXSPC5fMv61vaupRkCKCxsPxBocVnwakBEkMIHHpkTTg6icbJtg6jzgtLDm4bl3cSHAca52rYWih0k4K3PfHw==}
+ peerDependencies:
+ react: ^18.2.0
+
utf-8-validate@5.0.10:
resolution: {integrity: sha512-Z6czzLq4u8fPOyx7TU6X3dvUZVvoJmxSQ+IcrlmagKhilxlhZgxPK6C5Jqbkw1IDUmFTM+cz9QDnnLTwDz/2gQ==}
engines: {node: '>=6.14.2'}
+ utf8@3.0.0:
+ resolution: {integrity: sha512-E8VjFIQ/TyQgp+TZfS6l8yp/xWppSAHzidGiRrqe4bK4XP9pTRyKFgGJpO3SN7zdX4DeomTrwaseCHovfpFcqQ==}
+
util-deprecate@1.0.2:
resolution: {integrity: sha512-EPD5q1uXyFxJpCrLnCc1nHnq3gOa6DZBocAIiI2TaSCA7VCJ1UJDMagCzIkXNsUYfD1daK//LTEQ8xiIbrHtcw==}
@@ -6911,27 +7368,32 @@ packages:
engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
- vite-plugin-magical-svg@1.3.0:
- resolution: {integrity: sha512-uUxFEq+qHtNXRmGuF5TJxjn4fO0AKM9DCc0jp5WNxyx76FFvyiVcrhS8J3bi3N5DGHeawE+D9OO9/Xf8BHE5qA==}
+ vite-plugin-magical-svg@1.5.0:
+ resolution: {integrity: sha512-y7TzLhYWxC065S6cmJgUCPjkOZtB8bvckGJIISOghDKZFqkbjw6twdr3vdyo7ipnh5rgKMJVm9uLDfJiJZsCvQ==}
peerDependencies:
vite: '>= 3.0.0'
- vite@5.4.14:
- resolution: {integrity: sha512-EK5cY7Q1D8JNhSaPKVK4pwBFvaTmZxEnoKXLG/U9gmdDcihQGNzFlgIvaxezFR4glP1LsuiedwMBqCXH3wZccA==}
- engines: {node: ^18.0.0 || >=20.0.0}
+ vite@6.2.0:
+ resolution: {integrity: sha512-7dPxoo+WsT/64rDcwoOjk76XHj+TqNTIvHKcuMQ1k4/SeHDaQt5GFAeLYzrimZrMpn/O6DtdI03WUjdxuPM0oQ==}
+ engines: {node: ^18.0.0 || ^20.0.0 || >=22.0.0}
hasBin: true
peerDependencies:
- '@types/node': ^18.0.0 || >=20.0.0
+ '@types/node': ^18.0.0 || ^20.0.0 || >=22.0.0
+ jiti: '>=1.21.0'
less: '*'
lightningcss: ^1.21.0
sass: '*'
sass-embedded: '*'
stylus: '*'
sugarss: '*'
- terser: ^5.4.0
+ terser: ^5.16.0
+ tsx: ^4.8.1
+ yaml: ^2.4.2
peerDependenciesMeta:
'@types/node':
optional: true
+ jiti:
+ optional: true
less:
optional: true
lightningcss:
@@ -6946,6 +7408,10 @@ packages:
optional: true
terser:
optional: true
+ tsx:
+ optional: true
+ yaml:
+ optional: true
vitest-canvas-mock@0.3.3:
resolution: {integrity: sha512-3P968tYBpqYyzzOaVtqnmYjqbe13576/fkjbDEJSfQAkHtC5/UjuRHOhFEN/ZV5HVZIkaROBUWgazDKJ+Ibw+Q==}
@@ -7003,8 +7469,8 @@ packages:
vscode-uri@2.1.2:
resolution: {integrity: sha512-8TEXQxlldWAuIODdukIb+TR5s+9Ds40eSJrw+1iDDA9IFORPjMELarNQE3myz5XIkWWpdprmJjm1/SxMlWOC8A==}
- vscode-uri@3.0.8:
- resolution: {integrity: sha512-AyFQ0EVmsOZOlAnxoFOGOq1SQDWAB7C6aqMGS23svWAllfOaxbuFvcT8D1i8z3Gyn8fraVeZNNmN6e9bxxXkKw==}
+ vscode-uri@3.1.0:
+ resolution: {integrity: sha512-/BpdSx+yCQGnCvecbyXdxHDkuk55/G3xwnC0GqY4gmQ3j+A+g8kzzgB4Nk/SINjqn6+waqw3EgbVF2QKExkRxQ==}
w3c-xmlserializer@5.0.0:
resolution: {integrity: sha512-o8qghlI8NZHU1lLPrpi2+Uq7abh4GGPpYANlalzWxyWteJOCsr/P+oPBA49TOLu5FTZO4d3F9MnWJfiMo4BkmA==}
@@ -7037,6 +7503,14 @@ packages:
resolution: {integrity: sha512-d2JWLCivmZYTSIoge9MsgFCZrt571BikcWGYkjC1khllbTeDlGqZ2D8vD8E/lJa8WGWbb7Plm8/XJYV7IJHZZw==}
engines: {node: '>= 8'}
+ web3-eth-abi@1.10.4:
+ resolution: {integrity: sha512-cZ0q65eJIkd/jyOlQPDjr8X4fU6CRL1eWgdLwbWEpo++MPU/2P4PFk5ZLAdye9T5Sdp+MomePPJ/gHjLMj2VfQ==}
+ engines: {node: '>=8.0.0'}
+
+ web3-utils@1.10.4:
+ resolution: {integrity: sha512-tsu8FiKJLk2PzhDl9fXbGUWTkkVXYhtTA+SmEFkKft+9BgwLxfCRpU96sWv7ICC8zixBNd3JURVoiR3dUXgP8A==}
+ engines: {node: '>=8.0.0'}
+
webauthn-p256@0.0.5:
resolution: {integrity: sha512-drMGNWKdaixZNobeORVIqq7k5DsRC9FnG201K2QjeOoQLmtSDaSsVZdkg6n5jUALJKcAG++zBPJXmv6hy0nWFg==}
@@ -7067,8 +7541,8 @@ packages:
resolution: {integrity: sha512-QaKxh0eNIi2mE9p2vEdzfagOKHCcj1pJ56EEHGQOVxp8r9/iszLUUV7v89x9O1p/T+NlTM5W7jW6+cz4Fq1YVg==}
engines: {node: '>=18'}
- whatwg-url@14.1.0:
- resolution: {integrity: sha512-jlf/foYIKywAt3x/XWKZ/3rz8OSJPiWktjmk891alJUEjiVxKX9LEO92qH3hv4aJ0mN3MWPvGMCy8jQi95xK4w==}
+ whatwg-url@14.1.1:
+ resolution: {integrity: sha512-mDGf9diDad/giZ/Sm9Xi2YcyzaFpbdLpJPr+E9fSkyQ7KpQD4SdFcugkRQYzhmfI4KeV4Qpnn2sKPdo+kmsgRQ==}
engines: {node: '>=18'}
whatwg-url@5.0.0:
@@ -7099,20 +7573,20 @@ packages:
resolution: {integrity: sha512-BN22B5eaMMI9UMtjrGd5g5eCYPpCPDUy0FJXbYsaT5zYxjFOckS53SQDE3pWkVoWpHXVb3BrYcEN4Twa55B5cA==}
engines: {node: '>=0.10.0'}
- workerd@1.20241230.0:
- resolution: {integrity: sha512-EgixXP0JGXGq6J9lz17TKIZtfNDUvJNG+cl9paPMfZuYWT920fFpBx+K04YmnbQRLnglsivF1GT9pxh1yrlWhg==}
+ workerd@1.20250214.0:
+ resolution: {integrity: sha512-QWcqXZLiMpV12wiaVnb3nLmfs/g4ZsFQq2mX85z546r3AX4CTIkXl0VP50W3CwqLADej3PGYiRDOTelDOwVG1g==}
engines: {node: '>=16'}
hasBin: true
workerpool@6.5.1:
resolution: {integrity: sha512-Fs4dNYcsdpYSAfVxhnl1L5zTksjvOJxtC5hzMNl+1t9B8hTJTdKDyZ5ju7ztgPy+ft9tBFXoOlDNiOT9WUXZlA==}
- wrangler@3.103.2:
- resolution: {integrity: sha512-eYcnubPhPBU1QMZYTam+vfCLpaQx+x1EWA6nFbLhid1eqNDAk1dNwNlbo+ZryrOHDEX3XlOxn2Z3Fx8vVv3hKw==}
+ wrangler@3.109.3:
+ resolution: {integrity: sha512-T+SfFYEbkWDzf8WRR1JzaVKPH7wAzyciRIua8qszT+UqPqFNb6M5beCHHK/de7Zk5z6W5lvLly9SHToC11maDQ==}
engines: {node: '>=16.17.0'}
hasBin: true
peerDependencies:
- '@cloudflare/workers-types': ^4.20241230.0
+ '@cloudflare/workers-types': ^4.20250214.0
peerDependenciesMeta:
'@cloudflare/workers-types':
optional: true
@@ -7184,6 +7658,18 @@ packages:
utf-8-validate:
optional: true
+ ws@8.18.1:
+ resolution: {integrity: sha512-RKW2aJZMXeMxVpnZ6bck+RswznaxmzdULiBr6KY7XkTnW8uvt0iT9H5DkHUChXrc+uurzwa0rVI16n/Xzjdz1w==}
+ 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
+
xml-name-validator@5.0.0:
resolution: {integrity: sha512-EvGK8EJ3DhaHfbRlETOWAS5pO9MZITeauHKJyb8wyajUfQUenkIg2MvLDTZ4T/TgIcm3HU0TFBgWWboAZ30UHg==}
engines: {node: '>=18'}
@@ -7262,8 +7748,8 @@ packages:
resolution: {integrity: sha512-cYVsTjKl8b+FrnidjibDWskAv7UKOfcwaVZdp/it9n1s9fU3IkgDbhdIRKCW4JDsAlECJY0ytoVPT3sK6kideA==}
engines: {node: '>=18'}
- youch@3.3.4:
- resolution: {integrity: sha512-UeVBXie8cA35DS6+nBkls68xaBBXCye0CNznrhszZjTbRVnJKQuNsyLKBTTL4ln1o1rh2PKtv35twV7irj5SEg==}
+ youch@3.2.3:
+ resolution: {integrity: sha512-ZBcWz/uzZaQVdCvfV4uk616Bbpf2ee+F/AvuKDR5EwX/Y4v06xWdtMluqTD7+KlZdM93lLm9gMZYo0sKBS0pgw==}
zksync-ethers@5.10.0:
resolution: {integrity: sha512-OAjTGAHF9wbdkRGkj7XZuF/a1Sk/FVbwH4pmLjAKlR7mJ7sQtQhBhrPU2dCc67xLaNvEESPfwil19ES5wooYFg==}
@@ -7277,8 +7763,16 @@ packages:
peerDependencies:
zod: ^3.18.0
- zod@3.24.1:
- resolution: {integrity: sha512-muH7gBL9sI1nciMZV67X5fTKKBLtwpZ5VBp1vsOQzj1MhrBZ4wlVCm3gedKZWLp0Oyel8sIGfeiz54Su+OVT+A==}
+ zod@3.22.3:
+ resolution: {integrity: sha512-EjIevzuJRiRPbVH4mGc8nApb/lVLKVpmUhAaR5R5doKGfAnGJ6Gr3CViAVjP+4FWSxCsybeWQdcgCtbX+7oZug==}
+
+ zod@3.24.2:
+ resolution: {integrity: sha512-lY7CDW43ECgW9u1TcT3IoXHflywfVqDYze4waEz812jR/bZ8FHDsl7pFQoSZTz5N+2NqRXs8GBwnAwo3ZNxqhQ==}
+
+ zustand-sync-tabs@0.2.2:
+ resolution: {integrity: sha512-i2pQPm5SGBIq50v7tt6XFXZSR/iJNErOslS5HzMKJVd06+xDyBCXioxEap0Ke6u98+a49fU5QRqzypo21wMe9A==}
+ peerDependencies:
+ zustand: 3-5
zustand@4.4.1:
resolution: {integrity: sha512-QCPfstAS4EBiTQzlaGP1gmorkh/UL1Leaj2tdj+zZCZ/9bm0WS7sI2wnfD5lpOszFqWJ1DcPnGoY8RDL61uokw==}
@@ -7295,9 +7789,24 @@ packages:
react:
optional: true
+ zustand@4.5.6:
+ resolution: {integrity: sha512-ibr/n1hBzLLj5Y+yUcU7dYw8p6WnIVzdJbnX+1YpaScvZVF2ziugqHs+LAmHw4lWO9c/zRj+K1ncgWDQuthEdQ==}
+ 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.4.1': {}
+ '@adobe/css-tools@4.4.2': {}
'@adraffy/ens-normalize@1.10.0': {}
@@ -7310,8 +7819,8 @@ snapshots:
'@asamuzakjp/css-color@2.8.3':
dependencies:
- '@csstools/css-calc': 2.1.1(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
- '@csstools/css-color-parser': 3.0.7(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
+ '@csstools/css-calc': 2.1.2(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
+ '@csstools/css-color-parser': 3.0.8(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
'@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3)
'@csstools/css-tokenizer': 3.0.3
lru-cache: 10.4.3
@@ -7322,20 +7831,20 @@ snapshots:
js-tokens: 4.0.0
picocolors: 1.1.1
- '@babel/compat-data@7.26.5': {}
+ '@babel/compat-data@7.26.8': {}
- '@babel/core@7.26.0':
+ '@babel/core@7.26.9':
dependencies:
'@ampproject/remapping': 2.3.0
'@babel/code-frame': 7.26.2
- '@babel/generator': 7.26.5
+ '@babel/generator': 7.26.9
'@babel/helper-compilation-targets': 7.26.5
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
- '@babel/helpers': 7.26.0
- '@babel/parser': 7.26.5
- '@babel/template': 7.25.9
- '@babel/traverse': 7.26.5(supports-color@5.5.0)
- '@babel/types': 7.26.5
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9)
+ '@babel/helpers': 7.26.9
+ '@babel/parser': 7.26.9
+ '@babel/template': 7.26.9
+ '@babel/traverse': 7.26.9(supports-color@5.5.0)
+ '@babel/types': 7.26.9
convert-source-map: 2.0.0
debug: 4.4.0(supports-color@5.5.0)
gensync: 1.0.0-beta.2
@@ -7344,49 +7853,49 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@babel/generator@7.26.5':
+ '@babel/generator@7.26.9':
dependencies:
- '@babel/parser': 7.26.5
- '@babel/types': 7.26.5
+ '@babel/parser': 7.26.9
+ '@babel/types': 7.26.9
'@jridgewell/gen-mapping': 0.3.8
'@jridgewell/trace-mapping': 0.3.25
jsesc: 3.1.0
'@babel/helper-annotate-as-pure@7.25.9':
dependencies:
- '@babel/types': 7.26.5
+ '@babel/types': 7.26.9
'@babel/helper-compilation-targets@7.26.5':
dependencies:
- '@babel/compat-data': 7.26.5
+ '@babel/compat-data': 7.26.8
'@babel/helper-validator-option': 7.25.9
browserslist: 4.24.4
lru-cache: 5.1.1
semver: 6.3.1
- '@babel/helper-create-class-features-plugin@7.25.9(@babel/core@7.26.0)':
+ '@babel/helper-create-class-features-plugin@7.26.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-annotate-as-pure': 7.25.9
'@babel/helper-member-expression-to-functions': 7.25.9
'@babel/helper-optimise-call-expression': 7.25.9
- '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.0)
+ '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.9)
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/traverse': 7.26.5(supports-color@5.5.0)
+ '@babel/traverse': 7.26.9(supports-color@5.5.0)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/helper-create-regexp-features-plugin@7.26.3(@babel/core@7.26.0)':
+ '@babel/helper-create-regexp-features-plugin@7.26.3(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-annotate-as-pure': 7.25.9
regexpu-core: 6.2.0
semver: 6.3.1
- '@babel/helper-define-polyfill-provider@0.6.3(@babel/core@7.26.0)':
+ '@babel/helper-define-polyfill-provider@0.6.3(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-compilation-targets': 7.26.5
'@babel/helper-plugin-utils': 7.26.5
debug: 4.4.0(supports-color@5.5.0)
@@ -7397,55 +7906,55 @@ snapshots:
'@babel/helper-member-expression-to-functions@7.25.9':
dependencies:
- '@babel/traverse': 7.26.5(supports-color@5.5.0)
- '@babel/types': 7.26.5
+ '@babel/traverse': 7.26.9(supports-color@5.5.0)
+ '@babel/types': 7.26.9
transitivePeerDependencies:
- supports-color
'@babel/helper-module-imports@7.25.9(supports-color@5.5.0)':
dependencies:
- '@babel/traverse': 7.26.5(supports-color@5.5.0)
- '@babel/types': 7.26.5
+ '@babel/traverse': 7.26.9(supports-color@5.5.0)
+ '@babel/types': 7.26.9
transitivePeerDependencies:
- supports-color
- '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.0)':
+ '@babel/helper-module-transforms@7.26.0(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-module-imports': 7.25.9(supports-color@5.5.0)
'@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.26.5(supports-color@5.5.0)
+ '@babel/traverse': 7.26.9(supports-color@5.5.0)
transitivePeerDependencies:
- supports-color
'@babel/helper-optimise-call-expression@7.25.9':
dependencies:
- '@babel/types': 7.26.5
+ '@babel/types': 7.26.9
'@babel/helper-plugin-utils@7.26.5': {}
- '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.0)':
+ '@babel/helper-remap-async-to-generator@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-annotate-as-pure': 7.25.9
'@babel/helper-wrap-function': 7.25.9
- '@babel/traverse': 7.26.5(supports-color@5.5.0)
+ '@babel/traverse': 7.26.9(supports-color@5.5.0)
transitivePeerDependencies:
- supports-color
- '@babel/helper-replace-supers@7.26.5(@babel/core@7.26.0)':
+ '@babel/helper-replace-supers@7.26.5(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-member-expression-to-functions': 7.25.9
'@babel/helper-optimise-call-expression': 7.25.9
- '@babel/traverse': 7.26.5(supports-color@5.5.0)
+ '@babel/traverse': 7.26.9(supports-color@5.5.0)
transitivePeerDependencies:
- supports-color
'@babel/helper-skip-transparent-expression-wrappers@7.25.9':
dependencies:
- '@babel/traverse': 7.26.5(supports-color@5.5.0)
- '@babel/types': 7.26.5
+ '@babel/traverse': 7.26.9(supports-color@5.5.0)
+ '@babel/types': 7.26.9
transitivePeerDependencies:
- supports-color
@@ -7457,588 +7966,588 @@ snapshots:
'@babel/helper-wrap-function@7.25.9':
dependencies:
- '@babel/template': 7.25.9
- '@babel/traverse': 7.26.5(supports-color@5.5.0)
- '@babel/types': 7.26.5
+ '@babel/template': 7.26.9
+ '@babel/traverse': 7.26.9(supports-color@5.5.0)
+ '@babel/types': 7.26.9
transitivePeerDependencies:
- supports-color
- '@babel/helpers@7.26.0':
+ '@babel/helpers@7.26.9':
dependencies:
- '@babel/template': 7.25.9
- '@babel/types': 7.26.5
+ '@babel/template': 7.26.9
+ '@babel/types': 7.26.9
- '@babel/parser@7.26.5':
+ '@babel/parser@7.26.9':
dependencies:
- '@babel/types': 7.26.5
+ '@babel/types': 7.26.9
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/traverse': 7.26.5(supports-color@5.5.0)
+ '@babel/traverse': 7.26.9(supports-color@5.5.0)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.9)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/traverse': 7.26.5(supports-color@5.5.0)
+ '@babel/traverse': 7.26.9(supports-color@5.5.0)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.0)':
+ '@babel/plugin-proposal-private-property-in-object@7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
- '@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-import-assertions@7.26.0(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-import-attributes@7.26.0(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-jsx@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-typescript@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.0)':
+ '@babel/plugin-syntax-unicode-sets-regex@7.18.6(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/core': 7.26.9
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9)
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-arrow-functions@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-async-generator-functions@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-async-generator-functions@7.26.8(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0)
- '@babel/traverse': 7.26.5(supports-color@5.5.0)
+ '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.9)
+ '@babel/traverse': 7.26.9(supports-color@5.5.0)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-async-to-generator@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-module-imports': 7.25.9(supports-color@5.5.0)
'@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-remap-async-to-generator': 7.25.9(@babel/core@7.26.9)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-block-scoped-functions@7.26.5(@babel/core@7.26.0)':
+ '@babel/plugin-transform-block-scoped-functions@7.26.5(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-block-scoping@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-class-properties@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/core': 7.26.9
+ '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.26.9)
'@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.26.0)':
+ '@babel/plugin-transform-class-static-block@7.26.0(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/core': 7.26.9
+ '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.26.9)
'@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-classes@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-classes@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-annotate-as-pure': 7.25.9
'@babel/helper-compilation-targets': 7.26.5
'@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.0)
- '@babel/traverse': 7.26.5(supports-color@5.5.0)
+ '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.9)
+ '@babel/traverse': 7.26.9(supports-color@5.5.0)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-computed-properties@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/template': 7.25.9
+ '@babel/template': 7.26.9
- '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-destructuring@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-dotall-regex@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/core': 7.26.9
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9)
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-duplicate-keys@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/core': 7.26.9
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9)
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-dynamic-import@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-exponentiation-operator@7.26.3(@babel/core@7.26.0)':
+ '@babel/plugin-transform-exponentiation-operator@7.26.3(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-export-namespace-from@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-for-of@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-for-of@7.26.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-function-name@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-compilation-targets': 7.26.5
'@babel/helper-plugin-utils': 7.26.5
- '@babel/traverse': 7.26.5(supports-color@5.5.0)
+ '@babel/traverse': 7.26.9(supports-color@5.5.0)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-json-strings@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-literals@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-logical-assignment-operators@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-member-expression-literals@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-modules-amd@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/core': 7.26.9
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9)
'@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.26.0)':
+ '@babel/plugin-transform-modules-commonjs@7.26.3(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/core': 7.26.9
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9)
'@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-modules-systemjs@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/core': 7.26.9
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9)
'@babel/helper-plugin-utils': 7.26.5
'@babel/helper-validator-identifier': 7.25.9
- '@babel/traverse': 7.26.5(supports-color@5.5.0)
+ '@babel/traverse': 7.26.9(supports-color@5.5.0)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-modules-umd@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.0)
+ '@babel/core': 7.26.9
+ '@babel/helper-module-transforms': 7.26.0(@babel/core@7.26.9)
'@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-named-capturing-groups-regex@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/core': 7.26.9
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9)
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-new-target@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-nullish-coalescing-operator@7.26.6(@babel/core@7.26.0)':
+ '@babel/plugin-transform-nullish-coalescing-operator@7.26.6(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-numeric-separator@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-object-rest-spread@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-compilation-targets': 7.26.5
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.9)
- '@babel/plugin-transform-object-super@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-object-super@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.0)
+ '@babel/helper-replace-supers': 7.26.5(@babel/core@7.26.9)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-optional-catch-binding@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-optional-chaining@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-parameters@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-private-methods@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/core': 7.26.9
+ '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.26.9)
'@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-private-property-in-object@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.26.9)
'@babel/helper-plugin-utils': 7.26.5
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-property-literals@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-react-constant-elements@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-react-constant-elements@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-react-display-name@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-react-display-name@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-react-jsx-development@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-react-jsx-development@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0)
+ '@babel/core': 7.26.9
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.9)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-react-jsx-self@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-react-jsx-source@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-react-jsx@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-annotate-as-pure': 7.25.9
'@babel/helper-module-imports': 7.25.9(supports-color@5.5.0)
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
- '@babel/types': 7.26.5
+ '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.9)
+ '@babel/types': 7.26.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-react-pure-annotations@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-react-pure-annotations@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-annotate-as-pure': 7.25.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-regenerator@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
regenerator-transform: 0.15.2
- '@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.26.0)':
+ '@babel/plugin-transform-regexp-modifiers@7.26.0(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/core': 7.26.9
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9)
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-reserved-words@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-shorthand-properties@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-spread@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-sticky-regex@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-template-literals@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-template-literals@7.26.8(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-typeof-symbol@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-typeof-symbol@7.26.7(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-typescript@7.26.5(@babel/core@7.26.0)':
+ '@babel/plugin-transform-typescript@7.26.8(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-annotate-as-pure': 7.25.9
- '@babel/helper-create-class-features-plugin': 7.25.9(@babel/core@7.26.0)
+ '@babel/helper-create-class-features-plugin': 7.26.9(@babel/core@7.26.9)
'@babel/helper-plugin-utils': 7.26.5
'@babel/helper-skip-transparent-expression-wrappers': 7.25.9
- '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-syntax-typescript': 7.25.9(@babel/core@7.26.9)
transitivePeerDependencies:
- supports-color
- '@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-unicode-escapes@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-unicode-property-regex@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/core': 7.26.9
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9)
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-unicode-regex@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/core': 7.26.9
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9)
'@babel/helper-plugin-utils': 7.26.5
- '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.0)':
+ '@babel/plugin-transform-unicode-sets-regex@7.25.9(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.0)
+ '@babel/core': 7.26.9
+ '@babel/helper-create-regexp-features-plugin': 7.26.3(@babel/core@7.26.9)
'@babel/helper-plugin-utils': 7.26.5
- '@babel/preset-env@7.26.0(@babel/core@7.26.0)':
+ '@babel/preset-env@7.26.9(@babel/core@7.26.9)':
dependencies:
- '@babel/compat-data': 7.26.5
- '@babel/core': 7.26.0
+ '@babel/compat-data': 7.26.8
+ '@babel/core': 7.26.9
'@babel/helper-compilation-targets': 7.26.5
'@babel/helper-plugin-utils': 7.26.5
'@babel/helper-validator-option': 7.25.9
- '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.0)
- '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.26.0)
- '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.0)
- '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.0)
- '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-async-generator-functions': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-block-scoped-functions': 7.26.5(@babel/core@7.26.0)
- '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.26.0)
- '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-dotall-regex': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-exponentiation-operator': 7.26.3(@babel/core@7.26.0)
- '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-for-of': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-json-strings': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.0)
- '@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-new-target': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-nullish-coalescing-operator': 7.26.6(@babel/core@7.26.0)
- '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-regenerator': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-regexp-modifiers': 7.26.0(@babel/core@7.26.0)
- '@babel/plugin-transform-reserved-words': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-template-literals': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-typeof-symbol': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-unicode-property-regex': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.26.0)
- '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.0)
- babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.26.0)
- babel-plugin-polyfill-corejs3: 0.10.6(@babel/core@7.26.0)
- babel-plugin-polyfill-regenerator: 0.6.3(@babel/core@7.26.0)
+ '@babel/plugin-bugfix-firefox-class-in-computed-class-key': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-bugfix-safari-class-field-initializer-scope': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-proposal-private-property-in-object': 7.21.0-placeholder-for-preset-env.2(@babel/core@7.26.9)
+ '@babel/plugin-syntax-import-assertions': 7.26.0(@babel/core@7.26.9)
+ '@babel/plugin-syntax-import-attributes': 7.26.0(@babel/core@7.26.9)
+ '@babel/plugin-syntax-unicode-sets-regex': 7.18.6(@babel/core@7.26.9)
+ '@babel/plugin-transform-arrow-functions': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-async-generator-functions': 7.26.8(@babel/core@7.26.9)
+ '@babel/plugin-transform-async-to-generator': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-block-scoped-functions': 7.26.5(@babel/core@7.26.9)
+ '@babel/plugin-transform-block-scoping': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-class-properties': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-class-static-block': 7.26.0(@babel/core@7.26.9)
+ '@babel/plugin-transform-classes': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-computed-properties': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-destructuring': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-dotall-regex': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-duplicate-keys': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-duplicate-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-dynamic-import': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-exponentiation-operator': 7.26.3(@babel/core@7.26.9)
+ '@babel/plugin-transform-export-namespace-from': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-for-of': 7.26.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-function-name': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-json-strings': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-literals': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-logical-assignment-operators': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-member-expression-literals': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-modules-amd': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.9)
+ '@babel/plugin-transform-modules-systemjs': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-modules-umd': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-named-capturing-groups-regex': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-new-target': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-nullish-coalescing-operator': 7.26.6(@babel/core@7.26.9)
+ '@babel/plugin-transform-numeric-separator': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-object-rest-spread': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-object-super': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-optional-catch-binding': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-optional-chaining': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-parameters': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-private-methods': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-private-property-in-object': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-property-literals': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-regenerator': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-regexp-modifiers': 7.26.0(@babel/core@7.26.9)
+ '@babel/plugin-transform-reserved-words': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-shorthand-properties': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-spread': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-sticky-regex': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-template-literals': 7.26.8(@babel/core@7.26.9)
+ '@babel/plugin-transform-typeof-symbol': 7.26.7(@babel/core@7.26.9)
+ '@babel/plugin-transform-unicode-escapes': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-unicode-property-regex': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-unicode-regex': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-unicode-sets-regex': 7.25.9(@babel/core@7.26.9)
+ '@babel/preset-modules': 0.1.6-no-external-plugins(@babel/core@7.26.9)
+ babel-plugin-polyfill-corejs2: 0.4.12(@babel/core@7.26.9)
+ babel-plugin-polyfill-corejs3: 0.11.1(@babel/core@7.26.9)
+ babel-plugin-polyfill-regenerator: 0.6.3(@babel/core@7.26.9)
core-js-compat: 3.40.0
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.0)':
+ '@babel/preset-modules@0.1.6-no-external-plugins(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
- '@babel/types': 7.26.5
+ '@babel/types': 7.26.9
esutils: 2.0.3
- '@babel/preset-react@7.26.3(@babel/core@7.26.0)':
+ '@babel/preset-react@7.26.3(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
'@babel/helper-validator-option': 7.25.9
- '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-react-jsx-development': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-react-pure-annotations': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-transform-react-display-name': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-react-jsx': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-react-jsx-development': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-react-pure-annotations': 7.25.9(@babel/core@7.26.9)
transitivePeerDependencies:
- supports-color
- '@babel/preset-typescript@7.26.0(@babel/core@7.26.0)':
+ '@babel/preset-typescript@7.26.0(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
'@babel/helper-plugin-utils': 7.26.5
'@babel/helper-validator-option': 7.25.9
- '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.0)
- '@babel/plugin-transform-typescript': 7.26.5(@babel/core@7.26.0)
+ '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-modules-commonjs': 7.26.3(@babel/core@7.26.9)
+ '@babel/plugin-transform-typescript': 7.26.8(@babel/core@7.26.9)
transitivePeerDependencies:
- supports-color
- '@babel/runtime@7.26.0':
+ '@babel/runtime@7.26.9':
dependencies:
regenerator-runtime: 0.14.1
- '@babel/template@7.25.9':
+ '@babel/template@7.26.9':
dependencies:
'@babel/code-frame': 7.26.2
- '@babel/parser': 7.26.5
- '@babel/types': 7.26.5
+ '@babel/parser': 7.26.9
+ '@babel/types': 7.26.9
- '@babel/traverse@7.26.5(supports-color@5.5.0)':
+ '@babel/traverse@7.26.9(supports-color@5.5.0)':
dependencies:
'@babel/code-frame': 7.26.2
- '@babel/generator': 7.26.5
- '@babel/parser': 7.26.5
- '@babel/template': 7.25.9
- '@babel/types': 7.26.5
+ '@babel/generator': 7.26.9
+ '@babel/parser': 7.26.9
+ '@babel/template': 7.26.9
+ '@babel/types': 7.26.9
debug: 4.4.0(supports-color@5.5.0)
globals: 11.12.0
transitivePeerDependencies:
- supports-color
- '@babel/types@7.26.5':
+ '@babel/types@7.26.9':
dependencies:
'@babel/helper-string-parser': 7.25.9
'@babel/helper-validator-identifier': 7.25.9
@@ -8058,23 +8567,53 @@ snapshots:
'@types/tough-cookie': 4.0.5
tough-cookie: 4.1.4
+ '@celo/base@7.0.1': {}
+
+ '@celo/utils@8.0.1':
+ dependencies:
+ '@celo/base': 7.0.1
+ '@ethereumjs/rlp': 5.0.2
+ '@ethereumjs/util': 8.0.5
+ '@noble/ciphers': 1.1.3
+ '@noble/curves': 1.3.0
+ '@noble/hashes': 1.3.3
+ '@types/bn.js': 5.1.6
+ '@types/node': 18.19.76
+ bignumber.js: 9.1.2
+ fp-ts: 2.16.9
+ io-ts: 2.0.1(fp-ts@2.16.9)
+ 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.4':
dependencies:
mime: 3.0.0
- '@cloudflare/workerd-darwin-64@1.20241230.0':
+ '@cloudflare/workerd-darwin-64@1.20250214.0':
optional: true
- '@cloudflare/workerd-darwin-arm64@1.20241230.0':
+ '@cloudflare/workerd-darwin-arm64@1.20250214.0':
optional: true
- '@cloudflare/workerd-linux-64@1.20241230.0':
+ '@cloudflare/workerd-linux-64@1.20250214.0':
optional: true
- '@cloudflare/workerd-linux-arm64@1.20241230.0':
+ '@cloudflare/workerd-linux-arm64@1.20250214.0':
optional: true
- '@cloudflare/workerd-windows-64@1.20241230.0':
+ '@cloudflare/workerd-windows-64@1.20250214.0':
optional: true
'@cloudflare/workers-types@3.19.0': {}
@@ -8088,7 +8627,7 @@ snapshots:
eth-json-rpc-filters: 6.0.1
eventemitter3: 5.0.1
keccak: 3.0.4
- preact: 10.25.4
+ preact: 10.26.2
sha.js: 2.4.11
transitivePeerDependencies:
- supports-color
@@ -8099,24 +8638,30 @@ snapshots:
clsx: 1.2.1
eventemitter3: 5.0.1
keccak: 3.0.4
- preact: 10.25.4
+ preact: 10.26.2
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
- '@csstools/color-helpers@5.0.1': {}
+ '@csstools/color-helpers@5.0.2': {}
- '@csstools/css-calc@2.1.1(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)':
+ '@csstools/css-calc@2.1.2(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)':
dependencies:
'@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3)
'@csstools/css-tokenizer': 3.0.3
- '@csstools/css-color-parser@3.0.7(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)':
+ '@csstools/css-color-parser@3.0.8(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)':
dependencies:
- '@csstools/color-helpers': 5.0.1
- '@csstools/css-calc': 2.1.1(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
+ '@csstools/color-helpers': 5.0.2
+ '@csstools/css-calc': 2.1.2(@csstools/css-parser-algorithms@3.0.4(@csstools/css-tokenizer@3.0.3))(@csstools/css-tokenizer@3.0.3)
'@csstools/css-parser-algorithms': 3.0.4(@csstools/css-tokenizer@3.0.3)
'@csstools/css-tokenizer': 3.0.3
@@ -8147,18 +8692,31 @@ snapshots:
'@emmetio/scanner@1.0.4': {}
+ '@emnapi/runtime@1.3.1':
+ dependencies:
+ tslib: 2.8.1
+ optional: true
+
'@emotion/hash@0.9.2': {}
+ '@emotion/is-prop-valid@1.2.2':
+ dependencies:
+ '@emotion/memoize': 0.8.1
+
'@emotion/is-prop-valid@1.3.1':
dependencies:
'@emotion/memoize': 0.9.0
+ '@emotion/memoize@0.8.1': {}
+
'@emotion/memoize@0.9.0': {}
'@emotion/stylis@0.8.5': {}
'@emotion/unitless@0.7.5': {}
+ '@emotion/unitless@0.8.1': {}
+
'@ensdomains/address-encoder@1.0.0-rc.3':
dependencies:
'@noble/curves': 1.8.1
@@ -8190,11 +8748,11 @@ snapshots:
dns-packet: 5.6.1
typescript-logging: 1.0.1
- '@ensdomains/ens-contracts@1.4.0-beta.2(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10))':
+ '@ensdomains/ens-contracts@1.4.0-beta.2(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10))':
dependencies:
'@ensdomains/buffer': 0.1.1
'@ensdomains/solsha1': 0.0.3
- '@nomicfoundation/hardhat-verify': 2.0.12(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10))
+ '@nomicfoundation/hardhat-verify': 2.0.13(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10))
'@openzeppelin/contracts': 4.9.3
'@openzeppelin/contracts-v5': '@openzeppelin/contracts@5.1.0'
clones-with-immutable-args: https://codeload.github.com/Arachnid/clones-with-immutable-args/tar.gz/23768824cdc037f361f7065538b8f949cae9d3d1
@@ -8219,36 +8777,36 @@ snapshots:
- bare-buffer
- debug
- '@ensdomains/ensjs@4.0.3-alpha.12(typescript@5.7.3)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1))(zod@3.24.1)':
+ '@ensdomains/ensjs@4.0.3-alpha.12(typescript@5.7.3)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2))(zod@3.24.2)':
dependencies:
'@adraffy/ens-normalize': 1.10.1
'@ensdomains/address-encoder': 1.1.1
'@ensdomains/content-hash': 3.1.0-rc.1
'@ensdomains/dnsprovejs': 0.5.1
- abitype: 1.0.8(typescript@5.7.3)(zod@3.24.1)
+ abitype: 1.0.8(typescript@5.7.3)(zod@3.24.2)
dns-packet: 5.6.1
graphql: 16.10.0
graphql-request: 6.1.0(graphql@16.10.0)
pako: 2.1.0
ts-pattern: 5.6.2
- viem: 2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1)
+ viem: 2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2)
transitivePeerDependencies:
- encoding
- typescript
- zod
- '@ensdomains/hardhat-toolbox-viem-extended@0.0.5(@nomicfoundation/hardhat-viem@2.0.3(patch_hash=znglrikwqnjywwr7ebopjjz3mm)(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10))(typescript@5.7.3)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1))(zod@3.24.1))(hardhat-deploy@0.12.4(patch_hash=tlkqdaxsrdu4rtoksxd5dvmjze)(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10))(typescript@5.7.3)':
+ '@ensdomains/hardhat-toolbox-viem-extended@0.0.5(@nomicfoundation/hardhat-viem@2.0.3(patch_hash=znglrikwqnjywwr7ebopjjz3mm)(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10))(typescript@5.7.3)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2))(zod@3.24.2))(hardhat-deploy@0.12.4(patch_hash=tlkqdaxsrdu4rtoksxd5dvmjze)(bufferutil@4.0.9)(utf-8-validate@5.0.10))(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10))(typescript@5.7.3)':
dependencies:
- '@nomicfoundation/hardhat-viem': 2.0.3(patch_hash=znglrikwqnjywwr7ebopjjz3mm)(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10))(typescript@5.7.3)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1))(zod@3.24.1)
- hardhat: 2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10)
+ '@nomicfoundation/hardhat-viem': 2.0.3(patch_hash=znglrikwqnjywwr7ebopjjz3mm)(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10))(typescript@5.7.3)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2))(zod@3.24.2)
+ hardhat: 2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10)
hardhat-deploy: 0.12.4(patch_hash=tlkqdaxsrdu4rtoksxd5dvmjze)(bufferutil@4.0.9)(utf-8-validate@5.0.10)
typescript: 5.7.3
- '@ensdomains/headless-web3-provider@1.0.8(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1))':
+ '@ensdomains/headless-web3-provider@1.0.8(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2))':
dependencies:
'@metamask/json-rpc-engine': 9.0.3
'@metamask/utils': 9.3.0
- viem: 2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1)
+ viem: 2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2)
transitivePeerDependencies:
- supports-color
@@ -8277,139 +8835,145 @@ snapshots:
escape-string-regexp: 4.0.0
rollup-plugin-node-polyfills: 0.2.1
- '@esbuild/aix-ppc64@0.21.5':
+ '@esbuild/aix-ppc64@0.25.0':
optional: true
'@esbuild/android-arm64@0.17.19':
optional: true
- '@esbuild/android-arm64@0.21.5':
+ '@esbuild/android-arm64@0.25.0':
optional: true
'@esbuild/android-arm@0.17.19':
optional: true
- '@esbuild/android-arm@0.21.5':
+ '@esbuild/android-arm@0.25.0':
optional: true
'@esbuild/android-x64@0.17.19':
optional: true
- '@esbuild/android-x64@0.21.5':
+ '@esbuild/android-x64@0.25.0':
optional: true
'@esbuild/darwin-arm64@0.17.19':
optional: true
- '@esbuild/darwin-arm64@0.21.5':
+ '@esbuild/darwin-arm64@0.25.0':
optional: true
'@esbuild/darwin-x64@0.17.19':
optional: true
- '@esbuild/darwin-x64@0.21.5':
+ '@esbuild/darwin-x64@0.25.0':
optional: true
'@esbuild/freebsd-arm64@0.17.19':
optional: true
- '@esbuild/freebsd-arm64@0.21.5':
+ '@esbuild/freebsd-arm64@0.25.0':
optional: true
'@esbuild/freebsd-x64@0.17.19':
optional: true
- '@esbuild/freebsd-x64@0.21.5':
+ '@esbuild/freebsd-x64@0.25.0':
optional: true
'@esbuild/linux-arm64@0.17.19':
optional: true
- '@esbuild/linux-arm64@0.21.5':
+ '@esbuild/linux-arm64@0.25.0':
optional: true
'@esbuild/linux-arm@0.17.19':
optional: true
- '@esbuild/linux-arm@0.21.5':
+ '@esbuild/linux-arm@0.25.0':
optional: true
'@esbuild/linux-ia32@0.17.19':
optional: true
- '@esbuild/linux-ia32@0.21.5':
+ '@esbuild/linux-ia32@0.25.0':
optional: true
'@esbuild/linux-loong64@0.17.19':
optional: true
- '@esbuild/linux-loong64@0.21.5':
+ '@esbuild/linux-loong64@0.25.0':
optional: true
'@esbuild/linux-mips64el@0.17.19':
optional: true
- '@esbuild/linux-mips64el@0.21.5':
+ '@esbuild/linux-mips64el@0.25.0':
optional: true
'@esbuild/linux-ppc64@0.17.19':
optional: true
- '@esbuild/linux-ppc64@0.21.5':
+ '@esbuild/linux-ppc64@0.25.0':
optional: true
'@esbuild/linux-riscv64@0.17.19':
optional: true
- '@esbuild/linux-riscv64@0.21.5':
+ '@esbuild/linux-riscv64@0.25.0':
optional: true
'@esbuild/linux-s390x@0.17.19':
optional: true
- '@esbuild/linux-s390x@0.21.5':
+ '@esbuild/linux-s390x@0.25.0':
optional: true
'@esbuild/linux-x64@0.17.19':
optional: true
- '@esbuild/linux-x64@0.21.5':
+ '@esbuild/linux-x64@0.25.0':
+ optional: true
+
+ '@esbuild/netbsd-arm64@0.25.0':
optional: true
'@esbuild/netbsd-x64@0.17.19':
optional: true
- '@esbuild/netbsd-x64@0.21.5':
+ '@esbuild/netbsd-x64@0.25.0':
+ optional: true
+
+ '@esbuild/openbsd-arm64@0.25.0':
optional: true
'@esbuild/openbsd-x64@0.17.19':
optional: true
- '@esbuild/openbsd-x64@0.21.5':
+ '@esbuild/openbsd-x64@0.25.0':
optional: true
'@esbuild/sunos-x64@0.17.19':
optional: true
- '@esbuild/sunos-x64@0.21.5':
+ '@esbuild/sunos-x64@0.25.0':
optional: true
'@esbuild/win32-arm64@0.17.19':
optional: true
- '@esbuild/win32-arm64@0.21.5':
+ '@esbuild/win32-arm64@0.25.0':
optional: true
'@esbuild/win32-ia32@0.17.19':
optional: true
- '@esbuild/win32-ia32@0.21.5':
+ '@esbuild/win32-ia32@0.25.0':
optional: true
'@esbuild/win32-x64@0.17.19':
optional: true
- '@esbuild/win32-x64@0.21.5':
+ '@esbuild/win32-x64@0.25.0':
optional: true
'@eslint-community/eslint-utils@4.4.1(eslint@8.50.0)':
@@ -8426,7 +8990,7 @@ snapshots:
espree: 9.6.1
globals: 13.24.0
ignore: 5.3.2
- import-fresh: 3.3.0
+ import-fresh: 3.3.1
js-yaml: 4.1.0
minimatch: 3.1.2
strip-json-comments: 3.1.1
@@ -8442,6 +9006,8 @@ snapshots:
'@ethereumjs/rlp@4.0.1': {}
+ '@ethereumjs/rlp@5.0.2': {}
+
'@ethereumjs/tx@4.2.0':
dependencies:
'@ethereumjs/common': 3.2.0
@@ -8449,6 +9015,12 @@ snapshots:
'@ethereumjs/util': 8.1.0
ethereum-cryptography: 2.2.1
+ '@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
@@ -8710,65 +9282,289 @@ snapshots:
'@ethersproject/properties': 5.7.0
'@ethersproject/strings': 5.7.0
- '@fastify/busboy@2.1.1': {}
+ '@fastify/busboy@2.1.1': {}
+
+ '@getpara/core-components@1.5.0':
+ dependencies:
+ '@stencil/core': 4.27.0
+ color-blend: 4.0.0
+ color2k: 2.0.3
+ gsap: 3.12.7
+ inputmask: 5.0.9
+ qrcode-with-logos: 1.1.1
+
+ '@getpara/core-sdk@1.5.0':
+ dependencies:
+ '@celo/utils': 8.0.1
+ '@cosmjs/encoding': 0.32.4
+ '@getpara/user-management-client': 1.5.0
+ '@noble/hashes': 1.7.1
+ base64url: 3.0.1
+ ethereumjs-util: 7.1.5
+ libphonenumber-js: 1.11.2
+ node-forge: 1.3.1(patch_hash=nfdrir6ttlr77nd4pr3kkewsuy)
+ qs: 6.14.0
+ transitivePeerDependencies:
+ - debug
+
+ '@getpara/rainbowkit-wallet@1.2.0-dev.4(xsk53jsxf3smxlxet4jy3cn5ym)':
+ dependencies:
+ '@getpara/rainbowkit': 1.2.0-dev.4(@emotion/is-prop-valid@1.3.1)(@types/react@18.3.12)(immer@9.0.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2))(wagmi@2.12.4(@tanstack/query-core@5.22.2)(@tanstack/react-query@5.22.2(react@18.3.1))(@types/react@18.3.12)(bufferutil@4.0.9)(immer@9.0.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.34.8)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2))(zod@3.24.2))
+ '@getpara/react-sdk': 1.5.0(@emotion/is-prop-valid@1.3.1)(@types/react@18.3.12)(immer@9.0.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@getpara/wagmi-v2-integration': 1.5.0(@emotion/is-prop-valid@1.3.1)(@types/react@18.3.12)(immer@9.0.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2))(wagmi@2.12.4(@tanstack/query-core@5.22.2)(@tanstack/react-query@5.22.2(react@18.3.1))(@types/react@18.3.12)(bufferutil@4.0.9)(immer@9.0.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.34.8)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2))(zod@3.24.2))
+ viem: 2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2)
+ wagmi: 2.12.4(@tanstack/query-core@5.22.2)(@tanstack/react-query@5.22.2(react@18.3.1))(@types/react@18.3.12)(bufferutil@4.0.9)(immer@9.0.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.34.8)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2))(zod@3.24.2)
+ transitivePeerDependencies:
+ - '@emotion/is-prop-valid'
+ - '@types/react'
+ - debug
+ - encoding
+ - immer
+ - react
+ - react-dom
+
+ '@getpara/rainbowkit@1.2.0-dev.4(@emotion/is-prop-valid@1.3.1)(@types/react@18.3.12)(immer@9.0.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2))(wagmi@2.12.4(@tanstack/query-core@5.22.2)(@tanstack/react-query@5.22.2(react@18.3.1))(@types/react@18.3.12)(bufferutil@4.0.9)(immer@9.0.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.34.8)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2))(zod@3.24.2))':
+ dependencies:
+ '@coinbase/wallet-sdk': 3.9.3
+ '@getpara/react-sdk': 1.5.0(@emotion/is-prop-valid@1.3.1)(@types/react@18.3.12)(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.3.12)(react@18.3.1)
+ ua-parser-js: 1.0.40
+ viem: 2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2)
+ wagmi: 2.12.4(@tanstack/query-core@5.22.2)(@tanstack/react-query@5.22.2(react@18.3.1))(@types/react@18.3.12)(bufferutil@4.0.9)(immer@9.0.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.34.8)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2))(zod@3.24.2)
+ transitivePeerDependencies:
+ - '@emotion/is-prop-valid'
+ - '@types/react'
+ - debug
+ - encoding
+ - immer
+ - supports-color
+
+ '@getpara/react-common@1.5.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@getpara/react-components': 1.5.0
+ '@getpara/web-sdk': 1.5.0
+ '@moonpay/moonpay-react': 1.8.10(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
+ libphonenumber-js: 1.11.20
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ styled-components: 6.1.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ ua-parser-js: 2.0.2
+ transitivePeerDependencies:
+ - debug
+ - encoding
+
+ '@getpara/react-components@1.5.0':
+ dependencies:
+ '@getpara/core-components': 1.5.0
+
+ '@getpara/react-sdk@1.5.0(@emotion/is-prop-valid@1.3.1)(@types/react@18.3.12)(immer@9.0.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
+ dependencies:
+ '@getpara/react-common': 1.5.0(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@getpara/react-components': 1.5.0
+ '@getpara/web-sdk': 1.5.0
+ '@tanstack/react-query': 5.22.2(react@18.3.1)
+ date-fns: 3.6.0
+ framer-motion: 11.3.28(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ libphonenumber-js: 1.11.20
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ styled-components: 6.1.15(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ zustand: 4.5.6(@types/react@18.3.12)(immer@9.0.21)(react@18.3.1)
+ zustand-sync-tabs: 0.2.2(zustand@4.5.6(@types/react@18.3.12)(immer@9.0.21)(react@18.3.1))
+ transitivePeerDependencies:
+ - '@emotion/is-prop-valid'
+ - '@types/react'
+ - debug
+ - encoding
+ - immer
+
+ '@getpara/user-management-client@1.5.0':
+ dependencies:
+ axios: 1.7.9
+ libphonenumber-js: 1.11.2
+ qs: 6.14.0
+ transitivePeerDependencies:
+ - debug
+
+ '@getpara/viem-v2-integration@1.5.0(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2))':
+ dependencies:
+ '@getpara/core-sdk': 1.5.0
+ viem: 2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2)
+ transitivePeerDependencies:
+ - debug
+
+ '@getpara/wagmi-v2-integration@1.5.0(@emotion/is-prop-valid@1.3.1)(@types/react@18.3.12)(immer@9.0.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2))(wagmi@2.12.4(@tanstack/query-core@5.22.2)(@tanstack/react-query@5.22.2(react@18.3.1))(@types/react@18.3.12)(bufferutil@4.0.9)(immer@9.0.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.34.8)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2))(zod@3.24.2))':
+ dependencies:
+ '@getpara/react-sdk': 1.5.0(@emotion/is-prop-valid@1.3.1)(@types/react@18.3.12)(immer@9.0.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ '@getpara/viem-v2-integration': 1.5.0(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2))
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+ viem: 2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2)
+ wagmi: 2.12.4(@tanstack/query-core@5.22.2)(@tanstack/react-query@5.22.2(react@18.3.1))(@types/react@18.3.12)(bufferutil@4.0.9)(immer@9.0.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.34.8)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2))(zod@3.24.2)
+ transitivePeerDependencies:
+ - '@emotion/is-prop-valid'
+ - '@types/react'
+ - debug
+ - encoding
+ - immer
+
+ '@getpara/web-sdk@1.5.0':
+ dependencies:
+ '@getpara/core-sdk': 1.5.0
+ '@getpara/user-management-client': 1.5.0
+ '@sentry/browser': 9.2.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: 2.0.2
+ transitivePeerDependencies:
+ - debug
+ - encoding
+
+ '@graphql-typed-document-node/core@3.2.0(graphql@16.10.0)':
+ dependencies:
+ graphql: 16.10.0
+
+ '@hapi/hoek@9.3.0': {}
+
+ '@hapi/topo@5.1.0':
+ dependencies:
+ '@hapi/hoek': 9.3.0
+
+ '@humanwhocodes/config-array@0.11.14':
+ dependencies:
+ '@humanwhocodes/object-schema': 2.0.3
+ debug: 4.4.0(supports-color@5.5.0)
+ minimatch: 3.1.2
+ transitivePeerDependencies:
+ - supports-color
+
+ '@humanwhocodes/module-importer@1.0.1': {}
+
+ '@humanwhocodes/object-schema@2.0.3': {}
+
+ '@ianvs/prettier-plugin-sort-imports@4.4.1(prettier@3.0.3)':
+ dependencies:
+ '@babel/generator': 7.26.9
+ '@babel/parser': 7.26.9
+ '@babel/traverse': 7.26.9(supports-color@5.5.0)
+ '@babel/types': 7.26.9
+ prettier: 3.0.3
+ semver: 7.7.1
+ transitivePeerDependencies:
+ - supports-color
+
+ '@img/sharp-darwin-arm64@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-darwin-arm64': 1.0.4
+ optional: true
+
+ '@img/sharp-darwin-x64@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-darwin-x64': 1.0.4
+ optional: true
+
+ '@img/sharp-libvips-darwin-arm64@1.0.4':
+ optional: true
+
+ '@img/sharp-libvips-darwin-x64@1.0.4':
+ optional: true
+
+ '@img/sharp-libvips-linux-arm64@1.0.4':
+ optional: true
+
+ '@img/sharp-libvips-linux-arm@1.0.5':
+ optional: true
+
+ '@img/sharp-libvips-linux-s390x@1.0.4':
+ optional: true
+
+ '@img/sharp-libvips-linux-x64@1.0.4':
+ optional: true
+
+ '@img/sharp-libvips-linuxmusl-arm64@1.0.4':
+ optional: true
+
+ '@img/sharp-libvips-linuxmusl-x64@1.0.4':
+ optional: true
- '@graphql-typed-document-node/core@3.2.0(graphql@16.10.0)':
- dependencies:
- graphql: 16.10.0
+ '@img/sharp-linux-arm64@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-arm64': 1.0.4
+ optional: true
- '@hapi/hoek@9.3.0': {}
+ '@img/sharp-linux-arm@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-arm': 1.0.5
+ optional: true
- '@hapi/topo@5.1.0':
- dependencies:
- '@hapi/hoek': 9.3.0
+ '@img/sharp-linux-s390x@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-s390x': 1.0.4
+ optional: true
- '@humanwhocodes/config-array@0.11.14':
- dependencies:
- '@humanwhocodes/object-schema': 2.0.3
- debug: 4.4.0(supports-color@5.5.0)
- minimatch: 3.1.2
- transitivePeerDependencies:
- - supports-color
+ '@img/sharp-linux-x64@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linux-x64': 1.0.4
+ optional: true
- '@humanwhocodes/module-importer@1.0.1': {}
+ '@img/sharp-linuxmusl-arm64@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linuxmusl-arm64': 1.0.4
+ optional: true
- '@humanwhocodes/object-schema@2.0.3': {}
+ '@img/sharp-linuxmusl-x64@0.33.5':
+ optionalDependencies:
+ '@img/sharp-libvips-linuxmusl-x64': 1.0.4
+ optional: true
- '@ianvs/prettier-plugin-sort-imports@4.4.1(prettier@3.0.3)':
+ '@img/sharp-wasm32@0.33.5':
dependencies:
- '@babel/generator': 7.26.5
- '@babel/parser': 7.26.5
- '@babel/traverse': 7.26.5(supports-color@5.5.0)
- '@babel/types': 7.26.5
- prettier: 3.0.3
- semver: 7.6.3
- transitivePeerDependencies:
- - supports-color
+ '@emnapi/runtime': 1.3.1
+ optional: true
+
+ '@img/sharp-win32-ia32@0.33.5':
+ optional: true
+
+ '@img/sharp-win32-x64@0.33.5':
+ optional: true
- '@inquirer/confirm@5.1.3(@types/node@20.17.19)':
+ '@inquirer/confirm@5.1.6(@types/node@20.17.19)':
dependencies:
- '@inquirer/core': 10.1.4(@types/node@20.17.19)
- '@inquirer/type': 3.0.2(@types/node@20.17.19)
+ '@inquirer/core': 10.1.7(@types/node@20.17.19)
+ '@inquirer/type': 3.0.4(@types/node@20.17.19)
+ optionalDependencies:
'@types/node': 20.17.19
- '@inquirer/core@10.1.4(@types/node@20.17.19)':
+ '@inquirer/core@10.1.7(@types/node@20.17.19)':
dependencies:
- '@inquirer/figures': 1.0.9
- '@inquirer/type': 3.0.2(@types/node@20.17.19)
+ '@inquirer/figures': 1.0.10
+ '@inquirer/type': 3.0.4(@types/node@20.17.19)
ansi-escapes: 4.3.2
cli-width: 4.1.0
mute-stream: 2.0.0
signal-exit: 4.1.0
- strip-ansi: 6.0.1
wrap-ansi: 6.2.0
yoctocolors-cjs: 2.1.2
- transitivePeerDependencies:
- - '@types/node'
+ optionalDependencies:
+ '@types/node': 20.17.19
- '@inquirer/figures@1.0.9': {}
+ '@inquirer/figures@1.0.10': {}
- '@inquirer/type@3.0.2(@types/node@20.17.19)':
- dependencies:
+ '@inquirer/type@3.0.4(@types/node@20.17.19)':
+ optionalDependencies:
'@types/node': 20.17.19
'@isaacs/cliui@8.0.2':
@@ -8962,7 +9758,7 @@ snapshots:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- '@metamask/sdk@0.27.0(bufferutil@4.0.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.31.0)(utf-8-validate@5.0.10)':
+ '@metamask/sdk@0.27.0(bufferutil@4.0.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.34.8)(utf-8-validate@5.0.10)':
dependencies:
'@metamask/onboarding': 1.0.1
'@metamask/providers': 16.1.0
@@ -8982,7 +9778,7 @@ snapshots:
qrcode-terminal-nooctal: 0.12.1
react-native-webview: 11.26.1(react@18.3.1)
readable-stream: 3.6.2
- rollup-plugin-visualizer: 5.14.0(rollup@4.31.0)
+ rollup-plugin-visualizer: 5.14.0(rollup@4.34.8)
socket.io-client: 4.8.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)
util: 0.12.5
uuid: 8.3.2
@@ -9005,7 +9801,7 @@ snapshots:
'@ethereumjs/tx': 4.2.0
'@types/debug': 4.1.12
debug: 4.4.0(supports-color@5.5.0)
- semver: 7.6.3
+ semver: 7.7.1
superstruct: 1.0.4
transitivePeerDependencies:
- supports-color
@@ -9019,7 +9815,7 @@ snapshots:
'@types/debug': 4.1.12
debug: 4.4.0(supports-color@5.5.0)
pony-cause: 2.1.11
- semver: 7.6.3
+ semver: 7.7.1
uuid: 9.0.1
transitivePeerDependencies:
- supports-color
@@ -9033,11 +9829,15 @@ snapshots:
'@types/debug': 4.1.12
debug: 4.4.0(supports-color@5.5.0)
pony-cause: 2.1.11
- semver: 7.6.3
+ semver: 7.7.1
uuid: 9.0.1
transitivePeerDependencies:
- supports-color
+ '@moonpay/moonpay-react@1.8.10(react@18.3.1)':
+ dependencies:
+ react: 18.3.1
+
'@motionone/animation@10.18.0':
dependencies:
'@motionone/easing': 10.18.0
@@ -9083,7 +9883,7 @@ snapshots:
'@motionone/dom': 10.18.0
tslib: 2.8.1
- '@mswjs/interceptors@0.37.5':
+ '@mswjs/interceptors@0.37.6':
dependencies:
'@open-draft/deferred-promise': 2.2.0
'@open-draft/logger': 0.3.0
@@ -9137,6 +9937,12 @@ snapshots:
'@next/swc-win32-x64-msvc@13.5.8':
optional: true
+ '@noble/ciphers@1.1.3': {}
+
+ '@noble/curves@1.3.0':
+ dependencies:
+ '@noble/hashes': 1.3.3
+
'@noble/curves@1.4.0':
dependencies:
'@noble/hashes': 1.4.0
@@ -9145,14 +9951,22 @@ snapshots:
dependencies:
'@noble/hashes': 1.4.0
+ '@noble/curves@1.8.0':
+ dependencies:
+ '@noble/hashes': 1.7.0
+
'@noble/curves@1.8.1':
dependencies:
'@noble/hashes': 1.7.1
'@noble/hashes@1.2.0': {}
+ '@noble/hashes@1.3.3': {}
+
'@noble/hashes@1.4.0': {}
+ '@noble/hashes@1.7.0': {}
+
'@noble/hashes@1.7.1': {}
'@noble/secp256k1@1.7.1': {}
@@ -9174,38 +9988,38 @@ snapshots:
'@nodelib/fs.walk@1.2.8':
dependencies:
'@nodelib/fs.scandir': 2.1.5
- fastq: 1.18.0
+ fastq: 1.19.0
'@nodelib/fs.walk@3.0.1':
dependencies:
'@nodelib/fs.scandir': 4.0.1
- fastq: 1.18.0
+ fastq: 1.19.0
'@nolyfill/is-core-module@1.0.39': {}
- '@nomicfoundation/edr-darwin-arm64@0.7.0': {}
+ '@nomicfoundation/edr-darwin-arm64@0.8.0': {}
- '@nomicfoundation/edr-darwin-x64@0.7.0': {}
+ '@nomicfoundation/edr-darwin-x64@0.8.0': {}
- '@nomicfoundation/edr-linux-arm64-gnu@0.7.0': {}
+ '@nomicfoundation/edr-linux-arm64-gnu@0.8.0': {}
- '@nomicfoundation/edr-linux-arm64-musl@0.7.0': {}
+ '@nomicfoundation/edr-linux-arm64-musl@0.8.0': {}
- '@nomicfoundation/edr-linux-x64-gnu@0.7.0': {}
+ '@nomicfoundation/edr-linux-x64-gnu@0.8.0': {}
- '@nomicfoundation/edr-linux-x64-musl@0.7.0': {}
+ '@nomicfoundation/edr-linux-x64-musl@0.8.0': {}
- '@nomicfoundation/edr-win32-x64-msvc@0.7.0': {}
+ '@nomicfoundation/edr-win32-x64-msvc@0.8.0': {}
- '@nomicfoundation/edr@0.7.0':
+ '@nomicfoundation/edr@0.8.0':
dependencies:
- '@nomicfoundation/edr-darwin-arm64': 0.7.0
- '@nomicfoundation/edr-darwin-x64': 0.7.0
- '@nomicfoundation/edr-linux-arm64-gnu': 0.7.0
- '@nomicfoundation/edr-linux-arm64-musl': 0.7.0
- '@nomicfoundation/edr-linux-x64-gnu': 0.7.0
- '@nomicfoundation/edr-linux-x64-musl': 0.7.0
- '@nomicfoundation/edr-win32-x64-msvc': 0.7.0
+ '@nomicfoundation/edr-darwin-arm64': 0.8.0
+ '@nomicfoundation/edr-darwin-x64': 0.8.0
+ '@nomicfoundation/edr-linux-arm64-gnu': 0.8.0
+ '@nomicfoundation/edr-linux-arm64-musl': 0.8.0
+ '@nomicfoundation/edr-linux-x64-gnu': 0.8.0
+ '@nomicfoundation/edr-linux-x64-musl': 0.8.0
+ '@nomicfoundation/edr-win32-x64-msvc': 0.8.0
'@nomicfoundation/ethereumjs-common@4.0.4':
dependencies:
@@ -9227,25 +10041,25 @@ snapshots:
'@nomicfoundation/ethereumjs-rlp': 5.0.4
ethereum-cryptography: 0.1.3
- '@nomicfoundation/hardhat-toolbox-viem@3.0.0(@nomicfoundation/hardhat-verify@2.0.12(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10)))(@nomicfoundation/hardhat-viem@2.0.3(patch_hash=znglrikwqnjywwr7ebopjjz3mm)(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10))(typescript@5.7.3)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1))(zod@3.24.1))(@types/node@20.17.19)(chai@4.5.0)(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10))(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1))':
+ '@nomicfoundation/hardhat-toolbox-viem@3.0.0(@nomicfoundation/hardhat-verify@2.0.13(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10)))(@nomicfoundation/hardhat-viem@2.0.3(patch_hash=znglrikwqnjywwr7ebopjjz3mm)(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10))(typescript@5.7.3)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2))(zod@3.24.2))(@types/node@20.17.19)(chai@4.5.0)(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10))(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2))':
dependencies:
- '@nomicfoundation/hardhat-verify': 2.0.12(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10))
- '@nomicfoundation/hardhat-viem': 2.0.3(patch_hash=znglrikwqnjywwr7ebopjjz3mm)(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10))(typescript@5.7.3)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1))(zod@3.24.1)
+ '@nomicfoundation/hardhat-verify': 2.0.13(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10))
+ '@nomicfoundation/hardhat-viem': 2.0.3(patch_hash=znglrikwqnjywwr7ebopjjz3mm)(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10))(typescript@5.7.3)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2))(zod@3.24.2)
'@types/node': 20.17.19
chai: 4.5.0
chai-as-promised: 7.1.2(chai@4.5.0)
- hardhat: 2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10)
+ hardhat: 2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10)
ts-node: 10.9.2(@types/node@20.17.19)(typescript@5.7.3)
typescript: 5.7.3
- viem: 2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1)
+ viem: 2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2)
- '@nomicfoundation/hardhat-verify@2.0.12(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10))':
+ '@nomicfoundation/hardhat-verify@2.0.13(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10))':
dependencies:
'@ethersproject/abi': 5.7.0
'@ethersproject/address': 5.7.0
cbor: 8.1.0
debug: 4.4.0(supports-color@5.5.0)
- hardhat: 2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10)
+ hardhat: 2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10)
lodash.clonedeep: 4.5.0
picocolors: 1.1.1
semver: 6.3.1
@@ -9254,13 +10068,13 @@ snapshots:
transitivePeerDependencies:
- supports-color
- '@nomicfoundation/hardhat-viem@2.0.3(patch_hash=znglrikwqnjywwr7ebopjjz3mm)(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10))(typescript@5.7.3)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1))(zod@3.24.1)':
+ '@nomicfoundation/hardhat-viem@2.0.3(patch_hash=znglrikwqnjywwr7ebopjjz3mm)(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10))(typescript@5.7.3)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2))(zod@3.24.2)':
dependencies:
- abitype: 0.9.10(typescript@5.7.3)(zod@3.24.1)
- hardhat: 2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10)
+ abitype: 0.9.10(typescript@5.7.3)(zod@3.24.2)
+ hardhat: 2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10)
lodash.memoize: 4.1.2
typescript: 5.7.3
- viem: 2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1)
+ viem: 2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2)
transitivePeerDependencies:
- zod
@@ -9315,28 +10129,15 @@ snapshots:
'@pkgr/core@0.1.1': {}
- '@playwright/test@1.49.1':
+ '@playwright/test@1.50.1':
dependencies:
- playwright: 1.49.1
+ playwright: 1.50.1
'@polka/url@1.0.0-next.28': {}
- '@rainbow-me/rainbowkit@2.1.2(@tanstack/react-query@5.22.2(react@18.3.1))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1))(wagmi@2.12.4(@tanstack/query-core@5.22.2)(@tanstack/react-query@5.22.2(react@18.3.1))(@types/react@18.3.12)(bufferutil@4.0.9)(immer@9.0.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.31.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1))(zod@3.24.1))':
+ '@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.3.12)(react@18.3.1)
- ua-parser-js: 1.0.40
- viem: 2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1)
- wagmi: 2.12.4(@tanstack/query-core@5.22.2)(@tanstack/react-query@5.22.2(react@18.3.1))(@types/react@18.3.12)(bufferutil@4.0.9)(immer@9.0.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.31.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1))(zod@3.24.1)
- transitivePeerDependencies:
- - '@types/react'
+ body-scroll-lock: 3.1.5
'@rollup/plugin-commonjs@24.0.0(rollup@2.78.0)':
dependencies:
@@ -9357,70 +10158,70 @@ snapshots:
optionalDependencies:
rollup: 2.78.0
- '@rollup/rollup-android-arm-eabi@4.31.0':
+ '@rollup/rollup-android-arm-eabi@4.34.8':
optional: true
- '@rollup/rollup-android-arm64@4.31.0':
+ '@rollup/rollup-android-arm64@4.34.8':
optional: true
- '@rollup/rollup-darwin-arm64@4.31.0':
+ '@rollup/rollup-darwin-arm64@4.34.8':
optional: true
- '@rollup/rollup-darwin-x64@4.31.0':
+ '@rollup/rollup-darwin-x64@4.34.8':
optional: true
- '@rollup/rollup-freebsd-arm64@4.31.0':
+ '@rollup/rollup-freebsd-arm64@4.34.8':
optional: true
- '@rollup/rollup-freebsd-x64@4.31.0':
+ '@rollup/rollup-freebsd-x64@4.34.8':
optional: true
- '@rollup/rollup-linux-arm-gnueabihf@4.31.0':
+ '@rollup/rollup-linux-arm-gnueabihf@4.34.8':
optional: true
- '@rollup/rollup-linux-arm-musleabihf@4.31.0':
+ '@rollup/rollup-linux-arm-musleabihf@4.34.8':
optional: true
- '@rollup/rollup-linux-arm64-gnu@4.31.0':
+ '@rollup/rollup-linux-arm64-gnu@4.34.8':
optional: true
- '@rollup/rollup-linux-arm64-musl@4.31.0':
+ '@rollup/rollup-linux-arm64-musl@4.34.8':
optional: true
- '@rollup/rollup-linux-loongarch64-gnu@4.31.0':
+ '@rollup/rollup-linux-loongarch64-gnu@4.34.8':
optional: true
- '@rollup/rollup-linux-powerpc64le-gnu@4.31.0':
+ '@rollup/rollup-linux-powerpc64le-gnu@4.34.8':
optional: true
- '@rollup/rollup-linux-riscv64-gnu@4.31.0':
+ '@rollup/rollup-linux-riscv64-gnu@4.34.8':
optional: true
- '@rollup/rollup-linux-s390x-gnu@4.31.0':
+ '@rollup/rollup-linux-s390x-gnu@4.34.8':
optional: true
- '@rollup/rollup-linux-x64-gnu@4.31.0':
+ '@rollup/rollup-linux-x64-gnu@4.34.8':
optional: true
- '@rollup/rollup-linux-x64-musl@4.31.0':
+ '@rollup/rollup-linux-x64-musl@4.34.8':
optional: true
- '@rollup/rollup-win32-arm64-msvc@4.31.0':
+ '@rollup/rollup-win32-arm64-msvc@4.34.8':
optional: true
- '@rollup/rollup-win32-ia32-msvc@4.31.0':
+ '@rollup/rollup-win32-ia32-msvc@4.34.8':
optional: true
- '@rollup/rollup-win32-x64-msvc@4.31.0':
+ '@rollup/rollup-win32-x64-msvc@4.34.8':
optional: true
'@rtsao/scc@1.1.0': {}
'@rushstack/eslint-patch@1.10.5': {}
- '@safe-global/safe-apps-provider@0.18.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1)':
+ '@safe-global/safe-apps-provider@0.18.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2)':
dependencies:
- '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1)
+ '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2)
events: 3.3.0
transitivePeerDependencies:
- bufferutil
@@ -9428,17 +10229,17 @@ snapshots:
- utf-8-validate
- zod
- '@safe-global/safe-apps-sdk@9.1.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1)':
+ '@safe-global/safe-apps-sdk@9.1.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2)':
dependencies:
- '@safe-global/safe-gateway-typescript-sdk': 3.22.7
- viem: 2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1)
+ '@safe-global/safe-gateway-typescript-sdk': 3.22.9
+ viem: 2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2)
transitivePeerDependencies:
- bufferutil
- typescript
- utf-8-validate
- zod
- '@safe-global/safe-gateway-typescript-sdk@3.22.7': {}
+ '@safe-global/safe-gateway-typescript-sdk@3.22.9': {}
'@scure/base@1.1.9': {}
@@ -9466,6 +10267,24 @@ snapshots:
'@noble/hashes': 1.4.0
'@scure/base': 1.1.9
+ '@sentry-internal/browser-utils@9.2.0':
+ dependencies:
+ '@sentry/core': 9.2.0
+
+ '@sentry-internal/feedback@9.2.0':
+ dependencies:
+ '@sentry/core': 9.2.0
+
+ '@sentry-internal/replay-canvas@9.2.0':
+ dependencies:
+ '@sentry-internal/replay': 9.2.0
+ '@sentry/core': 9.2.0
+
+ '@sentry-internal/replay@9.2.0':
+ dependencies:
+ '@sentry-internal/browser-utils': 9.2.0
+ '@sentry/core': 9.2.0
+
'@sentry/browser@7.43.0':
dependencies:
'@sentry/core': 7.43.0
@@ -9474,6 +10293,14 @@ snapshots:
'@sentry/utils': 7.43.0
tslib: 1.14.1
+ '@sentry/browser@9.2.0':
+ dependencies:
+ '@sentry-internal/browser-utils': 9.2.0
+ '@sentry-internal/feedback': 9.2.0
+ '@sentry-internal/replay': 9.2.0
+ '@sentry-internal/replay-canvas': 9.2.0
+ '@sentry/core': 9.2.0
+
'@sentry/cli@1.77.3':
dependencies:
https-proxy-agent: 5.0.1
@@ -9500,6 +10327,8 @@ snapshots:
'@sentry/utils': 7.43.0
tslib: 1.14.1
+ '@sentry/core@9.2.0': {}
+
'@sentry/hub@5.30.0':
dependencies:
'@sentry/types': 5.30.0
@@ -9519,7 +10348,7 @@ snapshots:
'@sentry/types': 5.30.0
tslib: 1.14.1
- '@sentry/nextjs@7.43.0(next@13.5.8(@babel/core@7.26.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)':
+ '@sentry/nextjs@7.43.0(next@13.5.8(@babel/core@7.26.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1)':
dependencies:
'@rollup/plugin-commonjs': 24.0.0(rollup@2.78.0)
'@sentry/core': 7.43.0
@@ -9531,10 +10360,10 @@ snapshots:
'@sentry/utils': 7.43.0
'@sentry/webpack-plugin': 1.20.0
chalk: 3.0.0
- next: 13.5.8(@babel/core@7.26.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ next: 13.5.8(@babel/core@7.26.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
rollup: 2.78.0
- stacktrace-parser: 0.1.10
+ stacktrace-parser: 0.1.11
tslib: 1.14.1
transitivePeerDependencies:
- encoding
@@ -9682,7 +10511,7 @@ snapshots:
'@socketregistry/hasown@1.0.5': {}
- '@socketregistry/indent-string@1.0.9': {}
+ '@socketregistry/indent-string@1.0.10': {}
'@socketregistry/internal-slot@1.0.5': {}
@@ -9690,7 +10519,7 @@ snapshots:
'@socketregistry/is-array-buffer@1.0.6': {}
- '@socketregistry/is-core-module@1.0.6': {}
+ '@socketregistry/is-core-module@1.0.7': {}
'@socketregistry/is-date-object@1.0.6': {}
@@ -9714,6 +10543,8 @@ snapshots:
'@socketregistry/object-assign@1.0.3': {}
+ '@socketregistry/object-is@1.0.5': {}
+
'@socketregistry/object-keys@1.0.5': {}
'@socketregistry/object.assign@1.0.5': {}
@@ -9734,13 +10565,13 @@ snapshots:
'@socketregistry/safe-array-concat@1.0.5': {}
- '@socketregistry/safe-buffer@1.0.5': {}
+ '@socketregistry/safe-buffer@1.0.6': {}
'@socketregistry/safe-regex-test@1.0.5': {}
- '@socketregistry/safer-buffer@1.0.5': {}
+ '@socketregistry/safer-buffer@1.0.7': {}
- '@socketregistry/set-function-length@1.0.5': {}
+ '@socketregistry/set-function-length@1.0.6': {}
'@socketregistry/side-channel@1.0.7': {}
@@ -9794,12 +10625,6 @@ snapshots:
'@stablelib/constant-time@1.0.1': {}
- '@stablelib/ed25519@1.0.3':
- dependencies:
- '@stablelib/random': 1.0.2
- '@stablelib/sha512': 1.0.1
- '@stablelib/wipe': 1.0.1
-
'@stablelib/hash@1.0.1': {}
'@stablelib/hkdf@1.0.1':
@@ -9836,12 +10661,6 @@ snapshots:
'@stablelib/hash': 1.0.1
'@stablelib/wipe': 1.0.1
- '@stablelib/sha512@1.0.1':
- dependencies:
- '@stablelib/binary': 1.0.1
- '@stablelib/hash': 1.0.1
- '@stablelib/wipe': 1.0.1
-
'@stablelib/wipe@1.0.1': {}
'@stablelib/x25519@1.0.3':
@@ -9850,54 +10669,62 @@ snapshots:
'@stablelib/random': 1.0.2
'@stablelib/wipe': 1.0.1
- '@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.26.0)':
+ '@stencil/core@4.27.0': {}
+
+ '@stripe/crypto@0.0.4(@stripe/stripe-js@3.5.0)':
dependencies:
- '@babel/core': 7.26.0
+ '@stripe/stripe-js': 3.5.0
- '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.26.0)':
+ '@stripe/stripe-js@3.5.0': {}
+
+ '@svgr/babel-plugin-add-jsx-attribute@8.0.0(@babel/core@7.26.9)':
+ dependencies:
+ '@babel/core': 7.26.9
+
+ '@svgr/babel-plugin-remove-jsx-attribute@8.0.0(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
- '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.26.0)':
+ '@svgr/babel-plugin-remove-jsx-empty-expression@8.0.0(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
- '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.26.0)':
+ '@svgr/babel-plugin-replace-jsx-attribute-value@8.0.0(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
- '@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.26.0)':
+ '@svgr/babel-plugin-svg-dynamic-title@8.0.0(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
- '@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.26.0)':
+ '@svgr/babel-plugin-svg-em-dimensions@8.0.0(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
- '@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.26.0)':
+ '@svgr/babel-plugin-transform-react-native-svg@8.1.0(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
- '@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.26.0)':
+ '@svgr/babel-plugin-transform-svg-component@8.0.0(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
- '@svgr/babel-preset@8.1.0(@babel/core@7.26.0)':
+ '@svgr/babel-preset@8.1.0(@babel/core@7.26.9)':
dependencies:
- '@babel/core': 7.26.0
- '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.26.0)
- '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.26.0)
- '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.26.0)
- '@svgr/babel-plugin-replace-jsx-attribute-value': 8.0.0(@babel/core@7.26.0)
- '@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.26.0)
- '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.26.0)
- '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.26.0)
- '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.26.0)
+ '@babel/core': 7.26.9
+ '@svgr/babel-plugin-add-jsx-attribute': 8.0.0(@babel/core@7.26.9)
+ '@svgr/babel-plugin-remove-jsx-attribute': 8.0.0(@babel/core@7.26.9)
+ '@svgr/babel-plugin-remove-jsx-empty-expression': 8.0.0(@babel/core@7.26.9)
+ '@svgr/babel-plugin-replace-jsx-attribute-value': 8.0.0(@babel/core@7.26.9)
+ '@svgr/babel-plugin-svg-dynamic-title': 8.0.0(@babel/core@7.26.9)
+ '@svgr/babel-plugin-svg-em-dimensions': 8.0.0(@babel/core@7.26.9)
+ '@svgr/babel-plugin-transform-react-native-svg': 8.1.0(@babel/core@7.26.9)
+ '@svgr/babel-plugin-transform-svg-component': 8.0.0(@babel/core@7.26.9)
'@svgr/core@8.1.0(typescript@5.7.3)':
dependencies:
- '@babel/core': 7.26.0
- '@svgr/babel-preset': 8.1.0(@babel/core@7.26.0)
+ '@babel/core': 7.26.9
+ '@svgr/babel-preset': 8.1.0(@babel/core@7.26.9)
camelcase: 6.3.0
cosmiconfig: 8.3.6(typescript@5.7.3)
snake-case: 3.0.4
@@ -9907,13 +10734,13 @@ snapshots:
'@svgr/hast-util-to-babel-ast@8.0.0':
dependencies:
- '@babel/types': 7.26.5
+ '@babel/types': 7.26.9
entities: 4.5.0
'@svgr/plugin-jsx@8.1.0(@svgr/core@8.1.0(typescript@5.7.3))':
dependencies:
- '@babel/core': 7.26.0
- '@svgr/babel-preset': 8.1.0(@babel/core@7.26.0)
+ '@babel/core': 7.26.9
+ '@svgr/babel-preset': 8.1.0(@babel/core@7.26.9)
'@svgr/core': 8.1.0(typescript@5.7.3)
'@svgr/hast-util-to-babel-ast': 8.0.0
svg-parser: 2.0.4
@@ -9931,11 +10758,11 @@ snapshots:
'@svgr/webpack@8.1.0(typescript@5.7.3)':
dependencies:
- '@babel/core': 7.26.0
- '@babel/plugin-transform-react-constant-elements': 7.25.9(@babel/core@7.26.0)
- '@babel/preset-env': 7.26.0(@babel/core@7.26.0)
- '@babel/preset-react': 7.26.3(@babel/core@7.26.0)
- '@babel/preset-typescript': 7.26.0(@babel/core@7.26.0)
+ '@babel/core': 7.26.9
+ '@babel/plugin-transform-react-constant-elements': 7.25.9(@babel/core@7.26.9)
+ '@babel/preset-env': 7.26.9(@babel/core@7.26.9)
+ '@babel/preset-react': 7.26.3(@babel/core@7.26.9)
+ '@babel/preset-typescript': 7.26.0(@babel/core@7.26.9)
'@svgr/core': 8.1.0(typescript@5.7.3)
'@svgr/plugin-jsx': 8.1.0(@svgr/core@8.1.0(typescript@5.7.3))
'@svgr/plugin-svgo': 8.1.0(@svgr/core@8.1.0(typescript@5.7.3))(typescript@5.7.3)
@@ -9949,7 +10776,7 @@ snapshots:
'@tanstack/query-core@5.22.2': {}
- '@tanstack/query-devtools@5.64.2': {}
+ '@tanstack/query-devtools@5.65.0': {}
'@tanstack/query-persist-client-core@5.22.2':
dependencies:
@@ -9960,9 +10787,9 @@ snapshots:
'@tanstack/query-core': 5.22.2
'@tanstack/query-persist-client-core': 5.22.2
- '@tanstack/react-query-devtools@5.64.2(@tanstack/react-query@5.22.2(react@18.3.1))(react@18.3.1)':
+ '@tanstack/react-query-devtools@5.66.9(@tanstack/react-query@5.22.2(react@18.3.1))(react@18.3.1)':
dependencies:
- '@tanstack/query-devtools': 5.64.2
+ '@tanstack/query-devtools': 5.65.0
'@tanstack/react-query': 5.22.2(react@18.3.1)
react: 18.3.1
@@ -9980,7 +10807,7 @@ snapshots:
'@testing-library/dom@10.4.0':
dependencies:
'@babel/code-frame': 7.26.2
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.26.9
'@types/aria-query': 5.0.4
aria-query: 5.3.0
chalk: 4.1.2
@@ -9990,7 +10817,7 @@ snapshots:
'@testing-library/jest-dom@6.6.3':
dependencies:
- '@adobe/css-tools': 4.4.1
+ '@adobe/css-tools': 4.4.2
aria-query: 5.3.2
chalk: 3.0.0
css.escape: 1.5.1
@@ -10000,7 +10827,7 @@ snapshots:
'@testing-library/react-hooks@8.0.1(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.26.9
react: 18.3.1
react-error-boundary: 3.1.4(react@18.3.1)
optionalDependencies:
@@ -10009,7 +10836,7 @@ snapshots:
'@testing-library/react@16.2.0(@testing-library/dom@10.4.0)(@types/react-dom@18.3.5(@types/react@18.3.12))(@types/react@18.3.12)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)':
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.26.9
'@testing-library/dom': 10.4.0
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
@@ -10035,24 +10862,24 @@ snapshots:
'@types/babel__core@7.20.5':
dependencies:
- '@babel/parser': 7.26.5
- '@babel/types': 7.26.5
+ '@babel/parser': 7.26.9
+ '@babel/types': 7.26.9
'@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.26.5
+ '@babel/types': 7.26.9
'@types/babel__template@7.4.4':
dependencies:
- '@babel/parser': 7.26.5
- '@babel/types': 7.26.5
+ '@babel/parser': 7.26.9
+ '@babel/types': 7.26.9
'@types/babel__traverse@7.20.6':
dependencies:
- '@babel/types': 7.26.5
+ '@babel/types': 7.26.9
'@types/bn.js@4.11.6':
dependencies:
@@ -10097,12 +10924,21 @@ snapshots:
'@types/ms@2.1.0': {}
+ '@types/node-fetch@2.6.12':
+ dependencies:
+ '@types/node': 20.17.19
+ form-data: 4.0.2
+
'@types/node-forge@1.3.11':
dependencies:
'@types/node': 20.17.19
'@types/node@17.0.45': {}
+ '@types/node@18.19.76':
+ dependencies:
+ undici-types: 5.26.5
+
'@types/node@20.17.19':
dependencies:
undici-types: 6.19.8
@@ -10146,11 +10982,13 @@ snapshots:
'@types/react': 18.3.12
csstype: 3.1.3
+ '@types/stylis@4.2.5': {}
+
'@types/tough-cookie@4.0.5': {}
'@types/trusted-types@2.0.7': {}
- '@types/ws@8.5.13':
+ '@types/ws@8.5.14':
dependencies:
'@types/node': 20.17.19
@@ -10173,7 +11011,7 @@ snapshots:
graphemer: 1.4.0
ignore: 5.3.2
natural-compare: 1.4.0
- semver: 7.6.3
+ semver: 7.7.1
ts-api-utils: 1.4.3(typescript@5.7.3)
optionalDependencies:
typescript: 5.7.3
@@ -10233,7 +11071,7 @@ snapshots:
debug: 4.4.0(supports-color@5.5.0)
globby: 11.1.0
is-glob: 4.0.3
- semver: 7.6.3
+ semver: 7.7.1
tsutils: 3.21.0(typescript@5.7.3)
optionalDependencies:
typescript: 5.7.3
@@ -10248,7 +11086,7 @@ snapshots:
globby: 11.1.0
is-glob: 4.0.3
minimatch: 9.0.3
- semver: 7.6.3
+ semver: 7.7.1
ts-api-utils: 1.4.3(typescript@5.7.3)
optionalDependencies:
typescript: 5.7.3
@@ -10263,7 +11101,7 @@ snapshots:
globby: 11.1.0
is-glob: 4.0.3
minimatch: 9.0.5
- semver: 7.6.3
+ semver: 7.7.1
ts-api-utils: 1.4.3(typescript@5.7.3)
optionalDependencies:
typescript: 5.7.3
@@ -10280,7 +11118,7 @@ snapshots:
'@typescript-eslint/typescript-estree': 5.62.0(typescript@5.7.3)
eslint: 8.50.0
eslint-scope: 5.1.1
- semver: 7.6.3
+ semver: 7.7.1
transitivePeerDependencies:
- supports-color
- typescript
@@ -10294,7 +11132,7 @@ snapshots:
'@typescript-eslint/types': 6.21.0
'@typescript-eslint/typescript-estree': 6.21.0(typescript@5.7.3)
eslint: 8.50.0
- semver: 7.6.3
+ semver: 7.7.1
transitivePeerDependencies:
- supports-color
- typescript
@@ -10353,18 +11191,18 @@ snapshots:
dependencies:
'@vanilla-extract/css': 1.14.0
- '@vitejs/plugin-react@4.3.4(vite@5.4.14(@types/node@20.17.19))':
+ '@vitejs/plugin-react@4.3.4(vite@6.2.0(@types/node@20.17.19)(jiti@2.4.2)(yaml@2.7.0))':
dependencies:
- '@babel/core': 7.26.0
- '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.0)
- '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.0)
+ '@babel/core': 7.26.9
+ '@babel/plugin-transform-react-jsx-self': 7.25.9(@babel/core@7.26.9)
+ '@babel/plugin-transform-react-jsx-source': 7.25.9(@babel/core@7.26.9)
'@types/babel__core': 7.20.5
react-refresh: 0.14.2
- vite: 5.4.14(@types/node@20.17.19)
+ vite: 6.2.0(@types/node@20.17.19)(jiti@2.4.2)(yaml@2.7.0)
transitivePeerDependencies:
- supports-color
- '@vitest/coverage-v8@3.0.7(vitest@3.0.7(@types/debug@4.1.12)(@types/node@20.17.19)(jsdom@24.1.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(msw@2.7.0(@types/node@20.17.19)(typescript@5.7.3)))':
+ '@vitest/coverage-v8@3.0.7(vitest@3.0.7(@types/debug@4.1.12)(@types/node@20.17.19)(jiti@2.4.2)(jsdom@24.1.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(msw@2.7.3(@types/node@20.17.19)(typescript@5.7.3))(yaml@2.7.0))':
dependencies:
'@ampproject/remapping': 2.3.0
'@bcoe/v8-coverage': 1.0.2
@@ -10378,7 +11216,7 @@ snapshots:
std-env: 3.8.0
test-exclude: 7.0.1
tinyrainbow: 2.0.0
- vitest: 3.0.7(@types/debug@4.1.12)(@types/node@20.17.19)(jsdom@24.1.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(msw@2.7.0(@types/node@20.17.19)(typescript@5.7.3))
+ vitest: 3.0.7(@types/debug@4.1.12)(@types/node@20.17.19)(jiti@2.4.2)(jsdom@24.1.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(msw@2.7.3(@types/node@20.17.19)(typescript@5.7.3))(yaml@2.7.0)
transitivePeerDependencies:
- supports-color
@@ -10389,14 +11227,14 @@ snapshots:
chai: 5.2.0
tinyrainbow: 2.0.0
- '@vitest/mocker@3.0.7(msw@2.7.0(@types/node@20.17.19)(typescript@5.7.3))(vite@5.4.14(@types/node@20.17.19))':
+ '@vitest/mocker@3.0.7(msw@2.7.3(@types/node@20.17.19)(typescript@5.7.3))(vite@6.2.0(@types/node@20.17.19)(jiti@2.4.2)(yaml@2.7.0))':
dependencies:
'@vitest/spy': 3.0.7
estree-walker: 3.0.3
magic-string: 0.30.17
optionalDependencies:
- msw: 2.7.0(@types/node@20.17.19)(typescript@5.7.3)
- vite: 5.4.14(@types/node@20.17.19)
+ msw: 2.7.3(@types/node@20.17.19)(typescript@5.7.3)
+ vite: 6.2.0(@types/node@20.17.19)(jiti@2.4.2)(yaml@2.7.0)
'@vitest/pretty-format@3.0.7':
dependencies:
@@ -10423,17 +11261,17 @@ snapshots:
loupe: 3.1.3
tinyrainbow: 2.0.0
- '@wagmi/connectors@5.1.4(@types/react@18.3.12)(@wagmi/core@2.13.3(@tanstack/query-core@5.22.2)(@types/react@18.3.12)(immer@9.0.21)(react@18.3.1)(typescript@5.7.3)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1)))(bufferutil@4.0.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.31.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1))(zod@3.24.1)':
+ '@wagmi/connectors@5.1.4(@types/react@18.3.12)(@wagmi/core@2.13.3(@tanstack/query-core@5.22.2)(@types/react@18.3.12)(immer@9.0.21)(react@18.3.1)(typescript@5.7.3)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2)))(bufferutil@4.0.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.34.8)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2))(zod@3.24.2)':
dependencies:
'@coinbase/wallet-sdk': 4.0.4
- '@metamask/sdk': 0.27.0(bufferutil@4.0.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.31.0)(utf-8-validate@5.0.10)
- '@safe-global/safe-apps-provider': 0.18.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1)
- '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1)
- '@wagmi/core': 2.13.3(@tanstack/query-core@5.22.2)(@types/react@18.3.12)(immer@9.0.21)(react@18.3.1)(typescript@5.7.3)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1))
+ '@metamask/sdk': 0.27.0(bufferutil@4.0.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.34.8)(utf-8-validate@5.0.10)
+ '@safe-global/safe-apps-provider': 0.18.3(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2)
+ '@safe-global/safe-apps-sdk': 9.1.0(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2)
+ '@wagmi/core': 2.13.3(@tanstack/query-core@5.22.2)(@types/react@18.3.12)(immer@9.0.21)(react@18.3.1)(typescript@5.7.3)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2))
'@walletconnect/ethereum-provider': 2.11.1(@types/react@18.3.12)(bufferutil@4.0.9)(react@18.3.1)(utf-8-validate@5.0.10)
'@walletconnect/modal': 2.6.2(@types/react@18.3.12)(react@18.3.1)
cbw-sdk: '@coinbase/wallet-sdk@3.9.3'
- viem: 2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1)
+ viem: 2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2)
optionalDependencies:
typescript: 5.7.3
transitivePeerDependencies:
@@ -10467,11 +11305,11 @@ snapshots:
- utf-8-validate
- zod
- '@wagmi/core@2.13.3(@tanstack/query-core@5.22.2)(@types/react@18.3.12)(immer@9.0.21)(react@18.3.1)(typescript@5.7.3)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1))':
+ '@wagmi/core@2.13.3(@tanstack/query-core@5.22.2)(@types/react@18.3.12)(immer@9.0.21)(react@18.3.1)(typescript@5.7.3)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2))':
dependencies:
eventemitter3: 5.0.1
mipd: 0.0.7(typescript@5.7.3)
- viem: 2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1)
+ viem: 2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2)
zustand: 4.4.1(@types/react@18.3.12)(immer@9.0.21)(react@18.3.1)
optionalDependencies:
'@tanstack/query-core': 5.22.2
@@ -10491,7 +11329,7 @@ snapshots:
'@walletconnect/keyvaluestorage': 1.1.1
'@walletconnect/logger': 2.1.2
'@walletconnect/relay-api': 1.0.11
- '@walletconnect/relay-auth': 1.0.4
+ '@walletconnect/relay-auth': 1.1.0
'@walletconnect/safe-json': 1.0.2
'@walletconnect/time': 1.0.2
'@walletconnect/types': 2.11.1
@@ -10626,7 +11464,7 @@ snapshots:
dependencies:
'@walletconnect/safe-json': 1.0.2
idb-keyval: 6.2.1
- unstorage: 1.14.4(idb-keyval@6.2.1)
+ unstorage: 1.15.0(idb-keyval@6.2.1)
transitivePeerDependencies:
- '@azure/app-configuration'
- '@azure/cosmos'
@@ -10680,13 +11518,12 @@ snapshots:
dependencies:
'@walletconnect/jsonrpc-types': 1.0.4
- '@walletconnect/relay-auth@1.0.4':
+ '@walletconnect/relay-auth@1.1.0':
dependencies:
- '@stablelib/ed25519': 1.0.3
- '@stablelib/random': 1.0.2
+ '@noble/curves': 1.8.0
+ '@noble/hashes': 1.7.0
'@walletconnect/safe-json': 1.0.2
'@walletconnect/time': 1.0.2
- tslib: 1.14.1
uint8arrays: 3.1.1
'@walletconnect/safe-json@1.0.2':
@@ -10840,25 +11677,27 @@ snapshots:
'@xobotyi/scrollbar-width@1.9.5': {}
- abitype@0.9.10(typescript@5.7.3)(zod@3.24.1):
+ abitype@0.9.10(typescript@5.7.3)(zod@3.24.2):
optionalDependencies:
typescript: 5.7.3
- zod: 3.24.1
+ zod: 3.24.2
- abitype@1.0.5(typescript@5.7.3)(zod@3.24.1):
+ abitype@1.0.5(typescript@5.7.3)(zod@3.24.2):
optionalDependencies:
typescript: 5.7.3
- zod: 3.24.1
+ zod: 3.24.2
- abitype@1.0.8(typescript@5.7.3)(zod@3.24.1):
+ abitype@1.0.8(typescript@5.7.3)(zod@3.24.2):
optionalDependencies:
typescript: 5.7.3
- zod: 3.24.1
+ zod: 3.24.2
acorn-jsx@5.3.2(acorn@8.14.0):
dependencies:
acorn: 8.14.0
+ acorn-walk@8.3.2: {}
+
acorn-walk@8.3.4:
dependencies:
acorn: 8.14.0
@@ -10945,6 +11784,14 @@ snapshots:
dependencies:
printable-characters: 1.0.42
+ assert@2.1.0:
+ dependencies:
+ call-bind: 1.0.8
+ 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: {}
@@ -10972,7 +11819,7 @@ snapshots:
axios@1.7.9:
dependencies:
follow-redirects: 1.15.9(debug@4.4.0)
- form-data: 4.0.1
+ form-data: 4.0.2
proxy-from-env: 1.1.0
transitivePeerDependencies:
- debug
@@ -10981,38 +11828,38 @@ snapshots:
b4a@1.6.7: {}
- babel-plugin-polyfill-corejs2@0.4.12(@babel/core@7.26.0):
+ babel-plugin-polyfill-corejs2@0.4.12(@babel/core@7.26.9):
dependencies:
- '@babel/compat-data': 7.26.5
- '@babel/core': 7.26.0
- '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0)
+ '@babel/compat-data': 7.26.8
+ '@babel/core': 7.26.9
+ '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.9)
semver: 6.3.1
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-corejs3@0.10.6(@babel/core@7.26.0):
+ babel-plugin-polyfill-corejs3@0.11.1(@babel/core@7.26.9):
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0)
+ '@babel/core': 7.26.9
+ '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.9)
core-js-compat: 3.40.0
transitivePeerDependencies:
- supports-color
- babel-plugin-polyfill-regenerator@0.6.3(@babel/core@7.26.0):
+ babel-plugin-polyfill-regenerator@0.6.3(@babel/core@7.26.9):
dependencies:
- '@babel/core': 7.26.0
- '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.0)
+ '@babel/core': 7.26.9
+ '@babel/helper-define-polyfill-provider': 0.6.3(@babel/core@7.26.9)
transitivePeerDependencies:
- supports-color
- babel-plugin-styled-components@2.1.4(@babel/core@7.26.0)(styled-components@5.3.11(@babel/core@7.26.0)(react-dom@18.3.1(react@18.3.1))(react-is@17.0.2)(react@18.3.1))(supports-color@5.5.0):
+ babel-plugin-styled-components@2.1.4(@babel/core@7.26.9)(styled-components@5.3.11(@babel/core@7.26.9)(react-dom@18.3.1(react@18.3.1))(react-is@17.0.2)(react@18.3.1))(supports-color@5.5.0):
dependencies:
'@babel/helper-annotate-as-pure': 7.25.9
'@babel/helper-module-imports': 7.25.9(supports-color@5.5.0)
- '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.0)
+ '@babel/plugin-syntax-jsx': 7.25.9(@babel/core@7.26.9)
lodash: 4.17.21
picomatch: 2.3.1
- styled-components: 5.3.11(@babel/core@7.26.0)(react-dom@18.3.1(react@18.3.1))(react-is@17.0.2)(react@18.3.1)
+ styled-components: 5.3.11(@babel/core@7.26.9)(react-dom@18.3.1(react@18.3.1))(react-is@17.0.2)(react@18.3.1)
transitivePeerDependencies:
- '@babel/core'
- supports-color
@@ -11050,12 +11897,16 @@ snapshots:
base-x@3.0.10:
dependencies:
- safe-buffer: '@socketregistry/safe-buffer@1.0.5'
+ safe-buffer: '@socketregistry/safe-buffer@1.0.6'
base64-js@1.5.1: {}
+ base64url@3.0.1: {}
+
bech32@1.1.4: {}
+ bignumber.js@9.1.2: {}
+
binary-extensions@2.3.0: {}
blake3-wasm@2.1.5: {}
@@ -11064,6 +11915,8 @@ snapshots:
bn.js@5.2.1: {}
+ body-scroll-lock@3.1.5: {}
+
boolbase@1.0.0: {}
bowser@2.11.0: {}
@@ -11103,12 +11956,12 @@ snapshots:
create-hash: 1.2.0
evp_bytestokey: 1.0.3
inherits: 2.0.4
- safe-buffer: '@socketregistry/safe-buffer@1.0.5'
+ safe-buffer: '@socketregistry/safe-buffer@1.0.6'
browserslist@4.24.4:
dependencies:
- caniuse-lite: 1.0.30001695
- electron-to-chromium: 1.5.84
+ caniuse-lite: 1.0.30001700
+ electron-to-chromium: 1.5.104
node-releases: 2.0.19
update-browserslist-db: 1.1.2(browserslist@4.24.4)
@@ -11120,7 +11973,7 @@ snapshots:
dependencies:
bs58: 4.0.1
create-hash: 1.2.0
- safe-buffer: '@socketregistry/safe-buffer@1.0.5'
+ safe-buffer: '@socketregistry/safe-buffer@1.0.6'
buffer-from@1.1.2: {}
@@ -11152,22 +12005,22 @@ snapshots:
dependencies:
dayjs: 1.11.13
- call-bind-apply-helpers@1.0.1:
+ call-bind-apply-helpers@1.0.2:
dependencies:
es-errors: 1.3.0
function-bind: '@socketregistry/function-bind@1.0.5'
call-bind@1.0.8:
dependencies:
- call-bind-apply-helpers: 1.0.1
+ call-bind-apply-helpers: 1.0.2
es-define-property: '@socketregistry/es-define-property@1.0.5'
- get-intrinsic: 1.2.7
- set-function-length: '@socketregistry/set-function-length@1.0.5'
+ get-intrinsic: 1.3.0
+ set-function-length: '@socketregistry/set-function-length@1.0.6'
call-bound@1.0.3:
dependencies:
- call-bind-apply-helpers: 1.0.1
- get-intrinsic: 1.2.7
+ call-bind-apply-helpers: 1.0.2
+ get-intrinsic: 1.3.0
callsites@3.1.0: {}
@@ -11177,14 +12030,11 @@ snapshots:
camelize@1.0.1: {}
- caniuse-lite@1.0.30001695: {}
+ caniuse-lite@1.0.30001700: {}
- capnp-ts@0.7.0:
- dependencies:
- debug: 4.4.0(supports-color@5.5.0)
- tslib: 2.8.1
- transitivePeerDependencies:
- - supports-color
+ case@1.6.3: {}
+
+ cbor-web@8.1.0: {}
cbor@10.0.3:
dependencies:
@@ -11214,7 +12064,7 @@ snapshots:
assertion-error: 2.0.1
check-error: 2.1.1
deep-eql: 5.0.2
- loupe: 3.1.2
+ loupe: 3.1.3
pathval: 2.0.0
chalk@3.0.0:
@@ -11247,7 +12097,7 @@ snapshots:
chokidar@4.0.3:
dependencies:
- readdirp: 4.1.1
+ readdirp: 4.1.2
ci-info@2.0.0: {}
@@ -11256,7 +12106,7 @@ snapshots:
cipher-base@1.0.6:
dependencies:
inherits: 2.0.4
- safe-buffer: '@socketregistry/safe-buffer@1.0.5'
+ safe-buffer: '@socketregistry/safe-buffer@1.0.6'
cli-boxes@2.2.1: {}
@@ -11297,12 +12147,28 @@ snapshots:
clsx@2.1.1: {}
+ color-blend@4.0.0: {}
+
color-convert@2.0.1:
dependencies:
color-name: 1.1.4
color-name@1.1.4: {}
+ color-string@1.9.1:
+ dependencies:
+ color-name: 1.1.4
+ simple-swizzle: 0.2.2
+ optional: true
+
+ color2k@2.0.3: {}
+
+ color@4.2.3:
+ dependencies:
+ color-convert: 2.0.1
+ color-string: 1.9.1
+ optional: true
+
colord@2.9.3: {}
combined-stream@1.0.8:
@@ -11327,7 +12193,7 @@ snapshots:
dependencies:
chalk: 4.1.2
lodash: 4.17.21
- rxjs: 7.8.1
+ rxjs: 7.8.2
shell-quote: 1.8.2
supports-color: 8.1.1
tree-kill: 1.2.2
@@ -11337,14 +12203,14 @@ snapshots:
confusing-browser-globals@1.0.11: {}
- consola@3.4.0: {}
-
convert-source-map@2.0.0: {}
cookie-es@1.2.2: {}
cookie@0.4.2: {}
+ cookie@0.5.0: {}
+
cookie@0.7.2: {}
copy-to-clipboard@3.3.3:
@@ -11359,7 +12225,7 @@ snapshots:
cosmiconfig@8.3.6(typescript@5.7.3):
dependencies:
- import-fresh: 3.3.0
+ import-fresh: 3.3.1
js-yaml: 4.1.0
parse-json: 5.2.0
path-type: 4.0.0
@@ -11369,7 +12235,7 @@ snapshots:
cosmiconfig@9.0.0(typescript@5.7.3):
dependencies:
env-paths: 2.2.1
- import-fresh: 3.3.0
+ import-fresh: 3.3.1
js-yaml: 4.1.0
parse-json: 5.2.0
optionalDependencies:
@@ -11391,7 +12257,7 @@ snapshots:
create-hash: 1.2.0
inherits: 2.0.4
ripemd160: 2.0.2
- safe-buffer: '@socketregistry/safe-buffer@1.0.5'
+ safe-buffer: '@socketregistry/safe-buffer@1.0.6'
sha.js: 2.4.11
create-require@1.1.1: {}
@@ -11420,7 +12286,7 @@ snapshots:
shebang-command: 2.0.0
which: 2.0.2
- crossws@0.3.2:
+ crossws@0.3.4:
dependencies:
uncrypto: 0.1.3
@@ -11494,7 +12360,7 @@ snapshots:
data-urls@5.0.0:
dependencies:
whatwg-mimetype: 4.0.0
- whatwg-url: 14.1.0
+ whatwg-url: 14.1.1
data-view-buffer@1.0.2:
dependencies:
@@ -11516,7 +12382,9 @@ snapshots:
date-fns@2.30.0:
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.26.9
+
+ date-fns@3.6.0: {}
dayjs@1.11.13: {}
@@ -11544,7 +12412,7 @@ snapshots:
decamelize@4.0.0: {}
- decimal.js@10.4.3: {}
+ decimal.js@10.5.0: {}
decode-uri-component@0.2.2: {}
@@ -11579,6 +12447,11 @@ snapshots:
detect-browser@5.3.0: {}
+ detect-europe-js@0.1.2: {}
+
+ detect-libc@2.0.3:
+ optional: true
+
detect-node-es@1.1.0: {}
diff@4.0.2: {}
@@ -11640,7 +12513,7 @@ snapshots:
dunder-proto@1.0.1:
dependencies:
- call-bind-apply-helpers: 1.0.1
+ call-bind-apply-helpers: 1.0.2
es-errors: 1.3.0
gopd: '@socketregistry/gopd@1.0.5'
@@ -11666,7 +12539,7 @@ snapshots:
futoin-hkdf: 1.5.3
secp256k1: 5.0.1
- electron-to-chromium@1.5.84: {}
+ electron-to-chromium@1.5.104: {}
elliptic@6.5.4:
dependencies:
@@ -11703,7 +12576,7 @@ snapshots:
dependencies:
once: 1.4.0
- engine.io-client@6.6.2(bufferutil@4.0.9)(utf-8-validate@5.0.10):
+ engine.io-client@6.6.3(bufferutil@4.0.9)(utf-8-validate@5.0.10):
dependencies:
'@socket.io/component-emitter': 3.1.2
debug: 4.3.7
@@ -11717,7 +12590,7 @@ snapshots:
engine.io-parser@5.2.3: {}
- enhanced-resolve@5.18.0:
+ enhanced-resolve@5.18.1:
dependencies:
graceful-fs: 4.2.11
tapable: 2.2.1
@@ -11759,7 +12632,7 @@ snapshots:
es-set-tostringtag: '@socketregistry/es-set-tostringtag@1.0.6'
es-to-primitive: 1.3.0
function.prototype.name: '@socketregistry/function.prototype.name@1.0.5'
- get-intrinsic: 1.2.7
+ get-intrinsic: 1.3.0
get-proto: 1.0.1
get-symbol-description: '@socketregistry/get-symbol-description@1.0.5'
globalthis: '@socketregistry/globalthis@1.0.5'
@@ -11778,7 +12651,7 @@ snapshots:
is-typed-array: '@socketregistry/is-typed-array@1.0.6'
is-weakref: '@socketregistry/is-weakref@1.0.5'
math-intrinsics: 1.1.0
- object-inspect: 1.13.3
+ object-inspect: 1.13.4
object-keys: '@socketregistry/object-keys@1.0.5'
object.assign: '@socketregistry/object.assign@1.0.5'
own-keys: 1.0.1
@@ -11836,31 +12709,33 @@ snapshots:
'@esbuild/win32-ia32': 0.17.19
'@esbuild/win32-x64': 0.17.19
- esbuild@0.21.5:
+ esbuild@0.25.0:
optionalDependencies:
- '@esbuild/aix-ppc64': 0.21.5
- '@esbuild/android-arm': 0.21.5
- '@esbuild/android-arm64': 0.21.5
- '@esbuild/android-x64': 0.21.5
- '@esbuild/darwin-arm64': 0.21.5
- '@esbuild/darwin-x64': 0.21.5
- '@esbuild/freebsd-arm64': 0.21.5
- '@esbuild/freebsd-x64': 0.21.5
- '@esbuild/linux-arm': 0.21.5
- '@esbuild/linux-arm64': 0.21.5
- '@esbuild/linux-ia32': 0.21.5
- '@esbuild/linux-loong64': 0.21.5
- '@esbuild/linux-mips64el': 0.21.5
- '@esbuild/linux-ppc64': 0.21.5
- '@esbuild/linux-riscv64': 0.21.5
- '@esbuild/linux-s390x': 0.21.5
- '@esbuild/linux-x64': 0.21.5
- '@esbuild/netbsd-x64': 0.21.5
- '@esbuild/openbsd-x64': 0.21.5
- '@esbuild/sunos-x64': 0.21.5
- '@esbuild/win32-arm64': 0.21.5
- '@esbuild/win32-ia32': 0.21.5
- '@esbuild/win32-x64': 0.21.5
+ '@esbuild/aix-ppc64': 0.25.0
+ '@esbuild/android-arm': 0.25.0
+ '@esbuild/android-arm64': 0.25.0
+ '@esbuild/android-x64': 0.25.0
+ '@esbuild/darwin-arm64': 0.25.0
+ '@esbuild/darwin-x64': 0.25.0
+ '@esbuild/freebsd-arm64': 0.25.0
+ '@esbuild/freebsd-x64': 0.25.0
+ '@esbuild/linux-arm': 0.25.0
+ '@esbuild/linux-arm64': 0.25.0
+ '@esbuild/linux-ia32': 0.25.0
+ '@esbuild/linux-loong64': 0.25.0
+ '@esbuild/linux-mips64el': 0.25.0
+ '@esbuild/linux-ppc64': 0.25.0
+ '@esbuild/linux-riscv64': 0.25.0
+ '@esbuild/linux-s390x': 0.25.0
+ '@esbuild/linux-x64': 0.25.0
+ '@esbuild/netbsd-arm64': 0.25.0
+ '@esbuild/netbsd-x64': 0.25.0
+ '@esbuild/openbsd-arm64': 0.25.0
+ '@esbuild/openbsd-x64': 0.25.0
+ '@esbuild/sunos-x64': 0.25.0
+ '@esbuild/win32-arm64': 0.25.0
+ '@esbuild/win32-ia32': 0.25.0
+ '@esbuild/win32-x64': 0.25.0
escalade@3.2.0: {}
@@ -11872,7 +12747,7 @@ snapshots:
dependencies:
confusing-browser-globals: 1.0.11
eslint: 8.50.0
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@6.21.0(eslint@8.50.0)(typescript@5.7.3))(eslint-import-resolver-typescript@3.7.0)(eslint@8.50.0)
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@6.21.0(eslint@8.50.0)(typescript@5.7.3))(eslint-import-resolver-typescript@3.8.3)(eslint@8.50.0)
object.assign: '@socketregistry/object.assign@1.0.5'
object.entries: '@socketregistry/object.entries@1.0.5'
semver: 6.3.1
@@ -11883,13 +12758,13 @@ snapshots:
'@typescript-eslint/parser': 6.21.0(eslint@8.50.0)(typescript@5.7.3)
eslint: 8.50.0
eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@6.21.0(eslint@8.50.0)(typescript@5.7.3))(eslint@8.50.0))(eslint@8.50.0)
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@6.21.0(eslint@8.50.0)(typescript@5.7.3))(eslint-import-resolver-typescript@3.7.0)(eslint@8.50.0)
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@6.21.0(eslint@8.50.0)(typescript@5.7.3))(eslint-import-resolver-typescript@3.8.3)(eslint@8.50.0)
eslint-config-airbnb@19.0.4(eslint-plugin-import@2.31.0(@typescript-eslint/parser@6.21.0(eslint@8.50.0)(typescript@5.7.3))(eslint@8.50.0))(eslint-plugin-jsx-a11y@6.10.2(eslint@8.50.0))(eslint-plugin-react-hooks@4.6.2(eslint@8.50.0))(eslint-plugin-react@7.37.4(eslint@8.50.0))(eslint@8.50.0):
dependencies:
eslint: 8.50.0
eslint-config-airbnb-base: 15.0.0(eslint-plugin-import@2.31.0(@typescript-eslint/parser@6.21.0(eslint@8.50.0)(typescript@5.7.3))(eslint@8.50.0))(eslint@8.50.0)
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@6.21.0(eslint@8.50.0)(typescript@5.7.3))(eslint-import-resolver-typescript@3.7.0)(eslint@8.50.0)
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@6.21.0(eslint@8.50.0)(typescript@5.7.3))(eslint-import-resolver-typescript@3.8.3)(eslint@8.50.0)
eslint-plugin-jsx-a11y: 6.10.2(eslint@8.50.0)
eslint-plugin-react: 7.37.4(eslint@8.50.0)
eslint-plugin-react-hooks: 4.6.2(eslint@8.50.0)
@@ -11903,8 +12778,8 @@ snapshots:
'@typescript-eslint/parser': 6.21.0(eslint@8.50.0)(typescript@5.7.3)
eslint: 8.50.0
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.7.0(eslint-plugin-import@2.31.0)(eslint@8.50.0)
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@6.21.0(eslint@8.50.0)(typescript@5.7.3))(eslint-import-resolver-typescript@3.7.0)(eslint@8.50.0)
+ eslint-import-resolver-typescript: 3.8.3(eslint-plugin-import@2.31.0)(eslint@8.50.0)
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@6.21.0(eslint@8.50.0)(typescript@5.7.3))(eslint-import-resolver-typescript@3.8.3)(eslint@8.50.0)
eslint-plugin-jsx-a11y: 6.10.2(eslint@8.50.0)
eslint-plugin-react: 7.37.4(eslint@8.50.0)
eslint-plugin-react-hooks: 4.6.2(eslint@8.50.0)
@@ -11922,39 +12797,38 @@ snapshots:
eslint-import-resolver-node@0.3.9:
dependencies:
debug: 3.2.7
- is-core-module: '@socketregistry/is-core-module@1.0.6'
+ is-core-module: '@socketregistry/is-core-module@1.0.7'
resolve: 1.22.10
transitivePeerDependencies:
- supports-color
- eslint-import-resolver-typescript@3.7.0(eslint-plugin-import@2.31.0)(eslint@8.50.0):
+ eslint-import-resolver-typescript@3.8.3(eslint-plugin-import@2.31.0)(eslint@8.50.0):
dependencies:
'@nolyfill/is-core-module': 1.0.39
debug: 4.4.0(supports-color@5.5.0)
- enhanced-resolve: 5.18.0
+ enhanced-resolve: 5.18.1
eslint: 8.50.0
- fast-glob: 3.3.3
get-tsconfig: 4.10.0
is-bun-module: 1.3.0
- is-glob: 4.0.3
stable-hash: 0.0.4
+ tinyglobby: 0.2.12
optionalDependencies:
- eslint-plugin-import: 2.31.0(@typescript-eslint/parser@6.21.0(eslint@8.50.0)(typescript@5.7.3))(eslint-import-resolver-typescript@3.7.0)(eslint@8.50.0)
+ eslint-plugin-import: 2.31.0(@typescript-eslint/parser@6.21.0(eslint@8.50.0)(typescript@5.7.3))(eslint-import-resolver-typescript@3.8.3)(eslint@8.50.0)
transitivePeerDependencies:
- supports-color
- eslint-module-utils@2.12.0(@typescript-eslint/parser@6.21.0(eslint@8.50.0)(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.7.0(eslint-plugin-import@2.31.0)(eslint@8.50.0))(eslint@8.50.0):
+ eslint-module-utils@2.12.0(@typescript-eslint/parser@6.21.0(eslint@8.50.0)(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.8.3(eslint-plugin-import@2.31.0)(eslint@8.50.0))(eslint@8.50.0):
dependencies:
debug: 3.2.7
optionalDependencies:
'@typescript-eslint/parser': 6.21.0(eslint@8.50.0)(typescript@5.7.3)
eslint: 8.50.0
eslint-import-resolver-node: 0.3.9
- eslint-import-resolver-typescript: 3.7.0(eslint-plugin-import@2.31.0)(eslint@8.50.0)
+ eslint-import-resolver-typescript: 3.8.3(eslint-plugin-import@2.31.0)(eslint@8.50.0)
transitivePeerDependencies:
- supports-color
- eslint-plugin-import@2.31.0(@typescript-eslint/parser@6.21.0(eslint@8.50.0)(typescript@5.7.3))(eslint-import-resolver-typescript@3.7.0)(eslint@8.50.0):
+ eslint-plugin-import@2.31.0(@typescript-eslint/parser@6.21.0(eslint@8.50.0)(typescript@5.7.3))(eslint-import-resolver-typescript@3.8.3)(eslint@8.50.0):
dependencies:
'@rtsao/scc': 1.1.0
array-includes: '@socketregistry/array-includes@1.0.5'
@@ -11965,9 +12839,9 @@ snapshots:
doctrine: 2.1.0
eslint: 8.50.0
eslint-import-resolver-node: 0.3.9
- eslint-module-utils: 2.12.0(@typescript-eslint/parser@6.21.0(eslint@8.50.0)(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.7.0(eslint-plugin-import@2.31.0)(eslint@8.50.0))(eslint@8.50.0)
+ eslint-module-utils: 2.12.0(@typescript-eslint/parser@6.21.0(eslint@8.50.0)(typescript@5.7.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.8.3(eslint-plugin-import@2.31.0)(eslint@8.50.0))(eslint@8.50.0)
hasown: '@socketregistry/hasown@1.0.5'
- is-core-module: '@socketregistry/is-core-module@1.0.6'
+ is-core-module: '@socketregistry/is-core-module@1.0.7'
is-glob: 4.0.3
minimatch: 3.1.2
object.fromentries: '@socketregistry/object.fromentries@1.0.5'
@@ -12045,13 +12919,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.7.3))(eslint@8.50.0)(typescript@5.7.3))(eslint@8.50.0)(typescript@5.7.3)(vitest@3.0.7(@types/debug@4.1.12)(@types/node@20.17.19)(jsdom@24.1.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(msw@2.7.0(@types/node@20.17.19)(typescript@5.7.3))):
+ 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.7.3))(eslint@8.50.0)(typescript@5.7.3))(eslint@8.50.0)(typescript@5.7.3)(vitest@3.0.7(@types/debug@4.1.12)(@types/node@20.17.19)(jiti@2.4.2)(jsdom@24.1.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(msw@2.7.3(@types/node@20.17.19)(typescript@5.7.3))(yaml@2.7.0)):
dependencies:
'@typescript-eslint/utils': 7.18.0(eslint@8.50.0)(typescript@5.7.3)
eslint: 8.50.0
optionalDependencies:
'@typescript-eslint/eslint-plugin': 6.21.0(@typescript-eslint/parser@6.21.0(eslint@8.50.0)(typescript@5.7.3))(eslint@8.50.0)(typescript@5.7.3)
- vitest: 3.0.7(@types/debug@4.1.12)(@types/node@20.17.19)(jsdom@24.1.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(msw@2.7.0(@types/node@20.17.19)(typescript@5.7.3))
+ vitest: 3.0.7(@types/debug@4.1.12)(@types/node@20.17.19)(jiti@2.4.2)(jsdom@24.1.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(msw@2.7.3(@types/node@20.17.19)(typescript@5.7.3))(yaml@2.7.0)
transitivePeerDependencies:
- supports-color
- typescript
@@ -12165,6 +13039,10 @@ snapshots:
dependencies:
fast-safe-stringify: 2.1.1
+ ethereum-bloom-filters@1.2.0:
+ dependencies:
+ '@noble/hashes': 1.7.1
+
ethereum-cryptography@0.1.3:
dependencies:
'@types/pbkdf2': 3.1.2
@@ -12178,7 +13056,7 @@ snapshots:
keccak: 3.0.4
pbkdf2: 3.1.2
randombytes: 2.1.0
- safe-buffer: '@socketregistry/safe-buffer@1.0.5'
+ safe-buffer: '@socketregistry/safe-buffer@1.0.6'
scrypt-js: 3.0.1
secp256k1: 4.0.4
setimmediate: 1.0.5
@@ -12212,6 +13090,14 @@ snapshots:
ethjs-util: 0.1.6
rlp: 2.2.7
+ ethereumjs-util@7.1.5:
+ dependencies:
+ '@types/bn.js': 5.1.6
+ bn.js: 5.2.1
+ create-hash: 1.2.0
+ ethereum-cryptography: 0.1.3
+ rlp: 2.2.7
+
ethers@5.7.2(bufferutil@4.0.9)(utf-8-validate@5.0.10):
dependencies:
'@ethersproject/abi': 5.7.0
@@ -12248,6 +13134,11 @@ snapshots:
- bufferutil
- utf-8-validate
+ ethjs-unit@0.1.6:
+ dependencies:
+ bn.js: 5.2.1
+ number-to-bn: 1.7.0
+
ethjs-util@0.1.6:
dependencies:
is-hex-prefixed: 1.0.0
@@ -12262,7 +13153,7 @@ snapshots:
evp_bytestokey@1.0.3:
dependencies:
md5.js: 1.3.5
- safe-buffer: '@socketregistry/safe-buffer@1.0.5'
+ safe-buffer: '@socketregistry/safe-buffer@1.0.6'
exit-hook@2.2.1: {}
@@ -12303,9 +13194,9 @@ snapshots:
fastest-stable-stringify@2.0.2: {}
- fastq@1.18.0:
+ fastq@1.19.0:
dependencies:
- reusify: 1.0.4
+ reusify: 1.1.0
fdir@6.4.3(picomatch@4.0.2):
optionalDependencies:
@@ -12342,19 +13233,19 @@ snapshots:
flat-cache@3.2.0:
dependencies:
- flatted: 3.3.2
+ flatted: 3.3.3
keyv: 4.5.4
rimraf: 3.0.2
flat-cache@6.1.6:
dependencies:
cacheable: 1.8.8
- flatted: 3.3.2
+ flatted: 3.3.3
hookified: 1.7.1
flat@5.0.2: {}
- flatted@3.3.2: {}
+ flatted@3.3.3: {}
fmix@0.1.0:
dependencies:
@@ -12364,15 +13255,16 @@ snapshots:
optionalDependencies:
debug: 4.4.0(supports-color@5.5.0)
- foreground-child@3.3.0:
+ foreground-child@3.3.1:
dependencies:
cross-spawn: 7.0.6
signal-exit: 4.1.0
- form-data@4.0.1:
+ form-data@4.0.2:
dependencies:
asynckit: 0.4.0
combined-stream: 1.0.8
+ es-set-tostringtag: '@socketregistry/es-set-tostringtag@1.0.6'
mime-types: 2.1.35
formdata-polyfill@4.0.10:
@@ -12381,6 +13273,16 @@ snapshots:
fp-ts@1.19.3: {}
+ fp-ts@2.16.9: {}
+
+ framer-motion@11.3.28(@emotion/is-prop-valid@1.3.1)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ dependencies:
+ tslib: 2.8.1
+ optionalDependencies:
+ '@emotion/is-prop-valid': 1.3.1
+ react: 18.3.1
+ react-dom: 18.3.1(react@18.3.1)
+
fs-extra@10.1.0:
dependencies:
graceful-fs: 4.2.11
@@ -12409,9 +13311,9 @@ snapshots:
get-func-name@2.0.2: {}
- get-intrinsic@1.2.7:
+ get-intrinsic@1.3.0:
dependencies:
- call-bind-apply-helpers: 1.0.1
+ call-bind-apply-helpers: 1.0.2
es-define-property: '@socketregistry/es-define-property@1.0.5'
es-errors: 1.3.0
es-object-atoms: 1.1.1
@@ -12450,7 +13352,7 @@ snapshots:
glob@10.4.5:
dependencies:
- foreground-child: 3.3.0
+ foreground-child: 3.3.1
jackspeak: 3.4.3
minimatch: 9.0.5
minipass: 7.1.2
@@ -12524,26 +13426,27 @@ snapshots:
graphql@16.10.0: {}
+ gsap@3.12.7: {}
+
gzip-size@6.0.0:
dependencies:
duplexer: 0.1.2
- h3@1.14.0:
+ h3@1.15.1:
dependencies:
cookie-es: 1.2.2
- crossws: 0.3.2
+ crossws: 0.3.4
defu: 6.1.4
destr: 2.0.3
iron-webcrypto: 1.2.1
- ohash: 1.1.4
+ node-mock-http: 1.0.0
radix3: 1.1.2
ufo: 1.5.4
uncrypto: 0.1.3
- unenv: 1.10.0
- hardhat-dependency-compiler@1.2.1(hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10)):
+ hardhat-dependency-compiler@1.2.1(hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10)):
dependencies:
- hardhat: 2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10)
+ hardhat: 2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10)
hardhat-deploy@0.12.4(patch_hash=tlkqdaxsrdu4rtoksxd5dvmjze)(bufferutil@4.0.9)(utf-8-validate@5.0.10):
dependencies:
@@ -12565,9 +13468,9 @@ snapshots:
debug: 4.4.0(supports-color@5.5.0)
enquirer: 2.4.1
ethers: 5.7.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)
- form-data: 4.0.1
+ form-data: 4.0.2
fs-extra: 10.1.0
- match-all: 1.2.6
+ match-all: 1.2.7
murmur-128: 0.2.1
qs: 6.14.0
zksync-ethers: 5.10.0(ethers@5.7.2(bufferutil@4.0.9)(utf-8-validate@5.0.10))
@@ -12576,11 +13479,11 @@ snapshots:
- supports-color
- utf-8-validate
- hardhat@2.22.18(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10):
+ hardhat@2.22.19(bufferutil@4.0.9)(ts-node@10.9.2(@types/node@20.17.19)(typescript@5.7.3))(typescript@5.7.3)(utf-8-validate@5.0.10):
dependencies:
'@ethersproject/abi': 5.7.0
'@metamask/eth-sig-util': 4.0.1
- '@nomicfoundation/edr': 0.7.0
+ '@nomicfoundation/edr': 0.8.0
'@nomicfoundation/ethereumjs-common': 4.0.4
'@nomicfoundation/ethereumjs-tx': 5.0.4
'@nomicfoundation/ethereumjs-util': 9.0.4
@@ -12616,8 +13519,8 @@ snapshots:
semver: 6.3.1
solc: 0.8.26(debug@4.4.0)
source-map-support: 0.5.21
- stacktrace-parser: 0.1.10
- tinyglobby: 0.2.10
+ stacktrace-parser: 0.1.11
+ tinyglobby: 0.2.12
tsort: 0.0.1
undici: 5.28.5
uuid: 8.3.2
@@ -12639,7 +13542,7 @@ snapshots:
dependencies:
inherits: 2.0.4
readable-stream: 3.6.2
- safe-buffer: '@socketregistry/safe-buffer@1.0.5'
+ safe-buffer: '@socketregistry/safe-buffer@1.0.6'
hash-test-vectors@1.3.2: {}
@@ -12713,11 +13616,11 @@ snapshots:
i18next-browser-languagedetector@6.1.8:
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.26.9
i18next-browser-languagedetector@7.1.0:
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.26.9
i18next-http-backend@1.4.5:
dependencies:
@@ -12727,19 +13630,19 @@ snapshots:
i18next@21.10.0:
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.26.9
i18next@23.11.5:
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.26.9
iconv-lite@0.4.24:
dependencies:
- safer-buffer: '@socketregistry/safer-buffer@1.0.5'
+ safer-buffer: '@socketregistry/safer-buffer@1.0.7'
iconv-lite@0.6.3:
dependencies:
- safer-buffer: '@socketregistry/safer-buffer@1.0.5'
+ safer-buffer: '@socketregistry/safer-buffer@1.0.7'
idb-keyval@6.2.1: {}
@@ -12755,7 +13658,7 @@ snapshots:
immutable@4.3.7: {}
- import-fresh@3.3.0:
+ import-fresh@3.3.1:
dependencies:
parent-module: 1.0.1
resolve-from: 4.0.0
@@ -12777,6 +13680,8 @@ snapshots:
dependencies:
css-in-js-utils: 3.1.0
+ inputmask@5.0.9: {}
+
invariant@2.2.4:
dependencies:
loose-envify: 1.4.0
@@ -12785,24 +13690,31 @@ snapshots:
dependencies:
fp-ts: 1.19.3
+ io-ts@2.0.1(fp-ts@2.16.9):
+ dependencies:
+ fp-ts: 2.16.9
+
iron-webcrypto@1.2.1: {}
is-arrayish@0.2.1: {}
+ is-arrayish@0.3.2:
+ optional: true
+
is-binary-path@2.1.0:
dependencies:
binary-extensions: 2.3.0
is-bun-module@1.3.0:
dependencies:
- semver: 7.6.3
+ semver: 7.7.1
is-callable@1.2.7: {}
is-data-view@1.0.2:
dependencies:
call-bound: 1.0.3
- get-intrinsic: 1.2.7
+ get-intrinsic: 1.3.0
is-typed-array: '@socketregistry/is-typed-array@1.0.6'
is-docker@2.2.1: {}
@@ -12817,6 +13729,11 @@ snapshots:
is-hex-prefixed@1.0.0: {}
+ is-nan@1.3.2:
+ dependencies:
+ call-bind: 1.0.8
+ define-properties: '@socketregistry/define-properties@1.0.5'
+
is-node-process@1.2.0: {}
is-number@7.0.0: {}
@@ -12833,6 +13750,8 @@ snapshots:
dependencies:
'@types/estree': 1.0.6
+ is-standalone-pwa@0.1.1: {}
+
is-stream@2.0.1: {}
is-wsl@2.2.0:
@@ -12926,8 +13845,8 @@ snapshots:
dependencies:
cssstyle: 4.2.1
data-urls: 5.0.0
- decimal.js: 10.4.3
- form-data: 4.0.1
+ decimal.js: 10.5.0
+ form-data: 4.0.2
html-encoding-sniffer: 4.0.0
http-proxy-agent: 7.0.2
https-proxy-agent: 7.0.6
@@ -12942,8 +13861,8 @@ snapshots:
webidl-conversions: 7.0.0
whatwg-encoding: 3.1.1
whatwg-mimetype: 4.0.0
- whatwg-url: 14.1.0
- ws: 8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ whatwg-url: 14.1.1
+ ws: 8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)
xml-name-validator: 5.0.0
transitivePeerDependencies:
- bufferutil
@@ -13025,13 +13944,13 @@ snapshots:
kind-of@6.0.3: {}
- knip@5.44.5(@types/node@20.17.19)(typescript@5.7.3):
+ knip@5.45.0(@types/node@20.17.19)(typescript@5.7.3):
dependencies:
'@nodelib/fs.walk': 3.0.1
'@snyk/github-codeowners': 1.1.0
'@types/node': 20.17.19
easy-table: 1.2.0
- enhanced-resolve: 5.18.0
+ enhanced-resolve: 5.18.1
fast-glob: 3.3.3
jiti: 2.4.2
js-yaml: 4.1.0
@@ -13043,8 +13962,8 @@ snapshots:
strip-json-comments: 5.0.1
summary: 2.1.0
typescript: 5.7.3
- zod: 3.24.1
- zod-validation-error: 3.4.0(zod@3.24.1)
+ zod: 3.24.2
+ zod-validation-error: 3.4.0(zod@3.24.2)
known-css-properties@0.35.0: {}
@@ -13059,6 +13978,10 @@ snapshots:
prelude-ls: 1.2.1
type-check: 0.4.0
+ libphonenumber-js@1.11.2: {}
+
+ libphonenumber-js@1.11.20: {}
+
lie@3.1.1:
dependencies:
immediate: 3.0.6
@@ -13120,8 +14043,6 @@ snapshots:
dependencies:
get-func-name: 2.0.2
- loupe@3.1.2: {}
-
loupe@3.1.3: {}
lower-case@2.0.2:
@@ -13152,21 +14073,21 @@ snapshots:
magicast@0.3.5:
dependencies:
- '@babel/parser': 7.26.5
- '@babel/types': 7.26.5
+ '@babel/parser': 7.26.9
+ '@babel/types': 7.26.9
source-map-js: 1.2.1
make-dir@4.0.0:
dependencies:
- semver: 7.6.3
+ semver: 7.7.1
make-error@1.3.6: {}
- markdown-to-jsx@7.7.3(react@18.3.1):
+ markdown-to-jsx@7.7.4(react@18.3.1):
dependencies:
react: 18.3.1
- match-all@1.2.6: {}
+ match-all@1.2.7: {}
math-intrinsics@1.1.0: {}
@@ -13176,7 +14097,7 @@ snapshots:
dependencies:
hash-base: 3.1.0
inherits: 2.0.4
- safe-buffer: '@socketregistry/safe-buffer@1.0.5'
+ safe-buffer: '@socketregistry/safe-buffer@1.0.6'
mdn-data@2.0.14: {}
@@ -13188,7 +14109,7 @@ snapshots:
media-query-parser@2.0.2:
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.26.9
memorystream@0.3.1: {}
@@ -13215,23 +14136,21 @@ snapshots:
min-indent@1.0.1: {}
- miniflare@3.20241230.2(bufferutil@4.0.9)(utf-8-validate@5.0.10):
+ miniflare@3.20250214.0(bufferutil@4.0.9)(utf-8-validate@5.0.10):
dependencies:
'@cspotcode/source-map-support': 0.8.1
acorn: 8.14.0
- acorn-walk: 8.3.4
- capnp-ts: 0.7.0
+ acorn-walk: 8.3.2
exit-hook: 2.2.1
glob-to-regexp: 0.4.1
stoppable: 1.1.0
undici: 5.28.5
- workerd: 1.20241230.0
+ workerd: 1.20250214.0
ws: 8.18.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
- youch: 3.3.4
- zod: 3.24.1
+ youch: 3.2.3
+ zod: 3.22.3
transitivePeerDependencies:
- bufferutil
- - supports-color
- utf-8-validate
minimalistic-assert@1.0.1: {}
@@ -13319,13 +14238,13 @@ snapshots:
ms@2.1.3: {}
- msw@2.7.0(@types/node@20.17.19)(typescript@5.7.3):
+ msw@2.7.3(@types/node@20.17.19)(typescript@5.7.3):
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.3(@types/node@20.17.19)
- '@mswjs/interceptors': 0.37.5
+ '@inquirer/confirm': 5.1.6(@types/node@20.17.19)
+ '@mswjs/interceptors': 0.37.6
'@open-draft/deferred-promise': 2.2.0
'@open-draft/until': 2.1.0
'@types/cookie': 0.6.0
@@ -13337,7 +14256,7 @@ snapshots:
path-to-regexp: 6.3.0
picocolors: 1.1.1
strict-event-emitter: 0.5.1
- type-fest: 4.33.0
+ type-fest: 4.35.0
yargs: 17.7.2
optionalDependencies:
typescript: 5.7.3
@@ -13369,35 +14288,35 @@ snapshots:
react-dom: 18.3.1(react@18.3.1)
rtl-css-js: 1.16.1
stacktrace-js: 2.0.2
- stylis: 4.3.5
+ stylis: 4.3.6
nanoid@3.3.8: {}
natural-compare@1.4.0: {}
- next-dev-https@0.1.2(patch_hash=q5l3x5627ujg3rak6l6v24c2cq)(next@13.5.8(@babel/core@7.26.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1):
+ next-dev-https@0.1.2(patch_hash=q5l3x5627ujg3rak6l6v24c2cq)(next@13.5.8(@babel/core@7.26.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1):
dependencies:
arg: 5.0.2
- next: 13.5.8(@babel/core@7.26.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ next: 13.5.8(@babel/core@7.26.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
qrcode-terminal: 0.12.0
react: 18.3.1
selfsigned: 2.4.1
- next-router-mock@0.9.13(next@13.5.8(@babel/core@7.26.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1):
+ next-router-mock@0.9.13(next@13.5.8(@babel/core@7.26.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1))(react@18.3.1):
dependencies:
- next: 13.5.8(@babel/core@7.26.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
+ next: 13.5.8(@babel/core@7.26.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)
react: 18.3.1
- next@13.5.8(@babel/core@7.26.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ next@13.5.8(@babel/core@7.26.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
'@next/env': 13.5.8
'@swc/helpers': 0.5.2
busboy: 1.6.0
- caniuse-lite: 1.0.30001695
+ caniuse-lite: 1.0.30001700
postcss: 8.4.31
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
- styled-jsx: 5.1.1(@babel/core@7.26.0)(react@18.3.1)
+ styled-jsx: 5.1.1(@babel/core@7.26.9)(react@18.3.1)
watchpack: 2.4.0
optionalDependencies:
'@next/swc-darwin-arm64': 13.5.8
@@ -13440,10 +14359,12 @@ 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.4: {}
+ node-mock-http@1.0.0: {}
+
node-releases@2.0.19: {}
nofilter@3.1.0: {}
@@ -13454,6 +14375,11 @@ snapshots:
dependencies:
boolbase: 1.0.0
+ number-to-bn@1.7.0:
+ dependencies:
+ bn.js: 5.2.1
+ strip-hex-prefix: 1.0.0
+
nwsapi@2.2.16: {}
obj-multiplex@1.0.0:
@@ -13462,7 +14388,7 @@ snapshots:
once: 1.4.0
readable-stream: 2.3.8
- object-inspect@1.13.3: {}
+ object-inspect@1.13.4: {}
obliterator@2.0.5: {}
@@ -13505,7 +14431,7 @@ snapshots:
own-keys@1.0.1:
dependencies:
- get-intrinsic: 1.2.7
+ get-intrinsic: 1.3.0
object-keys: '@socketregistry/object-keys@1.0.5'
safe-push-apply: 1.0.0
@@ -13580,7 +14506,7 @@ snapshots:
create-hash: 1.2.0
create-hmac: 1.1.7
ripemd160: 2.0.2
- safe-buffer: '@socketregistry/safe-buffer@1.0.5'
+ safe-buffer: '@socketregistry/safe-buffer@1.0.6'
sha.js: 2.4.11
picocolors@1.1.1: {}
@@ -13620,11 +14546,11 @@ snapshots:
mlly: 1.7.4
pathe: 2.0.3
- playwright-core@1.49.1: {}
+ playwright-core@1.50.1: {}
- playwright@1.49.1:
+ playwright@1.50.1:
dependencies:
- playwright-core: 1.49.1
+ playwright-core: 1.50.1
optionalDependencies:
fsevents: 2.3.2
@@ -13634,18 +14560,18 @@ snapshots:
postcss-resolve-nested-selector@0.1.6: {}
- postcss-safe-parser@7.0.1(postcss@8.5.1):
+ postcss-safe-parser@7.0.1(postcss@8.5.3):
dependencies:
- postcss: 8.5.1
+ postcss: 8.5.3
postcss-selector-parser@7.1.0:
dependencies:
cssesc: 3.0.0
util-deprecate: 1.0.2
- postcss-styled-syntax@0.7.1(postcss@8.5.1):
+ postcss-styled-syntax@0.7.1(postcss@8.5.3):
dependencies:
- postcss: 8.5.1
+ postcss: 8.5.3
typescript: 5.7.3
postcss-value-parser@4.2.0: {}
@@ -13656,13 +14582,19 @@ snapshots:
picocolors: 1.1.1
source-map-js: 1.2.1
- postcss@8.5.1:
+ postcss@8.4.49:
+ dependencies:
+ nanoid: 3.3.8
+ picocolors: 1.1.1
+ source-map-js: 1.2.1
+
+ postcss@8.5.3:
dependencies:
nanoid: 3.3.8
picocolors: 1.1.1
source-map-js: 1.2.1
- preact@10.25.4: {}
+ preact@10.26.2: {}
prelude-ls@1.2.1: {}
@@ -13723,6 +14655,10 @@ snapshots:
qrcode-terminal@0.12.0: {}
+ qrcode-with-logos@1.1.1:
+ dependencies:
+ qrcode: 1.5.4
+
qrcode@1.5.3:
dependencies:
dijkstrajs: 1.0.3
@@ -13730,6 +14666,12 @@ snapshots:
pngjs: 5.0.0
yargs: 15.4.1
+ qrcode@1.5.4:
+ dependencies:
+ dijkstrajs: 1.0.3
+ pngjs: 5.0.0
+ yargs: 15.4.1
+
qs@6.14.0:
dependencies:
side-channel: '@socketregistry/side-channel@1.0.7'
@@ -13749,7 +14691,7 @@ snapshots:
randombytes@2.1.0:
dependencies:
- safe-buffer: '@socketregistry/safe-buffer@1.0.5'
+ safe-buffer: '@socketregistry/safe-buffer@1.0.6'
raw-body@2.5.2:
dependencies:
@@ -13771,7 +14713,7 @@ snapshots:
react-error-boundary@3.1.4(react@18.3.1):
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.26.9
react: 18.3.1
react-hook-form@7.51.0(react@18.3.1):
@@ -13780,7 +14722,7 @@ snapshots:
react-i18next@11.18.6(i18next@21.10.0)(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.26.9
html-parse-stringify: 3.0.1
i18next: 21.10.0
react: 18.3.1
@@ -13845,7 +14787,7 @@ snapshots:
dependencies:
react: 18.3.1
- react-use-intercom@5.4.1(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
+ react-use-intercom@5.4.3(react-dom@18.3.1(react@18.3.1))(react@18.3.1):
dependencies:
react: 18.3.1
react-dom: 18.3.1(react@18.3.1)
@@ -13879,7 +14821,7 @@ snapshots:
inherits: 2.0.4
isarray: '@socketregistry/isarray@1.0.5'
process-nextick-args: 1.0.7
- safe-buffer: '@socketregistry/safe-buffer@1.0.5'
+ safe-buffer: '@socketregistry/safe-buffer@1.0.6'
string_decoder: 1.0.3
util-deprecate: 1.0.2
@@ -13889,7 +14831,7 @@ snapshots:
inherits: 2.0.4
isarray: '@socketregistry/isarray@1.0.5'
process-nextick-args: 2.0.1
- safe-buffer: '@socketregistry/safe-buffer@1.0.5'
+ safe-buffer: '@socketregistry/safe-buffer@1.0.6'
string_decoder: 1.1.1
util-deprecate: 1.0.2
@@ -13903,13 +14845,15 @@ snapshots:
dependencies:
picomatch: 2.3.1
- readdirp@4.1.1: {}
+ readdirp@4.1.2: {}
+
+ readonly-date@1.0.0: {}
real-require@0.1.0: {}
redent@3.0.0:
dependencies:
- indent-string: '@socketregistry/indent-string@1.0.9'
+ indent-string: '@socketregistry/indent-string@1.0.10'
strip-indent: 3.0.0
regenerate-unicode-properties@10.2.0:
@@ -13922,7 +14866,7 @@ snapshots:
regenerator-transform@0.15.2:
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.26.9
regexpu-core@6.2.0:
dependencies:
@@ -13961,17 +14905,17 @@ snapshots:
resolve@1.22.10:
dependencies:
- is-core-module: '@socketregistry/is-core-module@1.0.6'
+ is-core-module: '@socketregistry/is-core-module@1.0.7'
path-parse: '@socketregistry/path-parse@1.0.5'
supports-preserve-symlinks-flag: 1.0.0
resolve@2.0.0-next.5:
dependencies:
- is-core-module: '@socketregistry/is-core-module@1.0.6'
+ is-core-module: '@socketregistry/is-core-module@1.0.7'
path-parse: '@socketregistry/path-parse@1.0.5'
supports-preserve-symlinks-flag: 1.0.0
- reusify@1.0.4: {}
+ reusify@1.1.0: {}
rimraf@3.0.2:
dependencies:
@@ -13996,14 +14940,14 @@ snapshots:
dependencies:
rollup-plugin-inject: 3.0.2
- rollup-plugin-visualizer@5.14.0(rollup@4.31.0):
+ rollup-plugin-visualizer@5.14.0(rollup@4.34.8):
dependencies:
open: 8.4.2
picomatch: 4.0.2
source-map: 0.7.4
yargs: 17.7.2
optionalDependencies:
- rollup: 4.31.0
+ rollup: 4.34.8
rollup-pluginutils@2.8.2:
dependencies:
@@ -14013,29 +14957,29 @@ snapshots:
optionalDependencies:
fsevents: 2.3.3
- rollup@4.31.0:
+ rollup@4.34.8:
dependencies:
'@types/estree': 1.0.6
optionalDependencies:
- '@rollup/rollup-android-arm-eabi': 4.31.0
- '@rollup/rollup-android-arm64': 4.31.0
- '@rollup/rollup-darwin-arm64': 4.31.0
- '@rollup/rollup-darwin-x64': 4.31.0
- '@rollup/rollup-freebsd-arm64': 4.31.0
- '@rollup/rollup-freebsd-x64': 4.31.0
- '@rollup/rollup-linux-arm-gnueabihf': 4.31.0
- '@rollup/rollup-linux-arm-musleabihf': 4.31.0
- '@rollup/rollup-linux-arm64-gnu': 4.31.0
- '@rollup/rollup-linux-arm64-musl': 4.31.0
- '@rollup/rollup-linux-loongarch64-gnu': 4.31.0
- '@rollup/rollup-linux-powerpc64le-gnu': 4.31.0
- '@rollup/rollup-linux-riscv64-gnu': 4.31.0
- '@rollup/rollup-linux-s390x-gnu': 4.31.0
- '@rollup/rollup-linux-x64-gnu': 4.31.0
- '@rollup/rollup-linux-x64-musl': 4.31.0
- '@rollup/rollup-win32-arm64-msvc': 4.31.0
- '@rollup/rollup-win32-ia32-msvc': 4.31.0
- '@rollup/rollup-win32-x64-msvc': 4.31.0
+ '@rollup/rollup-android-arm-eabi': 4.34.8
+ '@rollup/rollup-android-arm64': 4.34.8
+ '@rollup/rollup-darwin-arm64': 4.34.8
+ '@rollup/rollup-darwin-x64': 4.34.8
+ '@rollup/rollup-freebsd-arm64': 4.34.8
+ '@rollup/rollup-freebsd-x64': 4.34.8
+ '@rollup/rollup-linux-arm-gnueabihf': 4.34.8
+ '@rollup/rollup-linux-arm-musleabihf': 4.34.8
+ '@rollup/rollup-linux-arm64-gnu': 4.34.8
+ '@rollup/rollup-linux-arm64-musl': 4.34.8
+ '@rollup/rollup-linux-loongarch64-gnu': 4.34.8
+ '@rollup/rollup-linux-powerpc64le-gnu': 4.34.8
+ '@rollup/rollup-linux-riscv64-gnu': 4.34.8
+ '@rollup/rollup-linux-s390x-gnu': 4.34.8
+ '@rollup/rollup-linux-x64-gnu': 4.34.8
+ '@rollup/rollup-linux-x64-musl': 4.34.8
+ '@rollup/rollup-win32-arm64-msvc': 4.34.8
+ '@rollup/rollup-win32-ia32-msvc': 4.34.8
+ '@rollup/rollup-win32-x64-msvc': 4.34.8
fsevents: 2.3.3
rrweb-cssom@0.7.1: {}
@@ -14044,13 +14988,13 @@ snapshots:
rtl-css-js@1.16.1:
dependencies:
- '@babel/runtime': 7.26.0
+ '@babel/runtime': 7.26.9
run-parallel@1.2.0:
dependencies:
queue-microtask: 1.2.3
- rxjs@7.8.1:
+ rxjs@7.8.2:
dependencies:
tslib: 2.8.1
@@ -14097,13 +15041,13 @@ 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: {}
semver@6.3.1: {}
- semver@7.6.3: {}
+ semver@7.7.1: {}
serialize-javascript@6.0.2:
dependencies:
@@ -14126,10 +15070,37 @@ snapshots:
sha.js@2.4.11:
dependencies:
inherits: 2.0.4
- safe-buffer: '@socketregistry/safe-buffer@1.0.5'
+ safe-buffer: '@socketregistry/safe-buffer@1.0.6'
shallowequal@1.1.0: {}
+ sharp@0.33.5:
+ dependencies:
+ color: 4.2.3
+ detect-libc: 2.0.3
+ semver: 7.7.1
+ optionalDependencies:
+ '@img/sharp-darwin-arm64': 0.33.5
+ '@img/sharp-darwin-x64': 0.33.5
+ '@img/sharp-libvips-darwin-arm64': 1.0.4
+ '@img/sharp-libvips-darwin-x64': 1.0.4
+ '@img/sharp-libvips-linux-arm': 1.0.5
+ '@img/sharp-libvips-linux-arm64': 1.0.4
+ '@img/sharp-libvips-linux-s390x': 1.0.4
+ '@img/sharp-libvips-linux-x64': 1.0.4
+ '@img/sharp-libvips-linuxmusl-arm64': 1.0.4
+ '@img/sharp-libvips-linuxmusl-x64': 1.0.4
+ '@img/sharp-linux-arm': 0.33.5
+ '@img/sharp-linux-arm64': 0.33.5
+ '@img/sharp-linux-s390x': 0.33.5
+ '@img/sharp-linux-x64': 0.33.5
+ '@img/sharp-linuxmusl-arm64': 0.33.5
+ '@img/sharp-linuxmusl-x64': 0.33.5
+ '@img/sharp-wasm32': 0.33.5
+ '@img/sharp-win32-ia32': 0.33.5
+ '@img/sharp-win32-x64': 0.33.5
+ optional: true
+
shebang-command@2.0.0:
dependencies:
shebang-regex: 3.0.0
@@ -14142,6 +15113,11 @@ snapshots:
signal-exit@4.1.0: {}
+ simple-swizzle@0.2.2:
+ dependencies:
+ is-arrayish: 0.3.2
+ optional: true
+
sirv@1.0.19:
dependencies:
'@polka/url': 1.0.0-next.28
@@ -14174,7 +15150,7 @@ snapshots:
dependencies:
'@socket.io/component-emitter': 3.1.2
debug: 4.3.7
- engine.io-client: 6.6.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ engine.io-client: 6.6.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)
socket.io-parser: 4.2.4
transitivePeerDependencies:
- bufferutil
@@ -14261,7 +15237,7 @@ snapshots:
stack-generator: 2.0.10
stacktrace-gps: 3.1.2
- stacktrace-parser@0.1.10:
+ stacktrace-parser@0.1.11:
dependencies:
type-fest: 0.7.1
@@ -14316,15 +15292,15 @@ snapshots:
string_decoder@1.0.3:
dependencies:
- safe-buffer: '@socketregistry/safe-buffer@1.0.5'
+ safe-buffer: '@socketregistry/safe-buffer@1.0.6'
string_decoder@1.1.1:
dependencies:
- safe-buffer: '@socketregistry/safe-buffer@1.0.5'
+ safe-buffer: '@socketregistry/safe-buffer@1.0.6'
string_decoder@1.3.0:
dependencies:
- safe-buffer: '@socketregistry/safe-buffer@1.0.5'
+ safe-buffer: '@socketregistry/safe-buffer@1.0.6'
strip-ansi@6.0.1:
dependencies:
@@ -14348,14 +15324,14 @@ snapshots:
strip-json-comments@5.0.1: {}
- styled-components@5.3.11(@babel/core@7.26.0)(react-dom@18.3.1(react@18.3.1))(react-is@17.0.2)(react@18.3.1):
+ styled-components@5.3.11(@babel/core@7.26.9)(react-dom@18.3.1(react@18.3.1))(react-is@17.0.2)(react@18.3.1):
dependencies:
'@babel/helper-module-imports': 7.25.9(supports-color@5.5.0)
- '@babel/traverse': 7.26.5(supports-color@5.5.0)
+ '@babel/traverse': 7.26.9(supports-color@5.5.0)
'@emotion/is-prop-valid': 1.3.1
'@emotion/stylis': 0.8.5
'@emotion/unitless': 0.7.5
- babel-plugin-styled-components: 2.1.4(@babel/core@7.26.0)(styled-components@5.3.11(@babel/core@7.26.0)(react-dom@18.3.1(react@18.3.1))(react-is@17.0.2)(react@18.3.1))(supports-color@5.5.0)
+ babel-plugin-styled-components: 2.1.4(@babel/core@7.26.9)(styled-components@5.3.11(@babel/core@7.26.9)(react-dom@18.3.1(react@18.3.1))(react-is@17.0.2)(react@18.3.1))(supports-color@5.5.0)
css-to-react-native: 3.2.0
hoist-non-react-statics: 3.3.2
react: 18.3.1
@@ -14366,12 +15342,26 @@ snapshots:
transitivePeerDependencies:
- '@babel/core'
- styled-jsx@5.1.1(@babel/core@7.26.0)(react@18.3.1):
+ styled-components@6.1.15(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.49
+ 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.26.9)(react@18.3.1):
dependencies:
client-only: 0.0.1
react: 18.3.1
optionalDependencies:
- '@babel/core': 7.26.0
+ '@babel/core': 7.26.9
stylelint-config-recommended@15.0.0(stylelint@16.14.1(typescript@5.7.3)):
dependencies:
@@ -14420,9 +15410,9 @@ snapshots:
micromatch: 4.0.8
normalize-path: 3.0.0
picocolors: 1.1.1
- postcss: 8.5.1
+ postcss: 8.5.3
postcss-resolve-nested-selector: 0.1.6
- postcss-safe-parser: 7.0.1(postcss@8.5.1)
+ postcss-safe-parser: 7.0.1(postcss@8.5.3)
postcss-selector-parser: 7.1.0
postcss-value-parser: 4.2.0
resolve-from: 5.0.0
@@ -14435,7 +15425,9 @@ snapshots:
- supports-color
- typescript
- stylis@4.3.5: {}
+ stylis@4.3.2: {}
+
+ stylis@4.3.6: {}
summary@2.1.0: {}
@@ -14529,7 +15521,7 @@ snapshots:
tinyexec@0.3.2: {}
- tinyglobby@0.2.10:
+ tinyglobby@0.2.12:
dependencies:
fdir: 6.4.3(picomatch@4.0.2)
picomatch: 4.0.2
@@ -14606,6 +15598,8 @@ snapshots:
tslib@1.14.1: {}
+ tslib@2.6.2: {}
+
tslib@2.8.1: {}
tsort@0.0.1: {}
@@ -14633,7 +15627,7 @@ snapshots:
type-fest@0.7.1: {}
- type-fest@4.33.0: {}
+ type-fest@4.35.0: {}
typescript-logging@1.0.1:
dependencies:
@@ -14651,8 +15645,20 @@ snapshots:
typescript@5.7.3: {}
+ ua-is-frozen@0.1.2: {}
+
ua-parser-js@1.0.40: {}
+ ua-parser-js@2.0.2:
+ dependencies:
+ '@types/node-fetch': 2.6.12
+ detect-europe-js: 0.1.2
+ is-standalone-pwa: 0.1.1
+ node-fetch: 2.7.0
+ ua-is-frozen: 0.1.2
+ transitivePeerDependencies:
+ - encoding
+
ufo@1.5.4: {}
uint8arrays@3.1.1:
@@ -14661,13 +15667,15 @@ snapshots:
uncrypto@0.1.3: {}
+ undici-types@5.26.5: {}
+
undici-types@6.19.8: {}
undici@5.28.5:
dependencies:
'@fastify/busboy': 2.1.1
- unenv-nightly@2.0.0-20250109-100802-88ad671:
+ unenv@2.0.0-rc.1:
dependencies:
defu: 6.1.4
mlly: 1.7.4
@@ -14675,14 +15683,6 @@ snapshots:
pathe: 1.1.2
ufo: 1.5.4
- unenv@1.10.0:
- dependencies:
- consola: 3.4.0
- defu: 6.1.4
- mime: 3.0.0
- node-fetch-native: 1.6.6
- pathe: 1.1.2
-
unfetch@4.2.0: {}
unicode-canonical-property-names-ecmascript@2.0.1: {}
@@ -14704,12 +15704,12 @@ snapshots:
unpipe@1.0.0: {}
- unstorage@1.14.4(idb-keyval@6.2.1):
+ unstorage@1.15.0(idb-keyval@6.2.1):
dependencies:
anymatch: 3.1.3
- chokidar: 3.6.0
+ chokidar: 4.0.3
destr: 2.0.3
- h3: 1.14.0
+ h3: 1.15.1
lru-cache: 10.4.3
node-fetch-native: 1.6.6
ofetch: 1.4.1
@@ -14756,10 +15756,16 @@ snapshots:
dependencies:
react: 18.3.1
+ use-sync-external-store@1.4.0(react@18.3.1):
+ dependencies:
+ react: 18.3.1
+
utf-8-validate@5.0.10:
dependencies:
node-gyp-build: 4.8.4
+ utf8@3.0.0: {}
+
util-deprecate@1.0.2: {}
util@0.12.5:
@@ -14784,14 +15790,14 @@ snapshots:
'@types/react': 18.3.12
react: 18.3.1
- viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1):
+ viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2):
dependencies:
'@adraffy/ens-normalize': 1.10.0
'@noble/curves': 1.4.0
'@noble/hashes': 1.4.0
'@scure/bip32': 1.4.0
'@scure/bip39': 1.3.0
- abitype: 1.0.5(typescript@5.7.3)(zod@3.24.1)
+ abitype: 1.0.5(typescript@5.7.3)(zod@3.24.2)
isows: 1.0.4(ws@8.17.1(bufferutil@4.0.9)(utf-8-validate@5.0.10))
webauthn-p256: 0.0.5
ws: 8.17.1(bufferutil@4.0.9)(utf-8-validate@5.0.10)
@@ -14802,15 +15808,16 @@ snapshots:
- utf-8-validate
- zod
- vite-node@3.0.7(@types/node@20.17.19):
+ vite-node@3.0.7(@types/node@20.17.19)(jiti@2.4.2)(yaml@2.7.0):
dependencies:
cac: 6.7.14
debug: 4.4.0(supports-color@5.5.0)
es-module-lexer: 1.6.0
pathe: 2.0.3
- vite: 5.4.14(@types/node@20.17.19)
+ vite: 6.2.0(@types/node@20.17.19)(jiti@2.4.2)(yaml@2.7.0)
transitivePeerDependencies:
- '@types/node'
+ - jiti
- less
- lightningcss
- sass
@@ -14819,32 +15826,36 @@ snapshots:
- sugarss
- supports-color
- terser
+ - tsx
+ - yaml
- vite-plugin-magical-svg@1.3.0(vite@5.4.14(@types/node@20.17.19)):
+ vite-plugin-magical-svg@1.5.0(vite@6.2.0(@types/node@20.17.19)(jiti@2.4.2)(yaml@2.7.0)):
dependencies:
magic-string: 0.30.17
svgo: 3.3.2
- vite: 5.4.14(@types/node@20.17.19)
+ vite: 6.2.0(@types/node@20.17.19)(jiti@2.4.2)(yaml@2.7.0)
xml2js: 0.6.2
- vite@5.4.14(@types/node@20.17.19):
+ vite@6.2.0(@types/node@20.17.19)(jiti@2.4.2)(yaml@2.7.0):
dependencies:
- esbuild: 0.21.5
- postcss: 8.5.1
- rollup: 4.31.0
+ esbuild: 0.25.0
+ postcss: 8.5.3
+ rollup: 4.34.8
optionalDependencies:
'@types/node': 20.17.19
fsevents: 2.3.3
+ jiti: 2.4.2
+ yaml: 2.7.0
- vitest-canvas-mock@0.3.3(vitest@3.0.7(@types/debug@4.1.12)(@types/node@20.17.19)(jsdom@24.1.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(msw@2.7.0(@types/node@20.17.19)(typescript@5.7.3))):
+ vitest-canvas-mock@0.3.3(vitest@3.0.7(@types/debug@4.1.12)(@types/node@20.17.19)(jiti@2.4.2)(jsdom@24.1.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(msw@2.7.3(@types/node@20.17.19)(typescript@5.7.3))(yaml@2.7.0)):
dependencies:
jest-canvas-mock: 2.5.2
- vitest: 3.0.7(@types/debug@4.1.12)(@types/node@20.17.19)(jsdom@24.1.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(msw@2.7.0(@types/node@20.17.19)(typescript@5.7.3))
+ vitest: 3.0.7(@types/debug@4.1.12)(@types/node@20.17.19)(jiti@2.4.2)(jsdom@24.1.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(msw@2.7.3(@types/node@20.17.19)(typescript@5.7.3))(yaml@2.7.0)
- vitest@3.0.7(@types/debug@4.1.12)(@types/node@20.17.19)(jsdom@24.1.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(msw@2.7.0(@types/node@20.17.19)(typescript@5.7.3)):
+ vitest@3.0.7(@types/debug@4.1.12)(@types/node@20.17.19)(jiti@2.4.2)(jsdom@24.1.3(bufferutil@4.0.9)(utf-8-validate@5.0.10))(msw@2.7.3(@types/node@20.17.19)(typescript@5.7.3))(yaml@2.7.0):
dependencies:
'@vitest/expect': 3.0.7
- '@vitest/mocker': 3.0.7(msw@2.7.0(@types/node@20.17.19)(typescript@5.7.3))(vite@5.4.14(@types/node@20.17.19))
+ '@vitest/mocker': 3.0.7(msw@2.7.3(@types/node@20.17.19)(typescript@5.7.3))(vite@6.2.0(@types/node@20.17.19)(jiti@2.4.2)(yaml@2.7.0))
'@vitest/pretty-format': 3.0.7
'@vitest/runner': 3.0.7
'@vitest/snapshot': 3.0.7
@@ -14860,14 +15871,15 @@ snapshots:
tinyexec: 0.3.2
tinypool: 1.0.2
tinyrainbow: 2.0.0
- vite: 5.4.14(@types/node@20.17.19)
- vite-node: 3.0.7(@types/node@20.17.19)
+ vite: 6.2.0(@types/node@20.17.19)(jiti@2.4.2)(yaml@2.7.0)
+ vite-node: 3.0.7(@types/node@20.17.19)(jiti@2.4.2)(yaml@2.7.0)
why-is-node-running: 2.3.0
optionalDependencies:
'@types/debug': 4.1.12
'@types/node': 20.17.19
jsdom: 24.1.3(bufferutil@4.0.9)(utf-8-validate@5.0.10)
transitivePeerDependencies:
+ - jiti
- less
- lightningcss
- msw
@@ -14877,6 +15889,8 @@ snapshots:
- sugarss
- supports-color
- terser
+ - tsx
+ - yaml
void-elements@3.1.0: {}
@@ -14885,7 +15899,7 @@ snapshots:
vscode-languageserver-textdocument: 1.0.12
vscode-languageserver-types: 3.17.5
vscode-nls: 5.2.0
- vscode-uri: 3.0.8
+ vscode-uri: 3.1.0
vscode-emmet-helper@2.6.4:
dependencies:
@@ -14904,20 +15918,20 @@ snapshots:
vscode-uri@2.1.2: {}
- vscode-uri@3.0.8: {}
+ vscode-uri@3.1.0: {}
w3c-xmlserializer@5.0.0:
dependencies:
xml-name-validator: 5.0.0
- wagmi@2.12.4(@tanstack/query-core@5.22.2)(@tanstack/react-query@5.22.2(react@18.3.1))(@types/react@18.3.12)(bufferutil@4.0.9)(immer@9.0.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.31.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1))(zod@3.24.1):
+ wagmi@2.12.4(@tanstack/query-core@5.22.2)(@tanstack/react-query@5.22.2(react@18.3.1))(@types/react@18.3.12)(bufferutil@4.0.9)(immer@9.0.21)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.34.8)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2))(zod@3.24.2):
dependencies:
'@tanstack/react-query': 5.22.2(react@18.3.1)
- '@wagmi/connectors': 5.1.4(@types/react@18.3.12)(@wagmi/core@2.13.3(@tanstack/query-core@5.22.2)(@types/react@18.3.12)(immer@9.0.21)(react@18.3.1)(typescript@5.7.3)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1)))(bufferutil@4.0.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.31.0)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1))(zod@3.24.1)
- '@wagmi/core': 2.13.3(@tanstack/query-core@5.22.2)(@types/react@18.3.12)(immer@9.0.21)(react@18.3.1)(typescript@5.7.3)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1))
+ '@wagmi/connectors': 5.1.4(@types/react@18.3.12)(@wagmi/core@2.13.3(@tanstack/query-core@5.22.2)(@types/react@18.3.12)(immer@9.0.21)(react@18.3.1)(typescript@5.7.3)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2)))(bufferutil@4.0.9)(react-dom@18.3.1(react@18.3.1))(react@18.3.1)(rollup@4.34.8)(typescript@5.7.3)(utf-8-validate@5.0.10)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2))(zod@3.24.2)
+ '@wagmi/core': 2.13.3(@tanstack/query-core@5.22.2)(@types/react@18.3.12)(immer@9.0.21)(react@18.3.1)(typescript@5.7.3)(viem@2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2))
react: 18.3.1
use-sync-external-store: 1.2.0(react@18.3.1)
- viem: 2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.1)
+ viem: 2.19.4(bufferutil@4.0.9)(typescript@5.7.3)(utf-8-validate@5.0.10)(zod@3.24.2)
optionalDependencies:
typescript: 5.7.3
transitivePeerDependencies:
@@ -14958,7 +15972,7 @@ snapshots:
joi: 17.13.3
lodash: 4.17.21
minimist: 1.2.8
- rxjs: 7.8.1
+ rxjs: 7.8.2
transitivePeerDependencies:
- debug
@@ -14974,6 +15988,22 @@ snapshots:
web-streams-polyfill@3.3.3: {}
+ web3-eth-abi@1.10.4:
+ dependencies:
+ '@ethersproject/abi': 5.7.0
+ web3-utils: 1.10.4
+
+ web3-utils@1.10.4:
+ dependencies:
+ '@ethereumjs/util': 8.1.0
+ bn.js: 5.2.1
+ ethereum-bloom-filters: 1.2.0
+ ethereum-cryptography: 2.2.1
+ ethjs-unit: 0.1.6
+ number-to-bn: 1.7.0
+ randombytes: 2.1.0
+ utf8: 3.0.0
+
webauthn-p256@0.0.5:
dependencies:
'@noble/curves': 1.4.0
@@ -15008,7 +16038,7 @@ snapshots:
whatwg-mimetype@4.0.0: {}
- whatwg-url@14.1.0:
+ whatwg-url@14.1.1:
dependencies:
tr46: 5.0.0
webidl-conversions: 7.0.0
@@ -15039,33 +16069,33 @@ snapshots:
word-wrap@1.2.5: {}
- workerd@1.20241230.0:
+ workerd@1.20250214.0:
optionalDependencies:
- '@cloudflare/workerd-darwin-64': 1.20241230.0
- '@cloudflare/workerd-darwin-arm64': 1.20241230.0
- '@cloudflare/workerd-linux-64': 1.20241230.0
- '@cloudflare/workerd-linux-arm64': 1.20241230.0
- '@cloudflare/workerd-windows-64': 1.20241230.0
+ '@cloudflare/workerd-darwin-64': 1.20250214.0
+ '@cloudflare/workerd-darwin-arm64': 1.20250214.0
+ '@cloudflare/workerd-linux-64': 1.20250214.0
+ '@cloudflare/workerd-linux-arm64': 1.20250214.0
+ '@cloudflare/workerd-windows-64': 1.20250214.0
workerpool@6.5.1: {}
- wrangler@3.103.2(@cloudflare/workers-types@3.19.0)(bufferutil@4.0.9)(utf-8-validate@5.0.10):
+ wrangler@3.109.3(@cloudflare/workers-types@3.19.0)(bufferutil@4.0.9)(utf-8-validate@5.0.10):
dependencies:
'@cloudflare/kv-asset-handler': 0.3.4
'@esbuild-plugins/node-globals-polyfill': 0.2.3(esbuild@0.17.19)
'@esbuild-plugins/node-modules-polyfill': 0.2.2(esbuild@0.17.19)
blake3-wasm: 2.1.5
esbuild: 0.17.19
- miniflare: 3.20241230.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)
+ miniflare: 3.20250214.0(bufferutil@4.0.9)(utf-8-validate@5.0.10)
path-to-regexp: 6.3.0
- unenv: unenv-nightly@2.0.0-20250109-100802-88ad671
- workerd: 1.20241230.0
+ unenv: 2.0.0-rc.1
+ workerd: 1.20250214.0
optionalDependencies:
'@cloudflare/workers-types': 3.19.0
fsevents: 2.3.3
+ sharp: 0.33.5
transitivePeerDependencies:
- bufferutil
- - supports-color
- utf-8-validate
wrap-ansi@6.2.0:
@@ -15113,6 +16143,11 @@ snapshots:
bufferutil: 4.0.9
utf-8-validate: 5.0.10
+ ws@8.18.1(bufferutil@4.0.9)(utf-8-validate@5.0.10):
+ optionalDependencies:
+ bufferutil: 4.0.9
+ utf-8-validate: 5.0.10
+
xml-name-validator@5.0.0: {}
xml2js@0.6.2:
@@ -15192,9 +16227,9 @@ snapshots:
yoctocolors-cjs@2.1.2: {}
- youch@3.3.4:
+ youch@3.2.3:
dependencies:
- cookie: 0.7.2
+ cookie: 0.5.0
mustache: 4.2.0
stacktracey: 2.1.8
@@ -15202,11 +16237,17 @@ snapshots:
dependencies:
ethers: 5.7.2(bufferutil@4.0.9)(utf-8-validate@5.0.10)
- zod-validation-error@3.4.0(zod@3.24.1):
+ zod-validation-error@3.4.0(zod@3.24.2):
dependencies:
- zod: 3.24.1
+ zod: 3.24.2
+
+ zod@3.22.3: {}
- zod@3.24.1: {}
+ zod@3.24.2: {}
+
+ zustand-sync-tabs@0.2.2(zustand@4.5.6(@types/react@18.3.12)(immer@9.0.21)(react@18.3.1)):
+ dependencies:
+ zustand: 4.5.6(@types/react@18.3.12)(immer@9.0.21)(react@18.3.1)
zustand@4.4.1(@types/react@18.3.12)(immer@9.0.21)(react@18.3.1):
dependencies:
@@ -15215,3 +16256,11 @@ snapshots:
'@types/react': 18.3.12
immer: 9.0.21
react: 18.3.1
+
+ zustand@4.5.6(@types/react@18.3.12)(immer@9.0.21)(react@18.3.1):
+ dependencies:
+ use-sync-external-store: 1.4.0(react@18.3.1)
+ optionalDependencies:
+ '@types/react': 18.3.12
+ immer: 9.0.21
+ react: 18.3.1
diff --git a/public/locales/en/common.json b/public/locales/en/common.json
index e2c54a1af..5417b093c 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",
@@ -306,6 +307,7 @@
"message": "Double check these details before confirming in your wallet.",
"waitingForWallet": "Waiting for Wallet",
"openWallet": "Open Wallet",
+ "openPara": "Start",
"insufficientFunds": "Insufficient funds"
},
"sent": {
@@ -418,5 +420,25 @@
"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"
+ }
+ },
+ "para": {
+ "signInWithPara": "Sign in with Para"
}
}
diff --git a/src/components/@molecules/ConnectButton/ConnectButton.test.tsx b/src/components/@molecules/ConnectButton/ConnectButton.test.tsx
new file mode 100644
index 000000000..73e31cf19
--- /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 '@getpara/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 a63447eb3..aec8a24ce 100644
--- a/src/components/ConnectButton.tsx
+++ b/src/components/@molecules/ConnectButton/ConnectButton.tsx
@@ -1,12 +1,10 @@
-import { useConnectModal } from '@rainbow-me/rainbowkit'
-import { Key, ReactNode } from 'react'
+import { useConnectModal } from '@getpara/rainbowkit'
import { useTranslation } from 'react-i18next'
import styled, { css } from 'styled-components'
import type { Address } from 'viem'
-import { useDisconnect, useEnsAvatar } from 'wagmi'
+import { useConnections, useDisconnect, useEnsAvatar } from 'wagmi'
-import { Button, CheckSVG, CogSVG, CopySVG, ExitSVG, PersonSVG, Profile } from '@ensdomains/thorin'
-import { DropdownItem } from '@ensdomains/thorin/dist/types/components/molecules/Dropdown/Dropdown'
+import { Button, PersonSVG, Profile } from '@ensdomains/thorin'
import { useAccountSafely } from '@app/hooks/account/useAccountSafely'
import { usePrimaryName } from '@app/hooks/ensjs/public/usePrimaryName'
@@ -16,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 { hasParaConnection } from '@app/utils/utils'
-import BaseLink from './@atoms/BaseLink'
+import { getDropdownItems } from './utils'
const StyledButtonWrapper = styled.div<{ $isTabBar?: boolean; $large?: boolean }>(
({ theme, $isTabBar, $large }) => [
@@ -57,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;
@@ -106,7 +96,9 @@ export const ConnectButton = ({ isTabBar, large, inHeader }: Props) => {