Skip to content

zonelessdev/zoneless

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Zoneless

CI License: Apache 2.0 Node.js Angular

The Open-source Stripe Connect Alternative. Pay your marketplace sellers globally with USDC. Near-zero fees. Instant payouts. No vendor lock-in. Self-host your entire payout stack.

Zoneless is a free, open-source drop-in replacement for the payout part of Stripe Connect. It lets you pay marketplace sellers globally with stablecoins (USDC) using an identical API to Stripe — at near-zero fees.

Zoneless Express Dashboard

See the Live Demo →

// import Stripe from 'stripe';
// const client = new Stripe('sk_live_...');

import { Zoneless } from '@zoneless/node';
const client = new Zoneless('sk_z_...', 'api.example.com');

// Same API you already know
const account = await client.accounts.create({
  type: 'express',
  country: 'US',
  email: 'seller@example.com',
});

await client.payouts.create({
  amount: 10000,
  currency: 'usdc',
  destination: account.id,
});

Zoneless vs Stripe Connect

Zoneless Stripe Connect
Monthly account fee Free $2/active account
Payout fee (domestic) ~$0.002 (SOL gas) 0.25% + $0.25
Payout fee (intl) ~$0.002 (SOL gas) $1.50 per payout
Cross-border fee None +0.25–1.25%
Currency conversion None (USDC) +0.50–1% FX fee
Payout speed Seconds 2–7 business days
Global coverage 220+ countries & regions ~47 countries
Source code Open source (Apache 2.0) Proprietary
Self-hostable Yes No

Quick Start

git clone https://github.com/zonelessdev/zoneless.git
cd zoneless
docker compose up -d

Open localhost/setup to create your platform account and API key.

See the full Quickstart Guide for creating connected accounts, transfers, and payouts.

Documentation

All guides and API reference docs live at zoneless.com/docs:

Local Development

npm install
docker compose up -d        # MongoDB
npx nx serve api            # API on :3333
npx nx serve web            # Dashboard on :4203

Or run everything at once:

npm run dev

Running Tests

npx nx test api
npx nx test web

Project Structure

zoneless/
├── apps/
│   ├── api/              # Express.js API backend
│   └── web/              # Angular dashboard & onboarding
├── libs/
│   └── shared-types/     # Shared TypeScript interfaces
├── docker-compose.yml    # Full-stack Docker setup
└── nx.json

Contributing

See CONTRIBUTING.md for development setup, style guidelines, and the pull request process.

Security

See SECURITY.md to report vulnerabilities.

License

Apache License 2.0

About

Open-source Stripe Connect alternative with $0.002 fees. Identical API to Stripe. Pay marketplace sellers across 220+ countries & regions instantly with USDC.

Topics

Resources

License

Code of conduct

Contributing

Security policy

Stars

Watchers

Forks

Packages

 
 
 

Contributors