From 944379f7a058e2675fed533374391dada4975c17 Mon Sep 17 00:00:00 2001 From: Alex Risch Date: Tue, 6 Feb 2024 15:08:02 -0700 Subject: [PATCH] feat: beta build kick Bump so beta branch makes a new release --- example/App.tsx | 24 ++++++++++++++---------- 1 file changed, 14 insertions(+), 10 deletions(-) diff --git a/example/App.tsx b/example/App.tsx index 6bdcf25bf..8d1ed2cd4 100644 --- a/example/App.tsx +++ b/example/App.tsx @@ -1,5 +1,12 @@ import { NavigationContainer } from '@react-navigation/native' +import { Ethereum } from '@thirdweb-dev/chains' +import { + ThirdwebProvider, + metamaskWallet, + rainbowWallet, +} from '@thirdweb-dev/react-native' import { Button, Platform } from 'react-native' +import Config from 'react-native-config' import { QueryClient, QueryClientProvider } from 'react-query' import { XmtpProvider } from 'xmtp-react-native-sdk' @@ -9,9 +16,6 @@ import HomeScreen from './src/HomeScreen' import LaunchScreen from './src/LaunchScreen' import { Navigator } from './src/Navigation' import TestScreen from './src/TestScreen' -import { ThirdwebProvider, metamaskWallet, rainbowWallet } from '@thirdweb-dev/react-native' -import { Ethereum } from '@thirdweb-dev/chains' -import Config from 'react-native-config' const queryClient = new QueryClient() @@ -20,18 +24,18 @@ export default function App() { // console.log("Thirdweb client id: " + Config.THIRD_WEB_CLIENT_ID) return ( + supportedWallets={[metamaskWallet(), rainbowWallet()]} + >