XRPLF / rippled

Decentralized cryptocurrency blockchain daemon implementing the XRP Ledger protocol in C++
https://xrpl.org
ISC License
4.52k stars 1.46k forks source link

[question] about addresses #2661

Closed frankegoesdown closed 6 years ago

frankegoesdown commented 6 years ago

How can I generate a new address for account via rpc?

MarkusTeufelberger commented 6 years ago

https://developers.ripple.com/wallet_propose.html with rippled or (better) generate a keypair offline yourself.

intelliot commented 6 years ago

It's worth noting that you can install rippled on an offline machine and run ./rippled wallet_propose

Another good option is to use ripple-lib, which works offline as well. https://developers.ripple.com/rippleapi-reference.html#generateaddress

frankegoesdown commented 6 years ago

Thank you very much