From 9aeb5563b5178a9c3e09f007be235975d2c4cf28 Mon Sep 17 00:00:00 2001 From: Tomas Rawski Date: Tue, 10 Dec 2024 12:07:59 -0300 Subject: [PATCH] Fix/dark mode issue (#11) * next configuration * update version * general git ignore * fix dark mode issue --- .gitignore | 29 ++++ nextjs/next-ethers-app-router/next.config.ts | 5 +- nextjs/next-ethers-app-router/package.json | 4 +- nextjs/next-ethers-app-router/pnpm-lock.yaml | 136 +++++++-------- .../src/app/globals.css | 7 - .../src/context/index.tsx | 1 - .../next-multichain-app-router/next.config.ts | 5 +- .../next-multichain-app-router/package.json | 6 +- .../next-multichain-app-router/pnpm-lock.yaml | 162 +++++++++--------- .../src/app/globals.css | 7 - nextjs/next-solana-app-router/next.config.ts | 5 +- nextjs/next-solana-app-router/package.json | 4 +- nextjs/next-solana-app-router/pnpm-lock.yaml | 136 +++++++-------- .../src/app/globals.css | 7 - nextjs/next-wagmi-app-router/next.config.ts | 5 +- nextjs/next-wagmi-app-router/package.json | 4 +- nextjs/next-wagmi-app-router/pnpm-lock.yaml | 154 ++++++++--------- .../next-wagmi-app-router/src/app/globals.css | 7 - react/react-ethers/package.json | 4 +- react/react-ethers/pnpm-lock.yaml | 136 +++++++-------- react/react-ethers/src/App.css | 7 - react/react-ethers/src/App.tsx | 1 + react/react-ethers5/package.json | 4 +- react/react-ethers5/pnpm-lock.yaml | 136 +++++++-------- react/react-ethers5/src/App.css | 7 - react/react-ethers5/src/App.tsx | 1 + react/react-multichain/package.json | 6 +- react/react-multichain/pnpm-lock.yaml | 162 +++++++++--------- react/react-multichain/src/App.css | 45 +++-- react/react-multichain/src/App.tsx | 3 +- react/react-solana/package.json | 4 +- react/react-solana/pnpm-lock.yaml | 136 +++++++-------- react/react-solana/src/App.css | 7 - react/react-solana/src/App.tsx | 1 + react/react-wagmi/package.json | 4 +- react/react-wagmi/pnpm-lock.yaml | 136 +++++++-------- react/react-wagmi/src/App.css | 7 - react/react-wagmi/src/App.tsx | 3 +- vue/vue-ethers/package.json | 4 +- vue/vue-ethers/pnpm-lock.yaml | 136 +++++++-------- vue/vue-ethers/src/App.vue | 1 + vue/vue-ethers/src/assets/main.css | 7 - vue/vue-multichain/package.json | 6 +- vue/vue-multichain/pnpm-lock.yaml | 162 +++++++++--------- vue/vue-multichain/src/App.vue | 1 + vue/vue-multichain/src/assets/main.css | 7 - vue/vue-solana/package.json | 4 +- vue/vue-solana/pnpm-lock.yaml | 136 +++++++-------- vue/vue-solana/src/App.vue | 1 + vue/vue-solana/src/assets/main.css | 7 - vue/vue-wagmi/package.json | 4 +- vue/vue-wagmi/pnpm-lock.yaml | 136 +++++++-------- vue/vue-wagmi/src/App.vue | 1 + vue/vue-wagmi/src/assets/main.css | 7 - 54 files changed, 1049 insertions(+), 1065 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..ea31379 --- /dev/null +++ b/.gitignore @@ -0,0 +1,29 @@ +# Logs +logs +*.log +npm-debug.log* +yarn-debug.log* +yarn-error.log* +pnpm-debug.log* +lerna-debug.log* + +node_modules +dist +dist-ssr +*.local + +# Editor directories and files +.vscode/* +!.vscode/extensions.json +.idea +.DS_Store +*.suo +*.ntvs* +*.njsproj +*.sln +*.sw? + +dist + +.env +.vite diff --git a/nextjs/next-ethers-app-router/next.config.ts b/nextjs/next-ethers-app-router/next.config.ts index e9ffa30..69d79fd 100644 --- a/nextjs/next-ethers-app-router/next.config.ts +++ b/nextjs/next-ethers-app-router/next.config.ts @@ -1,7 +1,10 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { - /* config options here */ + webpack: config => { + config.externals.push('pino-pretty', 'lokijs', 'encoding') + return config + } }; export default nextConfig; diff --git a/nextjs/next-ethers-app-router/package.json b/nextjs/next-ethers-app-router/package.json index 0bb1d7d..e2eb590 100644 --- a/nextjs/next-ethers-app-router/package.json +++ b/nextjs/next-ethers-app-router/package.json @@ -9,8 +9,8 @@ "lint": "next lint" }, "dependencies": { - "@reown/appkit": "^1.5.2", - "@reown/appkit-adapter-ethers": "^1.5.2", + "@reown/appkit": "^1.5.3", + "@reown/appkit-adapter-ethers": "^1.5.3", "ethers": "^6.13.4", "next": "15.0.3", "react": "19.0.0-rc-66855b96-20241106", diff --git a/nextjs/next-ethers-app-router/pnpm-lock.yaml b/nextjs/next-ethers-app-router/pnpm-lock.yaml index d4b0a27..02f3239 100644 --- a/nextjs/next-ethers-app-router/pnpm-lock.yaml +++ b/nextjs/next-ethers-app-router/pnpm-lock.yaml @@ -9,11 +9,11 @@ importers: .: dependencies: '@reown/appkit': - specifier: ^1.5.2 - version: 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + specifier: ^1.5.3 + version: 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) '@reown/appkit-adapter-ethers': - specifier: ^1.5.2 - version: 1.5.2(@coinbase/wallet-sdk@4.2.3)(@ethersproject/sha2@5.7.0)(@types/react@18.3.12)(bufferutil@4.0.8)(ethers@6.13.4(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + specifier: ^1.5.3 + version: 1.5.3(@coinbase/wallet-sdk@4.2.3)(@ethersproject/sha2@5.7.0)(@types/react@18.3.12)(bufferutil@4.0.8)(ethers@6.13.4(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) ethers: specifier: ^6.13.4 version: 6.13.4(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -384,41 +384,41 @@ packages: resolution: {integrity: sha512-i0GV1yJnm2n3Yq1qw6QrUrd/LI9bE8WEBOTtOkpCXHHdyN3TAGgqAK/DAT05z4fq2x04cARXt2pDmjWjL92iTQ==} engines: {node: '>= 10.0.0'} - '@reown/appkit-adapter-ethers@1.5.2': - resolution: {integrity: sha512-HdCmZCmUI8LONjr3iC4KDah4eah61o+VNmYyTNR1CF4+2ua4xb950cAOkibBtj617P6bAELMNpEzV7wO/FBwsQ==} + '@reown/appkit-adapter-ethers@1.5.3': + resolution: {integrity: sha512-u1nQGAJfKji7ss62WHgBRRPWyMm7cujcoWcGHsl0c1XxukSEgC9LZvMeQ2yX9zHb1COtMyUQpZZ1sSlgDMhuCQ==} peerDependencies: '@coinbase/wallet-sdk': 4.0.3 '@ethersproject/sha2': 5.7.0 ethers: '>=6' - '@reown/appkit-common@1.5.2': - resolution: {integrity: sha512-dBFKIOxIdbU3R8KD/uwYKcsf5UbC1qoserzwdLDFn7GyOpBYKm0ZAY+3E4mt4HBS87R2Atn9tXYVL4wWPWbKMw==} + '@reown/appkit-common@1.5.3': + resolution: {integrity: sha512-b/NnXbPUJb11A42CNV5nCKsPv+QCgrB112aAJ+PuH7HTSAOiSNQND8w8VPW2UpjUPP/6ivLhUrHOapYUlA3BtQ==} - '@reown/appkit-core@1.5.2': - resolution: {integrity: sha512-822CVaELuRmzmPXke8i4mMl3eEgkPRWop6mAyRlQprQJHBRdw8GRHMBfI8UDDCsVFhiMN4G8endVFZCR6SQtmQ==} + '@reown/appkit-core@1.5.3': + resolution: {integrity: sha512-4vFS/pwJDE42bXmGRbsPVbZZSlBC+mHC2G5rFcYymRDcjc1xNeLCUEq84xLC+Xt8YNt/Yi2ghslwWztL2lDF5w==} - '@reown/appkit-polyfills@1.5.2': - resolution: {integrity: sha512-dXrzpg08+l1Kc7aDFadm8n/CRhabPLNWBJUYBM8+jXyG60k8FBdLqdyexyvwdHPwZdoflDuOCaQKPhPD5U17vw==} + '@reown/appkit-polyfills@1.5.3': + resolution: {integrity: sha512-SlRWZGPQJUtr68EtlNC5EXVzEsI7TM1PvwW36ZSE+9InRp2bxeySWdVntZrAQPvXIE7sZtRuJtIpC1fQ1hJnyw==} - '@reown/appkit-scaffold-ui@1.5.2': - resolution: {integrity: sha512-P8p7qtntzMTS1KuUjOZjslhk9fnHL8eu8sk1KVm7YsN1JlacIOI0UOXiDMrNVxtAWuwv0TTNQzYrvxV2p+uZkA==} + '@reown/appkit-scaffold-ui@1.5.3': + resolution: {integrity: sha512-6Y1jmyD8yRbgcdWrFvvFfDC9Q+20LyCNR4sizr4AT85fWhsHkRG6ywrVCu1fP5RtIEgabjDtsNNipCd13Q2e3w==} - '@reown/appkit-siwe@1.5.2': - resolution: {integrity: sha512-LAPTItnQWkIXEzZ5HQWVnZjN7Llujo3BWbinb6Gpm1u9aj7GOwnSyETWsjZzaTs4O3Ob9IKWXxOEusyCpiArkA==} + '@reown/appkit-siwe@1.5.3': + resolution: {integrity: sha512-0yhNp60yyYp7n7LzQyZhkxetsRGtjXTXlmsxJMCw4vHrG3IXYO1QhPTGaZbOI0ps3CAj2+jLV+Y1Aso7XJ7M9A==} - '@reown/appkit-ui@1.5.2': - resolution: {integrity: sha512-0bhvRkXzueC3yiyvWn1otFZRedLRfH52CW7mRC9mfb8/B7Ety6c0CB7oCdl2lI67MqeW1eEitBJ/DQW5zI38RA==} + '@reown/appkit-ui@1.5.3': + resolution: {integrity: sha512-5ho20npfusl945wY2tCq8nntkZLj5BNC/C6tSATPgatA8kmJD35SKcNWlL4EAAiQDOfxEmifoErtEcUd27h/gg==} - '@reown/appkit-utils@1.5.2': - resolution: {integrity: sha512-TCc7gdhk1t0Z5IWXGVeaadZ9DZOt5Z+SAmG7CTkjtpGoA9jFTn0pL5bvTQMMxin1lvaWycHXyp/x6mJhojCFUA==} + '@reown/appkit-utils@1.5.3': + resolution: {integrity: sha512-K0pF8sdt10BFDvkjvgLoXc7VOL5AmOzd9BqJw4IS60R9oDEDkfr/Wa/Bi+9LsLlYfwKh2H+TyvyIqHvhMjFviA==} peerDependencies: valtio: 1.11.2 - '@reown/appkit-wallet@1.5.2': - resolution: {integrity: sha512-OQs+nmfyT2/eyxhatp6GSjIuPDeab9cAgMKjf/1j1nOg/UykBNTmoHWpXWtYE5ZjgeUp8ApyAeASQWKwMOgIaw==} + '@reown/appkit-wallet@1.5.3': + resolution: {integrity: sha512-9lFcPNNebzICxGVsy8IAJqF5yNHWBZCvWBdcgMheK47/W/Mi6LwM7zTSZSonnpRYZ7gYJOqfaTdCd2KfOMI6JQ==} - '@reown/appkit@1.5.2': - resolution: {integrity: sha512-w7YDOi2fiYVmCTpM3M79fbqHgm6/WWf8I5pBKaKoTTttXm4M/D79mXQ6osEZ7ozKLhz0spyHi+TyjoGxT/PB3A==} + '@reown/appkit@1.5.3': + resolution: {integrity: sha512-Wh+JetSr0/AHow2lqp/3+v61rnCzaXWDBKXgBWCUxGhHrw+vpDeyEsLLLTAbBd3w0xsKRaO2gjW5k+Z53p1NRw==} '@rtsao/scc@1.1.0': resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==} @@ -2599,18 +2599,18 @@ snapshots: '@parcel/watcher-win32-ia32': 2.5.0 '@parcel/watcher-win32-x64': 2.5.0 - '@reown/appkit-adapter-ethers@1.5.2(@coinbase/wallet-sdk@4.2.3)(@ethersproject/sha2@5.7.0)(@types/react@18.3.12)(bufferutil@4.0.8)(ethers@6.13.4(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-adapter-ethers@1.5.3(@coinbase/wallet-sdk@4.2.3)(@ethersproject/sha2@5.7.0)(@types/react@18.3.12)(bufferutil@4.0.8)(ethers@6.13.4(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: '@coinbase/wallet-sdk': 4.2.3 '@ethersproject/sha2': 5.7.0 - '@reown/appkit': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-scaffold-ui': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-scaffold-ui': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/utils': 2.17.0 ethers: 6.13.4(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -2637,7 +2637,7 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-common@1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-common@1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: bignumber.js: 9.1.2 dayjs: 1.11.10 @@ -2648,10 +2648,10 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-core@1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-core@1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) valtio: 1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106) viem: 2.21.44(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) @@ -2677,17 +2677,17 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-polyfills@1.5.2': + '@reown/appkit-polyfills@1.5.3': dependencies: buffer: 6.0.3 - '@reown/appkit-scaffold-ui@1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4)': + '@reown/appkit-scaffold-ui@1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) lit: 3.1.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -2712,13 +2712,13 @@ snapshots: - valtio - zod - '@reown/appkit-siwe@1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-siwe@1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@walletconnect/utils': 2.17.0 lit: 3.1.0 valtio: 1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106) @@ -2744,17 +2744,17 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-ui@1.5.2': + '@reown/appkit-ui@1.5.3': dependencies: lit: 3.1.0 qrcode: 1.5.3 - '@reown/appkit-utils@1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4)': + '@reown/appkit-utils@1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@walletconnect/logger': 2.1.2 '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) valtio: 1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106) @@ -2781,10 +2781,10 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-wallet@1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)': + '@reown/appkit-wallet@1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 '@walletconnect/logger': 2.1.2 zod: 3.22.4 transitivePeerDependencies: @@ -2792,16 +2792,16 @@ snapshots: - typescript - utf-8-validate - '@reown/appkit@1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit@1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-scaffold-ui': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) - '@reown/appkit-siwe': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-scaffold-ui': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) + '@reown/appkit-siwe': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@walletconnect/types': 2.17.0 '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/utils': 2.17.0 diff --git a/nextjs/next-ethers-app-router/src/app/globals.css b/nextjs/next-ethers-app-router/src/app/globals.css index 473d21c..4b02a41 100644 --- a/nextjs/next-ethers-app-router/src/app/globals.css +++ b/nextjs/next-ethers-app-router/src/app/globals.css @@ -3,13 +3,6 @@ --foreground: #171717; } -@media (prefers-color-scheme: dark) { - :root { - --background: #0a0a0a; - --foreground: #ededed; - } -} - html, body { max-width: 100vw; diff --git a/nextjs/next-ethers-app-router/src/context/index.tsx b/nextjs/next-ethers-app-router/src/context/index.tsx index f933ef1..980dd32 100644 --- a/nextjs/next-ethers-app-router/src/context/index.tsx +++ b/nextjs/next-ethers-app-router/src/context/index.tsx @@ -23,7 +23,6 @@ export const modal = createAppKit({ networks, metadata, themeMode: 'light', - featuredWalletIds :['c57ca95b47569778a828d19178114f4db188b89b763c899ba0be274e97267d96'], features: { analytics: true // Optional - defaults to your Cloud configuration } diff --git a/nextjs/next-multichain-app-router/next.config.ts b/nextjs/next-multichain-app-router/next.config.ts index e9ffa30..69d79fd 100644 --- a/nextjs/next-multichain-app-router/next.config.ts +++ b/nextjs/next-multichain-app-router/next.config.ts @@ -1,7 +1,10 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { - /* config options here */ + webpack: config => { + config.externals.push('pino-pretty', 'lokijs', 'encoding') + return config + } }; export default nextConfig; diff --git a/nextjs/next-multichain-app-router/package.json b/nextjs/next-multichain-app-router/package.json index ed1ded8..174fab8 100644 --- a/nextjs/next-multichain-app-router/package.json +++ b/nextjs/next-multichain-app-router/package.json @@ -9,9 +9,9 @@ "lint": "next lint" }, "dependencies": { - "@reown/appkit": "^1.5.2", - "@reown/appkit-adapter-solana": "^1.5.2", - "@reown/appkit-adapter-wagmi": "^1.5.2", + "@reown/appkit": "^1.5.3", + "@reown/appkit-adapter-solana": "^1.5.3", + "@reown/appkit-adapter-wagmi": "^1.5.3", "@solana/wallet-adapter-wallets": "^0.19.32", "@tanstack/react-query": "^5.59.20", "next": "15.0.3", diff --git a/nextjs/next-multichain-app-router/pnpm-lock.yaml b/nextjs/next-multichain-app-router/pnpm-lock.yaml index 7d2c57a..9133e42 100644 --- a/nextjs/next-multichain-app-router/pnpm-lock.yaml +++ b/nextjs/next-multichain-app-router/pnpm-lock.yaml @@ -9,14 +9,14 @@ importers: .: dependencies: '@reown/appkit': - specifier: ^1.5.2 - version: 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + specifier: ^1.5.3 + version: 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) '@reown/appkit-adapter-solana': - specifier: ^1.5.2 - version: 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + specifier: ^1.5.3 + version: 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) '@reown/appkit-adapter-wagmi': - specifier: ^1.5.2 - version: 1.5.2(cyxco7g6dw65agk55yiswfxhe4) + specifier: ^1.5.3 + version: 1.5.3(cyxco7g6dw65agk55yiswfxhe4) '@solana/wallet-adapter-wallets': specifier: ^0.19.32 version: 0.19.32(@babel/core@7.26.0)(@babel/runtime@7.26.0)(@solana/web3.js@1.95.3(bufferutil@4.0.8)(utf-8-validate@5.0.10))(bs58@6.0.0)(bufferutil@4.0.8)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react-native@0.76.1(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(utf-8-validate@5.0.10))(react@19.0.0-rc-66855b96-20241106)(tslib@2.8.1)(utf-8-validate@5.0.10) @@ -1472,11 +1472,11 @@ packages: '@types/react': optional: true - '@reown/appkit-adapter-solana@1.5.2': - resolution: {integrity: sha512-/D0SQrhundgQ1AY28wbI3Ro33sF7/CRzWXFBIrFtxhjXKeiRUc5uzl/R/j14SCN4thbFc4q1oqL2dUlWxovyKA==} + '@reown/appkit-adapter-solana@1.5.3': + resolution: {integrity: sha512-Gz1hji0vcLZh+fiUmxDKtlkzFReYxrcY5Rd4RrlZTzgvPFlBSjd8DMeYdk4qLU56SqdK8ROR/mnsQk2LOrTyVA==} - '@reown/appkit-adapter-wagmi@1.5.2': - resolution: {integrity: sha512-1z9EYT67OGtMI99bq0VHkpKT8D7hXwf8jVWQ7iVdB3JTuTvky9ghyvDsTQRPR/4oPuEQ3xBh8fMfoRUQi4cG+w==} + '@reown/appkit-adapter-wagmi@1.5.3': + resolution: {integrity: sha512-0qq7pPVsfKYO6TiHC8en2Dusce1xx5S7P5pPn+yxUyUdEsmpPJbk8CtLXGSqnxHz5qJ9hDb+4QVJIdEZ8gE9FA==} peerDependencies: '@coinbase/wallet-sdk': 4.0.3 '@wagmi/connectors': '>=5.1' @@ -1484,34 +1484,34 @@ packages: viem: 2.x wagmi: '>=2.12' - '@reown/appkit-common@1.5.2': - resolution: {integrity: sha512-dBFKIOxIdbU3R8KD/uwYKcsf5UbC1qoserzwdLDFn7GyOpBYKm0ZAY+3E4mt4HBS87R2Atn9tXYVL4wWPWbKMw==} + '@reown/appkit-common@1.5.3': + resolution: {integrity: sha512-b/NnXbPUJb11A42CNV5nCKsPv+QCgrB112aAJ+PuH7HTSAOiSNQND8w8VPW2UpjUPP/6ivLhUrHOapYUlA3BtQ==} - '@reown/appkit-core@1.5.2': - resolution: {integrity: sha512-822CVaELuRmzmPXke8i4mMl3eEgkPRWop6mAyRlQprQJHBRdw8GRHMBfI8UDDCsVFhiMN4G8endVFZCR6SQtmQ==} + '@reown/appkit-core@1.5.3': + resolution: {integrity: sha512-4vFS/pwJDE42bXmGRbsPVbZZSlBC+mHC2G5rFcYymRDcjc1xNeLCUEq84xLC+Xt8YNt/Yi2ghslwWztL2lDF5w==} - '@reown/appkit-polyfills@1.5.2': - resolution: {integrity: sha512-dXrzpg08+l1Kc7aDFadm8n/CRhabPLNWBJUYBM8+jXyG60k8FBdLqdyexyvwdHPwZdoflDuOCaQKPhPD5U17vw==} + '@reown/appkit-polyfills@1.5.3': + resolution: {integrity: sha512-SlRWZGPQJUtr68EtlNC5EXVzEsI7TM1PvwW36ZSE+9InRp2bxeySWdVntZrAQPvXIE7sZtRuJtIpC1fQ1hJnyw==} - '@reown/appkit-scaffold-ui@1.5.2': - resolution: {integrity: sha512-P8p7qtntzMTS1KuUjOZjslhk9fnHL8eu8sk1KVm7YsN1JlacIOI0UOXiDMrNVxtAWuwv0TTNQzYrvxV2p+uZkA==} + '@reown/appkit-scaffold-ui@1.5.3': + resolution: {integrity: sha512-6Y1jmyD8yRbgcdWrFvvFfDC9Q+20LyCNR4sizr4AT85fWhsHkRG6ywrVCu1fP5RtIEgabjDtsNNipCd13Q2e3w==} - '@reown/appkit-siwe@1.5.2': - resolution: {integrity: sha512-LAPTItnQWkIXEzZ5HQWVnZjN7Llujo3BWbinb6Gpm1u9aj7GOwnSyETWsjZzaTs4O3Ob9IKWXxOEusyCpiArkA==} + '@reown/appkit-siwe@1.5.3': + resolution: {integrity: sha512-0yhNp60yyYp7n7LzQyZhkxetsRGtjXTXlmsxJMCw4vHrG3IXYO1QhPTGaZbOI0ps3CAj2+jLV+Y1Aso7XJ7M9A==} - '@reown/appkit-ui@1.5.2': - resolution: {integrity: sha512-0bhvRkXzueC3yiyvWn1otFZRedLRfH52CW7mRC9mfb8/B7Ety6c0CB7oCdl2lI67MqeW1eEitBJ/DQW5zI38RA==} + '@reown/appkit-ui@1.5.3': + resolution: {integrity: sha512-5ho20npfusl945wY2tCq8nntkZLj5BNC/C6tSATPgatA8kmJD35SKcNWlL4EAAiQDOfxEmifoErtEcUd27h/gg==} - '@reown/appkit-utils@1.5.2': - resolution: {integrity: sha512-TCc7gdhk1t0Z5IWXGVeaadZ9DZOt5Z+SAmG7CTkjtpGoA9jFTn0pL5bvTQMMxin1lvaWycHXyp/x6mJhojCFUA==} + '@reown/appkit-utils@1.5.3': + resolution: {integrity: sha512-K0pF8sdt10BFDvkjvgLoXc7VOL5AmOzd9BqJw4IS60R9oDEDkfr/Wa/Bi+9LsLlYfwKh2H+TyvyIqHvhMjFviA==} peerDependencies: valtio: 1.11.2 - '@reown/appkit-wallet@1.5.2': - resolution: {integrity: sha512-OQs+nmfyT2/eyxhatp6GSjIuPDeab9cAgMKjf/1j1nOg/UykBNTmoHWpXWtYE5ZjgeUp8ApyAeASQWKwMOgIaw==} + '@reown/appkit-wallet@1.5.3': + resolution: {integrity: sha512-9lFcPNNebzICxGVsy8IAJqF5yNHWBZCvWBdcgMheK47/W/Mi6LwM7zTSZSonnpRYZ7gYJOqfaTdCd2KfOMI6JQ==} - '@reown/appkit@1.5.2': - resolution: {integrity: sha512-w7YDOi2fiYVmCTpM3M79fbqHgm6/WWf8I5pBKaKoTTttXm4M/D79mXQ6osEZ7ozKLhz0spyHi+TyjoGxT/PB3A==} + '@reown/appkit@1.5.3': + resolution: {integrity: sha512-Wh+JetSr0/AHow2lqp/3+v61rnCzaXWDBKXgBWCUxGhHrw+vpDeyEsLLLTAbBd3w0xsKRaO2gjW5k+Z53p1NRw==} '@rtsao/scc@1.1.0': resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==} @@ -7448,16 +7448,16 @@ snapshots: optionalDependencies: '@types/react': 18.3.12 - '@reown/appkit-adapter-solana@1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-adapter-solana@1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-scaffold-ui': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-scaffold-ui': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.3(bufferutil@4.0.8)(utf-8-validate@5.0.10)) '@solana/wallet-standard-features': 1.2.0 '@solana/wallet-standard-util': 1.1.1 @@ -7495,17 +7495,17 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-adapter-wagmi@1.5.2(cyxco7g6dw65agk55yiswfxhe4)': + '@reown/appkit-adapter-wagmi@1.5.3(cyxco7g6dw65agk55yiswfxhe4)': dependencies: '@coinbase/wallet-sdk': 4.2.3 - '@reown/appkit': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-scaffold-ui': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-scaffold-ui': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@wagmi/connectors': 5.3.9(@types/react@18.3.12)(@wagmi/core@2.14.5(@tanstack/query-core@5.59.20)(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(use-sync-external-store@1.2.0(react@19.0.0-rc-66855b96-20241106))(viem@2.21.44(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.8)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react-native@0.76.1(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(utf-8-validate@5.0.10))(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.21.44(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) '@wagmi/core': 2.14.5(@tanstack/query-core@5.59.20)(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(use-sync-external-store@1.2.0(react@19.0.0-rc-66855b96-20241106))(viem@2.21.44(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)) '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -7535,7 +7535,7 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-common@1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-common@1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: bignumber.js: 9.1.2 dayjs: 1.11.10 @@ -7546,10 +7546,10 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-core@1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-core@1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) valtio: 1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106) viem: 2.21.44(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) @@ -7575,17 +7575,17 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-polyfills@1.5.2': + '@reown/appkit-polyfills@1.5.3': dependencies: buffer: 6.0.3 - '@reown/appkit-scaffold-ui@1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4)': + '@reown/appkit-scaffold-ui@1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) lit: 3.1.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -7610,13 +7610,13 @@ snapshots: - valtio - zod - '@reown/appkit-siwe@1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-siwe@1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@walletconnect/utils': 2.17.0 lit: 3.1.0 valtio: 1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106) @@ -7642,17 +7642,17 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-ui@1.5.2': + '@reown/appkit-ui@1.5.3': dependencies: lit: 3.1.0 qrcode: 1.5.3 - '@reown/appkit-utils@1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4)': + '@reown/appkit-utils@1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@walletconnect/logger': 2.1.2 '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) valtio: 1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106) @@ -7679,10 +7679,10 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-wallet@1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)': + '@reown/appkit-wallet@1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 '@walletconnect/logger': 2.1.2 zod: 3.22.4 transitivePeerDependencies: @@ -7690,16 +7690,16 @@ snapshots: - typescript - utf-8-validate - '@reown/appkit@1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit@1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-scaffold-ui': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) - '@reown/appkit-siwe': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-scaffold-ui': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) + '@reown/appkit-siwe': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@walletconnect/types': 2.17.0 '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/utils': 2.17.0 diff --git a/nextjs/next-multichain-app-router/src/app/globals.css b/nextjs/next-multichain-app-router/src/app/globals.css index 473d21c..4b02a41 100644 --- a/nextjs/next-multichain-app-router/src/app/globals.css +++ b/nextjs/next-multichain-app-router/src/app/globals.css @@ -3,13 +3,6 @@ --foreground: #171717; } -@media (prefers-color-scheme: dark) { - :root { - --background: #0a0a0a; - --foreground: #ededed; - } -} - html, body { max-width: 100vw; diff --git a/nextjs/next-solana-app-router/next.config.ts b/nextjs/next-solana-app-router/next.config.ts index e9ffa30..69d79fd 100644 --- a/nextjs/next-solana-app-router/next.config.ts +++ b/nextjs/next-solana-app-router/next.config.ts @@ -1,7 +1,10 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { - /* config options here */ + webpack: config => { + config.externals.push('pino-pretty', 'lokijs', 'encoding') + return config + } }; export default nextConfig; diff --git a/nextjs/next-solana-app-router/package.json b/nextjs/next-solana-app-router/package.json index 6562949..b23f6d9 100644 --- a/nextjs/next-solana-app-router/package.json +++ b/nextjs/next-solana-app-router/package.json @@ -9,8 +9,8 @@ "lint": "next lint" }, "dependencies": { - "@reown/appkit": "^1.5.2", - "@reown/appkit-adapter-solana": "^1.5.2", + "@reown/appkit": "^1.5.3", + "@reown/appkit-adapter-solana": "^1.5.3", "@solana/wallet-adapter-wallets": "^0.19.32", "next": "15.0.3", "react": "19.0.0-rc-66855b96-20241106", diff --git a/nextjs/next-solana-app-router/pnpm-lock.yaml b/nextjs/next-solana-app-router/pnpm-lock.yaml index ea1dddd..f9392d6 100644 --- a/nextjs/next-solana-app-router/pnpm-lock.yaml +++ b/nextjs/next-solana-app-router/pnpm-lock.yaml @@ -9,11 +9,11 @@ importers: .: dependencies: '@reown/appkit': - specifier: ^1.5.2 - version: 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + specifier: ^1.5.3 + version: 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) '@reown/appkit-adapter-solana': - specifier: ^1.5.2 - version: 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + specifier: ^1.5.3 + version: 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) '@solana/wallet-adapter-wallets': specifier: ^0.19.32 version: 0.19.32(@babel/core@7.26.0)(@babel/runtime@7.26.0)(@solana/web3.js@1.95.3(bufferutil@4.0.8)(utf-8-validate@5.0.10))(bs58@6.0.0)(bufferutil@4.0.8)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react-native@0.76.1(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(utf-8-validate@5.0.10))(react@19.0.0-rc-66855b96-20241106)(tslib@2.8.1)(utf-8-validate@5.0.10) @@ -1331,37 +1331,37 @@ packages: '@types/react': optional: true - '@reown/appkit-adapter-solana@1.5.2': - resolution: {integrity: sha512-/D0SQrhundgQ1AY28wbI3Ro33sF7/CRzWXFBIrFtxhjXKeiRUc5uzl/R/j14SCN4thbFc4q1oqL2dUlWxovyKA==} + '@reown/appkit-adapter-solana@1.5.3': + resolution: {integrity: sha512-Gz1hji0vcLZh+fiUmxDKtlkzFReYxrcY5Rd4RrlZTzgvPFlBSjd8DMeYdk4qLU56SqdK8ROR/mnsQk2LOrTyVA==} - '@reown/appkit-common@1.5.2': - resolution: {integrity: sha512-dBFKIOxIdbU3R8KD/uwYKcsf5UbC1qoserzwdLDFn7GyOpBYKm0ZAY+3E4mt4HBS87R2Atn9tXYVL4wWPWbKMw==} + '@reown/appkit-common@1.5.3': + resolution: {integrity: sha512-b/NnXbPUJb11A42CNV5nCKsPv+QCgrB112aAJ+PuH7HTSAOiSNQND8w8VPW2UpjUPP/6ivLhUrHOapYUlA3BtQ==} - '@reown/appkit-core@1.5.2': - resolution: {integrity: sha512-822CVaELuRmzmPXke8i4mMl3eEgkPRWop6mAyRlQprQJHBRdw8GRHMBfI8UDDCsVFhiMN4G8endVFZCR6SQtmQ==} + '@reown/appkit-core@1.5.3': + resolution: {integrity: sha512-4vFS/pwJDE42bXmGRbsPVbZZSlBC+mHC2G5rFcYymRDcjc1xNeLCUEq84xLC+Xt8YNt/Yi2ghslwWztL2lDF5w==} - '@reown/appkit-polyfills@1.5.2': - resolution: {integrity: sha512-dXrzpg08+l1Kc7aDFadm8n/CRhabPLNWBJUYBM8+jXyG60k8FBdLqdyexyvwdHPwZdoflDuOCaQKPhPD5U17vw==} + '@reown/appkit-polyfills@1.5.3': + resolution: {integrity: sha512-SlRWZGPQJUtr68EtlNC5EXVzEsI7TM1PvwW36ZSE+9InRp2bxeySWdVntZrAQPvXIE7sZtRuJtIpC1fQ1hJnyw==} - '@reown/appkit-scaffold-ui@1.5.2': - resolution: {integrity: sha512-P8p7qtntzMTS1KuUjOZjslhk9fnHL8eu8sk1KVm7YsN1JlacIOI0UOXiDMrNVxtAWuwv0TTNQzYrvxV2p+uZkA==} + '@reown/appkit-scaffold-ui@1.5.3': + resolution: {integrity: sha512-6Y1jmyD8yRbgcdWrFvvFfDC9Q+20LyCNR4sizr4AT85fWhsHkRG6ywrVCu1fP5RtIEgabjDtsNNipCd13Q2e3w==} - '@reown/appkit-siwe@1.5.2': - resolution: {integrity: sha512-LAPTItnQWkIXEzZ5HQWVnZjN7Llujo3BWbinb6Gpm1u9aj7GOwnSyETWsjZzaTs4O3Ob9IKWXxOEusyCpiArkA==} + '@reown/appkit-siwe@1.5.3': + resolution: {integrity: sha512-0yhNp60yyYp7n7LzQyZhkxetsRGtjXTXlmsxJMCw4vHrG3IXYO1QhPTGaZbOI0ps3CAj2+jLV+Y1Aso7XJ7M9A==} - '@reown/appkit-ui@1.5.2': - resolution: {integrity: sha512-0bhvRkXzueC3yiyvWn1otFZRedLRfH52CW7mRC9mfb8/B7Ety6c0CB7oCdl2lI67MqeW1eEitBJ/DQW5zI38RA==} + '@reown/appkit-ui@1.5.3': + resolution: {integrity: sha512-5ho20npfusl945wY2tCq8nntkZLj5BNC/C6tSATPgatA8kmJD35SKcNWlL4EAAiQDOfxEmifoErtEcUd27h/gg==} - '@reown/appkit-utils@1.5.2': - resolution: {integrity: sha512-TCc7gdhk1t0Z5IWXGVeaadZ9DZOt5Z+SAmG7CTkjtpGoA9jFTn0pL5bvTQMMxin1lvaWycHXyp/x6mJhojCFUA==} + '@reown/appkit-utils@1.5.3': + resolution: {integrity: sha512-K0pF8sdt10BFDvkjvgLoXc7VOL5AmOzd9BqJw4IS60R9oDEDkfr/Wa/Bi+9LsLlYfwKh2H+TyvyIqHvhMjFviA==} peerDependencies: valtio: 1.11.2 - '@reown/appkit-wallet@1.5.2': - resolution: {integrity: sha512-OQs+nmfyT2/eyxhatp6GSjIuPDeab9cAgMKjf/1j1nOg/UykBNTmoHWpXWtYE5ZjgeUp8ApyAeASQWKwMOgIaw==} + '@reown/appkit-wallet@1.5.3': + resolution: {integrity: sha512-9lFcPNNebzICxGVsy8IAJqF5yNHWBZCvWBdcgMheK47/W/Mi6LwM7zTSZSonnpRYZ7gYJOqfaTdCd2KfOMI6JQ==} - '@reown/appkit@1.5.2': - resolution: {integrity: sha512-w7YDOi2fiYVmCTpM3M79fbqHgm6/WWf8I5pBKaKoTTttXm4M/D79mXQ6osEZ7ozKLhz0spyHi+TyjoGxT/PB3A==} + '@reown/appkit@1.5.3': + resolution: {integrity: sha512-Wh+JetSr0/AHow2lqp/3+v61rnCzaXWDBKXgBWCUxGhHrw+vpDeyEsLLLTAbBd3w0xsKRaO2gjW5k+Z53p1NRw==} '@rtsao/scc@1.1.0': resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==} @@ -6993,16 +6993,16 @@ snapshots: '@types/react': 18.3.12 optional: true - '@reown/appkit-adapter-solana@1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-adapter-solana@1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-scaffold-ui': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-scaffold-ui': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.3(bufferutil@4.0.8)(utf-8-validate@5.0.10)) '@solana/wallet-standard-features': 1.2.0 '@solana/wallet-standard-util': 1.1.1 @@ -7040,7 +7040,7 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-common@1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-common@1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: bignumber.js: 9.1.2 dayjs: 1.11.10 @@ -7051,10 +7051,10 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-core@1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-core@1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) valtio: 1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106) viem: 2.21.44(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) @@ -7080,17 +7080,17 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-polyfills@1.5.2': + '@reown/appkit-polyfills@1.5.3': dependencies: buffer: 6.0.3 - '@reown/appkit-scaffold-ui@1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4)': + '@reown/appkit-scaffold-ui@1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) lit: 3.1.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -7115,13 +7115,13 @@ snapshots: - valtio - zod - '@reown/appkit-siwe@1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-siwe@1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@walletconnect/utils': 2.17.0 lit: 3.1.0 valtio: 1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106) @@ -7147,17 +7147,17 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-ui@1.5.2': + '@reown/appkit-ui@1.5.3': dependencies: lit: 3.1.0 qrcode: 1.5.3 - '@reown/appkit-utils@1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4)': + '@reown/appkit-utils@1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@walletconnect/logger': 2.1.2 '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) valtio: 1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106) @@ -7184,10 +7184,10 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-wallet@1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)': + '@reown/appkit-wallet@1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 '@walletconnect/logger': 2.1.2 zod: 3.22.4 transitivePeerDependencies: @@ -7195,16 +7195,16 @@ snapshots: - typescript - utf-8-validate - '@reown/appkit@1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit@1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-scaffold-ui': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) - '@reown/appkit-siwe': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-scaffold-ui': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) + '@reown/appkit-siwe': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@walletconnect/types': 2.17.0 '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/utils': 2.17.0 diff --git a/nextjs/next-solana-app-router/src/app/globals.css b/nextjs/next-solana-app-router/src/app/globals.css index 473d21c..4b02a41 100644 --- a/nextjs/next-solana-app-router/src/app/globals.css +++ b/nextjs/next-solana-app-router/src/app/globals.css @@ -3,13 +3,6 @@ --foreground: #171717; } -@media (prefers-color-scheme: dark) { - :root { - --background: #0a0a0a; - --foreground: #ededed; - } -} - html, body { max-width: 100vw; diff --git a/nextjs/next-wagmi-app-router/next.config.ts b/nextjs/next-wagmi-app-router/next.config.ts index e9ffa30..69d79fd 100644 --- a/nextjs/next-wagmi-app-router/next.config.ts +++ b/nextjs/next-wagmi-app-router/next.config.ts @@ -1,7 +1,10 @@ import type { NextConfig } from "next"; const nextConfig: NextConfig = { - /* config options here */ + webpack: config => { + config.externals.push('pino-pretty', 'lokijs', 'encoding') + return config + } }; export default nextConfig; diff --git a/nextjs/next-wagmi-app-router/package.json b/nextjs/next-wagmi-app-router/package.json index f6a2832..758d989 100644 --- a/nextjs/next-wagmi-app-router/package.json +++ b/nextjs/next-wagmi-app-router/package.json @@ -9,8 +9,8 @@ "lint": "next lint" }, "dependencies": { - "@reown/appkit": "^1.5.2", - "@reown/appkit-adapter-wagmi": "^1.5.2", + "@reown/appkit": "^1.5.3", + "@reown/appkit-adapter-wagmi": "^1.5.3", "@tanstack/react-query": "^5.59.20", "next": "15.0.3", "react": "19.0.0-rc-66855b96-20241106", diff --git a/nextjs/next-wagmi-app-router/pnpm-lock.yaml b/nextjs/next-wagmi-app-router/pnpm-lock.yaml index f222a0a..0f14296 100644 --- a/nextjs/next-wagmi-app-router/pnpm-lock.yaml +++ b/nextjs/next-wagmi-app-router/pnpm-lock.yaml @@ -9,11 +9,11 @@ importers: .: dependencies: '@reown/appkit': - specifier: ^1.5.2 - version: 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + specifier: ^1.5.3 + version: 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) '@reown/appkit-adapter-wagmi': - specifier: ^1.5.2 - version: 1.5.2(cyxco7g6dw65agk55yiswfxhe4) + specifier: ^1.5.3 + version: 1.5.3(cyxco7g6dw65agk55yiswfxhe4) '@tanstack/react-query': specifier: ^5.59.20 version: 5.59.20(react@19.0.0-rc-66855b96-20241106) @@ -1332,8 +1332,8 @@ packages: '@types/react': optional: true - '@reown/appkit-adapter-wagmi@1.5.2': - resolution: {integrity: sha512-1z9EYT67OGtMI99bq0VHkpKT8D7hXwf8jVWQ7iVdB3JTuTvky9ghyvDsTQRPR/4oPuEQ3xBh8fMfoRUQi4cG+w==} + '@reown/appkit-adapter-wagmi@1.5.3': + resolution: {integrity: sha512-0qq7pPVsfKYO6TiHC8en2Dusce1xx5S7P5pPn+yxUyUdEsmpPJbk8CtLXGSqnxHz5qJ9hDb+4QVJIdEZ8gE9FA==} peerDependencies: '@coinbase/wallet-sdk': 4.0.3 '@wagmi/connectors': '>=5.1' @@ -1341,34 +1341,34 @@ packages: viem: 2.x wagmi: '>=2.12' - '@reown/appkit-common@1.5.2': - resolution: {integrity: sha512-dBFKIOxIdbU3R8KD/uwYKcsf5UbC1qoserzwdLDFn7GyOpBYKm0ZAY+3E4mt4HBS87R2Atn9tXYVL4wWPWbKMw==} + '@reown/appkit-common@1.5.3': + resolution: {integrity: sha512-b/NnXbPUJb11A42CNV5nCKsPv+QCgrB112aAJ+PuH7HTSAOiSNQND8w8VPW2UpjUPP/6ivLhUrHOapYUlA3BtQ==} - '@reown/appkit-core@1.5.2': - resolution: {integrity: sha512-822CVaELuRmzmPXke8i4mMl3eEgkPRWop6mAyRlQprQJHBRdw8GRHMBfI8UDDCsVFhiMN4G8endVFZCR6SQtmQ==} + '@reown/appkit-core@1.5.3': + resolution: {integrity: sha512-4vFS/pwJDE42bXmGRbsPVbZZSlBC+mHC2G5rFcYymRDcjc1xNeLCUEq84xLC+Xt8YNt/Yi2ghslwWztL2lDF5w==} - '@reown/appkit-polyfills@1.5.2': - resolution: {integrity: sha512-dXrzpg08+l1Kc7aDFadm8n/CRhabPLNWBJUYBM8+jXyG60k8FBdLqdyexyvwdHPwZdoflDuOCaQKPhPD5U17vw==} + '@reown/appkit-polyfills@1.5.3': + resolution: {integrity: sha512-SlRWZGPQJUtr68EtlNC5EXVzEsI7TM1PvwW36ZSE+9InRp2bxeySWdVntZrAQPvXIE7sZtRuJtIpC1fQ1hJnyw==} - '@reown/appkit-scaffold-ui@1.5.2': - resolution: {integrity: sha512-P8p7qtntzMTS1KuUjOZjslhk9fnHL8eu8sk1KVm7YsN1JlacIOI0UOXiDMrNVxtAWuwv0TTNQzYrvxV2p+uZkA==} + '@reown/appkit-scaffold-ui@1.5.3': + resolution: {integrity: sha512-6Y1jmyD8yRbgcdWrFvvFfDC9Q+20LyCNR4sizr4AT85fWhsHkRG6ywrVCu1fP5RtIEgabjDtsNNipCd13Q2e3w==} - '@reown/appkit-siwe@1.5.2': - resolution: {integrity: sha512-LAPTItnQWkIXEzZ5HQWVnZjN7Llujo3BWbinb6Gpm1u9aj7GOwnSyETWsjZzaTs4O3Ob9IKWXxOEusyCpiArkA==} + '@reown/appkit-siwe@1.5.3': + resolution: {integrity: sha512-0yhNp60yyYp7n7LzQyZhkxetsRGtjXTXlmsxJMCw4vHrG3IXYO1QhPTGaZbOI0ps3CAj2+jLV+Y1Aso7XJ7M9A==} - '@reown/appkit-ui@1.5.2': - resolution: {integrity: sha512-0bhvRkXzueC3yiyvWn1otFZRedLRfH52CW7mRC9mfb8/B7Ety6c0CB7oCdl2lI67MqeW1eEitBJ/DQW5zI38RA==} + '@reown/appkit-ui@1.5.3': + resolution: {integrity: sha512-5ho20npfusl945wY2tCq8nntkZLj5BNC/C6tSATPgatA8kmJD35SKcNWlL4EAAiQDOfxEmifoErtEcUd27h/gg==} - '@reown/appkit-utils@1.5.2': - resolution: {integrity: sha512-TCc7gdhk1t0Z5IWXGVeaadZ9DZOt5Z+SAmG7CTkjtpGoA9jFTn0pL5bvTQMMxin1lvaWycHXyp/x6mJhojCFUA==} + '@reown/appkit-utils@1.5.3': + resolution: {integrity: sha512-K0pF8sdt10BFDvkjvgLoXc7VOL5AmOzd9BqJw4IS60R9oDEDkfr/Wa/Bi+9LsLlYfwKh2H+TyvyIqHvhMjFviA==} peerDependencies: valtio: 1.11.2 - '@reown/appkit-wallet@1.5.2': - resolution: {integrity: sha512-OQs+nmfyT2/eyxhatp6GSjIuPDeab9cAgMKjf/1j1nOg/UykBNTmoHWpXWtYE5ZjgeUp8ApyAeASQWKwMOgIaw==} + '@reown/appkit-wallet@1.5.3': + resolution: {integrity: sha512-9lFcPNNebzICxGVsy8IAJqF5yNHWBZCvWBdcgMheK47/W/Mi6LwM7zTSZSonnpRYZ7gYJOqfaTdCd2KfOMI6JQ==} - '@reown/appkit@1.5.2': - resolution: {integrity: sha512-w7YDOi2fiYVmCTpM3M79fbqHgm6/WWf8I5pBKaKoTTttXm4M/D79mXQ6osEZ7ozKLhz0spyHi+TyjoGxT/PB3A==} + '@reown/appkit@1.5.3': + resolution: {integrity: sha512-Wh+JetSr0/AHow2lqp/3+v61rnCzaXWDBKXgBWCUxGhHrw+vpDeyEsLLLTAbBd3w0xsKRaO2gjW5k+Z53p1NRw==} '@rtsao/scc@1.1.0': resolution: {integrity: sha512-zt6OdqaDoOnJ1ZYsCYGt9YmWzDXl4vQdKTyJev62gFhRGKdx7mcT54V9KIjg+d2wi9EXsPvAPKe7i7WjfVWB8g==} @@ -6081,17 +6081,17 @@ snapshots: optionalDependencies: '@types/react': 18.3.12 - '@reown/appkit-adapter-wagmi@1.5.2(cyxco7g6dw65agk55yiswfxhe4)': + '@reown/appkit-adapter-wagmi@1.5.3(cyxco7g6dw65agk55yiswfxhe4)': dependencies: '@coinbase/wallet-sdk': 4.2.3 - '@reown/appkit': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-scaffold-ui': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-scaffold-ui': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@wagmi/connectors': 5.3.9(@types/react@18.3.12)(@wagmi/core@2.14.5(@tanstack/query-core@5.59.20)(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(use-sync-external-store@1.2.0(react@19.0.0-rc-66855b96-20241106))(viem@2.21.44(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.8)(react-dom@19.0.0-rc-66855b96-20241106(react@19.0.0-rc-66855b96-20241106))(react-native@0.76.1(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(utf-8-validate@5.0.10))(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.21.44(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) '@wagmi/core': 2.14.5(@tanstack/query-core@5.59.20)(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(use-sync-external-store@1.2.0(react@19.0.0-rc-66855b96-20241106))(viem@2.21.44(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)) '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -6121,7 +6121,7 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-common@1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-common@1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: bignumber.js: 9.1.2 dayjs: 1.11.10 @@ -6132,10 +6132,10 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-core@1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-core@1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) valtio: 1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106) viem: 2.21.44(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) @@ -6161,17 +6161,17 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-polyfills@1.5.2': + '@reown/appkit-polyfills@1.5.3': dependencies: buffer: 6.0.3 - '@reown/appkit-scaffold-ui@1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4)': + '@reown/appkit-scaffold-ui@1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) lit: 3.1.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -6196,13 +6196,13 @@ snapshots: - valtio - zod - '@reown/appkit-siwe@1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-siwe@1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@walletconnect/utils': 2.17.0 lit: 3.1.0 valtio: 1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106) @@ -6228,17 +6228,17 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-ui@1.5.2': + '@reown/appkit-ui@1.5.3': dependencies: lit: 3.1.0 qrcode: 1.5.3 - '@reown/appkit-utils@1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4)': + '@reown/appkit-utils@1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@walletconnect/logger': 2.1.2 '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) valtio: 1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106) @@ -6265,10 +6265,10 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-wallet@1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)': + '@reown/appkit-wallet@1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 '@walletconnect/logger': 2.1.2 zod: 3.22.4 transitivePeerDependencies: @@ -6276,16 +6276,16 @@ snapshots: - typescript - utf-8-validate - '@reown/appkit@1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit@1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-scaffold-ui': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) - '@reown/appkit-siwe': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-scaffold-ui': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) + '@reown/appkit-siwe': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.12)(bufferutil@4.0.8)(react@19.0.0-rc-66855b96-20241106)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.12)(react@19.0.0-rc-66855b96-20241106))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@walletconnect/types': 2.17.0 '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/utils': 2.17.0 @@ -7720,8 +7720,8 @@ snapshots: '@typescript-eslint/parser': 8.14.0(eslint@8.57.1)(typescript@5.6.3) eslint: 8.57.1 eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1) - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) + eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1))(eslint@8.57.1) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1) eslint-plugin-jsx-a11y: 6.10.2(eslint@8.57.1) eslint-plugin-react: 7.37.2(eslint@8.57.1) eslint-plugin-react-hooks: 5.0.0(eslint@8.57.1) @@ -7740,37 +7740,37 @@ snapshots: transitivePeerDependencies: - supports-color - eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1): + eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1))(eslint@8.57.1): dependencies: '@nolyfill/is-core-module': 1.0.39 debug: 4.3.7 enhanced-resolve: 5.17.1 eslint: 8.57.1 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) + eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1) fast-glob: 3.3.2 get-tsconfig: 4.8.1 is-bun-module: 1.2.1 is-glob: 4.0.3 optionalDependencies: - eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) + eslint-plugin-import: 2.31.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1) transitivePeerDependencies: - '@typescript-eslint/parser' - eslint-import-resolver-node - eslint-import-resolver-webpack - supports-color - eslint-module-utils@2.12.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1): + eslint-module-utils@2.12.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1): dependencies: debug: 3.2.7 optionalDependencies: '@typescript-eslint/parser': 8.14.0(eslint@8.57.1)(typescript@5.6.3) eslint: 8.57.1 eslint-import-resolver-node: 0.3.9 - eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0)(eslint@8.57.1) + eslint-import-resolver-typescript: 3.6.3(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1))(eslint@8.57.1) transitivePeerDependencies: - supports-color - eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1): + eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1): dependencies: '@rtsao/scc': 1.1.0 array-includes: 3.1.8 @@ -7781,7 +7781,7 @@ snapshots: doctrine: 2.1.0 eslint: 8.57.1 eslint-import-resolver-node: 0.3.9 - eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3)(eslint@8.57.1) + eslint-module-utils: 2.12.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-import-resolver-typescript@3.6.3(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.6.3))(eslint-import-resolver-node@0.3.9)(eslint-plugin-import@2.31.0(@typescript-eslint/parser@8.14.0(eslint@8.57.1)(typescript@5.6.3))(eslint@8.57.1))(eslint@8.57.1))(eslint@8.57.1) hasown: 2.0.2 is-core-module: 2.15.1 is-glob: 4.0.3 diff --git a/nextjs/next-wagmi-app-router/src/app/globals.css b/nextjs/next-wagmi-app-router/src/app/globals.css index 473d21c..4b02a41 100644 --- a/nextjs/next-wagmi-app-router/src/app/globals.css +++ b/nextjs/next-wagmi-app-router/src/app/globals.css @@ -3,13 +3,6 @@ --foreground: #171717; } -@media (prefers-color-scheme: dark) { - :root { - --background: #0a0a0a; - --foreground: #ededed; - } -} - html, body { max-width: 100vw; diff --git a/react/react-ethers/package.json b/react/react-ethers/package.json index 365f1af..936d218 100644 --- a/react/react-ethers/package.json +++ b/react/react-ethers/package.json @@ -10,8 +10,8 @@ "preview": "vite preview" }, "dependencies": { - "@reown/appkit": "^1.5.2", - "@reown/appkit-adapter-ethers": "^1.5.2", + "@reown/appkit": "^1.5.3", + "@reown/appkit-adapter-ethers": "^1.5.3", "ethers": "^6.13.2", "react": "^18.3.1", "react-dom": "^18.3.1" diff --git a/react/react-ethers/pnpm-lock.yaml b/react/react-ethers/pnpm-lock.yaml index 9fb8887..6721ebc 100644 --- a/react/react-ethers/pnpm-lock.yaml +++ b/react/react-ethers/pnpm-lock.yaml @@ -9,11 +9,11 @@ importers: .: dependencies: '@reown/appkit': - specifier: ^1.5.2 - version: 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + specifier: ^1.5.3 + version: 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) '@reown/appkit-adapter-ethers': - specifier: ^1.5.2 - version: 1.5.2(@coinbase/wallet-sdk@4.0.3)(@ethersproject/sha2@5.7.0)(@types/react@18.3.9)(bufferutil@4.0.8)(ethers@6.13.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + specifier: ^1.5.3 + version: 1.5.3(@coinbase/wallet-sdk@4.0.3)(@ethersproject/sha2@5.7.0)(@types/react@18.3.9)(bufferutil@4.0.8)(ethers@6.13.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) ethers: specifier: ^6.13.2 version: 6.13.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -485,41 +485,41 @@ packages: resolution: {integrity: sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==} engines: {node: '>= 10.0.0'} - '@reown/appkit-adapter-ethers@1.5.2': - resolution: {integrity: sha512-HdCmZCmUI8LONjr3iC4KDah4eah61o+VNmYyTNR1CF4+2ua4xb950cAOkibBtj617P6bAELMNpEzV7wO/FBwsQ==} + '@reown/appkit-adapter-ethers@1.5.3': + resolution: {integrity: sha512-u1nQGAJfKji7ss62WHgBRRPWyMm7cujcoWcGHsl0c1XxukSEgC9LZvMeQ2yX9zHb1COtMyUQpZZ1sSlgDMhuCQ==} peerDependencies: '@coinbase/wallet-sdk': 4.0.3 '@ethersproject/sha2': 5.7.0 ethers: '>=6' - '@reown/appkit-common@1.5.2': - resolution: {integrity: sha512-dBFKIOxIdbU3R8KD/uwYKcsf5UbC1qoserzwdLDFn7GyOpBYKm0ZAY+3E4mt4HBS87R2Atn9tXYVL4wWPWbKMw==} + '@reown/appkit-common@1.5.3': + resolution: {integrity: sha512-b/NnXbPUJb11A42CNV5nCKsPv+QCgrB112aAJ+PuH7HTSAOiSNQND8w8VPW2UpjUPP/6ivLhUrHOapYUlA3BtQ==} - '@reown/appkit-core@1.5.2': - resolution: {integrity: sha512-822CVaELuRmzmPXke8i4mMl3eEgkPRWop6mAyRlQprQJHBRdw8GRHMBfI8UDDCsVFhiMN4G8endVFZCR6SQtmQ==} + '@reown/appkit-core@1.5.3': + resolution: {integrity: sha512-4vFS/pwJDE42bXmGRbsPVbZZSlBC+mHC2G5rFcYymRDcjc1xNeLCUEq84xLC+Xt8YNt/Yi2ghslwWztL2lDF5w==} - '@reown/appkit-polyfills@1.5.2': - resolution: {integrity: sha512-dXrzpg08+l1Kc7aDFadm8n/CRhabPLNWBJUYBM8+jXyG60k8FBdLqdyexyvwdHPwZdoflDuOCaQKPhPD5U17vw==} + '@reown/appkit-polyfills@1.5.3': + resolution: {integrity: sha512-SlRWZGPQJUtr68EtlNC5EXVzEsI7TM1PvwW36ZSE+9InRp2bxeySWdVntZrAQPvXIE7sZtRuJtIpC1fQ1hJnyw==} - '@reown/appkit-scaffold-ui@1.5.2': - resolution: {integrity: sha512-P8p7qtntzMTS1KuUjOZjslhk9fnHL8eu8sk1KVm7YsN1JlacIOI0UOXiDMrNVxtAWuwv0TTNQzYrvxV2p+uZkA==} + '@reown/appkit-scaffold-ui@1.5.3': + resolution: {integrity: sha512-6Y1jmyD8yRbgcdWrFvvFfDC9Q+20LyCNR4sizr4AT85fWhsHkRG6ywrVCu1fP5RtIEgabjDtsNNipCd13Q2e3w==} - '@reown/appkit-siwe@1.5.2': - resolution: {integrity: sha512-LAPTItnQWkIXEzZ5HQWVnZjN7Llujo3BWbinb6Gpm1u9aj7GOwnSyETWsjZzaTs4O3Ob9IKWXxOEusyCpiArkA==} + '@reown/appkit-siwe@1.5.3': + resolution: {integrity: sha512-0yhNp60yyYp7n7LzQyZhkxetsRGtjXTXlmsxJMCw4vHrG3IXYO1QhPTGaZbOI0ps3CAj2+jLV+Y1Aso7XJ7M9A==} - '@reown/appkit-ui@1.5.2': - resolution: {integrity: sha512-0bhvRkXzueC3yiyvWn1otFZRedLRfH52CW7mRC9mfb8/B7Ety6c0CB7oCdl2lI67MqeW1eEitBJ/DQW5zI38RA==} + '@reown/appkit-ui@1.5.3': + resolution: {integrity: sha512-5ho20npfusl945wY2tCq8nntkZLj5BNC/C6tSATPgatA8kmJD35SKcNWlL4EAAiQDOfxEmifoErtEcUd27h/gg==} - '@reown/appkit-utils@1.5.2': - resolution: {integrity: sha512-TCc7gdhk1t0Z5IWXGVeaadZ9DZOt5Z+SAmG7CTkjtpGoA9jFTn0pL5bvTQMMxin1lvaWycHXyp/x6mJhojCFUA==} + '@reown/appkit-utils@1.5.3': + resolution: {integrity: sha512-K0pF8sdt10BFDvkjvgLoXc7VOL5AmOzd9BqJw4IS60R9oDEDkfr/Wa/Bi+9LsLlYfwKh2H+TyvyIqHvhMjFviA==} peerDependencies: valtio: 1.11.2 - '@reown/appkit-wallet@1.5.2': - resolution: {integrity: sha512-OQs+nmfyT2/eyxhatp6GSjIuPDeab9cAgMKjf/1j1nOg/UykBNTmoHWpXWtYE5ZjgeUp8ApyAeASQWKwMOgIaw==} + '@reown/appkit-wallet@1.5.3': + resolution: {integrity: sha512-9lFcPNNebzICxGVsy8IAJqF5yNHWBZCvWBdcgMheK47/W/Mi6LwM7zTSZSonnpRYZ7gYJOqfaTdCd2KfOMI6JQ==} - '@reown/appkit@1.5.2': - resolution: {integrity: sha512-w7YDOi2fiYVmCTpM3M79fbqHgm6/WWf8I5pBKaKoTTttXm4M/D79mXQ6osEZ7ozKLhz0spyHi+TyjoGxT/PB3A==} + '@reown/appkit@1.5.3': + resolution: {integrity: sha512-Wh+JetSr0/AHow2lqp/3+v61rnCzaXWDBKXgBWCUxGhHrw+vpDeyEsLLLTAbBd3w0xsKRaO2gjW5k+Z53p1NRw==} '@rollup/rollup-android-arm-eabi@4.22.4': resolution: {integrity: sha512-Fxamp4aEZnfPOcGA8KSNEohV8hX7zVHOemC8jVBoBUHu5zpJK/Eu3uJwt6BMgy9fkvzxDaurgj96F/NiLukF2w==} @@ -2458,18 +2458,18 @@ snapshots: '@parcel/watcher-win32-ia32': 2.4.1 '@parcel/watcher-win32-x64': 2.4.1 - '@reown/appkit-adapter-ethers@1.5.2(@coinbase/wallet-sdk@4.0.3)(@ethersproject/sha2@5.7.0)(@types/react@18.3.9)(bufferutil@4.0.8)(ethers@6.13.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-adapter-ethers@1.5.3(@coinbase/wallet-sdk@4.0.3)(@ethersproject/sha2@5.7.0)(@types/react@18.3.9)(bufferutil@4.0.8)(ethers@6.13.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: '@coinbase/wallet-sdk': 4.0.3 '@ethersproject/sha2': 5.7.0 - '@reown/appkit': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-scaffold-ui': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) + '@reown/appkit': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-scaffold-ui': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/utils': 2.17.0 ethers: 6.13.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -2497,7 +2497,7 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-common@1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-common@1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: bignumber.js: 9.1.2 dayjs: 1.11.10 @@ -2508,10 +2508,10 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-core@1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-core@1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) valtio: 1.11.2(@types/react@18.3.9)(react@18.3.1) viem: 2.21.19(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) @@ -2538,17 +2538,17 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-polyfills@1.5.2': + '@reown/appkit-polyfills@1.5.3': dependencies: buffer: 6.0.3 - '@reown/appkit-scaffold-ui@1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4)': + '@reown/appkit-scaffold-ui@1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) lit: 3.1.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -2574,13 +2574,13 @@ snapshots: - valtio - zod - '@reown/appkit-siwe@1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-siwe@1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) '@walletconnect/utils': 2.17.0 lit: 3.1.0 valtio: 1.11.2(@types/react@18.3.9)(react@18.3.1) @@ -2607,17 +2607,17 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-ui@1.5.2': + '@reown/appkit-ui@1.5.3': dependencies: lit: 3.1.0 qrcode: 1.5.3 - '@reown/appkit-utils@1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4)': + '@reown/appkit-utils@1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) '@walletconnect/logger': 2.1.2 '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) valtio: 1.11.2(@types/react@18.3.9)(react@18.3.1) @@ -2645,10 +2645,10 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-wallet@1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)': + '@reown/appkit-wallet@1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 '@walletconnect/logger': 2.1.2 zod: 3.22.4 transitivePeerDependencies: @@ -2656,16 +2656,16 @@ snapshots: - typescript - utf-8-validate - '@reown/appkit@1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit@1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-scaffold-ui': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) - '@reown/appkit-siwe': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-scaffold-ui': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) + '@reown/appkit-siwe': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) '@walletconnect/types': 2.17.0 '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/utils': 2.17.0 diff --git a/react/react-ethers/src/App.css b/react/react-ethers/src/App.css index 473d21c..4b02a41 100644 --- a/react/react-ethers/src/App.css +++ b/react/react-ethers/src/App.css @@ -3,13 +3,6 @@ --foreground: #171717; } -@media (prefers-color-scheme: dark) { - :root { - --background: #0a0a0a; - --foreground: #ededed; - } -} - html, body { max-width: 100vw; diff --git a/react/react-ethers/src/App.tsx b/react/react-ethers/src/App.tsx index a99b968..234aa80 100644 --- a/react/react-ethers/src/App.tsx +++ b/react/react-ethers/src/App.tsx @@ -11,6 +11,7 @@ createAppKit({ networks, metadata, projectId, + themeMode: 'light', features: { analytics: true // Optional - defaults to your Cloud configuration } diff --git a/react/react-ethers5/package.json b/react/react-ethers5/package.json index efd245f..d7c3917 100644 --- a/react/react-ethers5/package.json +++ b/react/react-ethers5/package.json @@ -10,8 +10,8 @@ "preview": "vite preview" }, "dependencies": { - "@reown/appkit": "^1.5.2", - "@reown/appkit-adapter-ethers5": "^1.5.2", + "@reown/appkit": "^1.5.3", + "@reown/appkit-adapter-ethers5": "^1.5.3", "ethers": "^5.7.2", "react": "^18.3.1", "react-dom": "^18.3.1" diff --git a/react/react-ethers5/pnpm-lock.yaml b/react/react-ethers5/pnpm-lock.yaml index ad15cce..013e457 100644 --- a/react/react-ethers5/pnpm-lock.yaml +++ b/react/react-ethers5/pnpm-lock.yaml @@ -9,11 +9,11 @@ importers: .: dependencies: '@reown/appkit': - specifier: ^1.5.2 - version: 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + specifier: ^1.5.3 + version: 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) '@reown/appkit-adapter-ethers5': - specifier: ^1.5.2 - version: 1.5.2(@coinbase/wallet-sdk@4.0.3)(@ethersproject/sha2@5.7.0)(@types/react@18.3.9)(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + specifier: ^1.5.3 + version: 1.5.3(@coinbase/wallet-sdk@4.0.3)(@ethersproject/sha2@5.7.0)(@types/react@18.3.9)(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) ethers: specifier: ^5.7.2 version: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -556,41 +556,41 @@ packages: resolution: {integrity: sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==} engines: {node: '>= 10.0.0'} - '@reown/appkit-adapter-ethers5@1.5.2': - resolution: {integrity: sha512-7fKr+AOlAez1Z6OO9eBo0UB+uPMB21rp03JUGxRuMHk6AuMUO2toX96oMkjqapPlvTksIuUlAsY4urt8o2agcg==} + '@reown/appkit-adapter-ethers5@1.5.3': + resolution: {integrity: sha512-43lg0X6ttPxswpmCkYJ63lbU523atsAkLnb688Vp9EDXH1YJajBzGi73uXwzOAY2ojQz3ZrSP4sbJcP8iwEHfg==} peerDependencies: '@coinbase/wallet-sdk': 4.0.3 '@ethersproject/sha2': 5.7.0 ethers: '>=4.1 <6.0.0' - '@reown/appkit-common@1.5.2': - resolution: {integrity: sha512-dBFKIOxIdbU3R8KD/uwYKcsf5UbC1qoserzwdLDFn7GyOpBYKm0ZAY+3E4mt4HBS87R2Atn9tXYVL4wWPWbKMw==} + '@reown/appkit-common@1.5.3': + resolution: {integrity: sha512-b/NnXbPUJb11A42CNV5nCKsPv+QCgrB112aAJ+PuH7HTSAOiSNQND8w8VPW2UpjUPP/6ivLhUrHOapYUlA3BtQ==} - '@reown/appkit-core@1.5.2': - resolution: {integrity: sha512-822CVaELuRmzmPXke8i4mMl3eEgkPRWop6mAyRlQprQJHBRdw8GRHMBfI8UDDCsVFhiMN4G8endVFZCR6SQtmQ==} + '@reown/appkit-core@1.5.3': + resolution: {integrity: sha512-4vFS/pwJDE42bXmGRbsPVbZZSlBC+mHC2G5rFcYymRDcjc1xNeLCUEq84xLC+Xt8YNt/Yi2ghslwWztL2lDF5w==} - '@reown/appkit-polyfills@1.5.2': - resolution: {integrity: sha512-dXrzpg08+l1Kc7aDFadm8n/CRhabPLNWBJUYBM8+jXyG60k8FBdLqdyexyvwdHPwZdoflDuOCaQKPhPD5U17vw==} + '@reown/appkit-polyfills@1.5.3': + resolution: {integrity: sha512-SlRWZGPQJUtr68EtlNC5EXVzEsI7TM1PvwW36ZSE+9InRp2bxeySWdVntZrAQPvXIE7sZtRuJtIpC1fQ1hJnyw==} - '@reown/appkit-scaffold-ui@1.5.2': - resolution: {integrity: sha512-P8p7qtntzMTS1KuUjOZjslhk9fnHL8eu8sk1KVm7YsN1JlacIOI0UOXiDMrNVxtAWuwv0TTNQzYrvxV2p+uZkA==} + '@reown/appkit-scaffold-ui@1.5.3': + resolution: {integrity: sha512-6Y1jmyD8yRbgcdWrFvvFfDC9Q+20LyCNR4sizr4AT85fWhsHkRG6ywrVCu1fP5RtIEgabjDtsNNipCd13Q2e3w==} - '@reown/appkit-siwe@1.5.2': - resolution: {integrity: sha512-LAPTItnQWkIXEzZ5HQWVnZjN7Llujo3BWbinb6Gpm1u9aj7GOwnSyETWsjZzaTs4O3Ob9IKWXxOEusyCpiArkA==} + '@reown/appkit-siwe@1.5.3': + resolution: {integrity: sha512-0yhNp60yyYp7n7LzQyZhkxetsRGtjXTXlmsxJMCw4vHrG3IXYO1QhPTGaZbOI0ps3CAj2+jLV+Y1Aso7XJ7M9A==} - '@reown/appkit-ui@1.5.2': - resolution: {integrity: sha512-0bhvRkXzueC3yiyvWn1otFZRedLRfH52CW7mRC9mfb8/B7Ety6c0CB7oCdl2lI67MqeW1eEitBJ/DQW5zI38RA==} + '@reown/appkit-ui@1.5.3': + resolution: {integrity: sha512-5ho20npfusl945wY2tCq8nntkZLj5BNC/C6tSATPgatA8kmJD35SKcNWlL4EAAiQDOfxEmifoErtEcUd27h/gg==} - '@reown/appkit-utils@1.5.2': - resolution: {integrity: sha512-TCc7gdhk1t0Z5IWXGVeaadZ9DZOt5Z+SAmG7CTkjtpGoA9jFTn0pL5bvTQMMxin1lvaWycHXyp/x6mJhojCFUA==} + '@reown/appkit-utils@1.5.3': + resolution: {integrity: sha512-K0pF8sdt10BFDvkjvgLoXc7VOL5AmOzd9BqJw4IS60R9oDEDkfr/Wa/Bi+9LsLlYfwKh2H+TyvyIqHvhMjFviA==} peerDependencies: valtio: 1.11.2 - '@reown/appkit-wallet@1.5.2': - resolution: {integrity: sha512-OQs+nmfyT2/eyxhatp6GSjIuPDeab9cAgMKjf/1j1nOg/UykBNTmoHWpXWtYE5ZjgeUp8ApyAeASQWKwMOgIaw==} + '@reown/appkit-wallet@1.5.3': + resolution: {integrity: sha512-9lFcPNNebzICxGVsy8IAJqF5yNHWBZCvWBdcgMheK47/W/Mi6LwM7zTSZSonnpRYZ7gYJOqfaTdCd2KfOMI6JQ==} - '@reown/appkit@1.5.2': - resolution: {integrity: sha512-w7YDOi2fiYVmCTpM3M79fbqHgm6/WWf8I5pBKaKoTTttXm4M/D79mXQ6osEZ7ozKLhz0spyHi+TyjoGxT/PB3A==} + '@reown/appkit@1.5.3': + resolution: {integrity: sha512-Wh+JetSr0/AHow2lqp/3+v61rnCzaXWDBKXgBWCUxGhHrw+vpDeyEsLLLTAbBd3w0xsKRaO2gjW5k+Z53p1NRw==} '@rollup/rollup-android-arm-eabi@4.22.4': resolution: {integrity: sha512-Fxamp4aEZnfPOcGA8KSNEohV8hX7zVHOemC8jVBoBUHu5zpJK/Eu3uJwt6BMgy9fkvzxDaurgj96F/NiLukF2w==} @@ -2772,18 +2772,18 @@ snapshots: '@parcel/watcher-win32-ia32': 2.4.1 '@parcel/watcher-win32-x64': 2.4.1 - '@reown/appkit-adapter-ethers5@1.5.2(@coinbase/wallet-sdk@4.0.3)(@ethersproject/sha2@5.7.0)(@types/react@18.3.9)(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-adapter-ethers5@1.5.3(@coinbase/wallet-sdk@4.0.3)(@ethersproject/sha2@5.7.0)(@types/react@18.3.9)(bufferutil@4.0.8)(ethers@5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: '@coinbase/wallet-sdk': 4.0.3 '@ethersproject/sha2': 5.7.0 - '@reown/appkit': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-scaffold-ui': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) + '@reown/appkit': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-scaffold-ui': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/utils': 2.17.0 ethers: 5.7.2(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -2811,7 +2811,7 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-common@1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-common@1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: bignumber.js: 9.1.2 dayjs: 1.11.10 @@ -2822,10 +2822,10 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-core@1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-core@1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) valtio: 1.11.2(@types/react@18.3.9)(react@18.3.1) viem: 2.21.19(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) @@ -2852,17 +2852,17 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-polyfills@1.5.2': + '@reown/appkit-polyfills@1.5.3': dependencies: buffer: 6.0.3 - '@reown/appkit-scaffold-ui@1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4)': + '@reown/appkit-scaffold-ui@1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) lit: 3.1.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -2888,13 +2888,13 @@ snapshots: - valtio - zod - '@reown/appkit-siwe@1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-siwe@1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) '@walletconnect/utils': 2.17.0 lit: 3.1.0 valtio: 1.11.2(@types/react@18.3.9)(react@18.3.1) @@ -2921,17 +2921,17 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-ui@1.5.2': + '@reown/appkit-ui@1.5.3': dependencies: lit: 3.1.0 qrcode: 1.5.3 - '@reown/appkit-utils@1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4)': + '@reown/appkit-utils@1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) '@walletconnect/logger': 2.1.2 '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) valtio: 1.11.2(@types/react@18.3.9)(react@18.3.1) @@ -2959,10 +2959,10 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-wallet@1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)': + '@reown/appkit-wallet@1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 '@walletconnect/logger': 2.1.2 zod: 3.22.4 transitivePeerDependencies: @@ -2970,16 +2970,16 @@ snapshots: - typescript - utf-8-validate - '@reown/appkit@1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit@1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-scaffold-ui': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) - '@reown/appkit-siwe': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-scaffold-ui': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) + '@reown/appkit-siwe': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) '@walletconnect/types': 2.17.0 '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/utils': 2.17.0 diff --git a/react/react-ethers5/src/App.css b/react/react-ethers5/src/App.css index 473d21c..4b02a41 100644 --- a/react/react-ethers5/src/App.css +++ b/react/react-ethers5/src/App.css @@ -3,13 +3,6 @@ --foreground: #171717; } -@media (prefers-color-scheme: dark) { - :root { - --background: #0a0a0a; - --foreground: #ededed; - } -} - html, body { max-width: 100vw; diff --git a/react/react-ethers5/src/App.tsx b/react/react-ethers5/src/App.tsx index ce79f90..56697ec 100644 --- a/react/react-ethers5/src/App.tsx +++ b/react/react-ethers5/src/App.tsx @@ -11,6 +11,7 @@ createAppKit({ networks, metadata, projectId, + themeMode: 'light', features: { analytics: true // Optional - defaults to your Cloud configuration } diff --git a/react/react-multichain/package.json b/react/react-multichain/package.json index cca7b4b..0563099 100644 --- a/react/react-multichain/package.json +++ b/react/react-multichain/package.json @@ -10,9 +10,9 @@ "preview": "vite preview" }, "dependencies": { - "@reown/appkit": "^1.5.2", - "@reown/appkit-adapter-solana": "^1.5.2", - "@reown/appkit-adapter-wagmi": "^1.5.2", + "@reown/appkit": "^1.5.3", + "@reown/appkit-adapter-solana": "^1.5.3", + "@reown/appkit-adapter-wagmi": "^1.5.3", "@solana/wallet-adapter-wallets": "^0.19.32", "@tanstack/react-query": "^5.56.2", "react": "^18.3.1", diff --git a/react/react-multichain/pnpm-lock.yaml b/react/react-multichain/pnpm-lock.yaml index da62264..660cbb5 100644 --- a/react/react-multichain/pnpm-lock.yaml +++ b/react/react-multichain/pnpm-lock.yaml @@ -9,14 +9,14 @@ importers: .: dependencies: '@reown/appkit': - specifier: ^1.5.2 - version: 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + specifier: ^1.5.3 + version: 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) '@reown/appkit-adapter-solana': - specifier: ^1.5.2 - version: 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + specifier: ^1.5.3 + version: 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) '@reown/appkit-adapter-wagmi': - specifier: ^1.5.2 - version: 1.5.2(jj7ah5yjseio7vpo2iy2x5pcwa) + specifier: ^1.5.3 + version: 1.5.3(jj7ah5yjseio7vpo2iy2x5pcwa) '@solana/wallet-adapter-wallets': specifier: ^0.19.32 version: 0.19.32(@babel/core@7.25.2)(@babel/runtime@7.25.6)(@solana/web3.js@1.95.3(bufferutil@4.0.8)(utf-8-validate@5.0.10))(bs58@6.0.0)(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10))(react@18.3.1)(tslib@2.8.1)(utf-8-validate@5.0.10) @@ -1479,11 +1479,11 @@ packages: '@types/react': optional: true - '@reown/appkit-adapter-solana@1.5.2': - resolution: {integrity: sha512-/D0SQrhundgQ1AY28wbI3Ro33sF7/CRzWXFBIrFtxhjXKeiRUc5uzl/R/j14SCN4thbFc4q1oqL2dUlWxovyKA==} + '@reown/appkit-adapter-solana@1.5.3': + resolution: {integrity: sha512-Gz1hji0vcLZh+fiUmxDKtlkzFReYxrcY5Rd4RrlZTzgvPFlBSjd8DMeYdk4qLU56SqdK8ROR/mnsQk2LOrTyVA==} - '@reown/appkit-adapter-wagmi@1.5.2': - resolution: {integrity: sha512-1z9EYT67OGtMI99bq0VHkpKT8D7hXwf8jVWQ7iVdB3JTuTvky9ghyvDsTQRPR/4oPuEQ3xBh8fMfoRUQi4cG+w==} + '@reown/appkit-adapter-wagmi@1.5.3': + resolution: {integrity: sha512-0qq7pPVsfKYO6TiHC8en2Dusce1xx5S7P5pPn+yxUyUdEsmpPJbk8CtLXGSqnxHz5qJ9hDb+4QVJIdEZ8gE9FA==} peerDependencies: '@coinbase/wallet-sdk': 4.0.3 '@wagmi/connectors': '>=5.1' @@ -1491,34 +1491,34 @@ packages: viem: 2.x wagmi: '>=2.12' - '@reown/appkit-common@1.5.2': - resolution: {integrity: sha512-dBFKIOxIdbU3R8KD/uwYKcsf5UbC1qoserzwdLDFn7GyOpBYKm0ZAY+3E4mt4HBS87R2Atn9tXYVL4wWPWbKMw==} + '@reown/appkit-common@1.5.3': + resolution: {integrity: sha512-b/NnXbPUJb11A42CNV5nCKsPv+QCgrB112aAJ+PuH7HTSAOiSNQND8w8VPW2UpjUPP/6ivLhUrHOapYUlA3BtQ==} - '@reown/appkit-core@1.5.2': - resolution: {integrity: sha512-822CVaELuRmzmPXke8i4mMl3eEgkPRWop6mAyRlQprQJHBRdw8GRHMBfI8UDDCsVFhiMN4G8endVFZCR6SQtmQ==} + '@reown/appkit-core@1.5.3': + resolution: {integrity: sha512-4vFS/pwJDE42bXmGRbsPVbZZSlBC+mHC2G5rFcYymRDcjc1xNeLCUEq84xLC+Xt8YNt/Yi2ghslwWztL2lDF5w==} - '@reown/appkit-polyfills@1.5.2': - resolution: {integrity: sha512-dXrzpg08+l1Kc7aDFadm8n/CRhabPLNWBJUYBM8+jXyG60k8FBdLqdyexyvwdHPwZdoflDuOCaQKPhPD5U17vw==} + '@reown/appkit-polyfills@1.5.3': + resolution: {integrity: sha512-SlRWZGPQJUtr68EtlNC5EXVzEsI7TM1PvwW36ZSE+9InRp2bxeySWdVntZrAQPvXIE7sZtRuJtIpC1fQ1hJnyw==} - '@reown/appkit-scaffold-ui@1.5.2': - resolution: {integrity: sha512-P8p7qtntzMTS1KuUjOZjslhk9fnHL8eu8sk1KVm7YsN1JlacIOI0UOXiDMrNVxtAWuwv0TTNQzYrvxV2p+uZkA==} + '@reown/appkit-scaffold-ui@1.5.3': + resolution: {integrity: sha512-6Y1jmyD8yRbgcdWrFvvFfDC9Q+20LyCNR4sizr4AT85fWhsHkRG6ywrVCu1fP5RtIEgabjDtsNNipCd13Q2e3w==} - '@reown/appkit-siwe@1.5.2': - resolution: {integrity: sha512-LAPTItnQWkIXEzZ5HQWVnZjN7Llujo3BWbinb6Gpm1u9aj7GOwnSyETWsjZzaTs4O3Ob9IKWXxOEusyCpiArkA==} + '@reown/appkit-siwe@1.5.3': + resolution: {integrity: sha512-0yhNp60yyYp7n7LzQyZhkxetsRGtjXTXlmsxJMCw4vHrG3IXYO1QhPTGaZbOI0ps3CAj2+jLV+Y1Aso7XJ7M9A==} - '@reown/appkit-ui@1.5.2': - resolution: {integrity: sha512-0bhvRkXzueC3yiyvWn1otFZRedLRfH52CW7mRC9mfb8/B7Ety6c0CB7oCdl2lI67MqeW1eEitBJ/DQW5zI38RA==} + '@reown/appkit-ui@1.5.3': + resolution: {integrity: sha512-5ho20npfusl945wY2tCq8nntkZLj5BNC/C6tSATPgatA8kmJD35SKcNWlL4EAAiQDOfxEmifoErtEcUd27h/gg==} - '@reown/appkit-utils@1.5.2': - resolution: {integrity: sha512-TCc7gdhk1t0Z5IWXGVeaadZ9DZOt5Z+SAmG7CTkjtpGoA9jFTn0pL5bvTQMMxin1lvaWycHXyp/x6mJhojCFUA==} + '@reown/appkit-utils@1.5.3': + resolution: {integrity: sha512-K0pF8sdt10BFDvkjvgLoXc7VOL5AmOzd9BqJw4IS60R9oDEDkfr/Wa/Bi+9LsLlYfwKh2H+TyvyIqHvhMjFviA==} peerDependencies: valtio: 1.11.2 - '@reown/appkit-wallet@1.5.2': - resolution: {integrity: sha512-OQs+nmfyT2/eyxhatp6GSjIuPDeab9cAgMKjf/1j1nOg/UykBNTmoHWpXWtYE5ZjgeUp8ApyAeASQWKwMOgIaw==} + '@reown/appkit-wallet@1.5.3': + resolution: {integrity: sha512-9lFcPNNebzICxGVsy8IAJqF5yNHWBZCvWBdcgMheK47/W/Mi6LwM7zTSZSonnpRYZ7gYJOqfaTdCd2KfOMI6JQ==} - '@reown/appkit@1.5.2': - resolution: {integrity: sha512-w7YDOi2fiYVmCTpM3M79fbqHgm6/WWf8I5pBKaKoTTttXm4M/D79mXQ6osEZ7ozKLhz0spyHi+TyjoGxT/PB3A==} + '@reown/appkit@1.5.3': + resolution: {integrity: sha512-Wh+JetSr0/AHow2lqp/3+v61rnCzaXWDBKXgBWCUxGhHrw+vpDeyEsLLLTAbBd3w0xsKRaO2gjW5k+Z53p1NRw==} '@rollup/rollup-android-arm-eabi@4.22.4': resolution: {integrity: sha512-Fxamp4aEZnfPOcGA8KSNEohV8hX7zVHOemC8jVBoBUHu5zpJK/Eu3uJwt6BMgy9fkvzxDaurgj96F/NiLukF2w==} @@ -7446,16 +7446,16 @@ snapshots: optionalDependencies: '@types/react': 18.3.9 - '@reown/appkit-adapter-solana@1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-adapter-solana@1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-scaffold-ui': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) + '@reown/appkit': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-scaffold-ui': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.3(bufferutil@4.0.8)(utf-8-validate@5.0.10)) '@solana/wallet-standard-features': 1.2.0 '@solana/wallet-standard-util': 1.1.1 @@ -7494,17 +7494,17 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-adapter-wagmi@1.5.2(jj7ah5yjseio7vpo2iy2x5pcwa)': + '@reown/appkit-adapter-wagmi@1.5.3(jj7ah5yjseio7vpo2iy2x5pcwa)': dependencies: '@coinbase/wallet-sdk': 4.0.4 - '@reown/appkit': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-scaffold-ui': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) + '@reown/appkit': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-scaffold-ui': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) '@wagmi/connectors': 5.1.13(@types/react@18.3.9)(@wagmi/core@2.13.7(@tanstack/query-core@5.56.2)(@types/react@18.3.9)(react@18.3.1)(typescript@5.6.2)(viem@2.21.14(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.22.4)(typescript@5.6.2)(utf-8-validate@5.0.10)(viem@2.21.14(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) '@wagmi/core': 2.13.7(@tanstack/query-core@5.56.2)(@types/react@18.3.9)(react@18.3.1)(typescript@5.6.2)(viem@2.21.14(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)) '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -7535,7 +7535,7 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-common@1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-common@1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: bignumber.js: 9.1.2 dayjs: 1.11.10 @@ -7546,10 +7546,10 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-core@1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-core@1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) valtio: 1.11.2(@types/react@18.3.9)(react@18.3.1) viem: 2.21.14(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) @@ -7576,17 +7576,17 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-polyfills@1.5.2': + '@reown/appkit-polyfills@1.5.3': dependencies: buffer: 6.0.3 - '@reown/appkit-scaffold-ui@1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4)': + '@reown/appkit-scaffold-ui@1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) lit: 3.1.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -7612,13 +7612,13 @@ snapshots: - valtio - zod - '@reown/appkit-siwe@1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-siwe@1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) '@walletconnect/utils': 2.17.0 lit: 3.1.0 valtio: 1.11.2(@types/react@18.3.9)(react@18.3.1) @@ -7645,17 +7645,17 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-ui@1.5.2': + '@reown/appkit-ui@1.5.3': dependencies: lit: 3.1.0 qrcode: 1.5.3 - '@reown/appkit-utils@1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4)': + '@reown/appkit-utils@1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) '@walletconnect/logger': 2.1.2 '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) valtio: 1.11.2(@types/react@18.3.9)(react@18.3.1) @@ -7683,10 +7683,10 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-wallet@1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)': + '@reown/appkit-wallet@1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 '@walletconnect/logger': 2.1.2 zod: 3.22.4 transitivePeerDependencies: @@ -7694,16 +7694,16 @@ snapshots: - typescript - utf-8-validate - '@reown/appkit@1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit@1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-scaffold-ui': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) - '@reown/appkit-siwe': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-scaffold-ui': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) + '@reown/appkit-siwe': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) '@walletconnect/types': 2.17.0 '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/utils': 2.17.0 diff --git a/react/react-multichain/src/App.css b/react/react-multichain/src/App.css index 016918a..4b02a41 100644 --- a/react/react-multichain/src/App.css +++ b/react/react-multichain/src/App.css @@ -3,13 +3,6 @@ --foreground: #171717; } -@media (prefers-color-scheme: dark) { - :root { - --background: #0a0a0a; - --foreground: #ededed; - } -} - html, body { max-width: 100vw; @@ -48,21 +41,18 @@ section { background-color: #f9f9f9; padding: 13px; margin: 10px; - width:100% + width: 90% } .pages { align-items: center; justify-items: center; -} -:root { - justify-items: center; } button { - padding: 10px 20px; + padding: 10px 15px; background-color: white; color: black; border: 2px solid black; @@ -71,7 +61,7 @@ button { font-weight: 600; cursor: pointer; transition: all 0.3s ease; - margin: 20px; /* Space between buttons */ + margin: 15px; /* Space between buttons */ } button:hover { @@ -86,4 +76,33 @@ button:active { h1 { margin: 20px; +} + +pre { + white-space: pre-wrap; /* Wrap text */ + word-wrap: break-word; /* Break long words */ +} + + +.link-button { + background-color: black; + color: white; + padding: 5px 10px; + text-decoration: none; + border-radius: 5px; +} + +.link-button:hover { + background-color: #333; /* Darken the background on hover */ +} + +.link-button:hover { + background-color: white; /* Change background to white on hover */ + color: black; /* Change text color to black on hover */ +} + +.advice { + text-align: 'center'; + margin-bottom: 10px; + line-height: 25px; } \ No newline at end of file diff --git a/react/react-multichain/src/App.tsx b/react/react-multichain/src/App.tsx index df1dc53..3403787 100644 --- a/react/react-multichain/src/App.tsx +++ b/react/react-multichain/src/App.tsx @@ -14,7 +14,8 @@ const queryClient = new QueryClient() const generalConfig = { projectId, metadata, - networks + networks, + themeMode: 'light' as const } // Create modal diff --git a/react/react-solana/package.json b/react/react-solana/package.json index 5e7bf5f..774fd5c 100644 --- a/react/react-solana/package.json +++ b/react/react-solana/package.json @@ -10,8 +10,8 @@ "preview": "vite preview" }, "dependencies": { - "@reown/appkit": "^1.5.2", - "@reown/appkit-adapter-solana": "^1.5.2", + "@reown/appkit": "^1.5.3", + "@reown/appkit-adapter-solana": "^1.5.3", "@solana/wallet-adapter-wallets": "^0.19.32", "bs58": "^6.0.0", "react": "^18.3.1", diff --git a/react/react-solana/pnpm-lock.yaml b/react/react-solana/pnpm-lock.yaml index 47f7793..2940470 100644 --- a/react/react-solana/pnpm-lock.yaml +++ b/react/react-solana/pnpm-lock.yaml @@ -9,11 +9,11 @@ importers: .: dependencies: '@reown/appkit': - specifier: ^1.5.2 - version: 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + specifier: ^1.5.3 + version: 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) '@reown/appkit-adapter-solana': - specifier: ^1.5.2 - version: 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + specifier: ^1.5.3 + version: 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) '@solana/wallet-adapter-wallets': specifier: ^0.19.32 version: 0.19.32(@babel/core@7.25.2)(@babel/runtime@7.25.6)(@solana/web3.js@1.95.3(bufferutil@4.0.8)(utf-8-validate@5.0.10))(bs58@6.0.0)(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10))(react@18.3.1)(tslib@2.7.0)(utf-8-validate@5.0.10) @@ -1352,37 +1352,37 @@ packages: '@types/react': optional: true - '@reown/appkit-adapter-solana@1.5.2': - resolution: {integrity: sha512-/D0SQrhundgQ1AY28wbI3Ro33sF7/CRzWXFBIrFtxhjXKeiRUc5uzl/R/j14SCN4thbFc4q1oqL2dUlWxovyKA==} + '@reown/appkit-adapter-solana@1.5.3': + resolution: {integrity: sha512-Gz1hji0vcLZh+fiUmxDKtlkzFReYxrcY5Rd4RrlZTzgvPFlBSjd8DMeYdk4qLU56SqdK8ROR/mnsQk2LOrTyVA==} - '@reown/appkit-common@1.5.2': - resolution: {integrity: sha512-dBFKIOxIdbU3R8KD/uwYKcsf5UbC1qoserzwdLDFn7GyOpBYKm0ZAY+3E4mt4HBS87R2Atn9tXYVL4wWPWbKMw==} + '@reown/appkit-common@1.5.3': + resolution: {integrity: sha512-b/NnXbPUJb11A42CNV5nCKsPv+QCgrB112aAJ+PuH7HTSAOiSNQND8w8VPW2UpjUPP/6ivLhUrHOapYUlA3BtQ==} - '@reown/appkit-core@1.5.2': - resolution: {integrity: sha512-822CVaELuRmzmPXke8i4mMl3eEgkPRWop6mAyRlQprQJHBRdw8GRHMBfI8UDDCsVFhiMN4G8endVFZCR6SQtmQ==} + '@reown/appkit-core@1.5.3': + resolution: {integrity: sha512-4vFS/pwJDE42bXmGRbsPVbZZSlBC+mHC2G5rFcYymRDcjc1xNeLCUEq84xLC+Xt8YNt/Yi2ghslwWztL2lDF5w==} - '@reown/appkit-polyfills@1.5.2': - resolution: {integrity: sha512-dXrzpg08+l1Kc7aDFadm8n/CRhabPLNWBJUYBM8+jXyG60k8FBdLqdyexyvwdHPwZdoflDuOCaQKPhPD5U17vw==} + '@reown/appkit-polyfills@1.5.3': + resolution: {integrity: sha512-SlRWZGPQJUtr68EtlNC5EXVzEsI7TM1PvwW36ZSE+9InRp2bxeySWdVntZrAQPvXIE7sZtRuJtIpC1fQ1hJnyw==} - '@reown/appkit-scaffold-ui@1.5.2': - resolution: {integrity: sha512-P8p7qtntzMTS1KuUjOZjslhk9fnHL8eu8sk1KVm7YsN1JlacIOI0UOXiDMrNVxtAWuwv0TTNQzYrvxV2p+uZkA==} + '@reown/appkit-scaffold-ui@1.5.3': + resolution: {integrity: sha512-6Y1jmyD8yRbgcdWrFvvFfDC9Q+20LyCNR4sizr4AT85fWhsHkRG6ywrVCu1fP5RtIEgabjDtsNNipCd13Q2e3w==} - '@reown/appkit-siwe@1.5.2': - resolution: {integrity: sha512-LAPTItnQWkIXEzZ5HQWVnZjN7Llujo3BWbinb6Gpm1u9aj7GOwnSyETWsjZzaTs4O3Ob9IKWXxOEusyCpiArkA==} + '@reown/appkit-siwe@1.5.3': + resolution: {integrity: sha512-0yhNp60yyYp7n7LzQyZhkxetsRGtjXTXlmsxJMCw4vHrG3IXYO1QhPTGaZbOI0ps3CAj2+jLV+Y1Aso7XJ7M9A==} - '@reown/appkit-ui@1.5.2': - resolution: {integrity: sha512-0bhvRkXzueC3yiyvWn1otFZRedLRfH52CW7mRC9mfb8/B7Ety6c0CB7oCdl2lI67MqeW1eEitBJ/DQW5zI38RA==} + '@reown/appkit-ui@1.5.3': + resolution: {integrity: sha512-5ho20npfusl945wY2tCq8nntkZLj5BNC/C6tSATPgatA8kmJD35SKcNWlL4EAAiQDOfxEmifoErtEcUd27h/gg==} - '@reown/appkit-utils@1.5.2': - resolution: {integrity: sha512-TCc7gdhk1t0Z5IWXGVeaadZ9DZOt5Z+SAmG7CTkjtpGoA9jFTn0pL5bvTQMMxin1lvaWycHXyp/x6mJhojCFUA==} + '@reown/appkit-utils@1.5.3': + resolution: {integrity: sha512-K0pF8sdt10BFDvkjvgLoXc7VOL5AmOzd9BqJw4IS60R9oDEDkfr/Wa/Bi+9LsLlYfwKh2H+TyvyIqHvhMjFviA==} peerDependencies: valtio: 1.11.2 - '@reown/appkit-wallet@1.5.2': - resolution: {integrity: sha512-OQs+nmfyT2/eyxhatp6GSjIuPDeab9cAgMKjf/1j1nOg/UykBNTmoHWpXWtYE5ZjgeUp8ApyAeASQWKwMOgIaw==} + '@reown/appkit-wallet@1.5.3': + resolution: {integrity: sha512-9lFcPNNebzICxGVsy8IAJqF5yNHWBZCvWBdcgMheK47/W/Mi6LwM7zTSZSonnpRYZ7gYJOqfaTdCd2KfOMI6JQ==} - '@reown/appkit@1.5.2': - resolution: {integrity: sha512-w7YDOi2fiYVmCTpM3M79fbqHgm6/WWf8I5pBKaKoTTttXm4M/D79mXQ6osEZ7ozKLhz0spyHi+TyjoGxT/PB3A==} + '@reown/appkit@1.5.3': + resolution: {integrity: sha512-Wh+JetSr0/AHow2lqp/3+v61rnCzaXWDBKXgBWCUxGhHrw+vpDeyEsLLLTAbBd3w0xsKRaO2gjW5k+Z53p1NRw==} '@rollup/rollup-android-arm-eabi@4.22.4': resolution: {integrity: sha512-Fxamp4aEZnfPOcGA8KSNEohV8hX7zVHOemC8jVBoBUHu5zpJK/Eu3uJwt6BMgy9fkvzxDaurgj96F/NiLukF2w==} @@ -6951,16 +6951,16 @@ snapshots: '@types/react': 18.3.9 optional: true - '@reown/appkit-adapter-solana@1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-adapter-solana@1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-scaffold-ui': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) + '@reown/appkit': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-scaffold-ui': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.3(bufferutil@4.0.8)(utf-8-validate@5.0.10)) '@solana/wallet-standard-features': 1.2.0 '@solana/wallet-standard-util': 1.1.1 @@ -6999,7 +6999,7 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-common@1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-common@1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: bignumber.js: 9.1.2 dayjs: 1.11.10 @@ -7010,10 +7010,10 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-core@1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-core@1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) valtio: 1.11.2(@types/react@18.3.9)(react@18.3.1) viem: 2.21.19(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) @@ -7040,17 +7040,17 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-polyfills@1.5.2': + '@reown/appkit-polyfills@1.5.3': dependencies: buffer: 6.0.3 - '@reown/appkit-scaffold-ui@1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4)': + '@reown/appkit-scaffold-ui@1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) lit: 3.1.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -7076,13 +7076,13 @@ snapshots: - valtio - zod - '@reown/appkit-siwe@1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-siwe@1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) '@walletconnect/utils': 2.17.0 lit: 3.1.0 valtio: 1.11.2(@types/react@18.3.9)(react@18.3.1) @@ -7109,17 +7109,17 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-ui@1.5.2': + '@reown/appkit-ui@1.5.3': dependencies: lit: 3.1.0 qrcode: 1.5.3 - '@reown/appkit-utils@1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4)': + '@reown/appkit-utils@1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) '@walletconnect/logger': 2.1.2 '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) valtio: 1.11.2(@types/react@18.3.9)(react@18.3.1) @@ -7147,10 +7147,10 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-wallet@1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)': + '@reown/appkit-wallet@1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 '@walletconnect/logger': 2.1.2 zod: 3.22.4 transitivePeerDependencies: @@ -7158,16 +7158,16 @@ snapshots: - typescript - utf-8-validate - '@reown/appkit@1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit@1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-scaffold-ui': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) - '@reown/appkit-siwe': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-scaffold-ui': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) + '@reown/appkit-siwe': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) '@walletconnect/types': 2.17.0 '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/utils': 2.17.0 diff --git a/react/react-solana/src/App.css b/react/react-solana/src/App.css index 473d21c..4b02a41 100644 --- a/react/react-solana/src/App.css +++ b/react/react-solana/src/App.css @@ -3,13 +3,6 @@ --foreground: #171717; } -@media (prefers-color-scheme: dark) { - :root { - --background: #0a0a0a; - --foreground: #ededed; - } -} - html, body { max-width: 100vw; diff --git a/react/react-solana/src/App.tsx b/react/react-solana/src/App.tsx index 86a6390..a46b3ab 100644 --- a/react/react-solana/src/App.tsx +++ b/react/react-solana/src/App.tsx @@ -10,6 +10,7 @@ import "./App.css" createAppKit({ projectId, metadata, + themeMode: 'light', networks: [solana, solanaTestnet, solanaDevnet], adapters: [solanaWeb3JsAdapter], }) diff --git a/react/react-wagmi/package.json b/react/react-wagmi/package.json index ed25d26..2b3893b 100644 --- a/react/react-wagmi/package.json +++ b/react/react-wagmi/package.json @@ -10,8 +10,8 @@ "preview": "vite preview" }, "dependencies": { - "@reown/appkit": "^1.5.2", - "@reown/appkit-adapter-wagmi": "^1.5.2", + "@reown/appkit": "^1.5.3", + "@reown/appkit-adapter-wagmi": "^1.5.3", "@tanstack/react-query": "^5.56.2", "react": "^18.3.1", "react-dom": "^18.3.1", diff --git a/react/react-wagmi/pnpm-lock.yaml b/react/react-wagmi/pnpm-lock.yaml index 3db6ca8..a502545 100644 --- a/react/react-wagmi/pnpm-lock.yaml +++ b/react/react-wagmi/pnpm-lock.yaml @@ -9,11 +9,11 @@ importers: .: dependencies: '@reown/appkit': - specifier: ^1.5.2 - version: 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + specifier: ^1.5.3 + version: 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) '@reown/appkit-adapter-wagmi': - specifier: ^1.5.2 - version: 1.5.2(jj7ah5yjseio7vpo2iy2x5pcwa) + specifier: ^1.5.3 + version: 1.5.3(jj7ah5yjseio7vpo2iy2x5pcwa) '@tanstack/react-query': specifier: ^5.56.2 version: 5.56.2(react@18.3.1) @@ -1339,8 +1339,8 @@ packages: '@types/react': optional: true - '@reown/appkit-adapter-wagmi@1.5.2': - resolution: {integrity: sha512-1z9EYT67OGtMI99bq0VHkpKT8D7hXwf8jVWQ7iVdB3JTuTvky9ghyvDsTQRPR/4oPuEQ3xBh8fMfoRUQi4cG+w==} + '@reown/appkit-adapter-wagmi@1.5.3': + resolution: {integrity: sha512-0qq7pPVsfKYO6TiHC8en2Dusce1xx5S7P5pPn+yxUyUdEsmpPJbk8CtLXGSqnxHz5qJ9hDb+4QVJIdEZ8gE9FA==} peerDependencies: '@coinbase/wallet-sdk': 4.0.3 '@wagmi/connectors': '>=5.1' @@ -1348,34 +1348,34 @@ packages: viem: 2.x wagmi: '>=2.12' - '@reown/appkit-common@1.5.2': - resolution: {integrity: sha512-dBFKIOxIdbU3R8KD/uwYKcsf5UbC1qoserzwdLDFn7GyOpBYKm0ZAY+3E4mt4HBS87R2Atn9tXYVL4wWPWbKMw==} + '@reown/appkit-common@1.5.3': + resolution: {integrity: sha512-b/NnXbPUJb11A42CNV5nCKsPv+QCgrB112aAJ+PuH7HTSAOiSNQND8w8VPW2UpjUPP/6ivLhUrHOapYUlA3BtQ==} - '@reown/appkit-core@1.5.2': - resolution: {integrity: sha512-822CVaELuRmzmPXke8i4mMl3eEgkPRWop6mAyRlQprQJHBRdw8GRHMBfI8UDDCsVFhiMN4G8endVFZCR6SQtmQ==} + '@reown/appkit-core@1.5.3': + resolution: {integrity: sha512-4vFS/pwJDE42bXmGRbsPVbZZSlBC+mHC2G5rFcYymRDcjc1xNeLCUEq84xLC+Xt8YNt/Yi2ghslwWztL2lDF5w==} - '@reown/appkit-polyfills@1.5.2': - resolution: {integrity: sha512-dXrzpg08+l1Kc7aDFadm8n/CRhabPLNWBJUYBM8+jXyG60k8FBdLqdyexyvwdHPwZdoflDuOCaQKPhPD5U17vw==} + '@reown/appkit-polyfills@1.5.3': + resolution: {integrity: sha512-SlRWZGPQJUtr68EtlNC5EXVzEsI7TM1PvwW36ZSE+9InRp2bxeySWdVntZrAQPvXIE7sZtRuJtIpC1fQ1hJnyw==} - '@reown/appkit-scaffold-ui@1.5.2': - resolution: {integrity: sha512-P8p7qtntzMTS1KuUjOZjslhk9fnHL8eu8sk1KVm7YsN1JlacIOI0UOXiDMrNVxtAWuwv0TTNQzYrvxV2p+uZkA==} + '@reown/appkit-scaffold-ui@1.5.3': + resolution: {integrity: sha512-6Y1jmyD8yRbgcdWrFvvFfDC9Q+20LyCNR4sizr4AT85fWhsHkRG6ywrVCu1fP5RtIEgabjDtsNNipCd13Q2e3w==} - '@reown/appkit-siwe@1.5.2': - resolution: {integrity: sha512-LAPTItnQWkIXEzZ5HQWVnZjN7Llujo3BWbinb6Gpm1u9aj7GOwnSyETWsjZzaTs4O3Ob9IKWXxOEusyCpiArkA==} + '@reown/appkit-siwe@1.5.3': + resolution: {integrity: sha512-0yhNp60yyYp7n7LzQyZhkxetsRGtjXTXlmsxJMCw4vHrG3IXYO1QhPTGaZbOI0ps3CAj2+jLV+Y1Aso7XJ7M9A==} - '@reown/appkit-ui@1.5.2': - resolution: {integrity: sha512-0bhvRkXzueC3yiyvWn1otFZRedLRfH52CW7mRC9mfb8/B7Ety6c0CB7oCdl2lI67MqeW1eEitBJ/DQW5zI38RA==} + '@reown/appkit-ui@1.5.3': + resolution: {integrity: sha512-5ho20npfusl945wY2tCq8nntkZLj5BNC/C6tSATPgatA8kmJD35SKcNWlL4EAAiQDOfxEmifoErtEcUd27h/gg==} - '@reown/appkit-utils@1.5.2': - resolution: {integrity: sha512-TCc7gdhk1t0Z5IWXGVeaadZ9DZOt5Z+SAmG7CTkjtpGoA9jFTn0pL5bvTQMMxin1lvaWycHXyp/x6mJhojCFUA==} + '@reown/appkit-utils@1.5.3': + resolution: {integrity: sha512-K0pF8sdt10BFDvkjvgLoXc7VOL5AmOzd9BqJw4IS60R9oDEDkfr/Wa/Bi+9LsLlYfwKh2H+TyvyIqHvhMjFviA==} peerDependencies: valtio: 1.11.2 - '@reown/appkit-wallet@1.5.2': - resolution: {integrity: sha512-OQs+nmfyT2/eyxhatp6GSjIuPDeab9cAgMKjf/1j1nOg/UykBNTmoHWpXWtYE5ZjgeUp8ApyAeASQWKwMOgIaw==} + '@reown/appkit-wallet@1.5.3': + resolution: {integrity: sha512-9lFcPNNebzICxGVsy8IAJqF5yNHWBZCvWBdcgMheK47/W/Mi6LwM7zTSZSonnpRYZ7gYJOqfaTdCd2KfOMI6JQ==} - '@reown/appkit@1.5.2': - resolution: {integrity: sha512-w7YDOi2fiYVmCTpM3M79fbqHgm6/WWf8I5pBKaKoTTttXm4M/D79mXQ6osEZ7ozKLhz0spyHi+TyjoGxT/PB3A==} + '@reown/appkit@1.5.3': + resolution: {integrity: sha512-Wh+JetSr0/AHow2lqp/3+v61rnCzaXWDBKXgBWCUxGhHrw+vpDeyEsLLLTAbBd3w0xsKRaO2gjW5k+Z53p1NRw==} '@rollup/rollup-android-arm-eabi@4.22.4': resolution: {integrity: sha512-Fxamp4aEZnfPOcGA8KSNEohV8hX7zVHOemC8jVBoBUHu5zpJK/Eu3uJwt6BMgy9fkvzxDaurgj96F/NiLukF2w==} @@ -6059,17 +6059,17 @@ snapshots: optionalDependencies: '@types/react': 18.3.9 - '@reown/appkit-adapter-wagmi@1.5.2(jj7ah5yjseio7vpo2iy2x5pcwa)': + '@reown/appkit-adapter-wagmi@1.5.3(jj7ah5yjseio7vpo2iy2x5pcwa)': dependencies: '@coinbase/wallet-sdk': 4.0.4 - '@reown/appkit': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-scaffold-ui': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) + '@reown/appkit': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-scaffold-ui': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) '@wagmi/connectors': 5.1.13(@types/react@18.3.9)(@wagmi/core@2.13.7(@tanstack/query-core@5.56.2)(@types/react@18.3.9)(react@18.3.1)(typescript@5.6.2)(viem@2.21.14(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.8)(react-dom@18.3.1(react@18.3.1))(react-native@0.75.3(@babel/core@7.25.2)(@babel/preset-env@7.25.4(@babel/core@7.25.2))(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10))(react@18.3.1)(rollup@4.22.4)(typescript@5.6.2)(utf-8-validate@5.0.10)(viem@2.21.14(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) '@wagmi/core': 2.13.7(@tanstack/query-core@5.56.2)(@types/react@18.3.9)(react@18.3.1)(typescript@5.6.2)(viem@2.21.14(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)) '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -6100,7 +6100,7 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-common@1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-common@1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: bignumber.js: 9.1.2 dayjs: 1.11.10 @@ -6111,10 +6111,10 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-core@1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-core@1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) valtio: 1.11.2(@types/react@18.3.9)(react@18.3.1) viem: 2.21.14(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) @@ -6141,17 +6141,17 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-polyfills@1.5.2': + '@reown/appkit-polyfills@1.5.3': dependencies: buffer: 6.0.3 - '@reown/appkit-scaffold-ui@1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4)': + '@reown/appkit-scaffold-ui@1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) lit: 3.1.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -6177,13 +6177,13 @@ snapshots: - valtio - zod - '@reown/appkit-siwe@1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-siwe@1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) '@walletconnect/utils': 2.17.0 lit: 3.1.0 valtio: 1.11.2(@types/react@18.3.9)(react@18.3.1) @@ -6210,17 +6210,17 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-ui@1.5.2': + '@reown/appkit-ui@1.5.3': dependencies: lit: 3.1.0 qrcode: 1.5.3 - '@reown/appkit-utils@1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4)': + '@reown/appkit-utils@1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) '@walletconnect/logger': 2.1.2 '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) valtio: 1.11.2(@types/react@18.3.9)(react@18.3.1) @@ -6248,10 +6248,10 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-wallet@1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)': + '@reown/appkit-wallet@1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 '@walletconnect/logger': 2.1.2 zod: 3.22.4 transitivePeerDependencies: @@ -6259,16 +6259,16 @@ snapshots: - typescript - utf-8-validate - '@reown/appkit@1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit@1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-scaffold-ui': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) - '@reown/appkit-siwe': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-scaffold-ui': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) + '@reown/appkit-siwe': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(@types/react@18.3.9)(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.2)(utf-8-validate@5.0.10)(valtio@1.11.2(@types/react@18.3.9)(react@18.3.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.2)(utf-8-validate@5.0.10) '@walletconnect/types': 2.17.0 '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/utils': 2.17.0 diff --git a/react/react-wagmi/src/App.css b/react/react-wagmi/src/App.css index 473d21c..4b02a41 100644 --- a/react/react-wagmi/src/App.css +++ b/react/react-wagmi/src/App.css @@ -3,13 +3,6 @@ --foreground: #171717; } -@media (prefers-color-scheme: dark) { - :root { - --background: #0a0a0a; - --foreground: #ededed; - } -} - html, body { max-width: 100vw; diff --git a/react/react-wagmi/src/App.tsx b/react/react-wagmi/src/App.tsx index 3200217..e731452 100644 --- a/react/react-wagmi/src/App.tsx +++ b/react/react-wagmi/src/App.tsx @@ -14,7 +14,8 @@ const queryClient = new QueryClient() const generalConfig = { projectId, metadata, - networks + networks, + themeMode: 'light' as const } // Create modal diff --git a/vue/vue-ethers/package.json b/vue/vue-ethers/package.json index 86a5867..e2a814b 100644 --- a/vue/vue-ethers/package.json +++ b/vue/vue-ethers/package.json @@ -11,8 +11,8 @@ "type-check": "vue-tsc --build --force" }, "dependencies": { - "@reown/appkit": "^1.5.2", - "@reown/appkit-adapter-ethers": "^1.5.2", + "@reown/appkit": "^1.5.3", + "@reown/appkit-adapter-ethers": "^1.5.3", "ethers": "^6.13.4", "vue": "^3.5.12" }, diff --git a/vue/vue-ethers/pnpm-lock.yaml b/vue/vue-ethers/pnpm-lock.yaml index 7345979..aace5ad 100644 --- a/vue/vue-ethers/pnpm-lock.yaml +++ b/vue/vue-ethers/pnpm-lock.yaml @@ -9,11 +9,11 @@ importers: .: dependencies: '@reown/appkit': - specifier: ^1.5.2 - version: 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + specifier: ^1.5.3 + version: 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) '@reown/appkit-adapter-ethers': - specifier: ^1.5.2 - version: 1.5.2(@coinbase/wallet-sdk@4.0.3)(@ethersproject/sha2@5.7.0)(bufferutil@4.0.8)(ethers@6.13.4(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + specifier: ^1.5.3 + version: 1.5.3(@coinbase/wallet-sdk@4.0.3)(@ethersproject/sha2@5.7.0)(bufferutil@4.0.8)(ethers@6.13.4(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) ethers: specifier: ^6.13.4 version: 6.13.4(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -448,41 +448,41 @@ packages: resolution: {integrity: sha512-HNjmfLQEVRZmHRET336f20H/8kOozUGwk7yajvsonjNxbj2wBTK1WsQuHkD5yYh9RxFGL2EyDHryOihOwUoKDA==} engines: {node: '>= 10.0.0'} - '@reown/appkit-adapter-ethers@1.5.2': - resolution: {integrity: sha512-HdCmZCmUI8LONjr3iC4KDah4eah61o+VNmYyTNR1CF4+2ua4xb950cAOkibBtj617P6bAELMNpEzV7wO/FBwsQ==} + '@reown/appkit-adapter-ethers@1.5.3': + resolution: {integrity: sha512-u1nQGAJfKji7ss62WHgBRRPWyMm7cujcoWcGHsl0c1XxukSEgC9LZvMeQ2yX9zHb1COtMyUQpZZ1sSlgDMhuCQ==} peerDependencies: '@coinbase/wallet-sdk': 4.0.3 '@ethersproject/sha2': 5.7.0 ethers: '>=6' - '@reown/appkit-common@1.5.2': - resolution: {integrity: sha512-dBFKIOxIdbU3R8KD/uwYKcsf5UbC1qoserzwdLDFn7GyOpBYKm0ZAY+3E4mt4HBS87R2Atn9tXYVL4wWPWbKMw==} + '@reown/appkit-common@1.5.3': + resolution: {integrity: sha512-b/NnXbPUJb11A42CNV5nCKsPv+QCgrB112aAJ+PuH7HTSAOiSNQND8w8VPW2UpjUPP/6ivLhUrHOapYUlA3BtQ==} - '@reown/appkit-core@1.5.2': - resolution: {integrity: sha512-822CVaELuRmzmPXke8i4mMl3eEgkPRWop6mAyRlQprQJHBRdw8GRHMBfI8UDDCsVFhiMN4G8endVFZCR6SQtmQ==} + '@reown/appkit-core@1.5.3': + resolution: {integrity: sha512-4vFS/pwJDE42bXmGRbsPVbZZSlBC+mHC2G5rFcYymRDcjc1xNeLCUEq84xLC+Xt8YNt/Yi2ghslwWztL2lDF5w==} - '@reown/appkit-polyfills@1.5.2': - resolution: {integrity: sha512-dXrzpg08+l1Kc7aDFadm8n/CRhabPLNWBJUYBM8+jXyG60k8FBdLqdyexyvwdHPwZdoflDuOCaQKPhPD5U17vw==} + '@reown/appkit-polyfills@1.5.3': + resolution: {integrity: sha512-SlRWZGPQJUtr68EtlNC5EXVzEsI7TM1PvwW36ZSE+9InRp2bxeySWdVntZrAQPvXIE7sZtRuJtIpC1fQ1hJnyw==} - '@reown/appkit-scaffold-ui@1.5.2': - resolution: {integrity: sha512-P8p7qtntzMTS1KuUjOZjslhk9fnHL8eu8sk1KVm7YsN1JlacIOI0UOXiDMrNVxtAWuwv0TTNQzYrvxV2p+uZkA==} + '@reown/appkit-scaffold-ui@1.5.3': + resolution: {integrity: sha512-6Y1jmyD8yRbgcdWrFvvFfDC9Q+20LyCNR4sizr4AT85fWhsHkRG6ywrVCu1fP5RtIEgabjDtsNNipCd13Q2e3w==} - '@reown/appkit-siwe@1.5.2': - resolution: {integrity: sha512-LAPTItnQWkIXEzZ5HQWVnZjN7Llujo3BWbinb6Gpm1u9aj7GOwnSyETWsjZzaTs4O3Ob9IKWXxOEusyCpiArkA==} + '@reown/appkit-siwe@1.5.3': + resolution: {integrity: sha512-0yhNp60yyYp7n7LzQyZhkxetsRGtjXTXlmsxJMCw4vHrG3IXYO1QhPTGaZbOI0ps3CAj2+jLV+Y1Aso7XJ7M9A==} - '@reown/appkit-ui@1.5.2': - resolution: {integrity: sha512-0bhvRkXzueC3yiyvWn1otFZRedLRfH52CW7mRC9mfb8/B7Ety6c0CB7oCdl2lI67MqeW1eEitBJ/DQW5zI38RA==} + '@reown/appkit-ui@1.5.3': + resolution: {integrity: sha512-5ho20npfusl945wY2tCq8nntkZLj5BNC/C6tSATPgatA8kmJD35SKcNWlL4EAAiQDOfxEmifoErtEcUd27h/gg==} - '@reown/appkit-utils@1.5.2': - resolution: {integrity: sha512-TCc7gdhk1t0Z5IWXGVeaadZ9DZOt5Z+SAmG7CTkjtpGoA9jFTn0pL5bvTQMMxin1lvaWycHXyp/x6mJhojCFUA==} + '@reown/appkit-utils@1.5.3': + resolution: {integrity: sha512-K0pF8sdt10BFDvkjvgLoXc7VOL5AmOzd9BqJw4IS60R9oDEDkfr/Wa/Bi+9LsLlYfwKh2H+TyvyIqHvhMjFviA==} peerDependencies: valtio: 1.11.2 - '@reown/appkit-wallet@1.5.2': - resolution: {integrity: sha512-OQs+nmfyT2/eyxhatp6GSjIuPDeab9cAgMKjf/1j1nOg/UykBNTmoHWpXWtYE5ZjgeUp8ApyAeASQWKwMOgIaw==} + '@reown/appkit-wallet@1.5.3': + resolution: {integrity: sha512-9lFcPNNebzICxGVsy8IAJqF5yNHWBZCvWBdcgMheK47/W/Mi6LwM7zTSZSonnpRYZ7gYJOqfaTdCd2KfOMI6JQ==} - '@reown/appkit@1.5.2': - resolution: {integrity: sha512-w7YDOi2fiYVmCTpM3M79fbqHgm6/WWf8I5pBKaKoTTttXm4M/D79mXQ6osEZ7ozKLhz0spyHi+TyjoGxT/PB3A==} + '@reown/appkit@1.5.3': + resolution: {integrity: sha512-Wh+JetSr0/AHow2lqp/3+v61rnCzaXWDBKXgBWCUxGhHrw+vpDeyEsLLLTAbBd3w0xsKRaO2gjW5k+Z53p1NRw==} '@rollup/rollup-android-arm-eabi@4.24.3': resolution: {integrity: sha512-ufb2CH2KfBWPJok95frEZZ82LtDl0A6QKTa8MoM+cWwDZvVGl5/jNb79pIhRvAalUu+7LD91VYR0nwRD799HkQ==} @@ -2196,18 +2196,18 @@ snapshots: '@parcel/watcher-win32-ia32': 2.4.1 '@parcel/watcher-win32-x64': 2.4.1 - '@reown/appkit-adapter-ethers@1.5.2(@coinbase/wallet-sdk@4.0.3)(@ethersproject/sha2@5.7.0)(bufferutil@4.0.8)(ethers@6.13.4(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-adapter-ethers@1.5.3(@coinbase/wallet-sdk@4.0.3)(@ethersproject/sha2@5.7.0)(bufferutil@4.0.8)(ethers@6.13.4(bufferutil@4.0.8)(utf-8-validate@5.0.10))(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: '@coinbase/wallet-sdk': 4.0.3 '@ethersproject/sha2': 5.7.0 - '@reown/appkit': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-scaffold-ui': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-scaffold-ui': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/utils': 2.17.0 ethers: 6.13.4(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -2234,7 +2234,7 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-common@1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-common@1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: bignumber.js: 9.1.2 dayjs: 1.11.10 @@ -2245,10 +2245,10 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-core@1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-core@1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) valtio: 1.11.2(react@16.13.1) viem: 2.21.39(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) @@ -2274,17 +2274,17 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-polyfills@1.5.2': + '@reown/appkit-polyfills@1.5.3': dependencies: buffer: 6.0.3 - '@reown/appkit-scaffold-ui@1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4)': + '@reown/appkit-scaffold-ui@1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) lit: 3.1.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -2309,13 +2309,13 @@ snapshots: - valtio - zod - '@reown/appkit-siwe@1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-siwe@1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@walletconnect/utils': 2.17.0 lit: 3.1.0 valtio: 1.11.2(react@16.13.1) @@ -2341,17 +2341,17 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-ui@1.5.2': + '@reown/appkit-ui@1.5.3': dependencies: lit: 3.1.0 qrcode: 1.5.3 - '@reown/appkit-utils@1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4)': + '@reown/appkit-utils@1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@walletconnect/logger': 2.1.2 '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) valtio: 1.11.2(react@16.13.1) @@ -2378,10 +2378,10 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-wallet@1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)': + '@reown/appkit-wallet@1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 '@walletconnect/logger': 2.1.2 zod: 3.22.4 transitivePeerDependencies: @@ -2389,16 +2389,16 @@ snapshots: - typescript - utf-8-validate - '@reown/appkit@1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit@1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-scaffold-ui': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) - '@reown/appkit-siwe': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-scaffold-ui': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) + '@reown/appkit-siwe': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@walletconnect/types': 2.17.0 '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/utils': 2.17.0 diff --git a/vue/vue-ethers/src/App.vue b/vue/vue-ethers/src/App.vue index 3561c27..3f1342c 100644 --- a/vue/vue-ethers/src/App.vue +++ b/vue/vue-ethers/src/App.vue @@ -31,6 +31,7 @@ createAppKit({ adapters: [ethersAdapter], networks, projectId, + themeMode: 'light', metadata: { name: 'AppKit Vue Example', description: 'AppKit Vue Example', diff --git a/vue/vue-ethers/src/assets/main.css b/vue/vue-ethers/src/assets/main.css index 473d21c..4b02a41 100644 --- a/vue/vue-ethers/src/assets/main.css +++ b/vue/vue-ethers/src/assets/main.css @@ -3,13 +3,6 @@ --foreground: #171717; } -@media (prefers-color-scheme: dark) { - :root { - --background: #0a0a0a; - --foreground: #ededed; - } -} - html, body { max-width: 100vw; diff --git a/vue/vue-multichain/package.json b/vue/vue-multichain/package.json index c2ef671..aa1414b 100644 --- a/vue/vue-multichain/package.json +++ b/vue/vue-multichain/package.json @@ -11,9 +11,9 @@ "type-check": "vue-tsc --build --force" }, "dependencies": { - "@reown/appkit": "^1.5.2", - "@reown/appkit-adapter-solana": "^1.5.2", - "@reown/appkit-adapter-wagmi": "^1.5.2", + "@reown/appkit": "^1.5.3", + "@reown/appkit-adapter-solana": "^1.5.3", + "@reown/appkit-adapter-wagmi": "^1.5.3", "@solana/wallet-adapter-wallets": "^0.19.32", "@tanstack/vue-query": "^5.59.16", "@wagmi/vue": "^0.0.56", diff --git a/vue/vue-multichain/pnpm-lock.yaml b/vue/vue-multichain/pnpm-lock.yaml index 10212e6..7bf7d5a 100644 --- a/vue/vue-multichain/pnpm-lock.yaml +++ b/vue/vue-multichain/pnpm-lock.yaml @@ -9,14 +9,14 @@ importers: .: dependencies: '@reown/appkit': - specifier: ^1.5.2 - version: 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + specifier: ^1.5.3 + version: 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) '@reown/appkit-adapter-solana': - specifier: ^1.5.2 - version: 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + specifier: ^1.5.3 + version: 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) '@reown/appkit-adapter-wagmi': - specifier: ^1.5.2 - version: 1.5.2(eizpi5hxo7fj34wgbcbxjizxuu) + specifier: ^1.5.3 + version: 1.5.3(eizpi5hxo7fj34wgbcbxjizxuu) '@solana/wallet-adapter-wallets': specifier: ^0.19.32 version: 0.19.32(@babel/core@7.26.0)(@babel/runtime@7.26.0)(@solana/web3.js@1.95.3(bufferutil@4.0.8)(utf-8-validate@5.0.10))(bs58@6.0.0)(bufferutil@4.0.8)(react-dom@16.13.1(react@16.13.1))(react-native@0.76.1(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(bufferutil@4.0.8)(react@16.13.1)(utf-8-validate@5.0.10))(react@16.13.1)(tslib@2.8.1)(utf-8-validate@5.0.10) @@ -1398,11 +1398,11 @@ packages: '@types/react': optional: true - '@reown/appkit-adapter-solana@1.5.2': - resolution: {integrity: sha512-/D0SQrhundgQ1AY28wbI3Ro33sF7/CRzWXFBIrFtxhjXKeiRUc5uzl/R/j14SCN4thbFc4q1oqL2dUlWxovyKA==} + '@reown/appkit-adapter-solana@1.5.3': + resolution: {integrity: sha512-Gz1hji0vcLZh+fiUmxDKtlkzFReYxrcY5Rd4RrlZTzgvPFlBSjd8DMeYdk4qLU56SqdK8ROR/mnsQk2LOrTyVA==} - '@reown/appkit-adapter-wagmi@1.5.2': - resolution: {integrity: sha512-1z9EYT67OGtMI99bq0VHkpKT8D7hXwf8jVWQ7iVdB3JTuTvky9ghyvDsTQRPR/4oPuEQ3xBh8fMfoRUQi4cG+w==} + '@reown/appkit-adapter-wagmi@1.5.3': + resolution: {integrity: sha512-0qq7pPVsfKYO6TiHC8en2Dusce1xx5S7P5pPn+yxUyUdEsmpPJbk8CtLXGSqnxHz5qJ9hDb+4QVJIdEZ8gE9FA==} peerDependencies: '@coinbase/wallet-sdk': 4.0.3 '@wagmi/connectors': '>=5.1' @@ -1410,34 +1410,34 @@ packages: viem: 2.x wagmi: '>=2.12' - '@reown/appkit-common@1.5.2': - resolution: {integrity: sha512-dBFKIOxIdbU3R8KD/uwYKcsf5UbC1qoserzwdLDFn7GyOpBYKm0ZAY+3E4mt4HBS87R2Atn9tXYVL4wWPWbKMw==} + '@reown/appkit-common@1.5.3': + resolution: {integrity: sha512-b/NnXbPUJb11A42CNV5nCKsPv+QCgrB112aAJ+PuH7HTSAOiSNQND8w8VPW2UpjUPP/6ivLhUrHOapYUlA3BtQ==} - '@reown/appkit-core@1.5.2': - resolution: {integrity: sha512-822CVaELuRmzmPXke8i4mMl3eEgkPRWop6mAyRlQprQJHBRdw8GRHMBfI8UDDCsVFhiMN4G8endVFZCR6SQtmQ==} + '@reown/appkit-core@1.5.3': + resolution: {integrity: sha512-4vFS/pwJDE42bXmGRbsPVbZZSlBC+mHC2G5rFcYymRDcjc1xNeLCUEq84xLC+Xt8YNt/Yi2ghslwWztL2lDF5w==} - '@reown/appkit-polyfills@1.5.2': - resolution: {integrity: sha512-dXrzpg08+l1Kc7aDFadm8n/CRhabPLNWBJUYBM8+jXyG60k8FBdLqdyexyvwdHPwZdoflDuOCaQKPhPD5U17vw==} + '@reown/appkit-polyfills@1.5.3': + resolution: {integrity: sha512-SlRWZGPQJUtr68EtlNC5EXVzEsI7TM1PvwW36ZSE+9InRp2bxeySWdVntZrAQPvXIE7sZtRuJtIpC1fQ1hJnyw==} - '@reown/appkit-scaffold-ui@1.5.2': - resolution: {integrity: sha512-P8p7qtntzMTS1KuUjOZjslhk9fnHL8eu8sk1KVm7YsN1JlacIOI0UOXiDMrNVxtAWuwv0TTNQzYrvxV2p+uZkA==} + '@reown/appkit-scaffold-ui@1.5.3': + resolution: {integrity: sha512-6Y1jmyD8yRbgcdWrFvvFfDC9Q+20LyCNR4sizr4AT85fWhsHkRG6ywrVCu1fP5RtIEgabjDtsNNipCd13Q2e3w==} - '@reown/appkit-siwe@1.5.2': - resolution: {integrity: sha512-LAPTItnQWkIXEzZ5HQWVnZjN7Llujo3BWbinb6Gpm1u9aj7GOwnSyETWsjZzaTs4O3Ob9IKWXxOEusyCpiArkA==} + '@reown/appkit-siwe@1.5.3': + resolution: {integrity: sha512-0yhNp60yyYp7n7LzQyZhkxetsRGtjXTXlmsxJMCw4vHrG3IXYO1QhPTGaZbOI0ps3CAj2+jLV+Y1Aso7XJ7M9A==} - '@reown/appkit-ui@1.5.2': - resolution: {integrity: sha512-0bhvRkXzueC3yiyvWn1otFZRedLRfH52CW7mRC9mfb8/B7Ety6c0CB7oCdl2lI67MqeW1eEitBJ/DQW5zI38RA==} + '@reown/appkit-ui@1.5.3': + resolution: {integrity: sha512-5ho20npfusl945wY2tCq8nntkZLj5BNC/C6tSATPgatA8kmJD35SKcNWlL4EAAiQDOfxEmifoErtEcUd27h/gg==} - '@reown/appkit-utils@1.5.2': - resolution: {integrity: sha512-TCc7gdhk1t0Z5IWXGVeaadZ9DZOt5Z+SAmG7CTkjtpGoA9jFTn0pL5bvTQMMxin1lvaWycHXyp/x6mJhojCFUA==} + '@reown/appkit-utils@1.5.3': + resolution: {integrity: sha512-K0pF8sdt10BFDvkjvgLoXc7VOL5AmOzd9BqJw4IS60R9oDEDkfr/Wa/Bi+9LsLlYfwKh2H+TyvyIqHvhMjFviA==} peerDependencies: valtio: 1.11.2 - '@reown/appkit-wallet@1.5.2': - resolution: {integrity: sha512-OQs+nmfyT2/eyxhatp6GSjIuPDeab9cAgMKjf/1j1nOg/UykBNTmoHWpXWtYE5ZjgeUp8ApyAeASQWKwMOgIaw==} + '@reown/appkit-wallet@1.5.3': + resolution: {integrity: sha512-9lFcPNNebzICxGVsy8IAJqF5yNHWBZCvWBdcgMheK47/W/Mi6LwM7zTSZSonnpRYZ7gYJOqfaTdCd2KfOMI6JQ==} - '@reown/appkit@1.5.2': - resolution: {integrity: sha512-w7YDOi2fiYVmCTpM3M79fbqHgm6/WWf8I5pBKaKoTTttXm4M/D79mXQ6osEZ7ozKLhz0spyHi+TyjoGxT/PB3A==} + '@reown/appkit@1.5.3': + resolution: {integrity: sha512-Wh+JetSr0/AHow2lqp/3+v61rnCzaXWDBKXgBWCUxGhHrw+vpDeyEsLLLTAbBd3w0xsKRaO2gjW5k+Z53p1NRw==} '@rollup/rollup-android-arm-eabi@4.24.3': resolution: {integrity: sha512-ufb2CH2KfBWPJok95frEZZ82LtDl0A6QKTa8MoM+cWwDZvVGl5/jNb79pIhRvAalUu+7LD91VYR0nwRD799HkQ==} @@ -6843,16 +6843,16 @@ snapshots: react: 16.13.1 react-native: 0.76.1(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(bufferutil@4.0.8)(react@16.13.1)(utf-8-validate@5.0.10) - '@reown/appkit-adapter-solana@1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-adapter-solana@1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-scaffold-ui': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-scaffold-ui': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.3(bufferutil@4.0.8)(utf-8-validate@5.0.10)) '@solana/wallet-standard-features': 1.2.0 '@solana/wallet-standard-util': 1.1.1 @@ -6890,17 +6890,17 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-adapter-wagmi@1.5.2(eizpi5hxo7fj34wgbcbxjizxuu)': + '@reown/appkit-adapter-wagmi@1.5.3(eizpi5hxo7fj34wgbcbxjizxuu)': dependencies: '@coinbase/wallet-sdk': 4.1.0 - '@reown/appkit': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-scaffold-ui': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-scaffold-ui': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@wagmi/connectors': 5.3.3(@wagmi/core@2.14.1(@tanstack/query-core@5.59.16)(react@16.13.1)(typescript@5.6.3)(use-sync-external-store@1.2.0(react@16.13.1))(viem@2.21.39(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.8)(react-dom@16.13.1(react@16.13.1))(react-native@0.76.1(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(bufferutil@4.0.8)(react@16.13.1)(utf-8-validate@5.0.10))(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.21.39(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) '@wagmi/core': 2.14.1(@tanstack/query-core@5.59.16)(react@16.13.1)(typescript@5.6.3)(use-sync-external-store@1.2.0(react@16.13.1))(viem@2.21.39(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)) '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -6930,7 +6930,7 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-common@1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-common@1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: bignumber.js: 9.1.2 dayjs: 1.11.10 @@ -6941,10 +6941,10 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-core@1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-core@1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) valtio: 1.11.2(react@16.13.1) viem: 2.21.39(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) @@ -6970,17 +6970,17 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-polyfills@1.5.2': + '@reown/appkit-polyfills@1.5.3': dependencies: buffer: 6.0.3 - '@reown/appkit-scaffold-ui@1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4)': + '@reown/appkit-scaffold-ui@1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) lit: 3.1.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -7005,13 +7005,13 @@ snapshots: - valtio - zod - '@reown/appkit-siwe@1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-siwe@1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@walletconnect/utils': 2.17.0 lit: 3.1.0 valtio: 1.11.2(react@16.13.1) @@ -7037,17 +7037,17 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-ui@1.5.2': + '@reown/appkit-ui@1.5.3': dependencies: lit: 3.1.0 qrcode: 1.5.3 - '@reown/appkit-utils@1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4)': + '@reown/appkit-utils@1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@walletconnect/logger': 2.1.2 '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) valtio: 1.11.2(react@16.13.1) @@ -7074,10 +7074,10 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-wallet@1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)': + '@reown/appkit-wallet@1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 '@walletconnect/logger': 2.1.2 zod: 3.22.4 transitivePeerDependencies: @@ -7085,16 +7085,16 @@ snapshots: - typescript - utf-8-validate - '@reown/appkit@1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit@1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-scaffold-ui': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) - '@reown/appkit-siwe': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-scaffold-ui': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) + '@reown/appkit-siwe': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@walletconnect/types': 2.17.0 '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/utils': 2.17.0 diff --git a/vue/vue-multichain/src/App.vue b/vue/vue-multichain/src/App.vue index fdcef59..416d1d8 100644 --- a/vue/vue-multichain/src/App.vue +++ b/vue/vue-multichain/src/App.vue @@ -31,6 +31,7 @@ createAppKit({ adapters: [wagmiAdapter, solanaWeb3JsAdapter], networks, projectId, + themeMode: 'light', metadata: { name: 'AppKit Vue Example', description: 'AppKit Vue Example', diff --git a/vue/vue-multichain/src/assets/main.css b/vue/vue-multichain/src/assets/main.css index 473d21c..4b02a41 100644 --- a/vue/vue-multichain/src/assets/main.css +++ b/vue/vue-multichain/src/assets/main.css @@ -3,13 +3,6 @@ --foreground: #171717; } -@media (prefers-color-scheme: dark) { - :root { - --background: #0a0a0a; - --foreground: #ededed; - } -} - html, body { max-width: 100vw; diff --git a/vue/vue-solana/package.json b/vue/vue-solana/package.json index f29fc92..5d3f77c 100644 --- a/vue/vue-solana/package.json +++ b/vue/vue-solana/package.json @@ -11,8 +11,8 @@ "type-check": "vue-tsc --build --force" }, "dependencies": { - "@reown/appkit": "^1.5.2", - "@reown/appkit-adapter-solana": "^1.5.2", + "@reown/appkit": "^1.5.3", + "@reown/appkit-adapter-solana": "^1.5.3", "@solana/wallet-adapter-wallets": "^0.19.32", "viem": "^2.21.39", "vue": "^3.5.12" diff --git a/vue/vue-solana/pnpm-lock.yaml b/vue/vue-solana/pnpm-lock.yaml index 8b7a437..8a847c4 100644 --- a/vue/vue-solana/pnpm-lock.yaml +++ b/vue/vue-solana/pnpm-lock.yaml @@ -9,11 +9,11 @@ importers: .: dependencies: '@reown/appkit': - specifier: ^1.5.2 - version: 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + specifier: ^1.5.3 + version: 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) '@reown/appkit-adapter-solana': - specifier: ^1.5.2 - version: 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + specifier: ^1.5.3 + version: 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) '@solana/wallet-adapter-wallets': specifier: ^0.19.32 version: 0.19.32(@babel/core@7.26.0)(@babel/runtime@7.26.0)(@solana/web3.js@1.95.3(bufferutil@4.0.8)(utf-8-validate@5.0.10))(bs58@6.0.0)(bufferutil@4.0.8)(react-dom@16.13.1(react@16.13.1))(react-native@0.76.1(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(bufferutil@4.0.8)(react@16.13.1)(utf-8-validate@5.0.10))(react@16.13.1)(tslib@2.8.1)(utf-8-validate@5.0.10) @@ -1260,37 +1260,37 @@ packages: '@types/react': optional: true - '@reown/appkit-adapter-solana@1.5.2': - resolution: {integrity: sha512-/D0SQrhundgQ1AY28wbI3Ro33sF7/CRzWXFBIrFtxhjXKeiRUc5uzl/R/j14SCN4thbFc4q1oqL2dUlWxovyKA==} + '@reown/appkit-adapter-solana@1.5.3': + resolution: {integrity: sha512-Gz1hji0vcLZh+fiUmxDKtlkzFReYxrcY5Rd4RrlZTzgvPFlBSjd8DMeYdk4qLU56SqdK8ROR/mnsQk2LOrTyVA==} - '@reown/appkit-common@1.5.2': - resolution: {integrity: sha512-dBFKIOxIdbU3R8KD/uwYKcsf5UbC1qoserzwdLDFn7GyOpBYKm0ZAY+3E4mt4HBS87R2Atn9tXYVL4wWPWbKMw==} + '@reown/appkit-common@1.5.3': + resolution: {integrity: sha512-b/NnXbPUJb11A42CNV5nCKsPv+QCgrB112aAJ+PuH7HTSAOiSNQND8w8VPW2UpjUPP/6ivLhUrHOapYUlA3BtQ==} - '@reown/appkit-core@1.5.2': - resolution: {integrity: sha512-822CVaELuRmzmPXke8i4mMl3eEgkPRWop6mAyRlQprQJHBRdw8GRHMBfI8UDDCsVFhiMN4G8endVFZCR6SQtmQ==} + '@reown/appkit-core@1.5.3': + resolution: {integrity: sha512-4vFS/pwJDE42bXmGRbsPVbZZSlBC+mHC2G5rFcYymRDcjc1xNeLCUEq84xLC+Xt8YNt/Yi2ghslwWztL2lDF5w==} - '@reown/appkit-polyfills@1.5.2': - resolution: {integrity: sha512-dXrzpg08+l1Kc7aDFadm8n/CRhabPLNWBJUYBM8+jXyG60k8FBdLqdyexyvwdHPwZdoflDuOCaQKPhPD5U17vw==} + '@reown/appkit-polyfills@1.5.3': + resolution: {integrity: sha512-SlRWZGPQJUtr68EtlNC5EXVzEsI7TM1PvwW36ZSE+9InRp2bxeySWdVntZrAQPvXIE7sZtRuJtIpC1fQ1hJnyw==} - '@reown/appkit-scaffold-ui@1.5.2': - resolution: {integrity: sha512-P8p7qtntzMTS1KuUjOZjslhk9fnHL8eu8sk1KVm7YsN1JlacIOI0UOXiDMrNVxtAWuwv0TTNQzYrvxV2p+uZkA==} + '@reown/appkit-scaffold-ui@1.5.3': + resolution: {integrity: sha512-6Y1jmyD8yRbgcdWrFvvFfDC9Q+20LyCNR4sizr4AT85fWhsHkRG6ywrVCu1fP5RtIEgabjDtsNNipCd13Q2e3w==} - '@reown/appkit-siwe@1.5.2': - resolution: {integrity: sha512-LAPTItnQWkIXEzZ5HQWVnZjN7Llujo3BWbinb6Gpm1u9aj7GOwnSyETWsjZzaTs4O3Ob9IKWXxOEusyCpiArkA==} + '@reown/appkit-siwe@1.5.3': + resolution: {integrity: sha512-0yhNp60yyYp7n7LzQyZhkxetsRGtjXTXlmsxJMCw4vHrG3IXYO1QhPTGaZbOI0ps3CAj2+jLV+Y1Aso7XJ7M9A==} - '@reown/appkit-ui@1.5.2': - resolution: {integrity: sha512-0bhvRkXzueC3yiyvWn1otFZRedLRfH52CW7mRC9mfb8/B7Ety6c0CB7oCdl2lI67MqeW1eEitBJ/DQW5zI38RA==} + '@reown/appkit-ui@1.5.3': + resolution: {integrity: sha512-5ho20npfusl945wY2tCq8nntkZLj5BNC/C6tSATPgatA8kmJD35SKcNWlL4EAAiQDOfxEmifoErtEcUd27h/gg==} - '@reown/appkit-utils@1.5.2': - resolution: {integrity: sha512-TCc7gdhk1t0Z5IWXGVeaadZ9DZOt5Z+SAmG7CTkjtpGoA9jFTn0pL5bvTQMMxin1lvaWycHXyp/x6mJhojCFUA==} + '@reown/appkit-utils@1.5.3': + resolution: {integrity: sha512-K0pF8sdt10BFDvkjvgLoXc7VOL5AmOzd9BqJw4IS60R9oDEDkfr/Wa/Bi+9LsLlYfwKh2H+TyvyIqHvhMjFviA==} peerDependencies: valtio: 1.11.2 - '@reown/appkit-wallet@1.5.2': - resolution: {integrity: sha512-OQs+nmfyT2/eyxhatp6GSjIuPDeab9cAgMKjf/1j1nOg/UykBNTmoHWpXWtYE5ZjgeUp8ApyAeASQWKwMOgIaw==} + '@reown/appkit-wallet@1.5.3': + resolution: {integrity: sha512-9lFcPNNebzICxGVsy8IAJqF5yNHWBZCvWBdcgMheK47/W/Mi6LwM7zTSZSonnpRYZ7gYJOqfaTdCd2KfOMI6JQ==} - '@reown/appkit@1.5.2': - resolution: {integrity: sha512-w7YDOi2fiYVmCTpM3M79fbqHgm6/WWf8I5pBKaKoTTttXm4M/D79mXQ6osEZ7ozKLhz0spyHi+TyjoGxT/PB3A==} + '@reown/appkit@1.5.3': + resolution: {integrity: sha512-Wh+JetSr0/AHow2lqp/3+v61rnCzaXWDBKXgBWCUxGhHrw+vpDeyEsLLLTAbBd3w0xsKRaO2gjW5k+Z53p1NRw==} '@rollup/rollup-android-arm-eabi@4.24.3': resolution: {integrity: sha512-ufb2CH2KfBWPJok95frEZZ82LtDl0A6QKTa8MoM+cWwDZvVGl5/jNb79pIhRvAalUu+7LD91VYR0nwRD799HkQ==} @@ -6343,16 +6343,16 @@ snapshots: react-native: 0.76.1(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(bufferutil@4.0.8)(react@16.13.1)(utf-8-validate@5.0.10) optional: true - '@reown/appkit-adapter-solana@1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-adapter-solana@1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-scaffold-ui': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-scaffold-ui': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@solana/wallet-adapter-base': 0.9.23(@solana/web3.js@1.95.3(bufferutil@4.0.8)(utf-8-validate@5.0.10)) '@solana/wallet-standard-features': 1.2.0 '@solana/wallet-standard-util': 1.1.1 @@ -6390,7 +6390,7 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-common@1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-common@1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: bignumber.js: 9.1.2 dayjs: 1.11.10 @@ -6401,10 +6401,10 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-core@1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-core@1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) valtio: 1.11.2(react@16.13.1) viem: 2.21.39(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) @@ -6430,17 +6430,17 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-polyfills@1.5.2': + '@reown/appkit-polyfills@1.5.3': dependencies: buffer: 6.0.3 - '@reown/appkit-scaffold-ui@1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4)': + '@reown/appkit-scaffold-ui@1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) lit: 3.1.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -6465,13 +6465,13 @@ snapshots: - valtio - zod - '@reown/appkit-siwe@1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-siwe@1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@walletconnect/utils': 2.17.0 lit: 3.1.0 valtio: 1.11.2(react@16.13.1) @@ -6497,17 +6497,17 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-ui@1.5.2': + '@reown/appkit-ui@1.5.3': dependencies: lit: 3.1.0 qrcode: 1.5.3 - '@reown/appkit-utils@1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4)': + '@reown/appkit-utils@1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@walletconnect/logger': 2.1.2 '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) valtio: 1.11.2(react@16.13.1) @@ -6534,10 +6534,10 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-wallet@1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)': + '@reown/appkit-wallet@1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 '@walletconnect/logger': 2.1.2 zod: 3.22.4 transitivePeerDependencies: @@ -6545,16 +6545,16 @@ snapshots: - typescript - utf-8-validate - '@reown/appkit@1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit@1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-scaffold-ui': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) - '@reown/appkit-siwe': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-scaffold-ui': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) + '@reown/appkit-siwe': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(bufferutil@4.0.8)(react@16.13.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@16.13.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@walletconnect/types': 2.17.0 '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/utils': 2.17.0 diff --git a/vue/vue-solana/src/App.vue b/vue/vue-solana/src/App.vue index 5d0f137..f3fb710 100644 --- a/vue/vue-solana/src/App.vue +++ b/vue/vue-solana/src/App.vue @@ -31,6 +31,7 @@ createAppKit({ adapters: [solanaWeb3JsAdapter], networks, projectId, + themeMode: 'light', metadata: { name: 'AppKit Vue Example', description: 'AppKit Vue Example', diff --git a/vue/vue-solana/src/assets/main.css b/vue/vue-solana/src/assets/main.css index 473d21c..4b02a41 100644 --- a/vue/vue-solana/src/assets/main.css +++ b/vue/vue-solana/src/assets/main.css @@ -3,13 +3,6 @@ --foreground: #171717; } -@media (prefers-color-scheme: dark) { - :root { - --background: #0a0a0a; - --foreground: #ededed; - } -} - html, body { max-width: 100vw; diff --git a/vue/vue-wagmi/package.json b/vue/vue-wagmi/package.json index 1df06e2..fa54b2d 100644 --- a/vue/vue-wagmi/package.json +++ b/vue/vue-wagmi/package.json @@ -11,8 +11,8 @@ "type-check": "vue-tsc --build --force" }, "dependencies": { - "@reown/appkit": "^1.5.2", - "@reown/appkit-adapter-wagmi": "^1.5.2", + "@reown/appkit": "^1.5.3", + "@reown/appkit-adapter-wagmi": "^1.5.3", "@tanstack/vue-query": "^5.59.16", "@wagmi/vue": "^0.0.56", "viem": "^2.21.39", diff --git a/vue/vue-wagmi/pnpm-lock.yaml b/vue/vue-wagmi/pnpm-lock.yaml index 4605f68..ba29b49 100644 --- a/vue/vue-wagmi/pnpm-lock.yaml +++ b/vue/vue-wagmi/pnpm-lock.yaml @@ -9,11 +9,11 @@ importers: .: dependencies: '@reown/appkit': - specifier: ^1.5.2 - version: 1.5.2(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + specifier: ^1.5.3 + version: 1.5.3(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) '@reown/appkit-adapter-wagmi': - specifier: ^1.5.2 - version: 1.5.2(h6mltqsora3goec27utkdo7k64) + specifier: ^1.5.3 + version: 1.5.3(h6mltqsora3goec27utkdo7k64) '@tanstack/vue-query': specifier: ^5.59.16 version: 5.59.16(vue@3.5.12(typescript@5.6.3)) @@ -1258,8 +1258,8 @@ packages: '@types/react': optional: true - '@reown/appkit-adapter-wagmi@1.5.2': - resolution: {integrity: sha512-1z9EYT67OGtMI99bq0VHkpKT8D7hXwf8jVWQ7iVdB3JTuTvky9ghyvDsTQRPR/4oPuEQ3xBh8fMfoRUQi4cG+w==} + '@reown/appkit-adapter-wagmi@1.5.3': + resolution: {integrity: sha512-0qq7pPVsfKYO6TiHC8en2Dusce1xx5S7P5pPn+yxUyUdEsmpPJbk8CtLXGSqnxHz5qJ9hDb+4QVJIdEZ8gE9FA==} peerDependencies: '@coinbase/wallet-sdk': 4.0.3 '@wagmi/connectors': '>=5.1' @@ -1267,34 +1267,34 @@ packages: viem: 2.x wagmi: '>=2.12' - '@reown/appkit-common@1.5.2': - resolution: {integrity: sha512-dBFKIOxIdbU3R8KD/uwYKcsf5UbC1qoserzwdLDFn7GyOpBYKm0ZAY+3E4mt4HBS87R2Atn9tXYVL4wWPWbKMw==} + '@reown/appkit-common@1.5.3': + resolution: {integrity: sha512-b/NnXbPUJb11A42CNV5nCKsPv+QCgrB112aAJ+PuH7HTSAOiSNQND8w8VPW2UpjUPP/6ivLhUrHOapYUlA3BtQ==} - '@reown/appkit-core@1.5.2': - resolution: {integrity: sha512-822CVaELuRmzmPXke8i4mMl3eEgkPRWop6mAyRlQprQJHBRdw8GRHMBfI8UDDCsVFhiMN4G8endVFZCR6SQtmQ==} + '@reown/appkit-core@1.5.3': + resolution: {integrity: sha512-4vFS/pwJDE42bXmGRbsPVbZZSlBC+mHC2G5rFcYymRDcjc1xNeLCUEq84xLC+Xt8YNt/Yi2ghslwWztL2lDF5w==} - '@reown/appkit-polyfills@1.5.2': - resolution: {integrity: sha512-dXrzpg08+l1Kc7aDFadm8n/CRhabPLNWBJUYBM8+jXyG60k8FBdLqdyexyvwdHPwZdoflDuOCaQKPhPD5U17vw==} + '@reown/appkit-polyfills@1.5.3': + resolution: {integrity: sha512-SlRWZGPQJUtr68EtlNC5EXVzEsI7TM1PvwW36ZSE+9InRp2bxeySWdVntZrAQPvXIE7sZtRuJtIpC1fQ1hJnyw==} - '@reown/appkit-scaffold-ui@1.5.2': - resolution: {integrity: sha512-P8p7qtntzMTS1KuUjOZjslhk9fnHL8eu8sk1KVm7YsN1JlacIOI0UOXiDMrNVxtAWuwv0TTNQzYrvxV2p+uZkA==} + '@reown/appkit-scaffold-ui@1.5.3': + resolution: {integrity: sha512-6Y1jmyD8yRbgcdWrFvvFfDC9Q+20LyCNR4sizr4AT85fWhsHkRG6ywrVCu1fP5RtIEgabjDtsNNipCd13Q2e3w==} - '@reown/appkit-siwe@1.5.2': - resolution: {integrity: sha512-LAPTItnQWkIXEzZ5HQWVnZjN7Llujo3BWbinb6Gpm1u9aj7GOwnSyETWsjZzaTs4O3Ob9IKWXxOEusyCpiArkA==} + '@reown/appkit-siwe@1.5.3': + resolution: {integrity: sha512-0yhNp60yyYp7n7LzQyZhkxetsRGtjXTXlmsxJMCw4vHrG3IXYO1QhPTGaZbOI0ps3CAj2+jLV+Y1Aso7XJ7M9A==} - '@reown/appkit-ui@1.5.2': - resolution: {integrity: sha512-0bhvRkXzueC3yiyvWn1otFZRedLRfH52CW7mRC9mfb8/B7Ety6c0CB7oCdl2lI67MqeW1eEitBJ/DQW5zI38RA==} + '@reown/appkit-ui@1.5.3': + resolution: {integrity: sha512-5ho20npfusl945wY2tCq8nntkZLj5BNC/C6tSATPgatA8kmJD35SKcNWlL4EAAiQDOfxEmifoErtEcUd27h/gg==} - '@reown/appkit-utils@1.5.2': - resolution: {integrity: sha512-TCc7gdhk1t0Z5IWXGVeaadZ9DZOt5Z+SAmG7CTkjtpGoA9jFTn0pL5bvTQMMxin1lvaWycHXyp/x6mJhojCFUA==} + '@reown/appkit-utils@1.5.3': + resolution: {integrity: sha512-K0pF8sdt10BFDvkjvgLoXc7VOL5AmOzd9BqJw4IS60R9oDEDkfr/Wa/Bi+9LsLlYfwKh2H+TyvyIqHvhMjFviA==} peerDependencies: valtio: 1.11.2 - '@reown/appkit-wallet@1.5.2': - resolution: {integrity: sha512-OQs+nmfyT2/eyxhatp6GSjIuPDeab9cAgMKjf/1j1nOg/UykBNTmoHWpXWtYE5ZjgeUp8ApyAeASQWKwMOgIaw==} + '@reown/appkit-wallet@1.5.3': + resolution: {integrity: sha512-9lFcPNNebzICxGVsy8IAJqF5yNHWBZCvWBdcgMheK47/W/Mi6LwM7zTSZSonnpRYZ7gYJOqfaTdCd2KfOMI6JQ==} - '@reown/appkit@1.5.2': - resolution: {integrity: sha512-w7YDOi2fiYVmCTpM3M79fbqHgm6/WWf8I5pBKaKoTTttXm4M/D79mXQ6osEZ7ozKLhz0spyHi+TyjoGxT/PB3A==} + '@reown/appkit@1.5.3': + resolution: {integrity: sha512-Wh+JetSr0/AHow2lqp/3+v61rnCzaXWDBKXgBWCUxGhHrw+vpDeyEsLLLTAbBd3w0xsKRaO2gjW5k+Z53p1NRw==} '@rollup/rollup-android-arm-eabi@4.24.3': resolution: {integrity: sha512-ufb2CH2KfBWPJok95frEZZ82LtDl0A6QKTa8MoM+cWwDZvVGl5/jNb79pIhRvAalUu+7LD91VYR0nwRD799HkQ==} @@ -5454,17 +5454,17 @@ snapshots: react: 18.3.1 react-native: 0.76.1(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10) - '@reown/appkit-adapter-wagmi@1.5.2(h6mltqsora3goec27utkdo7k64)': + '@reown/appkit-adapter-wagmi@1.5.3(h6mltqsora3goec27utkdo7k64)': dependencies: '@coinbase/wallet-sdk': 4.1.0 - '@reown/appkit': 1.5.2(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-scaffold-ui': 1.5.2(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@18.3.1))(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@18.3.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit': 1.5.3(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-scaffold-ui': 1.5.3(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@18.3.1))(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@18.3.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@wagmi/connectors': 5.3.3(@wagmi/core@2.14.1(@tanstack/query-core@5.59.16)(react@18.3.1)(typescript@5.6.3)(use-sync-external-store@1.2.0(react@18.3.1))(viem@2.21.39(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)))(bufferutil@4.0.8)(react-native@0.76.1(@babel/core@7.26.0)(@babel/preset-env@7.26.0(@babel/core@7.26.0))(bufferutil@4.0.8)(react@18.3.1)(utf-8-validate@5.0.10))(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(viem@2.21.39(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4))(zod@3.22.4) '@wagmi/core': 2.14.1(@tanstack/query-core@5.59.16)(react@18.3.1)(typescript@5.6.3)(use-sync-external-store@1.2.0(react@18.3.1))(viem@2.21.39(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)) '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) @@ -5494,7 +5494,7 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-common@1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-common@1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: bignumber.js: 9.1.2 dayjs: 1.11.10 @@ -5505,10 +5505,10 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-core@1.5.2(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-core@1.5.3(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) valtio: 1.11.2(react@18.3.1) viem: 2.21.39(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) @@ -5534,17 +5534,17 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-polyfills@1.5.2': + '@reown/appkit-polyfills@1.5.3': dependencies: buffer: 6.0.3 - '@reown/appkit-scaffold-ui@1.5.2(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@18.3.1))(zod@3.22.4)': + '@reown/appkit-scaffold-ui@1.5.3(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@18.3.1))(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@18.3.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@18.3.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) lit: 3.1.0 transitivePeerDependencies: - '@azure/app-configuration' @@ -5569,13 +5569,13 @@ snapshots: - valtio - zod - '@reown/appkit-siwe@1.5.2(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit-siwe@1.5.3(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@18.3.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@18.3.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@walletconnect/utils': 2.17.0 lit: 3.1.0 valtio: 1.11.2(react@18.3.1) @@ -5601,17 +5601,17 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-ui@1.5.2': + '@reown/appkit-ui@1.5.3': dependencies: lit: 3.1.0 qrcode: 1.5.3 - '@reown/appkit-utils@1.5.2(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@18.3.1))(zod@3.22.4)': + '@reown/appkit-utils@1.5.3(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@18.3.1))(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@walletconnect/logger': 2.1.2 '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) valtio: 1.11.2(react@18.3.1) @@ -5638,10 +5638,10 @@ snapshots: - utf-8-validate - zod - '@reown/appkit-wallet@1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)': + '@reown/appkit-wallet@1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 '@walletconnect/logger': 2.1.2 zod: 3.22.4 transitivePeerDependencies: @@ -5649,16 +5649,16 @@ snapshots: - typescript - utf-8-validate - '@reown/appkit@1.5.2(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': + '@reown/appkit@1.5.3(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4)': dependencies: - '@reown/appkit-common': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-core': 1.5.2(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-polyfills': 1.5.2 - '@reown/appkit-scaffold-ui': 1.5.2(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@18.3.1))(zod@3.22.4) - '@reown/appkit-siwe': 1.5.2(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) - '@reown/appkit-ui': 1.5.2 - '@reown/appkit-utils': 1.5.2(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@18.3.1))(zod@3.22.4) - '@reown/appkit-wallet': 1.5.2(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) + '@reown/appkit-common': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-core': 1.5.3(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-polyfills': 1.5.3 + '@reown/appkit-scaffold-ui': 1.5.3(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@18.3.1))(zod@3.22.4) + '@reown/appkit-siwe': 1.5.3(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(zod@3.22.4) + '@reown/appkit-ui': 1.5.3 + '@reown/appkit-utils': 1.5.3(bufferutil@4.0.8)(react@18.3.1)(typescript@5.6.3)(utf-8-validate@5.0.10)(valtio@1.11.2(react@18.3.1))(zod@3.22.4) + '@reown/appkit-wallet': 1.5.3(bufferutil@4.0.8)(typescript@5.6.3)(utf-8-validate@5.0.10) '@walletconnect/types': 2.17.0 '@walletconnect/universal-provider': 2.17.0(bufferutil@4.0.8)(utf-8-validate@5.0.10) '@walletconnect/utils': 2.17.0 diff --git a/vue/vue-wagmi/src/App.vue b/vue/vue-wagmi/src/App.vue index 9406ce9..c102441 100644 --- a/vue/vue-wagmi/src/App.vue +++ b/vue/vue-wagmi/src/App.vue @@ -31,6 +31,7 @@ createAppKit({ adapters: [wagmiAdapter], networks, projectId, + themeMode: 'light', metadata: { name: 'AppKit Vue Example', description: 'AppKit Vue Example', diff --git a/vue/vue-wagmi/src/assets/main.css b/vue/vue-wagmi/src/assets/main.css index 473d21c..4b02a41 100644 --- a/vue/vue-wagmi/src/assets/main.css +++ b/vue/vue-wagmi/src/assets/main.css @@ -3,13 +3,6 @@ --foreground: #171717; } -@media (prefers-color-scheme: dark) { - :root { - --background: #0a0a0a; - --foreground: #ededed; - } -} - html, body { max-width: 100vw;