Checking your wallet online :-)
-
So, this is my situation:
I have a bunch of miners running on p2pool each with their own FTC payout address.
All these ftc addresses are in my wallet on my mac.What I wanted is to check my wallets total value and each miners/ftc address balance when i’m not at home.
So what I did is hack up a quick and dirty php script which uses the FeatherCoin API and pulls all your addresses balance and displays them an a very simple web page. Including total wallet FTC value and value in your currency.Now I can check my wallet and miners yields while at the pub, clubbing, cinema… anyway you get it :-)
Here’s the script, put it on a public webserver and add your own FTC addresses to it.
[code]
FeatherCoin Wallet
$ftc[0]=“your_ftc_address_nr_1”;
$ftc[1]=“your_ftc_address_nr_2”;
.
.
$ftc[x]=“your_ftc_address_nr_x”;$ftc_total=0;
print “”;
for ($i=0; $i";$input = file_get_contents(“https://api.feathercoin.com/?output=eur&amount=$ftc_total&json=1”);
$json = json_decode($input);print "
Total FTC: " . $ftc_total . "
";
print "Total Eur: " . number_format($json->{‘eur’},2) . "
";
?>
[/code]
-
You can try a demo on [url=http://ftcpool.nl/wallet.php]http://ftcpool.nl/wallet.php[/url] :)
It’s Iphone enabled, try it and you’ll see the difference.
I might be offering this as a web service for those who haven’t got access to a public webserver…
-
Here it is, free to try :-)
[url=http://cryptowallet.eu]http://cryptowallet.eu[/url]
Just register and add your FTC addresses to it.
It will poll the block chain for the addresses provided, add them up and also displays the fiat value.
Pretty straightforward, just click on the FTC word to add/expand the address list.
Click again and it will roll up so that just the total wallet values are displayed.Have fun !
-
Wow, that looks cool.
I’ll message ChrisJ to make sure it’s considered for a Newsletter, just in case it hasn’t already …
-
This is very cool. In fact I really like to suggest the idea of taking this one step further and writing software that lets people control their wallet’s spending from a browser. This is v powerful as it will enable communities to set up their own online wallet systems.
I will tweet this out now and gladly feature it in the newsletter.
-
Really cool short script ;-) And nice for everyone who is mining, as they can put on the miner directly. +1rep
Maybe you’ve not yet seen this MinerMonitor -
[url=http://forum.feathercoin.com/index.php/topic,6303.msg51458.html#msg51458]http://forum.feathercoin.com/index.php/topic,6303.msg51458.html#msg51458[/url] that now also includes the Profitability calculator and does something similar like you - fetching the data from the FTC address. In addition you can monitor your miners directly. -
Thank you all :-)
Ok so to clarify this there’s the script which can be run local or on any public php enabled server and you can tailer it as you like.
For those who don’t want or can’t do this tinkering they can use the online wallet on [url=http://cryptowallet.eu]http://cryptowallet.eu[/url] .
Just register and add your FTC addresses (upto 5 at this time but I can alter this if needed) to it.The wallet updates automagically (so for many FTC addresses it could take a few seconds) and can be reached from any webbrowser.
I need to adjust the iphone/android part so it will adjust/adapt itself to your screen.Questions: just ask :-)
-
Update:
You can now also add Litecoins to the online CryptoWallet at [url=http://cryptowallet.eu]http://cryptowallet.eu[/url] :-) -
Made some adjustments to the [url=http://cryptowallet.eu]http://cryptowallet.eu[/url].
Changed the login/registration part (previous version didnt work right so if you tried to register with no luck before, try again please) .Also now running ‘against’ a local FTC block chain explorer (Abe) to speedup the queries.
Will be adding more crypto currency soon