From 3af5ce38248a7dc627eaa462f870f621b8d0d1c6 Mon Sep 17 00:00:00 2001 From: Mohammad Kermani Date: Tue, 29 Apr 2025 12:07:58 +0000 Subject: [PATCH 1/2] feat: enable google social login --- app/context/index.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/context/index.tsx b/app/context/index.tsx index b257654..af1380f 100644 --- a/app/context/index.tsx +++ b/app/context/index.tsx @@ -23,7 +23,7 @@ createAppKit({ metadata, features: { email: false, - socials: false, + socials: ['google'], send: false, swaps: false, onramp: false, From c71aa6776fb7ba1ffd053dc296de1c51d3432163 Mon Sep 17 00:00:00 2001 From: Mohammad Kermani Date: Tue, 29 Apr 2025 12:08:21 +0000 Subject: [PATCH 2/2] feat: Show MOR token balance in AppKit button --- app/context/index.tsx | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/app/context/index.tsx b/app/context/index.tsx index af1380f..ff1044a 100644 --- a/app/context/index.tsx +++ b/app/context/index.tsx @@ -29,6 +29,16 @@ createAppKit({ onramp: false, history: false, }, + tokens: { + // MOR on Base + 'eip155:8453': { + address: '0x7431ada8a591c955a994a21710752ef9b882b8e3', + }, + // MOR on Arbitrum + 'eip155:42161': { + address: '0x092baadb7def4c3981454dd9c0a0d7ff07bcfc86', + }, + }, themeVariables: { '--w3m-accent': 'hsl(var(--primary))', },