remote.php

This commit is contained in:
ThomasV 2012-02-22 18:41:52 +03:00
parent ff5a4964e4
commit 6b21a3f83b
1 changed files with 24 additions and 0 deletions

24
client/remote.php Normal file
View File

@ -0,0 +1,24 @@
<?
require_once 'jsonrpcphp/includes/jsonRPCClient.php';
echo "<pre>\n";
echo "This page demonstrates the generation of new addresses by a neutralized Electrum wallet.\n\n";
echo "A neutralized wallet does not contain the seed that allows to generate private keys.\nIt contains a master public key that allows to create new addresses.\n\n";
echo "An attacker getting access to the neutralized wallet cannot steal the bitcoins.\n";
echo "The full wallet (with seed) is not stored on the webserver.\n\n";
echo "<form action=\"\" method=\"post\"><input type=\"submit\" name=\"submit\" value=\"Get new address\"/></form> ";
if($_POST['submit']) {
$daemon = new jsonRPCClient('http://foo:bar@ecdsa.org:8444/');
try{
$r = $daemon->getnewaddress();
if($r) {
echo '<br/>';
echo "<a href='bitcoin:$r'>bitcoin:$r</a>\n\n";
}
} catch(Exception $e) {
echo "error: cannot reach wallet daemon";
}
}
echo "</pre>";
?>