Complete documentation for integrating and using Web3 payments. Whether you're a developer building applications or a business looking to streamline payments - we've got you covered.
Complete guide for businesses transitioning from Web 2.0 to Web3 payments
Everything you need to integrate Zenmint.app into your Web 2.0 applications
Get your first payment running in under 5 minutes with our step-by-step guide.
Core payment processing with automatic fee calculation and staking discounts.
Process multiple payments efficiently. Perfect for payroll and bulk operations.
Continuous payment flows for subscriptions and salaries. Money by the second.
Automate future and recurring payments with full transparency and control.
Best practices for secure payment processing and private key management.
See how easy it is to add Web3 payments to your existing applications
const zenmint = new ZenmintPayments(process.env.PRIVATE_KEY);
app.post('/payment', async (req, res) => {
const result = await zenmint.sendPayment(
req.body.recipient,
req.body.amount,
'api-payment'
);
res.json(result);
});
const { write } = useContractWrite({
address: '0xa7F4248e7e287ece9DEF8Cc8e14E05F0610F9CE5',
abi: PaymentProcessorABI,
functionName: 'processPayment',
});
const handlePayment = () => {
write({ args: [recipient, token, amount, metadata] });
};