diff --git a/kleros-app/README.md b/kleros-app/README.md index 1db6aeafe..0e4c6818d 100644 --- a/kleros-app/README.md +++ b/kleros-app/README.md @@ -27,14 +27,17 @@ import { WagmiProvider } from 'wagmi' import { config } from './config' import { QueryClient, QueryClientProvider } from '@tanstack/react-query' import { AtlasProvider, Products } from "@kleros/kleros-app"; +import { useConfig } from 'wagmi' const queryClient = new QueryClient() function App() { + const wagmiConfig = useConfig() + return - + ... diff --git a/kleros-app/package.json b/kleros-app/package.json index 62df10e1a..61bc182c3 100644 --- a/kleros-app/package.json +++ b/kleros-app/package.json @@ -49,7 +49,8 @@ "typescript": "^5.6.3", "vite": "^5.4.11", "vite-plugin-dts": "^4.3.0", - "vite-plugin-node-polyfills": "^0.22.0" + "vite-plugin-node-polyfills": "^0.22.0", + "wagmi": "^2.14.0" }, "dependencies": { "jose": "^5.9.6" @@ -61,6 +62,6 @@ "react": "^18.3.1", "react-dom": "^18.3.1", "viem": "^2.21.42", - "wagmi": "^2.13.5" + "wagmi": "^2.14.0" } } diff --git a/kleros-app/src/lib/atlas/providers/AtlasProvider.tsx b/kleros-app/src/lib/atlas/providers/AtlasProvider.tsx index 1701faf47..ee50e3c31 100644 --- a/kleros-app/src/lib/atlas/providers/AtlasProvider.tsx +++ b/kleros-app/src/lib/atlas/providers/AtlasProvider.tsx @@ -2,7 +2,7 @@ import React, { useMemo, createContext, useContext, useState, useCallback, useEf import { useQuery, useQueryClient } from "@tanstack/react-query"; import { GraphQLClient } from "graphql-request"; import { decodeJwt } from "jose"; -import { useAccount, useChainId, useSignMessage } from "wagmi"; +import { useAccount, useChainId, useSignMessage, type Config } from "wagmi"; import { createMessage, getNonce, @@ -53,11 +53,12 @@ const Context = createContext(undefined); interface AtlasConfig { uri: string; product: Products; + wagmiConfig: Config; } export const AtlasProvider: React.FC<{ config: AtlasConfig; children?: React.ReactNode }> = ({ children, config }) => { - const { address } = useAccount(); - const chainId = useChainId(); + const { address } = useAccount({ config: config.wagmiConfig }); + const chainId = useChainId({ config: config.wagmiConfig }); const queryClient = useQueryClient(); const [authToken, setAuthToken] = useSessionStorage("authToken", undefined); @@ -66,7 +67,7 @@ export const AtlasProvider: React.FC<{ config: AtlasConfig; children?: React.Rea const [isUpdatingUser, setIsUpdatingUser] = useState(false); const [isVerified, setIsVerified] = useState(false); const [isUploadingFile, setIsUploadingFile] = useState(false); - const { signMessageAsync } = useSignMessage(); + const { signMessageAsync } = useSignMessage({ config: config.wagmiConfig }); const atlasGqlClient = useMemo(() => { const headers = authToken diff --git a/web-devtools/package.json b/web-devtools/package.json index 036de490a..a729eb7ad 100644 --- a/web-devtools/package.json +++ b/web-devtools/package.json @@ -50,10 +50,11 @@ "@kleros/kleros-sdk": "workspace:^", "@kleros/kleros-v2-contracts": "workspace:^", "@kleros/ui-components-library": "^2.20.0", + "@reown/appkit": "^1.6.5", + "@reown/appkit-adapter-wagmi": "^1.6.5", "@tanstack/react-query": "^5.61.0", "@wagmi/connectors": "^5.5.0", - "@wagmi/core": "^2.15.0", - "@web3modal/wagmi": "^4.2.3", + "@wagmi/core": "^2.16.3", "@yornaath/batshit": "^0.9.0", "graphql": "^16.9.0", "graphql-request": "^7.1.2", @@ -69,6 +70,6 @@ "typewriter-effect": "^2.21.0", "vanilla-jsoneditor": "^0.21.6", "viem": "^2.21.50", - "wagmi": "^2.13.5" + "wagmi": "^2.14.10" } } diff --git a/web-devtools/src/components/ConnectWallet/index.tsx b/web-devtools/src/components/ConnectWallet/index.tsx index aced96c9f..ff9364429 100644 --- a/web-devtools/src/components/ConnectWallet/index.tsx +++ b/web-devtools/src/components/ConnectWallet/index.tsx @@ -1,6 +1,6 @@ import React, { useCallback, useState } from "react"; -import { useWeb3Modal, useWeb3ModalState } from "@web3modal/wagmi/react"; +import { useAppKit, useAppKitState } from "@reown/appkit/react"; import { useAccount, useSwitchChain } from "wagmi"; import { Button } from "@kleros/ui-components-library"; @@ -33,8 +33,8 @@ export const SwitchChainButton: React.FC<{ className?: string }> = ({ className }; const ConnectButton: React.FC<{ className?: string }> = ({ className }) => { - const { open } = useWeb3Modal(); - const { open: isOpen } = useWeb3ModalState(); + const { open } = useAppKit(); + const { open: isOpen } = useAppKitState(); return (