wallet-connect-web-examples/wallets/react-wallet-v2
Ben Kremer c0c833be6c chore(wallet): upgrade to 2.0.0-beta.26
This wasn't resolving the new version via `experimental` since beta.23
was cached in yarn.lock.
Using explicit versions instead.
2022-03-29 12:05:34 +02:00
..
public Implement solana secret key storage and recovery 2022-03-14 14:06:19 +02:00
src fix(wallet-v2): fixes signing for solana_signTransaction 2022-03-17 14:24:41 +01:00
.eslintrc.json Set up dev tooling 2022-02-03 11:24:35 +02:00
.gitignore scope wallet examples under one folder 2022-02-03 11:14:39 +02:00
.prettierrc.json Set up dev tooling 2022-02-03 11:24:35 +02:00
next-env.d.ts scope wallet examples under one folder 2022-02-03 11:14:39 +02:00
next.config.js CosmosUtil for wallet creation 2022-02-25 15:19:39 +02:00
package.json chore(wallet): upgrade to 2.0.0-beta.26 2022-03-29 12:05:34 +02:00
README.md Revert "Cosmos signature verification (#6)" 2022-03-10 15:38:53 +01:00
tsconfig.json Add pairing logic 2022-02-07 15:24:15 +02:00
yarn.lock chore(wallet): upgrade to 2.0.0-beta.26 2022-03-29 12:05:34 +02:00

Wallet Example (React, Typescript, Ethers, NextJS, Cosmos)

This example aims to demonstrate basic and advanced use cases enabled by WalletConnect. Please only use this for refference and development purposes, otherwise you are at risk of loosing your funds.

Useful links

🔗 Live wallet app - https://react-wallet.walletconnect.com
🔗 Live dapp - https://react-app.walletconnect.com
📚 WalletConnect docs - https://docs.walletconnect.com/2.0

Getting started

Eexample is built atop of NextJS in order to abstract complexity of setting up bundlers, routing etc. So there are few steps you need to follow in order to set everything up

  1. Go to WalletConnect Cloud and obtain a project id
  2. Add your project details in WalletConnectUtil.ts file
  3. Install dependencies yarn install or npm install
  4. Run yarn dev or npm run dev to start local development

Navigating through example

  1. Initial setup and initializations happen in _app.ts file
  2. WalletConnect client, ethers and cosmos wallets are initialized in useInitialization.ts hook
  3. Subscription and handling of WalletConnect events happens in useWalletConnectEventsManager.ts hook, that oppens related Modal views and passes them all necesary data
  4. Modal views are responsible for data display and handling approval or rejection actions
  5. Uppon approval or rejection modals pass request data to RequestHandlerUtil.ts that performs all necesary work based on request method and returns formated json rpc result data that can be then used for WallteConnect client responses

Preview of wallet and dapp examples in action

https://user-images.githubusercontent.com/3154053/156764521-3492c232-7a93-47ba-88bd-2cee3f8366d4.mp4