<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[Xeno Money]]></title><description><![CDATA[Xeno Money]]></description><link>https://blog.xeno.money</link><image><url>https://cdn.hashnode.com/res/hashnode/image/upload/v1770129864590/f2987bd2-51f1-4d21-b1e3-53a144e1f7ac.png</url><title>Xeno Money</title><link>https://blog.xeno.money</link></image><generator>RSS for Node</generator><lastBuildDate>Fri, 10 Apr 2026 00:45:29 GMT</lastBuildDate><atom:link href="https://blog.xeno.money/rss.xml" rel="self" type="application/rss+xml"/><language><![CDATA[en]]></language><ttl>60</ttl><item><title><![CDATA[How to Add Stablecoin Acceptance to Your Android POS Terminal]]></title><description><![CDATA[TL;DR: Any Android POS terminal (PAX, Sunmi) can accept stablecoin payments today. No new hardware. No card network. Settlement in seconds with near 0 fees. Here's how it works and what a PSP needs to]]></description><link>https://blog.xeno.money/how-to-add-stablecoin-acceptance-to-your-android-pos-terminal</link><guid isPermaLink="true">https://blog.xeno.money/how-to-add-stablecoin-acceptance-to-your-android-pos-terminal</guid><dc:creator><![CDATA[Tom Rowbotham]]></dc:creator><pubDate>Tue, 31 Mar 2026 15:46:08 GMT</pubDate><enclosure url="https://cdn.hashnode.com/uploads/covers/6982060be9a7b497a6c2e435/f76629fd-775d-43f7-85d1-51b9f972ae28.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p><strong>TL;DR:</strong> Any Android POS terminal (PAX, Sunmi) can accept stablecoin payments today. No new hardware. No card network. Settlement in seconds with near 0 fees. Here's how it works and what a PSP needs to integrate.</p>
<hr />
<h2>Your Terminal Already Supports Stablecoins</h2>
<p>If your merchant network runs Android POS terminals, you're one integration away from accepting stablecoin payments.</p>
<p>No new hardware. No terminal swap. No firmware update.</p>
<p>The PAX A920 sitting on a merchant's counter right now can accept a USDC payment in 2.3 seconds at $0.04 flat. The Sunmi P2 can do the same. So can the PAX A77, Sunmi V2 Pro, or any Android or iOS terminal with NFC.</p>
<p>The merchant installs an app. The customer taps their phone. The stablecoin moves from the customer's wallet to the merchant's wallet. Done.</p>
<p>It's live on Base and Solana Mainnet today.</p>
<h2>What "Stablecoin at POS" Actually Means</h2>
<p>Let's be precise about what we're talking about.</p>
<p><strong>Stablecoins</strong> are digital dollars (USDC), euros (EURC), or other fiat-pegged tokens that live on a blockchain. Circle issues USDC and EURC. They're regulated, audited, and backed 1:1 by reserves. A USDC is always worth $1.00. There's no price volatility.</p>
<p><strong>POS terminal</strong> is the physical device where a customer pays — the thing you tap your card on. Modern terminals from PAX and Sunmi run Android, which means they can run apps just like a phone.</p>
<p><strong>Stablecoin at POS</strong> means: a customer taps their phone on a merchant's Android terminal, and stablecoins move directly from the customer's wallet to the merchant's wallet. No card network. No acquirer. No clearing house. No 3-day settlement.</p>
<p>The merchant sees "EUR 15.00 received." Not "0.0045 ETH." Not a crypto ticker. Euros.</p>
<h2>How the Payment Flow Works</h2>
<p>The customer experience is identical to Apple Pay. Tap, done.</p>
<p>Behind the scenes:</p>
<p><strong>Step 1: Tap</strong> The customer holds their phone near the terminal. NFC activates. The terminal discovers the customer's wallet and reads their address, preferred token (USDC, EURC), and chain.</p>
<p><strong>Step 2: Sign</strong> The terminal sends a payment request to the phone: "Pay 15.00 EUR to merchant 0xABC..." The phone signs this request cryptographically — offline, without internet — using the customer's private key stored in the device's secure element.</p>
<p>This signature uses EIP-712 typed data, the same standard that MetaMask and every major Ethereum wallet uses. It's not a proprietary format. It's an open standard.</p>
<p><strong>Step 3: Submit</strong> The terminal sends the signed payment to the Xeno API. The API verifies the signature, sponsors the gas fee (so the customer pays nothing extra), and executes the transfer on Base (Coinbase's Layer 2 blockchain).</p>
<p><strong>Step 4: Settled</strong> The stablecoin arrives in the merchant's wallet. 2-3 seconds. Final. No chargebacks. No batch processing. No T+2.</p>
<pre><code class="language-plaintext">Customer taps phone
  -&gt; Phone signs payment offline (NFC)
    -&gt; Terminal submits to API
      -&gt; API executes on-chain
        -&gt; Merchant wallet receives funds (2-3 seconds)
</code></pre>
<p>Compare this to a card payment:</p>
<pre><code class="language-plaintext">Customer taps card
  -&gt; Terminal sends to acquirer
    -&gt; Acquirer sends to card network
      -&gt; Card network sends to issuing bank
        -&gt; Issuing bank authorises
          -&gt; Clearing happens overnight
            -&gt; Settlement in 2-3 business days
              -&gt; Merchant's bank account receives funds
</code></pre>
<h2>What a PSP Needs to Integrate</h2>
<p>If you're a Payment Service Provider and want to offer stablecoin acceptance to your merchants, here's what's involved.</p>
<h3>What Xeno Provides</h3>
<ul>
<li><p><strong>Relay API</strong> — Submit signed payments, check status, fetch configuration</p>
</li>
<li><p><strong>Smart contracts</strong> — Audited forwarder contracts on Base Mainnet</p>
</li>
<li><p><strong>Gas sponsorship</strong> — Xeno pays all blockchain gas fees</p>
</li>
<li><p><strong>Android SDK</strong> — NFC communication module (AAR library)</p>
</li>
<li><p><strong>Sandbox</strong> — Full testnet environment on Base Sepolia</p>
</li>
<li><p><strong>Documentation</strong> — Protocol spec, code samples, API reference</p>
</li>
</ul>
<h3>What You Build</h3>
<ul>
<li><p><strong>Terminal app</strong> — An Android app (or module in your existing POS app) that handles the NFC flow</p>
</li>
<li><p><strong>Merchant wallets</strong> — Generate and assign wallet addresses to merchants</p>
</li>
<li><p><strong>Reporting</strong> — Include stablecoin transactions in your merchant dashboards</p>
</li>
<li><p><strong>Fiat conversion</strong> (optional) — If merchants want euros in their bank account, not stablecoins</p>
</li>
</ul>
<h3>Timeline</h3>
<p>For a PSP with existing Android terminal infrastructure:</p>
<ul>
<li><p><strong>Week 1-2:</strong> Sandbox integration, NFC protocol implementation</p>
</li>
<li><p><strong>Week 3:</strong> Testing with testnet tokens</p>
</li>
<li><p><strong>Week 4:</strong> Production deployment, first live transaction</p>
</li>
</ul>
<p>That's it. Four weeks from "let's try this" to live stablecoin payments on your terminal network.</p>
<h2>The Economics</h2>
<p>On a $100 transaction:</p>
<table>
<thead>
<tr>
<th></th>
<th>Card Payment</th>
<th>Stablecoin Payment</th>
</tr>
</thead>
<tbody><tr>
<td>Merchant receives</td>
<td>$96.70</td>
<td>$99.96</td>
</tr>
<tr>
<td>Total fees</td>
<td>~$3.30 (interchange + scheme + acquirer)</td>
<td>$0.04 flat</td>
</tr>
<tr>
<td>Settlement</td>
<td>2-3 business days</td>
<td>2-3 seconds</td>
</tr>
<tr>
<td>Chargeback risk</td>
<td>Yes ($20-100 per dispute)</td>
<td>Zero</td>
</tr>
<tr>
<td>Chargeback reserve</td>
<td>~$1.00 held for 90-180 days</td>
<td>$0</td>
</tr>
</tbody></table>
<p>For a merchant doing \(50,000/month in card payments, that's roughly \)1,650/month in card fees replaced by $20/month in stablecoin fees.</p>
<p>For the PSP, stablecoin payments mean:</p>
<ul>
<li><p>No interchange to share with card networks</p>
</li>
<li><p>No chargeback losses or dispute management</p>
</li>
<li><p>No batch settlement or clearing infrastructure</p>
</li>
<li><p>Higher margin per transaction</p>
</li>
</ul>
<h2>Supported Terminals</h2>
<p>Any Android terminal with NFC. Currently tested and live on:</p>
<table>
<thead>
<tr>
<th>Manufacturer</th>
<th>Models</th>
</tr>
</thead>
<tbody><tr>
<td>PAX</td>
<td>A920, A920 Pro, A920 Max, A77</td>
</tr>
<tr>
<td>Sunmi</td>
<td>P2, V2 Pro</td>
</tr>
<tr>
<td>Urovo</td>
<td>i9100</td>
</tr>
<tr>
<td>Castles Technology</td>
<td>SATURN1000</td>
</tr>
</tbody></table>
<p>If your merchants use these terminals, they already have the hardware. If they use other Android NFC terminals, it'll work there too - it's a standard Android app.</p>
<h2>"But My Merchants Don't Accept Crypto"</h2>
<p>They're not accepting crypto. They're accepting dollars and euros.</p>
<p>USDC is a dollar. EURC is a euro. They don't fluctuate. The merchant sees "$42.50 received" — not a blockchain address, not a token name, not a price chart.</p>
<p>The merchant doesn't need to understand stablecoins, wallets, or blockchain. They see a payment come in, denominated in their local currency, settled instantly. It looks like a card payment that's faster and cheaper.</p>
<h2>"Who's Using This Today?"</h2>
<p>Stablecoin transaction volume exceeded $27.6 trillion in 2024 — more than Visa. But almost all of it is online: trading, remittances, DeFi.</p>
<p>The gap is physical retail. The infrastructure to spend stablecoins at a counter didn't exist until now.</p>
<p>Xeno is live in Iceland processing NFC stablecoin payments on merchant terminals. The tech works. The question for PSPs is whether they want to be first or fifth to offer this to their merchants.</p>
<h2>Getting Started</h2>
<p>If you're a PSP or acquirer interested in adding stablecoin acceptance to your terminal network, <strong>talk to us</strong> — <a href="https://xeno.money">xeno.money</a> for production onboarding</p>
<p>The hardware is already on your merchants' counters. The stablecoins are already in customers' wallets. The missing piece was the protocol that connects them. That's what Xeno built.</p>
<hr />
<p><em>Xeno enables instant, gasless stablecoin payments via NFC tap-to-pay. Works on existing Android POS terminals. No card network required.</em> <a href="https://xeno.money"><em>xeno.money</em></a></p>
]]></content:encoded></item><item><title><![CDATA[Your Crypto Card Doesn't Remove Middlemen. It Adds More.]]></title><description><![CDATA[In the world of payments, every middleman takes a cut, adds delay, and introduces a point of failure. That's not an opinion - it's maths. Visa takes 0.15%. The card issuer takes 1.5%. The acquirer tak]]></description><link>https://blog.xeno.money/your-crypto-card-doesn-t-remove-middlemen-it-adds-more</link><guid isPermaLink="true">https://blog.xeno.money/your-crypto-card-doesn-t-remove-middlemen-it-adds-more</guid><category><![CDATA[Blockchain]]></category><category><![CDATA[Stablecoins ]]></category><category><![CDATA[payments]]></category><category><![CDATA[Cryptocurrency]]></category><category><![CDATA[crypto]]></category><dc:creator><![CDATA[Tom Rowbotham]]></dc:creator><pubDate>Tue, 24 Mar 2026 13:11:07 GMT</pubDate><enclosure url="https://cdn.hashnode.com/uploads/covers/6982060be9a7b497a6c2e435/3c1f078e-cb1a-4ff1-9d6d-ee7ca9cc2874.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p>In the world of payments, every middleman takes a cut, adds delay, and introduces a point of failure. That's not an opinion - it's maths. Visa takes 0.15%. The card issuer takes 1.5%. The acquirer takes 0.25%. The settlement bank adds a day. The clearing system adds another. Each entity needs its own compliance, its own infrastructure, its own margin. By the time a payment reaches the merchant, 3-4% has evaporated and 1-3 business days have passed.</p>
<p>The whole point of crypto was supposed to fix this. Peer-to-peer. No middlemen. Instant settlement.</p>
<p>So why do crypto debit cards add more middlemen than a normal card?</p>
<p>Every week someone sends me a video of a new card powered by crypto. Solflare card. Kast card. Gnosis Pay. "Look - you can spend crypto in a shop!" And yes, you can, and yes, it is increasing adoption of crypto. But what's actually happening when you tap that card?</p>
<p>Here's what's actually going on behind the scenes.</p>
<hr />
<h2>What Happens When You Tap a Crypto Debit Card</h2>
<p>Imagine you've tapped your Gnosis Pay card (loaded into Apple Pay) at a coffee shop. As a customer, it probably felt instant. Behind the scenes, it just engaged 14 different entities in the per-transaction flow alone:</p>
<ol>
<li><p>Your stablecoin leaves your Safe wallet on Gnosis Chain</p>
</li>
<li><p>Gnosis Pay — the company orchestrating the card programme — processes it</p>
</li>
<li><p>Monerium burns the stablecoin and converts it to euros</p>
</li>
<li><p>Monavate (the BIN sponsor) authorized the transaction on Visa's network</p>
</li>
<li><p>Paymentology (the issuer processor) handled the auth message</p>
</li>
<li><p>Visa Token Service replaced your card number with a device token</p>
</li>
<li><p>Apple Pay managed the wallet on your phone</p>
</li>
<li><p>The iPhone's Secure Element stored the tokenized credential</p>
</li>
<li><p>Visa routed the transaction to the merchant's acquirer</p>
</li>
<li><p>VisaNet handled the clearing</p>
</li>
<li><p>A settlement bank moved the funds between institutions</p>
</li>
<li><p>The payment terminal read your NFC signal</p>
</li>
<li><p>The acquirer formatted it for the network</p>
</li>
<li><p>The merchant's bank account finally receives euros. In 1-3 business days.</p>
</li>
</ol>
<p>And that's just the per-transaction flow. Before any of this happened, a KYC provider verified your identity, an AML provider screened your wallet, a card bureau manufactured the physical card, and the issuer verified you again when you added it to Apple Pay. The full infrastructure behind a single tap involves 19 entities.</p>
<p>Your stablecoin went on a round trip: it started as crypto, got converted to fiat, pushed through Visa, cleared through a settlement bank, and landed in the merchant's bank account days later. The crypto part? Just an extra step at the beginning.</p>
<hr />
<h2>What Happens When You Tap With Xeno</h2>
<p>Here's what happens when you tap your phone at a Xeno reader:</p>
<ol>
<li><p>Your phone signs a transaction offline</p>
</li>
<li><p>A smart contract transfers the stablecoin</p>
</li>
<li><p>The merchant's wallet receives it</p>
</li>
</ol>
<p>3 entities. ~400 milliseconds. Done.</p>
<p>No card network. No BIN sponsor. No acquirer. No clearing. No settlement bank. No 1-3 day wait.</p>
<hr />
<h2>The Round Trip Nobody Talks About</h2>
<p>Here's the journey your money takes with a crypto card:</p>
<pre><code class="language-plaintext">You buy stablecoins with fiat
  → The card converts them back to fiat
    → Fiat goes through Visa
      → Visa settles through banks
        → Merchant gets fiat
</code></pre>
<p>Fiat to crypto to fiat to card network to fiat. A full round trip that adds cost, complexity, and delay at every step.</p>
<p>With Xeno:</p>
<pre><code class="language-plaintext">You have stablecoins
  → They go to the merchant
</code></pre>
<p>That's it.</p>
<hr />
<h2>The Fee Breakdown</h2>
<p>On a $100 purchase with a crypto debit card, each entity takes a cut:</p>
<table>
<thead>
<tr>
<th>Who</th>
<th>Takes</th>
</tr>
</thead>
<tbody><tr>
<td>Card programme manager / conversion spread</td>
<td>~$1.50</td>
</tr>
<tr>
<td>Card issuer interchange</td>
<td>~$1.50</td>
</tr>
<tr>
<td>Card network (Visa)</td>
<td>~$0.15</td>
</tr>
<tr>
<td>Acquirer (Worldpay, Adyen)</td>
<td>~$0.25</td>
</tr>
<tr>
<td>Apple (if Apple Pay)</td>
<td>~$0.05</td>
</tr>
<tr>
<td><strong>Total</strong></td>
<td><strong>~$3.45</strong></td>
</tr>
</tbody></table>
<p>The merchant gets $96.55. After 1-3 business days.</p>
<p>With Xeno, the merchant gets \(99.96. In under a second. \)3.45 vs $0.04.</p>
<hr />
<h2>"But It Works!"</h2>
<p>Yes, crypto cards work. You can tap a Gnosis Pay card and buy a coffee. That's real. But "it works" isn't the same as "it's good."</p>
<p>Crypto debit cards take the most expensive, complex payment infrastructure ever built - card networks - and add more layers on top. They need everything a normal card needs plus everything crypto needs. They don't disrupt the card network. They depend on it.</p>
<hr />
<h2>The Point</h2>
<p>The whole promise of crypto was to remove middlemen from payments. Crypto debit cards do the opposite - they add a crypto layer on top of all the existing middlemen, because that's the only way to make crypto work at a Visa terminal.</p>
<p>Xeno doesn't need a Visa terminal. The merchant accepts the stablecoin directly - tap, done, settled. No round trip. No 14 middlemen. No 1-3 day wait.</p>
<p>Crypto cards depend on the infrastructure they claim to replace. Xeno replaces it.</p>
<hr />
<p><em>Xeno is a contactless stablecoin payment network. Tap to pay, peer to peer, settled in under a second.</em> <a href="https://xeno.money"><em>xeno.money</em></a></p>
]]></content:encoded></item><item><title><![CDATA[The $125 Billion Chargeback Problem: Why Merchants Need Irreversible Payments]]></title><description><![CDATA[TL;DR: Chargebacks cost merchants $125 billion annually. "Friendly fraud" - where customers dispute legitimate purchases - accounts for up to 75% of all chargebacks. Blockchain-based payments eliminate this entirely through cryptographic finality.

T...]]></description><link>https://blog.xeno.money/the-125-billion-chargeback-problem-why-merchants-need-irreversible-payments</link><guid isPermaLink="true">https://blog.xeno.money/the-125-billion-chargeback-problem-why-merchants-need-irreversible-payments</guid><category><![CDATA[chargebacks ]]></category><category><![CDATA[payments]]></category><category><![CDATA[Stablecoins ]]></category><category><![CDATA[payment]]></category><category><![CDATA[Cryptocurrency]]></category><category><![CDATA[crypto]]></category><category><![CDATA[Blockchain]]></category><dc:creator><![CDATA[Tom Rowbotham]]></dc:creator><pubDate>Tue, 03 Feb 2026 14:59:48 GMT</pubDate><enclosure url="https://cdn.hashnode.com/res/hashnode/image/upload/v1770130902865/212c8eaf-d0ae-41a5-ac4a-6b86458dc40b.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p><strong>TL;DR:</strong> Chargebacks cost merchants $125 billion annually. "Friendly fraud" - where customers dispute legitimate purchases - accounts for up to 75% of all chargebacks. Blockchain-based payments eliminate this entirely through cryptographic finality.</p>
<hr />
<h2 id="heading-the-hidden-tax-on-every-transaction">The Hidden Tax on Every Transaction</h2>
<p>Every time you swipe a card, the merchant pays more than just the processing fee. They're also paying for the risk that you'll call your bank next week and say "I didn't make that purchase."</p>
<p>This is the chargeback system, and it costs merchants $125 billion per year globally.</p>
<h2 id="heading-how-chargebacks-work">How Chargebacks Work</h2>
<p>When a cardholder disputes a transaction, the process looks like this:</p>
<ol>
<li><p>Customer contacts bank: "I don't recognize this charge"</p>
</li>
<li><p>Bank immediately reverses the funds from merchant</p>
</li>
<li><p>Merchant must prove the transaction was legitimate</p>
</li>
<li><p>If merchant loses (common), they pay the amount PLUS a $20-100 fee</p>
</li>
</ol>
<p>The system is designed to protect consumers from fraud. But it's been weaponized.</p>
<h2 id="heading-the-rise-of-friendly-fraud">The Rise of "Friendly Fraud"</h2>
<p>Friendly fraud - also called first-party fraud or chargeback fraud - is when a customer makes a legitimate purchase and then disputes it anyway.</p>
<p>Common scenarios:</p>
<ul>
<li><p><strong>Buyer's remorse</strong>: Customer regrets purchase, disputes instead of returning</p>
</li>
<li><p><strong>Family fraud</strong>: Child makes purchase on parent's card, parent disputes</p>
</li>
<li><p><strong>Intentional theft</strong>: Customer receives goods, claims they never arrived</p>
</li>
<li><p><strong>Subscription disputes</strong>: Customer forgets they signed up, disputes recurring charge</p>
</li>
</ul>
<p>Studies estimate 60-75% of all chargebacks are friendly fraud, not actual criminal activity.</p>
<h2 id="heading-why-merchants-always-lose">Why Merchants Always Lose</h2>
<p>The chargeback system is stacked against merchants:</p>
<p><strong>Guilty until proven innocent</strong></p>
<ul>
<li><p>Funds are reversed immediately upon dispute</p>
</li>
<li><p>Merchant must prove innocence, not customer prove fraud</p>
</li>
<li><p>Even with evidence, merchants lose 40%+ of disputes</p>
</li>
</ul>
<p><strong>The evidence problem</strong></p>
<ul>
<li><p>How do you prove someone received a coffee?</p>
</li>
<li><p>Digital goods are nearly impossible to prove delivery</p>
</li>
<li><p>"Item not as described" is subjective and hard to counter</p>
</li>
</ul>
<p><strong>The cost of fighting</strong></p>
<ul>
<li><p>Each dispute takes 1-2 hours of staff time</p>
</li>
<li><p>Win or lose, the chargeback fee applies</p>
</li>
<li><p>High dispute rates can get you dropped by payment processors</p>
</li>
</ul>
<p>Most merchants don't even fight - they write off the loss as cost of doing business.</p>
<h2 id="heading-the-real-numbers">The Real Numbers</h2>
<div class="hn-table">
<table>
<thead>
<tr>
<td>Metric</td><td>Value</td></tr>
</thead>
<tbody>
<tr>
<td>Global chargeback costs</td><td>$125 billion/year</td></tr>
<tr>
<td>Average chargeback fee</td><td>$20-100 per dispute</td></tr>
<tr>
<td>Friendly fraud percentage</td><td>60-75% of disputes</td></tr>
<tr>
<td>Merchant win rate</td><td>~20-30%</td></tr>
<tr>
<td>E-commerce chargeback rate</td><td>0.6-1.0% of transactions</td></tr>
</tbody>
</table>
</div><p>For a business doing $10M in annual revenue with a 1% chargeback rate, that's $100,000+ in direct losses annually - before counting staff time and fees.</p>
<h2 id="heading-why-card-networks-cant-fix-this">Why Card Networks Can't Fix This</h2>
<p>Visa and Mastercard have tried:</p>
<ul>
<li><p><strong>Visa Claims Resolution (VCR)</strong> - Streamlined dispute process</p>
</li>
<li><p><strong>Mastercard Dispute Resolution Initiative</strong> - Similar attempt</p>
</li>
<li><p><strong>3D Secure</strong> - Adds authentication layer</p>
</li>
<li><p><strong>Address Verification (AVS)</strong> - Checks billing address</p>
</li>
</ul>
<p>None of these solve the fundamental problem: card transactions are reversible by design.</p>
<p>The reversibility isn't a bug - it's a feature from the 1970s when cards were new and consumer trust needed to be built. But 50 years later, it's being exploited at scale.</p>
<h2 id="heading-the-blockchain-solution-cryptographic-finality">The Blockchain Solution: Cryptographic Finality</h2>
<p>Blockchain transactions work differently:</p>
<ol>
<li><p>Customer initiates payment</p>
</li>
<li><p>Cryptographic signature proves authorization</p>
</li>
<li><p>Network confirms transaction in seconds</p>
</li>
<li><p><strong>Transaction is final</strong> - no mechanism for reversal</p>
</li>
</ol>
<p>There's no bank to call. No dispute process. No chargeback.</p>
<p>This isn't a limitation - it's the point. When you hand someone cash, they can't call their bank and get it back. Blockchain payments work the same way.</p>
<h2 id="heading-but-what-about-consumer-protection">"But What About Consumer Protection?"</h2>
<p>This is the common objection. If payments are irreversible, what protects consumers from fraud?</p>
<p>The answer: different protections for different risks.</p>
<p><strong>What chargebacks protect against:</strong></p>
<ul>
<li><p>Unauthorized transactions (stolen card)</p>
</li>
<li><p>Merchant fraud (goods never shipped)</p>
</li>
<li><p>Billing errors</p>
</li>
</ul>
<p><strong>What blockchain payments provide:</strong></p>
<ul>
<li><p>Cryptographic authorization (can't use without private key)</p>
</li>
<li><p>Transparent settlement (visible on-chain)</p>
</li>
<li><p>No intermediary to commit fraud</p>
</li>
</ul>
<p>For in-person, tap-to-pay transactions specifically:</p>
<ul>
<li><p>Customer is physically present</p>
</li>
<li><p>Biometric/PIN authorization on their device</p>
</li>
<li><p>Immediate exchange of goods/services</p>
</li>
<li><p>Merchant is a known business</p>
</li>
<li><p>Treated just like cash</p>
</li>
</ul>
<p>The fraud vectors that chargebacks address largely don't apply to authenticated, in-person transactions.</p>
<h2 id="heading-what-this-means-for-merchants">What This Means for Merchants</h2>
<p>Merchants accepting irreversible stablecoin payments get:</p>
<p><strong>Immediate benefits:</strong></p>
<ul>
<li><p>Zero chargeback losses</p>
</li>
<li><p>No dispute management overhead</p>
</li>
<li><p>No chargeback fees</p>
</li>
<li><p>No processor penalties for high dispute rates</p>
</li>
</ul>
<p><strong>Better unit economics:</strong></p>
<ul>
<li><p>Keep 100% of legitimate sales</p>
</li>
<li><p>Reduce customer service costs</p>
</li>
<li><p>Eliminate fraud reserves</p>
</li>
<li><p>Lower payment processing costs</p>
</li>
</ul>
<p><strong>Operational simplicity:</strong></p>
<ul>
<li><p>Payment received = payment final</p>
</li>
<li><p>No 90-day dispute windows</p>
</li>
<li><p>No evidence gathering</p>
</li>
<li><p>No arbitration processes</p>
</li>
</ul>
<h2 id="heading-the-xeno-approach">The Xeno Approach</h2>
<p>Xeno enables irreversible stablecoin payments through NFC tap-to-pay:</p>
<ul>
<li><p>Customer taps phone at terminal</p>
</li>
<li><p>Cryptographic signature authorizes payment</p>
</li>
<li><p>Settlement in under 5 seconds</p>
</li>
<li><p>Transaction is final</p>
</li>
</ul>
<p>For merchants, it looks identical to a card payment. But there's no bank that can reverse it later.</p>
<p>This is why PSPs are interested in stablecoin rails - they can offer merchants instant settlement with zero chargeback risk. Better economics for everyone except fraudsters.</p>
<h2 id="heading-the-transition">The Transition</h2>
<p>We're not suggesting merchants stop accepting cards tomorrow. But as stablecoin adoption grows, merchants will increasingly offer incentives for customers to pay with irreversible rails:</p>
<ul>
<li><p>Small discounts (passing on chargeback savings)</p>
</li>
<li><p>Loyalty rewards</p>
</li>
<li><p>Faster checkout</p>
</li>
<li><p>No holds on high-value purchases</p>
</li>
</ul>
<p>The merchants who adopt early will have a cost advantage over competitors still eating $125 billion in annual chargeback losses.</p>
<hr />
<p><em>Xeno enables instant, gasless stablecoin payments with zero chargebacks.</em> <a target="_blank" href="https://xeno.money"><em>Learn how PSPs are integrating</em></a><em>.</em></p>
]]></content:encoded></item><item><title><![CDATA[What Does "New Card Scheme" Actually Mean? Building Payment Rail 3.0]]></title><description><![CDATA[TL;DR: A card scheme is the network that connects consumers, merchants, and banks. Visa and Mastercard have dominated for 50 years. Blockchain enables a third option - one with instant settlement, zero chargebacks, and peer-to-peer finality.

Underst...]]></description><link>https://blog.xeno.money/what-does-new-card-scheme-actually-mean-building-payment-rail-30</link><guid isPermaLink="true">https://blog.xeno.money/what-does-new-card-scheme-actually-mean-building-payment-rail-30</guid><category><![CDATA[Blockchain]]></category><category><![CDATA[Cryptocurrency]]></category><category><![CDATA[crypto]]></category><category><![CDATA[Stablecoins ]]></category><category><![CDATA[payments]]></category><category><![CDATA[payment gateway]]></category><category><![CDATA[nfc]]></category><category><![CDATA[contactless]]></category><dc:creator><![CDATA[Tom Rowbotham]]></dc:creator><pubDate>Tue, 27 Jan 2026 00:00:00 GMT</pubDate><enclosure url="https://cdn.hashnode.com/res/hashnode/image/upload/v1770137783791/17dbcf25-9ddd-4f18-b67a-85820729875a.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p><strong>TL;DR:</strong> A card scheme is the network that connects consumers, merchants, and banks. Visa and Mastercard have dominated for 50 years. Blockchain enables a third option - one with instant settlement, zero chargebacks, and peer-to-peer finality.</p>
<hr />
<h2 id="heading-understanding-payment-rails">Understanding Payment Rails</h2>
<p>When you tap your card at a coffee shop, you're not sending money directly to the merchant. You're initiating a complex dance between multiple parties:</p>
<ol>
<li><p><strong>Your bank</strong> (issuer) - Holds your account</p>
</li>
<li><p><strong>Card network</strong> (Visa/MC) - Routes the transaction</p>
</li>
<li><p><strong>Merchant's bank</strong> (acquirer) - Receives on behalf of merchant</p>
</li>
<li><p><strong>Payment processor</strong> - Handles the technical connection</p>
</li>
<li><p><strong>The merchant</strong> - Finally gets paid (days later)</p>
</li>
</ol>
<p>The "card scheme" is the network layer - the rules, protocols, and infrastructure that make this work across millions of merchants and billions of cards.</p>
<h2 id="heading-the-duopoly-problem">The Duopoly Problem</h2>
<p>Today, two companies control this infrastructure:</p>
<div class="hn-table">
<table>
<thead>
<tr>
<td>Network</td><td>US Market Share</td><td>Founded</td></tr>
</thead>
<tbody>
<tr>
<td>Visa</td><td>~54.9%</td><td>1958</td></tr>
<tr>
<td>Mastercard</td><td>~38.7%</td><td>1966</td></tr>
<tr>
<td>Others (Amex, Discover, UnionPay)</td><td>~6.4%</td><td>Various</td></tr>
</tbody>
</table>
</div><p>For most practical purposes, if you want to accept card payments, you're paying Visa or Mastercard. They set the rules. They set the fees. They set the settlement times.</p>
<p>And those rules haven't fundamentally changed since the 1970s.</p>
<h2 id="heading-why-legacy-rails-are-slow-and-expensive">Why Legacy Rails Are Slow and Expensive</h2>
<p>The card network architecture was designed when:</p>
<ul>
<li><p>Batch processing happened overnight</p>
</li>
<li><p>Fraud detection was manual</p>
</li>
<li><p>International transfers took weeks</p>
</li>
<li><p>Computing power was expensive</p>
</li>
</ul>
<p>So they built in:</p>
<p><strong>3-5 day settlement</strong> - Because batch processing was the only option</p>
<p><strong>2-3% fees</strong> - To cover fraud losses, dispute handling, and network costs</p>
<p><strong>Chargeback rights</strong> - Because there was no way to verify transactions cryptographically</p>
<p><strong>Intermediary chains</strong> - Because direct merchant-consumer connections weren't possible</p>
<p>These aren't features. They're technical debt from 50 years ago.</p>
<h2 id="heading-what-a-modern-card-scheme-looks-like">What a Modern Card Scheme Looks Like</h2>
<p>Blockchain technology enables a fundamentally different architecture:</p>
<div class="hn-table">
<table>
<thead>
<tr>
<td>Aspect</td><td>Legacy (Visa/MC)</td><td>Modern (Blockchain)</td></tr>
</thead>
<tbody>
<tr>
<td>Settlement</td><td>3-5 business days</td><td>Under 5 seconds</td></tr>
<tr>
<td>Fees</td><td>2-3%</td><td>Near zero (gas only)</td></tr>
<tr>
<td>Chargebacks</td><td>Yes (reversible)</td><td>No (cryptographically final)</td></tr>
<tr>
<td>Intermediaries</td><td>4-5 parties</td><td>2 (sender and receiver)</td></tr>
<tr>
<td>Operating hours</td><td>Business days</td><td>24/7/365</td></tr>
<tr>
<td>Cross-border</td><td>Additional fees</td><td>Same as domestic</td></tr>
</tbody>
</table>
</div><p>This isn't incremental improvement. It's a generational leap.</p>
<h2 id="heading-the-amex-model-coexistence-not-replacement">The Amex Model: Coexistence, Not Replacement</h2>
<p>When people hear "new card scheme," they imagine replacing Visa overnight. That's not how payment networks work.</p>
<p>American Express launched in 1958 - the same year as Visa. 65 years later, Amex still isn't accepted everywhere. But it's still a major payment network with a $150B+ market cap.</p>
<p>Amex succeeded by:</p>
<ul>
<li><p>Targeting specific merchant categories first</p>
</li>
<li><p>Offering differentiated benefits (rewards, service)</p>
</li>
<li><p>Building acceptance gradually over decades</p>
</li>
<li><p>Coexisting with Visa/MC, not replacing them</p>
</li>
</ul>
<p>A new card scheme doesn't need universal acceptance on day one. It needs:</p>
<ul>
<li><p>A viable merchant network (even if limited initially)</p>
</li>
<li><p>Clear benefits over alternatives</p>
</li>
<li><p>Technical infrastructure that works</p>
</li>
<li><p>Patient expansion over time</p>
</li>
</ul>
<h2 id="heading-how-blockchain-becomes-a-card-scheme">How Blockchain Becomes a Card Scheme</h2>
<p>The technical components exist:</p>
<p><strong>Stablecoins</strong> - USDC, EURC provide the money layer. $300B market cap, $27.6T annual volume. The settlement currency is ready.</p>
<p><strong>NFC Technology</strong> - The same tap-to-pay interface consumers already use. No new hardware required at terminals.</p>
<p><strong>Smart Contracts</strong> - Programmable settlement rules. Instant, trustless, auditable.</p>
<p><strong>Mobile Wallets</strong> - Self-custodial apps that can sign transactions. The "card" is your phone.</p>
<p>What was missing was the integration layer - the protocol that connects self-custodial wallets to existing merchant terminals using familiar tap-to-pay UX.</p>
<h2 id="heading-the-psp-opportunity">The PSP Opportunity</h2>
<p>Payment Service Providers (PSPs) like Adyen, Worldpay, and Stripe connect merchants to card networks. They're the plumbing of payments.</p>
<p>For PSPs, a new card scheme offers:</p>
<p><strong>Better economics:</strong></p>
<ul>
<li><p>Higher margins (lower network fees)</p>
</li>
<li><p>No chargeback losses</p>
</li>
<li><p>Instant settlement (no float)</p>
</li>
</ul>
<p><strong>New revenue streams:</strong></p>
<ul>
<li><p>Stablecoin on/off ramp fees</p>
</li>
<li><p>Yield on settlement float</p>
</li>
<li><p>Premium pricing for instant settlement</p>
</li>
</ul>
<p><strong>Competitive differentiation:</strong></p>
<ul>
<li><p>Offer merchants something competitors can't</p>
</li>
<li><p>Early mover advantage in stablecoin commerce</p>
</li>
<li><p>Future-proof infrastructure</p>
</li>
</ul>
<p>PSPs don't need to believe in crypto ideology. They just need to see the unit economics.</p>
<h2 id="heading-the-merchant-perspective">The Merchant Perspective</h2>
<p>For merchants, a new card scheme means:</p>
<p><strong>Immediate benefits:</strong></p>
<ul>
<li><p>Lower fees than Visa/MC</p>
</li>
<li><p>Zero chargeback risk</p>
</li>
<li><p>Same-day (or instant) settlement</p>
</li>
</ul>
<p><strong>Same experience:</strong></p>
<ul>
<li><p>Works with existing terminals</p>
</li>
<li><p>Customers tap to pay</p>
</li>
<li><p>Staff training minimal</p>
</li>
</ul>
<p><strong>No crypto complexity:</strong></p>
<ul>
<li><p>Prices in fiat</p>
</li>
<li><p>Settlement in stablecoin (or fiat via PSP)</p>
</li>
<li><p>No blockchain knowledge needed</p>
</li>
</ul>
<p>The merchant doesn't need to "accept crypto." They just need to accept a new payment option that costs less than cards.</p>
<h2 id="heading-the-consumer-perspective">The Consumer Perspective</h2>
<p>For consumers, the value proposition depends on the audience:</p>
<p><strong>Crypto-native users:</strong></p>
<ul>
<li><p>Spend stablecoins directly</p>
</li>
<li><p>Keep self-custody until payment</p>
</li>
<li><p>Earn yield until moment of purchase</p>
</li>
<li><p>No more selling to fiat first</p>
</li>
</ul>
<p><strong>Mainstream users (eventually):</strong></p>
<ul>
<li><p>Another payment option at checkout</p>
</li>
<li><p>Potentially lower prices (merchants pass on savings)</p>
</li>
<li><p>Works the same as Apple Pay</p>
</li>
</ul>
<p>The mainstream adoption follows merchant acceptance. Once enough places accept it, consumers have reason to try it.</p>
<h2 id="heading-building-acceptance-the-chicken-and-egg">Building Acceptance: The Chicken and Egg</h2>
<p>Every new payment network faces the same challenge:</p>
<ul>
<li><p>Consumers won't adopt if merchants don't accept</p>
</li>
<li><p>Merchants won't accept if consumers don't have it</p>
</li>
</ul>
<p>The solution is starting where both sides see immediate value:</p>
<ol>
<li><p><strong>Crypto-native consumers</strong> - Already have stablecoins, motivated to spend them</p>
</li>
<li><p><strong>PSPs with stablecoin interest</strong> - See the economics, willing to pilot</p>
</li>
<li><p><strong>Merchants with chargeback pain</strong> - High-fraud categories benefit most</p>
</li>
<li><p><strong>Geographic concentration</strong> - Build density in specific markets first</p>
</li>
</ol>
<p>This is how every payment network started. Visa didn't launch globally on day one.</p>
<h2 id="heading-the-10-year-view">The 10-Year View</h2>
<p>In 2035, the payments landscape will be unrecognisable:</p>
<ul>
<li><p>Stablecoin rails are the <strong>default for in-person payments</strong> - faster, cheaper, final</p>
</li>
<li><p>Visa and Mastercard are legacy infrastructure, used mainly for credit and cross-border fallback</p>
</li>
<li><p>The $125B chargeback industry no longer exists for participating merchants</p>
</li>
<li><p>PSPs without stablecoin settlement have lost market share or pivoted</p>
</li>
<li><p>Merchants won't accept 3-day settlement or 3% fees when instant and near-zero is available</p>
</li>
<li><p>"Card payment" becomes what "cash payment" is today - still around, but increasingly rare</p>
</li>
</ul>
<p>The question isn't whether blockchain becomes a payment rail. It's who builds the infrastructure that makes it work.</p>
<h2 id="heading-what-rail-30-means">What "Rail 3.0" Means</h2>
<ul>
<li><p><strong>Rail 1.0</strong> - Cash (physical, instant, irreversible)</p>
</li>
<li><p><strong>Rail 2.0</strong> - Cards (digital, slow, reversible)</p>
</li>
<li><p><strong>Rail 3.0</strong> - Blockchain (digital, instant, irreversible)</p>
</li>
</ul>
<p>Rail 3.0 combines the finality of cash with the convenience of cards. That's the opportunity.</p>
<hr />
<p><em>Xeno is building the infrastructure for Payment Rail 3.0 - a new card scheme alongside Visa and Mastercard.</em> <a target="_blank" href="https://xeno.money"><em>Learn how to integrate</em></a><em>.</em></p>
]]></content:encoded></item><item><title><![CDATA[Self-Custody vs Crypto Debit Cards: Why Owning Your Keys Still Matters]]></title><description><![CDATA[TL;DR: Crypto debit cards (Crypto.com, Coinbase Card) require you to give up custody of your funds. You lose the ability to earn yield, face account freeze risks, and still pay card network fees. Self-custodial payment solutions let you keep control ...]]></description><link>https://blog.xeno.money/self-custody-vs-crypto-debit-cards-why-owning-your-keys-still-matters</link><guid isPermaLink="true">https://blog.xeno.money/self-custody-vs-crypto-debit-cards-why-owning-your-keys-still-matters</guid><category><![CDATA[Stablecoins ]]></category><category><![CDATA[Cryptocurrency]]></category><category><![CDATA[crypto]]></category><category><![CDATA[Blockchain]]></category><category><![CDATA[payment gateway]]></category><category><![CDATA[payment]]></category><category><![CDATA[payments]]></category><dc:creator><![CDATA[Tom Rowbotham]]></dc:creator><pubDate>Tue, 20 Jan 2026 00:00:00 GMT</pubDate><enclosure url="https://cdn.hashnode.com/res/hashnode/image/upload/v1770138237670/1828a0f9-ee97-4813-9bd8-b10afc5bfa5b.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p><strong>TL;DR:</strong> Crypto debit cards (<a target="_blank" href="http://Crypto.com">Crypto.com</a>, Coinbase Card) require you to give up custody of your funds. You lose the ability to earn yield, face account freeze risks, and still pay card network fees. Self-custodial payment solutions let you keep control until the moment you spend.</p>
<hr />
<h2 id="heading-the-promise-vs-the-reality">The Promise vs The Reality</h2>
<p>Crypto debit cards were supposed to solve the "spending crypto" problem. Finally, you could use your Bitcoin at Starbucks!</p>
<p>But look closer at how they actually work:</p>
<ol>
<li><p>You deposit crypto to their custodial wallet</p>
</li>
<li><p>They convert it to fiat when you spend</p>
</li>
<li><p>The payment routes through Visa or Mastercard</p>
</li>
<li><p>The merchant receives dollars, not crypto</p>
</li>
</ol>
<p>You're not spending crypto. You're selling crypto to a company that then pays on your behalf using traditional rails.</p>
<h2 id="heading-what-you-give-up">What You Give Up</h2>
<h3 id="heading-1-custody-of-your-funds">1. Custody of Your Funds</h3>
<p>When you load a crypto debit card, the funds leave your wallet and enter theirs. At that point:</p>
<ul>
<li><p>You no longer control the private keys</p>
</li>
<li><p>The company can freeze your account</p>
</li>
<li><p>You're subject to their terms of service</p>
</li>
<li><p>In bankruptcy, you're an unsecured creditor</p>
</li>
</ul>
<p>This isn't theoretical. <a target="_blank" href="http://Crypto.com">Crypto.com</a> has frozen accounts. Exchanges have gone bankrupt. "Not your keys, not your coins" exists for a reason.</p>
<h3 id="heading-2-yield-on-your-holdings">2. Yield on Your Holdings</h3>
<p>Most stablecoins can earn yield while you hold them - through lending protocols, liquidity provision, or yield-bearing stablecoins.</p>
<p>With a crypto debit card:</p>
<ul>
<li><p>Funds sitting on the card earn nothing</p>
</li>
<li><p>The card issuer may earn yield on YOUR deposits</p>
</li>
<li><p>You've converted a productive asset into dead money</p>
</li>
</ul>
<p>With self-custodial payments:</p>
<ul>
<li><p>Your stablecoins keep earning until the moment you spend</p>
</li>
<li><p>You retain access to DeFi opportunities</p>
</li>
<li><p>No value leakage to intermediaries</p>
</li>
</ul>
<h3 id="heading-3-privacy">3. Privacy</h3>
<p>Crypto debit card transactions:</p>
<ul>
<li><p>Are linked to your verified identity (mandatory KYC)</p>
</li>
<li><p>Create a complete spending history with the issuer</p>
</li>
<li><p>May be shared with partners or sold to data brokers</p>
</li>
<li><p>Are subject to government data requests</p>
</li>
</ul>
<p>Self-custodial payments:</p>
<ul>
<li><p>Only the transaction itself is recorded on-chain</p>
</li>
<li><p>No central database of your spending habits</p>
</li>
<li><p>No intermediary storing your purchase history</p>
</li>
</ul>
<h3 id="heading-4-lower-fees-not-really">4. Lower Fees? Not Really</h3>
<p>Crypto debit cards often advertise "no fees" but look at the full picture:</p>
<div class="hn-table">
<table>
<thead>
<tr>
<td>Fee Type</td><td>Crypto Debit Card</td><td>Self-Custodial</td></tr>
</thead>
<tbody>
<tr>
<td>Card network fee</td><td>1.5-3% (hidden in exchange rate)</td><td>None</td></tr>
<tr>
<td>Foreign exchange</td><td>1-3% spread</td><td>None (stablecoins are global)</td></tr>
<tr>
<td>ATM withdrawal</td><td>$2-5 per transaction</td><td>N/A</td></tr>
<tr>
<td>Account maintenance</td><td>Often $0 but varies</td><td>None</td></tr>
<tr>
<td>Conversion spread</td><td>0.5-2%</td><td>None</td></tr>
</tbody>
</table>
</div><p>The "cashback rewards" on crypto cards often just offset the hidden costs of the conversion.</p>
<h2 id="heading-the-account-freeze-problem">The Account Freeze Problem</h2>
<p>This isn't a crypto-specific issue. Traditional finance does it too:</p>
<p><strong>Recent examples:</strong></p>
<ul>
<li><p>PayPal freezing accounts for "suspicious activity"</p>
</li>
<li><p>Banks closing accounts for legal cannabis businesses</p>
</li>
<li><p>Venmo holding funds during "reviews"</p>
</li>
<li><p>Wire transfers frozen pending compliance checks</p>
</li>
</ul>
<p>When you use a custodial service - crypto or traditional - you're trusting them not to cut off your access. That trust has been broken repeatedly.</p>
<p><strong>Self-custody means:</strong></p>
<ul>
<li><p>No one can freeze your wallet</p>
</li>
<li><p>No terms of service to violate</p>
</li>
<li><p>No compliance department deciding your fate</p>
</li>
<li><p>Your money is yours until you choose to spend it</p>
</li>
</ul>
<h2 id="heading-why-self-custody-wasnt-practical-until-now">Why Self-Custody Wasn't Practical (Until Now)</h2>
<p>Self-custody had a spending problem. You could hold your own keys, but how would you actually buy coffee?</p>
<p>Previous attempts failed because:</p>
<p><strong>QR code payments</strong> - Clunky UX, requires merchant integration, online-only</p>
<p><strong>Sending to merchant wallet</strong> - Manual address entry, slow confirmation, gas fees</p>
<p><strong>Lightning Network</strong> - Better, but still requires merchant setup and has capacity limits</p>
<p>The missing piece was a way to spend self-custodial funds with the same UX as Apple Pay - tap and go.</p>
<h2 id="heading-how-self-custodial-tap-to-pay-works">How Self-Custodial Tap-to-Pay Works</h2>
<p>Modern self-custodial payment solutions use NFC (the same technology as Apple Pay) combined with blockchain settlement:</p>
<ol>
<li><p><strong>You hold your own keys</strong> - Funds never leave your wallet until payment</p>
</li>
<li><p><strong>Tap your phone at terminal</strong> - Standard NFC, works with existing hardware</p>
</li>
<li><p><strong>Cryptographic signature</strong> - Your device signs the transaction</p>
</li>
<li><p><strong>Direct settlement</strong> - Funds go straight to merchant, no intermediary</p>
</li>
</ol>
<p>The merchant experience is identical to a card payment. The customer experience is identical to Apple Pay. But the settlement is peer-to-peer on-chain.</p>
<h2 id="heading-the-technical-difference">The Technical Difference</h2>
<p><strong>Crypto Debit Card Flow:</strong></p>
<p>Your Crypto → Card Issuer's Custody → Fiat Conversion → Visa Network → Merchant's Bank → Merchant</p>
<p><strong>Self-Custodial Payment Flow:</strong></p>
<p>Your Wallet → Blockchain → Merchant's Wallet</p>
<p><em>Fewer intermediaries = lower costs, faster settlement, and no custody risk.</em></p>
<h2 id="heading-what-about-consumer-protection">What About Consumer Protection?</h2>
<p>Common concern: "If I can't reverse payments, what if the merchant scams me?"</p>
<p>Context matters here. For in-person, tap-to-pay transactions:</p>
<ul>
<li><p>You're physically present at the business</p>
</li>
<li><p>You receive goods/services immediately</p>
</li>
<li><p>The merchant is a known, established entity</p>
</li>
<li><p>Disputes are rare in face-to-face commerce</p>
</li>
<li><p>Treated just like cash</p>
</li>
</ul>
<p>This is different from online purchases where you're sending money to a stranger and hoping they ship something.</p>
<p>For the small percentage of legitimate disputes, merchants can still issue refunds - they just can't be forced to by a bank.</p>
<h2 id="heading-making-the-choice">Making The Choice</h2>
<p><strong>Choose a crypto debit card if:</strong></p>
<ul>
<li><p>You prioritize convenience over control</p>
</li>
<li><p>You trust the card issuer completely</p>
</li>
<li><p>You don't need yield on your holdings</p>
</li>
<li><p>You're comfortable with custodial risk</p>
</li>
</ul>
<p><strong>Choose self-custodial payments if:</strong></p>
<ul>
<li><p>You value financial sovereignty</p>
</li>
<li><p>You want to earn yield until you spend</p>
</li>
<li><p>You've experienced or fear account freezes</p>
</li>
<li><p>You understand "not your keys, not your coins"</p>
</li>
</ul>
<h2 id="heading-the-future-of-spending-crypto">The Future of Spending Crypto</h2>
<p>The crypto debit card was a bridge solution - a way to spend crypto using legacy infrastructure. But it required giving up what made crypto valuable in the first place.</p>
<p>Self-custodial payment solutions represent the next step: keeping the benefits of crypto (self-custody, yield, censorship resistance) while gaining the UX of traditional payments (tap-to-pay, instant settlement, merchant compatibility).</p>
<p>You shouldn't have to choose between control and convenience.</p>
<hr />
<p><em>Xeno enables self-custodial stablecoin payments via NFC tap-to-pay. Keep your keys, keep your yield, spend anywhere.</em> <a target="_blank" href="https://xeno.money"><em>Learn more</em></a><em>.</em></p>
]]></content:encoded></item><item><title><![CDATA[How In-Person Stablecoin Payments Get Cash Treatment: A Regulatory Guide]]></title><description><![CDATA[TL;DR: In-person stablecoin payments under $10,000 can qualify for simplified compliance requirements similar to cash transactions. This makes merchant adoption practical without complex KYC infrastructure.

The Regulatory Advantage of In-Person Paym...]]></description><link>https://blog.xeno.money/how-in-person-stablecoin-payments-get-cash-treatment-a-regulatory-guide</link><guid isPermaLink="true">https://blog.xeno.money/how-in-person-stablecoin-payments-get-cash-treatment-a-regulatory-guide</guid><category><![CDATA[Cryptocurrency]]></category><category><![CDATA[crypto]]></category><category><![CDATA[Blockchain]]></category><category><![CDATA[payment gateway]]></category><category><![CDATA[payments]]></category><category><![CDATA[payment]]></category><category><![CDATA[Stablecoins ]]></category><category><![CDATA[stablecoin]]></category><category><![CDATA[usdc]]></category><category><![CDATA[usdt]]></category><category><![CDATA[USDT]]></category><dc:creator><![CDATA[Tom Rowbotham]]></dc:creator><pubDate>Tue, 13 Jan 2026 00:00:00 GMT</pubDate><enclosure url="https://cdn.hashnode.com/res/hashnode/image/upload/v1770138667498/d227bd36-1f8d-4d9b-82b6-fa91733d864e.png" length="0" type="image/jpeg"/><content:encoded><![CDATA[<p><strong>TL;DR:</strong> In-person stablecoin payments under $10,000 can qualify for simplified compliance requirements similar to cash transactions. This makes merchant adoption practical without complex KYC infrastructure.</p>
<hr />
<h2 id="heading-the-regulatory-advantage-of-in-person-payments">The Regulatory Advantage of In-Person Payments</h2>
<p>When most people think about crypto payments, they imagine complex compliance requirements: full KYC, transaction monitoring, suspicious activity reporting. This is true for online and peer-to-peer transfers.</p>
<p>But in-person, point-of-sale transactions are different.</p>
<p>Under both US (FinCEN) and EU (AMLD) frameworks, in-person payments have always received preferential treatment. Cash transactions under $10,000 don't require customer identification. The same logic applies to stablecoin payments made physically at a terminal.</p>
<h2 id="heading-why-in-person-is-different">Why In-Person Is Different</h2>
<p>The distinction comes down to risk profile:</p>
<div class="hn-table">
<table>
<thead>
<tr>
<td>Transaction Type</td><td>Risk Level</td><td>Typical Requirements</td></tr>
</thead>
<tbody>
<tr>
<td>Online transfer</td><td>Higher</td><td>Full KYC, ongoing monitoring</td></tr>
<tr>
<td>Peer-to-peer</td><td>Higher</td><td>Identity verification</td></tr>
<tr>
<td>In-person POS</td><td>Lower</td><td>Simplified due diligence</td></tr>
</tbody>
</table>
</div><p>In-person transactions are lower risk because:</p>
<ol>
<li><p><strong>Physical presence</strong> - The customer is standing at a terminal, not hiding behind a VPN</p>
</li>
<li><p><strong>Merchant relationship</strong> - An established business is receiving the funds</p>
</li>
<li><p><strong>Small ticket sizes</strong> - Most retail transactions are well under reporting thresholds</p>
</li>
<li><p><strong>Immediate exchange</strong> - Goods/services change hands instantly</p>
</li>
</ol>
<h2 id="heading-the-10000-threshold">The $10,000 Threshold</h2>
<p>Both US and EU regulations establish $10,000 (or equivalent) as the threshold for enhanced due diligence on cash-like transactions:</p>
<p><strong>United States (FinCEN)</strong></p>
<ul>
<li><p>Currency Transaction Reports (CTRs) required for cash transactions over $10,000</p>
</li>
<li><p>Below this threshold, standard business practices apply</p>
</li>
<li><p>Stablecoins used for in-person retail can follow similar treatment</p>
</li>
</ul>
<p><strong>European Union (AMLD)</strong></p>
<ul>
<li><p>Enhanced due diligence triggers at 10,000 EUR for occasional transactions</p>
</li>
<li><p>In-person payments from established customers have simplified requirements</p>
</li>
<li><p>Member states have discretion on implementation</p>
</li>
</ul>
<h2 id="heading-what-this-means-for-merchants">What This Means for Merchants</h2>
<p>For a coffee shop, restaurant, or retail store accepting stablecoin payments:</p>
<p><strong>What they DON'T need:</strong></p>
<ul>
<li><p>Individual customer KYC for each transaction</p>
</li>
<li><p>Blockchain analytics tools</p>
</li>
<li><p>Crypto-specific compliance staff</p>
</li>
<li><p>Real-time transaction monitoring</p>
</li>
</ul>
<p><strong>What they DO need:</strong></p>
<ul>
<li><p>Standard business registration (which they already have)</p>
</li>
<li><p>A payment processor/PSP handling the settlement</p>
</li>
<li><p>Normal record-keeping practices</p>
</li>
</ul>
<p>The PSP (Payment Service Provider) handles the compliance layer, just like they do for card payments today.</p>
<h2 id="heading-why-this-matters-for-adoption">Why This Matters for Adoption</h2>
<p>Previous crypto payment attempts failed partly because they required merchants to become compliance experts. Every coffee shop would need to verify customer identities, monitor for suspicious activity, and file reports.</p>
<p>That's not practical.</p>
<p>In-person stablecoin payments remove this barrier. The merchant experience is identical to accepting a credit card:</p>
<ol>
<li><p>Customer taps phone</p>
</li>
<li><p>Terminal shows "Approved"</p>
</li>
<li><p>Transaction complete</p>
</li>
</ol>
<p>No wallet addresses. No compliance burden. No crypto knowledge required.</p>
<h2 id="heading-the-xeno-approach">The Xeno Approach</h2>
<p>Xeno is built exclusively for in-person, NFC tap-to-pay transactions. This isn't a limitation - it's a deliberate design choice that unlocks:</p>
<ul>
<li><p><strong>Simplified compliance</strong> for merchants and PSPs</p>
</li>
<li><p><strong>Familiar UX</strong> identical to Apple Pay or Google Pay</p>
</li>
<li><p><strong>Lower risk profile</strong> that regulators understand</p>
</li>
<li><p><strong>Practical adoption</strong> without infrastructure changes</p>
</li>
</ul>
<p>By focusing on in-person payments, we're working within existing regulatory frameworks rather than fighting them.</p>
<h2 id="heading-important-caveats">Important Caveats</h2>
<p>This is not legal advice. Regulations vary by jurisdiction and are evolving. Key considerations:</p>
<ul>
<li><p><strong>Structuring prohibitions</strong> still apply - you can't split transactions to avoid thresholds</p>
</li>
<li><p><strong>Suspicious activity</strong> must still be reported regardless of amount</p>
</li>
<li><p><strong>Business type matters</strong> - high-risk merchants have additional requirements</p>
</li>
<li><p><strong>Local implementation</strong> varies, especially in the EU</p>
</li>
</ul>
<h2 id="heading-the-bottom-line">The Bottom Line</h2>
<p>In-person stablecoin payments don't require the same compliance infrastructure as online crypto transfers. By treating them like cash transactions - which regulators have done for decades - we can enable merchant adoption without creating new regulatory burdens.</p>
<p>This is why Xeno focuses exclusively on in-person payments. It's not just better UX. It's better compliance.</p>
<hr />
<p><em>Xeno enables instant, gasless stablecoin payments via NFC tap-to-pay.</em> <a target="_blank" href="https://xeno.money"><em>Learn more about our PSP integration</em></a><em>.</em></p>
]]></content:encoded></item></channel></rss>