Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/luniehq/lunie
Lunie is staking, simplified ✨
https://github.com/luniehq/lunie
blockchain cosmos cosmos-hub proof-of-stake wallet
Last synced: 2 months ago
JSON representation
Lunie is staking, simplified ✨
- Host: GitHub
- URL: https://github.com/luniehq/lunie
- Owner: luniehq
- License: apache-2.0
- Created: 2017-08-08T05:34:48.000Z (over 7 years ago)
- Default Branch: develop
- Last Pushed: 2023-03-07T00:37:42.000Z (almost 2 years ago)
- Last Synced: 2024-04-18T23:23:02.121Z (10 months ago)
- Topics: blockchain, cosmos, cosmos-hub, proof-of-stake, wallet
- Language: JavaScript
- Homepage: https://lunie.io
- Size: 96.8 MB
- Stars: 281
- Watchers: 16
- Forks: 100
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
- Codeowners: .github/CODEOWNERS
- Security: SECURITY.md
Awesome Lists containing this project
README
# Lunie Official Monorepo
## Workspaces:
- `/api`: an API to interact with many different PoS blockchains
([README](https://github.com/luniehq/lunie/blob/develop/api/README.md))- `/app`: Lunie [web](https://app.lunie.io), [iOS](https://testflight.apple.com/join/mFLnwrWM), and [Android](https://play.google.com/store/apps/details?id=org.lunie.lunie)
([README](https://github.com/luniehq/lunie/blob/develop/app/README.md))- `/extension`: [Lunie browser extension](https://chrome.google.com/webstore/detail/lunie-browser-extension/hbaijkfbhhdhhjdfbpdafkjimohblhgf).
([README](https://github.com/luniehq/lunie/blob/develop/extension/README.md))## Preparation:
To install the required modules for `/api`, `/app`, and `/extension` all at once, run:
```bash
$ 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:
```bash
$ yarn workspace add
```As an example:
```bash
$ yarn workspace extension add cool-vue-package
```## To run the code in a single workspace:
- API:
```bash
$ yarn workspace api start
```- App:
```bash
$ yarn workspace app serve
```### To build extension:
```bash
$ export LUNIE_API=https://staging-api.lunie.io
$ yarn workspace extension build
```### To build extension enabling localhost connection
```bash
$ export LUNIE_API=https://staging-api.lunie.io
$ yarn workspace extension build:dev
```