-
Notifications
You must be signed in to change notification settings - Fork 30
Expand file tree
/
Copy pathApp.tsx
More file actions
81 lines (68 loc) · 1.77 KB
/
App.tsx
File metadata and controls
81 lines (68 loc) · 1.77 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
import React from 'react';
import { StatusBar } from 'expo-status-bar';
import { AppNavigator } from './src/navigation/AppNavigator';
import { useNotifications } from './src/hooks/useNotifications';
import { useTransactionQueue } from './src/hooks/useTransactionQueue';
// Import WalletConnect compatibility layer
import '@walletconnect/react-native-compat';
import { createAppKit, defaultConfig, AppKit } from '@reown/appkit-ethers-react-native';
import { EVM_RPC_URLS } from './src/config/evm';
// Get projectId from environment variable
const projectId = process.env.WALLET_CONNECT_PROJECT_ID || 'YOUR_PROJECT_ID';
// Create metadata
const metadata = {
name: 'SubTrackr',
description: 'Subscription Management with Crypto Payments',
url: 'https://subtrackr.app',
icons: ['https://subtrackr.app/icon.png'],
redirect: {
native: 'subtrackr://',
},
};
const config = defaultConfig({ metadata });
// Define supported chains
const mainnet = {
chainId: 1,
name: 'Ethereum',
currency: 'ETH',
explorerUrl: 'https://etherscan.io',
rpcUrl: EVM_RPC_URLS[1],
};
const polygon = {
chainId: 137,
name: 'Polygon',
currency: 'MATIC',
explorerUrl: 'https://polygonscan.com',
rpcUrl: EVM_RPC_URLS[137],
};
const arbitrum = {
chainId: 42161,
name: 'Arbitrum',
currency: 'ETH',
explorerUrl: 'https://arbiscan.io',
rpcUrl: EVM_RPC_URLS[42161],
};
const chains = [mainnet, polygon, arbitrum];
// Create AppKit
createAppKit({
projectId,
metadata,
chains,
config,
enableAnalytics: true,
});
function NotificationBootstrap() {
useNotifications();
useTransactionQueue();
return null;
}
export default function App() {
return (
<>
<StatusBar style="light" />
<NotificationBootstrap />
<AppNavigator />
<AppKit />
</>
);
}