Mars Credit is a mineable, proof-of-work Layer-1 blockchain — a fork of Ethereum (Geth v1.10.18) with chain ID 110110.
This monorepo contains the miner apps, block explorer, public website, and brand assets.
| Directory | Description |
|---|---|
miner-app/ |
Cross-platform Electron miner (macOS + Windows). The main downloadable miner for end users. |
miner-apple-silicon/ |
Native Swift/SwiftUI macOS miner optimized for Apple Silicon (M1/M2/M3). |
frontend/ |
Blockscout-based blockchain explorer — deployed at blockscan.marscredit.xyz. |
website-public/ |
Public marketing website for Mars Credit. |
brandassets/ |
Brand assets, logos, and Midjourney style reference. |
Pre-built binaries for the cross-platform Electron miner:
- macOS (Apple Silicon):
Mars Credit Miner-1.0.0-arm64.dmg - macOS (Intel):
Mars Credit Miner-1.0.0.dmg - Windows:
Mars Credit Miner Setup 1.0.0.exe
Links above will work once the builds are committed to the repo. See Building from source to build yourself.
- Download the miner for your platform (see above).
- Install and launch the app.
- The app downloads a compatible Geth binary on first run (~30 MB).
- Set up a wallet — generate a new one, import by mnemonic/private key, or paste an existing address.
- Click Start mining and you're on the Mars Credit network.
Data and config are stored in ~/.marscredit/ (macOS/Linux) or %USERPROFILE%\.marscredit\ (Windows).
cd miner-app
npm install
# Development
npm run electron:dev
# Production builds
npm run build:mac # macOS DMG (Intel + Apple Silicon)
npm run build:win # Windows NSIS installerOutput goes to miner-app/release/.
cd miner-apple-silicon
swift build -c release
./create_app.sh # Creates .app bundle
./scripts/build_app_dmg.sh # Creates DMGOutput goes to miner-apple-silicon/builds/build29/.
- Block Explorer: blockscan.marscredit.xyz
- Public RPC:
https://rpc.marscredit.xyz - Chain ID:
110110 - Network ID:
110110 - Block Reward: 3 MARS
The block explorer and public website deploy to Railway using the root-level Dockerfiles:
Dockerfile.frontend— Blockscout block explorerDockerfile.web— Public website
Build from the repo root: docker build -f Dockerfile.frontend .
Blockscan-specific Railway environment variables (OG image, top-accounts exclusions): see frontend/deploy/BLOCKSCAN_ENV.md.
MIT