Skip to content

Latest commit

 

History

History
27 lines (22 loc) · 1.15 KB

README.md

File metadata and controls

27 lines (22 loc) · 1.15 KB

Reef Knot

Web3 Wallets Connection Library

WIP

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.

Developing

Project structure

  • 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.

Commands

  • yarn dev runs the dev script for all apps and packages. Usually apps are launched using next 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.

Initial setup

Install the dependencies, build everything:

yarn install & yarn build