glifio / safe

A Filecoin multisig wallet
https://safe.glif.io
1 stars 0 forks source link

Glif Safe

The Glif Safe is a Filecoin multisig built with Next.js that allows you to:

Install

npm install
npm run dev

Versioning

Glif follows semantic versioning.

Version x.y.z:

Filecoin modules

A number of modules have been broken out into packages in this modules repo.

Filecoin module package local development

In order to develop packages locally and see the changes live in this local wallet repository, the npm link tool can be used to symlink to the packages in your local modules repo.

Package linking is a two-step process.

First, from your local package folder, run:

npm link

Next, from this main wallet repository, run:

npm link @glif/<package-name>

for example, use npm link @glif/react-components to symlink the react-components package to your local version. See the npm link docs for details.