"use client"; import ThemedLayout from "@/components/layouts/ThemedLayout"; import { getMerchantBtcAddress, isMerchantBtcConfigured } from "@/lib/merchantBtc"; export default function PayPalMarket() { const btcAddr = getMerchantBtcAddress(); const btcReady = isMerchantBtcConfigured(); const wallets = [ { id: 1, balance: "$1,240.00", price: "0.002 BTC", type: "Personal" }, { id: 2, balance: "$3,500.00", price: "0.005 BTC", type: "Business" }, { id: 3, balance: "$8,900.00", price: "0.012 BTC", type: "Business Premier" }, { id: 4, balance: "$12,000.00", price: "0.018 BTC", type: "Corporate" }, ]; return (

The Wallet Exchange

Verified PayPal Wallets. Instant Delivery.

{wallets.map(w => (
{w.balance}
{w.type}
{">"} Verified Email: YES
{">"} Linked Bank: YES
{">"} Transaction History: 12+ Months
{w.price}
))}

Payment Instructions

Bitcoin payments use the same merchant address as CyberLux checkout. After the transaction is confirmed on-chain, verify the txid on the checkout page to add USD to your spendable balance.

{btcReady ? btcAddr : "[Set NEXT_PUBLIC_MERCHANT_BTC_ADDRESS in .env.local]"}
E
Escrow Assured
by ShadowGuard™
Node 24 // Shadow Network // Est. 2024
); }