Skip to content

Latest commit

 

History

History

wallet

Sui Wallet

A Chrome (v88+) extension wallet for Sui.

Set Up

Requirements: Node 14.0.0 or later.

Dependencies are managed using pnpm. You can start by installing dependencies in the root of the Sui repository:

$ pnpm install

Build in watch mode (dev)

To build the extension and watch for changes run:

pnpm start

This will build the app in the dist/ directory, watch for changes and rebuild it. (Also runs prettier to format the files that changed.)

Build once in dev mode

To build the app once in development mode (no optimizations etc) run

pnpm run build:dev

The output directory is the same dist/, all build artifacts will go there

Build once in prod mode

To build the app once in production mode run

pnpm run build:prod

Same as above the output is dist/.

Install the extension to Chrome

After building the app, the extension needs to be installed to Chrome. Follow the steps to load an unpacked extension and install the app from the dist/ directory.

Testing

pnpm run test