Go to file
nabarun 59be46c5f0 Update intent URL (#2)
Part of https://www.notion.so/WalletConnect-integration-84b2f7377d514d7ead698bebd84f1e31

- Update intent URL to https://wallet.laconic.com/
- Move navigation to index.js

Co-authored-by: Adw8 <adwait@deepstacksoft.com>
Reviewed-on: cerc-io/laconic-wallet#2
2024-03-08 06:14:44 +00:00
__tests__ Create a basic react native app (#2) 2024-02-05 17:18:18 +05:30
.bundle Create a basic react native app (#2) 2024-02-05 17:18:18 +05:30
android Update intent URL (#2) 2024-03-08 06:14:44 +00:00
components Add toast on session approval (#46) 2024-03-07 19:28:30 +05:30
context Display details coming from dapp in sign request page (#44) 2024-03-07 16:02:35 +05:30
ios Create a basic react native app (#2) 2024-02-05 17:18:18 +05:30
patches Patch ethers to reduce wallet creation time (#24) 2024-02-19 14:04:06 +05:30
styles Display details coming from dapp in sign request page (#44) 2024-03-07 16:02:35 +05:30
utils Update intent URL (#2) 2024-03-08 06:14:44 +00:00
.eslintrc.js Create a basic react native app (#2) 2024-02-05 17:18:18 +05:30
.gitignore Create a basic react native app (#2) 2024-02-05 17:18:18 +05:30
.prettierrc.js Add react-native-paper ui library (#7) 2024-02-12 18:51:03 +05:30
.watchmanconfig Create a basic react native app (#2) 2024-02-05 17:18:18 +05:30
app.json Change package name to com.laconic.wallet (#33) 2024-03-04 15:20:09 +05:30
App.tsx Update intent URL (#2) 2024-03-08 06:14:44 +00:00
babel.config.js Integrate functions with UI (#14) 2024-02-14 19:14:21 +05:30
Gemfile Create a basic react native app (#2) 2024-02-05 17:18:18 +05:30
index.js Update intent URL (#2) 2024-03-08 06:14:44 +00:00
jest.config.js Create a basic react native app (#2) 2024-02-05 17:18:18 +05:30
metro.config.js Create a basic react native app (#2) 2024-02-05 17:18:18 +05:30
package.json Display details coming from dapp in sign request page (#44) 2024-03-07 16:02:35 +05:30
README.md UI changes for wallet-connect integration (#43) 2024-03-07 15:28:12 +05:30
tsconfig.json Create a basic react native app (#2) 2024-02-05 17:18:18 +05:30
types.ts Add toast on session approval (#46) 2024-03-07 19:28:30 +05:30
yarn.lock Display details coming from dapp in sign request page (#44) 2024-03-07 16:02:35 +05:30

laconic-wallet

Install

  • Install Node

  • Install version 17 of the Java SE Development Kit (JDK) (Clicking on the link will download the .deb file)

  • Install Android Studio

  • In the installation wizard check the following items:

    • Android SDK

    • Android SDK Platform

    • Android Virtual Device

  • Install Android SDK

    • Open Android Studio -> Configure -> SDK Manager -> SDK PLatfrom Tab.

    • Check the box next to "Show Package Details" in the bottom right corner. Look for and expand the Android 13 (Tiramisu) entry, then make sure the following items are checked:

      • Android SDK Platform 33

      • Intel x86 Atom_64 System Image or Google APIs Intel x86 Atom System Image

    • Select SDK Tools and check the box next to "Show Package Details"

    • Select Android SDK Build-Tools 33.0.0

    • Click Apply

  • Configure the ANDROID_HOME environment variable

  • Add the following lines to your $HOME/.bash_profile or $HOME/.bashrc (if you are using zsh then ~/.zprofile or ~/.zshrc) config file:

    export ANDROID_HOME=$HOME/Android/Sdk
    export PATH=$PATH:$ANDROID_HOME/emulator
    export PATH=$PATH:$ANDROID_HOME/platform-tools
    
  • Type source $HOME/.bash_profile for bash or source $HOME/.zprofile to load the config into your current shell. Verify that ANDROID_HOME has been set by running

    echo $ANDROID_HOME
    
  • and that the appropriate directories have been added to your path by running

    echo $PATH
    

Setup for laconic-wallet

  1. Clone this repository:

    git clone git@git.vdb.to:cerc-io/laconic-wallet.git
    
  2. Enter the project directory:

    cd laconic-wallet
    
  3. Install the dependencies:

    yarn
    
  4. Set up the Android device:

    • For a physical device, refer to the React Native documentation for running on a physical device

    • For a virtual device, continue with the steps.

  5. Start the application

    yarn start
    
  6. Press a to run the application on android

Setup for signature-requester-app

  1. Clone the repository:

    git clone git@git.vdb.to:cerc-io/signature-requester-app.git
    
  2. Enter the project directory:

    cd signature-requester-app
    
  3. Install the dependancies

    yarn
    
  4. Start the application

    yarn start
    
  5. Press a to run the application on android

You should see both the apps running on your emulator or physical device.