0

Is it possible for me to get multiple public address using python web3?

I want to create a unique public address for each of my customers from my private key in python web3.

1 Answers1

1

You cannot create multiple addresses from a private key, because each private key corresponds one public key.

You can create multiple private keys from a seed.

Mikko Ohtamaa
  • 82,057
  • 50
  • 264
  • 435