Bridge is ready for crossing. Might be a bit creaky as it is now, needs some user input.
checkout at:
git clone
https://github.com/l8orre/nxtBridge #######################
#
# Function Calls implemented below
# Numbers as per appeearance in listing of bitcoind help
#
# getbalance # OK -uses wallet.dat DB
# getbestblockhash # OK
# getblock # OK
# getblockcount # OK
# getblockhash # OK
# getconnectioncount # OK
# getinfo # OK
# getnewaddress # OK -uses wallet.dat DB
# getreceivedbyaccount # OK -uses wallet.dat DB
# getreceivedbyaddress # OK -uses wallet.dat DB WOKRING ON !!!! ALMOST READY
# gettransaction # OK
# listsinceblock # OK -uses wallet.dat DB
# listunspent # OK -uses wallet.dat DB
# sendfrom # OK -uses wallet.dat DB
# sendtoaddress # OK -uses wallet.dat DB
# settxfee # OK (n/a)
# validateaddress # OK
However, since bitcoind API, and especially the 'accounts' feature of the 'wallet' is a big pile of cracked crockery,
individual exchanges may have to adapt some of the returned values to slightly different formats- s.t. that can be done easily, but not without knowing the specs of what is actually needed.
Note the we have designed these specs by pure conjecture as to what exactly might be convenient for the exchanges and thus have constructed these bitcoind- 'CONGRUENT' api returns.
So a complete and smooth 'as-is' integration should not be expected, but as said, adjustments can easily be made now.