From 770a33fbe69dcc23caf70e5793003d2a7a11a907 Mon Sep 17 00:00:00 2001 From: jo-elimu <1451036+jo-elimu@users.noreply.github.com> Date: Sun, 30 Jun 2024 23:47:47 +0700 Subject: [PATCH 1/3] fix(frontend): make base sepolia the initial chain --- frontend/src/pages/_app.tsx | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) diff --git a/frontend/src/pages/_app.tsx b/frontend/src/pages/_app.tsx index 610ef4d..286495d 100644 --- a/frontend/src/pages/_app.tsx +++ b/frontend/src/pages/_app.tsx @@ -26,12 +26,11 @@ const queryClient = new QueryClient(); export const wagmiConfig = createConfig({ connectors: connectors, chains: [ - base, - baseSepolia + baseSepolia, ], transports: { - [base.id]: http(), - [baseSepolia.id]: http() + [baseSepolia.id]: http(), + [base.id]: http() }, }); From 7286bfbcdc5d9fa3b45af327d67ceb921350b457 Mon Sep 17 00:00:00 2001 From: jo-elimu <1451036+jo-elimu@users.noreply.github.com> Date: Sun, 30 Jun 2024 23:48:21 +0700 Subject: [PATCH 2/3] fix(frontend): add base --- frontend/src/pages/_app.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/frontend/src/pages/_app.tsx b/frontend/src/pages/_app.tsx index 286495d..7093abb 100644 --- a/frontend/src/pages/_app.tsx +++ b/frontend/src/pages/_app.tsx @@ -27,6 +27,7 @@ export const wagmiConfig = createConfig({ connectors: connectors, chains: [ baseSepolia, + base ], transports: { [baseSepolia.id]: http(), From 314b15a0ed332a3516a5e306ae894413389294aa Mon Sep 17 00:00:00 2001 From: jo-elimu <1451036+jo-elimu@users.noreply.github.com> Date: Mon, 1 Jul 2024 00:24:53 +0700 Subject: [PATCH 3/3] feat(frontend): add sponsorship refs #17 --- frontend/src/pages/sponsorships/add.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/pages/sponsorships/add.tsx b/frontend/src/pages/sponsorships/add.tsx index 467586c..ca647e5 100644 --- a/frontend/src/pages/sponsorships/add.tsx +++ b/frontend/src/pages/sponsorships/add.tsx @@ -96,7 +96,7 @@ export function WriteContractButton() { const { writeContract } = useWriteContract(); return (