Skip to content

Latest commit

 

History

History
39 lines (26 loc) · 860 Bytes

development.md

File metadata and controls

39 lines (26 loc) · 860 Bytes

Development

Workspace setup

Install dependencies from the repository's root directory (this will also set up the example project workspace):

yarn

ProjectID setup

The example project has app.config.js file. Add your Project ID there

extra: {
  ...
  PROJECT_ID: process.env.PROJECT_ID || "YOUR_PROJECT_ID"
},

or add it before running commands in your terminal:

PROJECT_ID="YOUR_PROJECT_ID" yarn example ios

To create your ProjectID, head to cloud.walletconnect.com

Commands

Execute all commands from the root.

  • yarn example ios - Run the example project in an iOS simulator.
  • yarn example android - Run the example project in an Android simulator.
  • yarn lint - Run the linter.
  • yarn typecheck - Run typescript checks.
  • yarn test - Run jest tests.