Example #1
0
    $currentWallet = $_SESSION['currentWallet'];
} else {
    $keys = array_keys($wallets);
    $currentWallet = $keys[0];
    $_SESSION['currentWallet'] = $currentWallet;
}
$nmcu = $wallets[$currentWallet];
$nmc = new jsonRPCClient("{$nmcu['protocol']}://{$nmcu['user']}:{$nmcu['pass']}@{$nmcu['host']}:{$nmcu['port']}", true);
try {
    $nmcinfo = $nmc->getinfo();
} catch (exception $e) {
    die("Failed to retrieve data from the daemon, please check your configuration, and ensure that your coin daemon is running:<br>  {$e}");
}
$wallet_encrypted = true;
try {
    $nmc->walletlock();
} catch (Exception $e) {
    // Wallet is not encrypted
    $wallet_encrypted = false;
}
// Begin bootstrap code
?>
<!DOCTYPE html>
<html lang='en'>
<head>
	<meta charset='utf-8'>
	<meta name="viewport" content="width=device-width, initial-scale=1">
	<title>Bitcoin Web UI</title>
	<link href='css/bootstrap.min.css' rel='stylesheet'>
	<link href='css/main.css' rel='stylesheet'>
	<script src='js/jquery.min.js'></script>