Decentralised Autonomous Organisation Tools (DAO suite)
Clone the repo in your local instnace.
Setup the react-native environment. Follow React-Native CLI quickstart
Developed on: MacOS/ Windows
Target OS: Android
Dependencies:
- Node
- Watchman
- the React Native command line interface
- JDK
- Android Studio
-
Navigate to the folder:
cd app -
Install All dependencies:
yarn install -
Connect with you AVD
-
Initialise the app
yarn android
WalletConnect v1 (compatible with valora)
Comment the code snippet as shown below if your dapp(Equistart) is not able to connect with your crypto wallet(alfaores).
Go to node_modules/@walletconnect/react-native-dapp/dist/providers/WalletConnectProvider.js and comment the code snippet as shown below:
if (Platform.OS === 'android') {
const canOpenURL = await Linking.canOpenURL(uri);
// if (!canOpenURL) {
// Linking.openURL('https://walletconnect.org/wallets');
// throw new Error('No wallets found.');
// }
await Linking.openURL(uri);
}