โšก Built on Solana ยท Anchor 0.32

Stripe.
Rebuilt On-Chain.

Production-grade SaaS billing with zero databases, zero payment processors, and zero trust assumptions. Subscriptions as PDAs. Payments as immutable audit logs.

GitHub โ†’
โšก ~15K CU per instruction
๐Ÿ’ธ ~$0.001 per transaction
๐Ÿšซ No Middlemen
๐Ÿ”’ Trustless ยท Permissionless
Three steps. Fully on-chain.
No backend. No database. Just Solana PDAs and cryptographic guarantees.
1

Connect Wallet

Connect your Phantom wallet. Your public key becomes your identity โ€” no accounts, no passwords, no email required.

2

Choose a Plan

Plans are stored as Program Derived Addresses on Solana. Price, period, and capacity are enforced by smart contract โ€” immutable once set.

3

Subscribe On-Chain

One atomic transaction transfers SOL and creates your Subscription PDA. Every payment is an immutable PaymentRecord โ€” a permanent, auditable on-chain receipt.

Web2 Stripe vs On-Chain BillChain
Why rebuild billing on Solana? Here's exactly what you gain โ€” and what you trade off.
Dimension
โŒ Stripe (Web2)
โœ… BillChain (On-Chain)
Trust Model
Stripe TOS, bank risk, centralized
Trustless โ€” code is law
Transaction Fee
2.9% + $0.30 per payment
~$0.001 flat, always
Censorship
Account can be frozen anytime
Permissionless โ€” no one can stop you
Audit Trail
Stripe dashboard (their data)
On-chain PaymentRecord PDAs, forever
Composability
REST API, webhooks
Direct CPI from any Solana program
Downtime Risk
Stripe outages affect your revenue
Solana 99.9% uptime, no single point
PCI Compliance
Required ($$$)
Not applicable โ€” no card data
Live on Solana Devnet
These plans are loaded directly from the blockchain. No API. No cache.
Loading plans from blockchain...
4-Level PDA Hierarchy
Each account is a Program Derived Address โ€” deterministically findable, perfectly isolated, and zero-collision by design.
ServiceRegistry
seeds: ["registry", authority]
โ”œโ”€โ”€ SubscriptionPlan[0]
seeds: ["plan", registry, plan_id_u64_le]
โ”‚ โ””โ”€โ”€ Subscription[subscriber]
seeds: ["subscription", plan, subscriber]
โ”‚ โ”œโ”€โ”€ PaymentRecord[0] โ† immutable audit log
โ”‚ โ””โ”€โ”€ PaymentRecord[n]
โ””โ”€โ”€ SubscriptionPlan[1] ...