Cool to see another founder tackling this — respect the hustle.
I think we're solving different slices of the same problem. QBitFlow wraps authorization + verification in smart contracts. What I ended up building is just the verification primitive: "did X USDC land at Y address?" — no smart contract, no percentage fee, $0.05 flat.
For someone who wants a turnkey checkout flow, QBitFlow makes sense. For someone who already handles their own payment UX and just needs reliable confirmation, that's where paywatcher.dev fits.
On the $10k payment: $0.05 vs $75 is a pretty different cost structure. But it's also a different scope — apples and oranges to some degree.
Would genuinely be curious what others here prefer: full-stack payment handling or composable primitives?
Fair point — and honestly, paywatcher.dev looks clean for that use case. If all you need is "did the money arrive?" then $0.05 flat is hard to argue with.
You're right that it's apples and oranges. The way I see it: paywatcher solves verification, QBitFlow solves the billing lifecycle (authorization, recurring charges, cancellation, merchant dashboard). Different layers of the same stack.
Which actually makes me wonder — have you thought about integrations? A developer could use paywatcher for one-time payment confirmation and QBitFlow for subscriptions, depending on the use case. Or we could even use paywatcher as a verification layer under the hood for chains we don't natively support yet.
To your question: I think the answer is "both, depending on the builder." Someone spinning up a weekend project with a tip jar wants a primitive. Someone running a SaaS with MRR tracking and automated renewals wants the full stack. The market is big enough for both approaches.
Either way — cool to see someone else building in this space. Would be happy to chat offline if you ever want to explore how the tools could complement each other.
Appreciate the thoughtful response — and yeah, the integration angle is interesting. PayWatcher as a verification layer for chains QBitFlow doesn't natively cover yet makes a lot of sense architecturally. Keeps your stack lean while expanding chain support.
The primitive vs. full-stack split maps well to how developers actually buy tools: start with the smallest thing that solves the immediate problem, then add layers as complexity grows. Tip jar → PayWatcher. SaaS with MRR → QBitFlow. Both valid.
Happy to explore the integration idea — hello@paywatcher.dev if you want to take it offline.
Agreed on self-custodied being the way to go. I went down the Alchemy webhook path initially and it works — until it doesn't.
The edge cases pile up: reorgs on Base (rare but real), missed events when your webhook endpoint is down, distinguishing multiple payments of the same amount to the same address within a short window. All solvable, but each one is a weekend of debugging.
I ended up building a verification-only layer that handles the polling, confirmation, and webhook delivery. Non-custodial — never touches funds, just confirms "yes, X USDC arrived at Y address." Flat fee per verification ($0.05) vs rolling my own infra.
Still early but it's been solid for the use case OP described. Happy to share more if anyone's interested.
The nonce serialization problem is real — cache locks work but get hairy
at scale, especially if you need concurrent payouts.
For the verification side (confirming stakes arrived), you might consider
separating that from your sidecar entirely. Watching the chain for a
specific USDC amount + matching it to an intent is a well-defined problem
that doesn't need to live in your app logic.
I'm building something in this space (PayWatcher — verification-only,
non-custodial, $0.05 flat on Base). Would have saved you the transfer
event parsing at least. Curious how you handle confirmation edge cases
like reorgs.
Yes, USDC on Base for now. The architecture is token-agnostic though — adding USDT or DAI is mostly config, not a rewrite. Base was the starting point because of low fees and Circle's native USDC support.
Which token/chain would be most useful for you?
I think we're solving different slices of the same problem. QBitFlow wraps authorization + verification in smart contracts. What I ended up building is just the verification primitive: "did X USDC land at Y address?" — no smart contract, no percentage fee, $0.05 flat.
For someone who wants a turnkey checkout flow, QBitFlow makes sense. For someone who already handles their own payment UX and just needs reliable confirmation, that's where paywatcher.dev fits.
On the $10k payment: $0.05 vs $75 is a pretty different cost structure. But it's also a different scope — apples and oranges to some degree.
Would genuinely be curious what others here prefer: full-stack payment handling or composable primitives?