Web3 Wallets Connection Library
The project is being seriously reworked at the moment.
A migration from web3-react
to wagmi
and some big architectural changes are in process. It is going to be more stable after v2.
- The project is organized as monorepo using turborepo tools.
- Changesets are used for publishing new versions.
- The
packages
dir contains packages, most of them are published to npm, but some are not. - The
apps
dir contains an example application, which uses the packages to demonstrate wallets connection.
yarn dev
runs thedev
script for all apps and packages. Usually apps are launched usingnext dev
and packages are built using rollup with--watch
flag, which rebuilds the bundle when its source files change on disk.yarn build
- Build all apps and packages.yarn build-apps
- Build apps only.yarn build-packages
- Build packages only.
Install the dependencies, build everything:
yarn install & yarn build