PPCoind - how to generate a fresh/new wallet address, publickey, and privatekey?

Anyone know the correct sequence?

All you have to do is ADD new address in your wallet.

That wasn’t the information I was looking for.

I ended up using the bitcoin-ruby bindings to solve my problem

  require 'bitcoin'
  Bitcoin.network  = :ppcoin
  address, privkey, pubkey, hash160 = Bitcoin.generate_address

Then


  ppcoind importprivkey <privkey>

I am glad you got it solved.