Documentation

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.

0.5% fees + gas vs traditional 2.9%
Pure Web3
Privacy-First Architecture

Integration Examples

See how easy it is to add Web3 payments to your existing applications

Node.js / Express

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);
});

React / wagmi

const { write } = useContractWrite({
  address: '0xa7F4248e7e287ece9DEF8Cc8e14E05F0610F9CE5',
  abi: PaymentProcessorABI,
  functionName: 'processPayment',
});

const handlePayment = () => {
  write({ args: [recipient, token, amount, metadata] });
};