Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/dhruv-2003/stealthmru
https://github.com/dhruv-2003/stealthmru
Last synced: 21 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/dhruv-2003/stealthmru
- Owner: Dhruv-2003
- Created: 2024-04-03T10:12:57.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2024-08-21T09:30:02.000Z (3 months ago)
- Last Synced: 2024-10-14T15:02:16.174Z (about 1 month ago)
- Language: TypeScript
- Size: 19.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Stealth Micro rollup
A Stealth Address -based privacy enabling micro rollup for all EVM blockchains.
## Project Structure
```
│
├── src
│ ├── state.ts
│ ├── machine.stackr.ts
│ ├── actions.ts
│ ├── transitions.ts
│ ├── index.ts
│ ├── stealth.ts
│
│── stackr.config.ts
│── deployment.json```
## How to run ?
### Run using Node.js :rocket:
```bash
npm start
```### Run using Docker :whale:
- Build the image using the following command:
```bash
# For Linux
docker build -t {{projectName}}:latest .# For Mac with Apple Silicon chips
docker buildx build --platform linux/amd64,linux/arm64 -t {{projectName}}:latest .
```- Run the Docker container using the following command:
```bash
# If using SQLite as the datastore
docker run -v ./db.sqlite:/app/db.sqlite -p : --name={{projectName}} -it {{projectName}}:latest# If using other URI based datastores
docker run -p : --name={{projectName}} -it {{projectName}}:latest
```