Skip to content

Commit

Permalink
feat: beta build kick
Browse files Browse the repository at this point in the history
Bump so beta branch makes a new release
  • Loading branch information
Alex Risch authored and Alex Risch committed Feb 6, 2024
1 parent 1d023e4 commit 944379f
Showing 1 changed file with 14 additions and 10 deletions.
24 changes: 14 additions & 10 deletions example/App.tsx
Original file line number Diff line number Diff line change
@@ -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'

Expand All @@ -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()

Expand All @@ -20,18 +24,18 @@ export default function App() {
// console.log("Thirdweb client id: " + Config.THIRD_WEB_CLIENT_ID)
return (
<ThirdwebProvider
activeChain={ Ethereum }
supportedChains={ [ Ethereum ] }
clientId={ Config.THIRD_WEB_CLIENT_ID }
activeChain={Ethereum}
supportedChains={[Ethereum]}
clientId={Config.THIRD_WEB_CLIENT_ID}
dAppMeta={{
name: 'XMTP Example',
description: 'Example app from xmtp-react-native repo',
logoUrl: 'https://pbs.twimg.com/profile_images/1668323456935510016/2c_Ue8dF_400x400.jpg',
logoUrl:
'https://pbs.twimg.com/profile_images/1668323456935510016/2c_Ue8dF_400x400.jpg',
url: 'https://xmtp.org',
}}
supportedWallets={[
metamaskWallet(), rainbowWallet()
]}>
supportedWallets={[metamaskWallet(), rainbowWallet()]}
>
<QueryClientProvider client={queryClient}>
<XmtpProvider>
<NavigationContainer>
Expand Down

0 comments on commit 944379f

Please sign in to comment.