Is there anything that can help me use php with darkcoind? Specifically, I need to generate wallet addresses.
You could always use the paper wallet generator that is an html-based doc for wallet generation with you importing the private key into darkcoind but why not go directly to the source and generate a new address intrawallet. What exactly are you doing?
darkcoind getnewaddress usersWalletAddr1
Try https://github.com/aceat64/EasyBitcoin-PHPA site I'm working on needs to have a wallet address for the user. It's hosted on a server with darkcoind running on it. I was hoping to run a command similar to
Code:darkcoind getnewaddress usersWalletAddr1
...but within a php script.
Thanks for that. After having a look, I also found this. So will give that a whirl. Cheers!Try https://github.com/aceat64/EasyBitcoin-PHP
I understand that it can also connect to darkcoind rpc as well.