Web3 Wallets Connection Library
- The project is organized as monorepo using turborepo tools.
- 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.
Install the dependencies, build everything:
yarn install & yarn build
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.
The Changesets tool is used for publishing new versions.
To release a new version, see the instruction in the docs.