42 lines
580 B
Markdown
42 lines
580 B
Markdown
|
|
# ASLE Mobile App
|
||
|
|
|
||
|
|
React Native mobile application for ASLE platform.
|
||
|
|
|
||
|
|
## Setup
|
||
|
|
|
||
|
|
1. Install dependencies:
|
||
|
|
```bash
|
||
|
|
npm install
|
||
|
|
```
|
||
|
|
|
||
|
|
2. For iOS:
|
||
|
|
```bash
|
||
|
|
cd ios && pod install && cd ..
|
||
|
|
npm run ios
|
||
|
|
```
|
||
|
|
|
||
|
|
3. For Android:
|
||
|
|
```bash
|
||
|
|
npm run android
|
||
|
|
```
|
||
|
|
|
||
|
|
## Features
|
||
|
|
|
||
|
|
- Wallet connection (WalletConnect, MetaMask)
|
||
|
|
- Portfolio tracking
|
||
|
|
- Pool and vault management
|
||
|
|
- Transaction history
|
||
|
|
- Governance participation
|
||
|
|
- Push notifications
|
||
|
|
- Biometric authentication
|
||
|
|
- Offline support
|
||
|
|
- Deep linking
|
||
|
|
|
||
|
|
## Environment Variables
|
||
|
|
|
||
|
|
Create `.env` file:
|
||
|
|
```
|
||
|
|
EXPO_PUBLIC_API_URL=http://localhost:4000
|
||
|
|
```
|
||
|
|
|