triola / DogePos-Wallet-API

This is the simple script that allows the DogePos web server to communicate with the wallet server.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Read Me

DogePos wallet API 1.1

::SCRIPT SETUP::

In the script, replace the walletUsername and walletPassword on line 5 $bitcoin = new jsonRPCClient('http://walletUsername:walletPassword@127.0.0.1:22555/');

and

replace yoursecretpassphrase on line 17 $lock = $params . "yoursecretpassphrase";

::SERVER SETUP::

These files need to be installed in the web root of your server running your dogecoin/bitcoin wallets. You can set your wallet address in your .conf file. It can usually be found somewhere like ~/.dogecoind/dogecoin.conf

Your conf file should look somethinglike:

daemon=1 rpcuser=walletUsername rpcpassword=walletPassword rpcport=22555 rpcallowip=127.0.0.1 rpcallowip=192.168.1.* rpcallowip=0.0.0.0

Replace walletUsername and walletPassword with your own secret credentials.

::USAGE::

You will connect to the API using cURL, and pass the call and params you wish to execute, along with the "key" to open the authorization lock.

The server's response is stored in $result

About

This is the simple script that allows the DogePos web server to communicate with the wallet server.


Languages

Language:PHP 100.0%