Programming

How to handle payments for a dnm

Started by MyHiddingAccount · Mar 6, 2026

#11532
How should I implement payment ? I got some ideas but i want to hear y'all opinion...

Should I put a monero wallet address in plaintext or just encrypted ?

Or should I create a new wallet for each transaction ?

Or I should go through some framework ?
#11533
↳ Replying to @MyHiddingAccount
Monero wallet addresses of course are in plaintext.

But for Monero seedphrases & private keys, you should encrypt them using PGP, like what we do in /d/MediaSymetric.

you need one wallet per account.

For escrow, generating one wallet per order/transaction is better than a pooled escrow.

You don't need generating one wallet per transaction.

going with a library is better if it with Bitcoin or other cryptocurrencies, doing things with Monero is often without (additional) libraries.
#11536
↳ Replying to @MyHiddingAccount
huh ? what's going on here ?