• Forum has been upgraded, all links, images, etc are as they were. Please see Official Announcements for more information

delete

That is awesome.

Can you add IP address ending / uptime / sort by balance & payments leader node by by week/month (from a custom date)/ number of + (1/5,2/5 ...) ?

And pull the DRK/BTC and DRK/USD price and display it as well + the net worth in USD & EUR.

and then post a donation address :wink:
 
that was a weird error with an address showing my 12.480 DRK in it even though the MN was @ 1012 DRK...I just sent it to a new wallet and everything works again

thanks ;)
 
It's more like https://dashtalk.org/threads/php-script-for-usd-drk-accounting.3334/ but simpler and in bash imo :)

EDIT: btw use explorer API, it's faster and use way less traffic :smile:
Code:
...
exp=http://explorer.darkcoin.io/chain/Darkcoin/q/addressbalance/
....
pay=$(curl -s $addr)
....

EDIT2: and i would recommend to use cryptsy v2 api too - again, way less traffic
Code:
...
price=$(curl -s "https://api.cryptsy.com/api/v2/markets/155" | sed 's/^.*"price":\([^,]*\),.*$/\1/')
...
[code]
 
Last edited by a moderator:
Back
Top