This project contains all the packages of the Hats Finance app.
This is the main code for the Hats Finance dApp.
You can run it on the root folder (recommended) with:
yarn install
yarn run dev
Or, you can run it under packages/web
:
yarn start
This is a npm library with the shared code we use in more than one repo. It contains shared types, contracts abis, supported chains config and some utils functions.
You can build it under packages/shared
with:
yarn build
In order to publish a new verion on npm, you need to:
- Increase the version number in
packages/shared/package.json
. - Build and publish the package with:
npm run publish