Skip to content

feat: added docs #6

New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Merged
merged 4 commits into from
Apr 20, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 39 additions & 0 deletions .github/docs/development.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
# Development

## Workspace setup

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

```bash
yarn
```

## ProjectID setup

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

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

or add it before running commands in your terminal:

```bash
PROJECT_ID="YOUR_PROJECT_ID" yarn example ios
```


To create your ProjectID, head to [cloud.walletconnect.com](https://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.
17 changes: 15 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,16 @@
# @web3modal/react-native
# Web3Modal SDK for React Native

Web3Modal SDK for React-Native
Your on-ramp to web3 multichain. Web3Modal is a versatile library that makes it super easy to connect users with your Dapp and start interacting with the blockchain.

### 📚 [Documentation](https://docs.walletconnect.com/2.0/reactnative/web3modal/Installation)

### 🔎 [Examples](https://github.com/WalletConnect/react-native-examples/tree/main/dapps/v2Explorer)

### 🧪 [Laboratory](https://lab.web3modal.com)

### 🔗 [Website](https://web3modal.com)


## Development

Please follow [developer docs](./.github/docs/development.md) to set up web3modal locally.