For simple and quick notify by wallet client to others applications please add a new ability:
1. add a parameters in .conf file:
%A - abbreviation, for example BTC, CLR
%b - block hash
%t - list of new transactions
%N - full name of xcurr, for example 'Bitcoin', 'CopperLark'
%n - name for make URI, for example bitcoin, copperlark = <a href=bitcoin:1wer87...</a>
2. add command in bitcoin.conf:
# on new block received
curl_on_block =
http://127.0.0.1:8000/some_URL/%A/%b3. add command in bitcoin.conf:
# on new transactions for this wallet received
curl_on_trans =
http://127.0.0.1:8000/some_URL/%A/%tuse for this abilities a curl lib from here
http://curl.haxx.se/