Accept crypto (BTC, ETH, USDT, USDC, Solana, Tron, UCASH + custom tokens) and cards (via your own Stripe) through U.CASH Pay. Non-custodial: funds settle direct to your wallet.
You need a free U.CASH Pay account and a store before this plugin can accept payments. Settlement is non-custodial: crypto goes straight to addresses you control.
- Sign up at pay.u.cash with your email and password, then click the verification link in the email U.CASH Pay sends you.
- Set your receive addresses. Go to Settings → Addresses and enter a wallet address for each coin you want to accept. You can also use ENS, Unstoppable Domains, or FIO names instead of raw addresses. This is where crypto payments settle.
- Create a store. Go to Account → Stores, click + Add Store, name it (for example, after this platform), and create it.
- Copy the store credentials. In that store's row, copy the Store Cloud Token and the Store Webhook Secret. Use the store-level token, not the account-wide one.
- Set the webhook URL. Paste this plugin's webhook callback URL (shown in the plugin settings below) into the store's Store Webhook URL field, save, then click Test Webhook to confirm U.CASH Pay can reach your store.
Then paste the Store Cloud Token and Store Webhook Secret into the plugin configuration fields described below.
To also accept fiat cards, connect your own Stripe account under Settings → Payment processors. Cards run non-custodially through Stripe.
- Zip this folder as
ucashpay.zip. - In PrestaShop admin: Modules > Module Manager > Upload a module > select the zip.
- Configure: paste your Cloud token + Webhook secret (from pay.u.cash admin > Account > Stores).
- Copy the Webhook URL shown in the settings and set it as the store Webhook URL in pay.u.cash.
- Enable.
- Buyer selects U.CASH Pay at checkout.
- The module creates a checkout at pay.u.cash and redirects the buyer.
- Buyer pays with crypto or card on the hosted U.CASH Pay page.
- U.CASH Pay sends an HMAC-signed webhook to the module's webhook controller.
- The module verifies the webhook and validates the order ("Payment accepted").
Non-custodial: the platform never holds funds. Crypto settles direct buyer-to-wallet; cards through the merchant's own Stripe.
ucashpay.php- main module class (PaymentModule extension).PayUCashIntegration.php- the shared SDK (zero-dependency).controllers/front/redirect.php- creates the checkout + redirects the buyer.controllers/front/webhook.php- webhook callback (verify + validate order).
License: AFL-3.0 (PrestaShop's license).