COOKIE
PERMISSIONLESS.SECURE
Customer
You
Take wallet to wallet (non custodial) payments online with one simple code snippet and start taking crypto payments with ease.
Simply copy, paste and edit the options
Code Snippet for Cookie Pay Integration
<!-- Initiating Cookie Pay -->
<script>
window.cookiepayData = {
success_url: "https://your-site.com/thank-you-page", // Change this to your thank you page
recipient: "terra1.............................", // Your wallet address for taking payment
amount: 1000000 // Enter the amount for this transaction
};
</script>
<script src="https://lunc.tools/js/cookie-pay.js" defer></script>
<a id="cookiePayBtn" style="padding:10px 20px;display: inline-block;font-size:14px;background-color: #163287;border-radius:20px;opacity:0.5;color:#FFF;text-decoration:none;">
Continue to Cookie Pay
</a>
<!-- END Cookie Pay -->