I'm a merchant with bitcoind need same for dashd rpc calls

mmvphil

New member
Hi guys,

Can anybody point me to the reference for json rpc calls to the dashd ?

I use bitcoind and a php client to take payments in bitcoin i'd like to offer dash the same way.

Is it the same calls or differnt? i.e.

I'm using easybitcoin.php along with commands like
$address=$bitcoin->getnewaddress();
if($bitcoin->error){ $x.= "ERROR: " . $bitcoin->error; }

How can we do it for dash and the oTHER big question is..

is the walletnotify script in the bitcoinconf is that same or different so we can trigger payment notifications without polling the transactions all the time?

Cheers

Pete
 
THANKS!!
So just switch the port and our apps use same reference as en.bitcoin.it/wiki/Original_Bitcoin_client/API_calls_list
or do we have our own..
Yep, should be the same as of bitcoin 0.10 + some Dash specific functions.
Code:
== Dash ==
darksend <dashaddress> <amount>
masternode "command"... ( "passphrase" )
masternodelist ( "mode" "filter" )
mnbudget "command"... ( "passphrase" )
mnbudgetvoteraw <masternode-tx-hash> <masternode-tx-index> <proposal-hash> <yes|no> <time> <vote-sig>
mnfinalbudget "command"... ( "passphrase" )
mnsync [status|reset]
spork <name> [<value>]
Some original functions could have additional (optional) parameters or they could return additional fields but should be ok in your case. Anyway you can use
Code:
help <some_command>
in qt-wallet console (or in cmd line using dash-cli if you run daemon) to get more info and to be 100% sure it's compatible or not.
 
Back
Top