Skip to content

Commit

Permalink
Added custom hook to wallet connection using WalletConnet API
Browse files Browse the repository at this point in the history
  • Loading branch information
Gongamax committed May 3, 2024
1 parent ac9d99d commit 0ddb000
Show file tree
Hide file tree
Showing 7 changed files with 3,047 additions and 430 deletions.
64 changes: 31 additions & 33 deletions code/app.json
Original file line number Diff line number Diff line change
@@ -1,35 +1,33 @@
{
"expo": {
"name": "DiGo-Certify",
"scheme": "digo-certify",
"slug": "digo-certify",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#DBDBDB"
},
"assetBundlePatterns": [
"**/*"
],
"ios": {
"supportsTablet": true
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
}
},
"web": {
"favicon": "./assets/favicon.png"
},
"plugins": [
"expo-router",
"expo-secure-store"
]
}
"expo": {
"name": "DiGo-Certify",
"scheme": "digo-certify",
"slug": "digo-certify",
"version": "1.0.0",
"orientation": "portrait",
"icon": "./assets/icon.png",
"userInterfaceStyle": "light",
"splash": {
"image": "./assets/splash.png",
"resizeMode": "contain",
"backgroundColor": "#DBDBDB"
},
"assetBundlePatterns": ["**/*"],
"ios": {
"supportsTablet": true,
"infoPlist": {
"LSApplicationQueriesSchemes": ["metamask", "trust", "safe", "rainbow", "uniswap"]
}
},
"android": {
"adaptiveIcon": {
"foregroundImage": "./assets/adaptive-icon.png",
"backgroundColor": "#ffffff"
}
},
"web": {
"favicon": "./assets/favicon.png"
},
"plugins": ["expo-router", "expo-secure-store"]
}
}
1 change: 1 addition & 0 deletions code/app/index.jsx
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import '@walletconnect/react-native-compat'
import React, { useState, useEffect } from 'react';
import * as SecureStore from 'expo-secure-store';
import InitialScreen from './initial-screen/initial-screen';
Expand Down
Loading

0 comments on commit 0ddb000

Please sign in to comment.