Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,9 @@ cd <project-folder>
# Install dependencies
npm install

# Build the SDK (required before building the extension)
cd sdk && npm run build && cd ..

# Build extension
npm run build
```
Expand Down Expand Up @@ -48,6 +51,15 @@ After changes, click the refresh icon in `chrome://extensions` to reload.
npm run build
```

### Working with the SDK

The extension depends on the local `@nockbox/iris-sdk` package (in the `sdk/` directory). If you modify SDK source files, rebuild it before building the extension:

```bash
cd sdk && npm run build && cd ..
npm run build
```

## WASM Modules

WASM binaries are **pre-built and included** in `extension/lib/`. No build required.
7 changes: 1 addition & 6 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
"dependencies": {
"@fontsource/inter": "^5.2.8",
"@fontsource/lora": "^5.2.8",
"@nockbox/iris-sdk": "file:./sdk",
"@nockbox/iris-sdk": "file:sdk",
"@scure/base": "^2.0.0",
"@scure/bip39": "^2.0.1",
"react": "^19.2.0",
Expand Down