How can i create multiple Monero addresses?
anyway to make 1000+ Monero addresses at once.
Any tools/ software c an be used?
How can i create multiple Monero addresses?
anyway to make 1000+ Monero addresses at once.
Any tools/ software c an be used?
An easy scriptable way is to run:
for n in
seq 1000
; do ./monero-wallet-cli --generate-new-wallet wallet$n; done
It's a bit heavyweight though. If you can code, you can generate new keypairs with:
cryptonote::account_base account;
account.generate();
account_public_address address = account.get_keys().m_account_address;