Lunie is staking, simplified ✨
Last updated Jul 1, 2026
278
Stars
92
Forks
9
Issues
0
Stars/day
Attention Score
68
Language breakdown
JavaScript 64.4%
Vue 32.5%
CSS 1.6%
Shell 0.7%
HTML 0.4%
Swift 0.3%
▸ Files
click to expand
README
Lunie Official Monorepo
Workspaces:
/api: an API to interact with many different PoS blockchains
/extension: Lunie browser extension.
Preparation:
To install the required modules for /api, /app, and /extension all at once, run:
$ yarn
If you're only interested in /api, /app, or /extension there are instructions below for how to work in one workspace at a time.
To install new dependencies in a single workspace:
Run this command with the following syntax:
$ yarn workspace <workspace-name> add <package-name>
As an example:
$ yarn workspace extension add cool-vue-package
To run the code in a single workspace:
- API:
$ yarn workspace api start
- App:
$ yarn workspace app serve
To build extension:
$ export LUNIE_API=https://staging-api.lunie.io
$ yarn workspace extension build
To build extension enabling localhost connection
$ export LUNIE_API=https://staging-api.lunie.io
$ yarn workspace extension build:dev🔗 More in this category