Json-Rpc

在 PHP 中執行特定的 RPC 命令?

  • May 23, 2019

我試圖在我的 PHP 會話中獲得特定地址的平衡,我目前有這個:

<?php
 require 'header.php';
 include 'Includes/Bitcoin/easybitcoin.php';
 $bitcoin = new Bitcoin('user', 'password', 'localhost', '8332');
 $wallet = $_SESSION['UserWallet'];
 $balance = $bitcoin->getbalance($wallet);
?>
<!DOCTYPE html>
<html>
<meta charset="utf-8">
<head>
</head>
<body style="font-family: sans-serif;">
 <b>Wallet address: <?php print_r($wallet); ?></b>
 <br />
 <b>Account balance: ฿<?php print_r($balance); ?></b>
</body>
</html>

其中$_SESSION['UserWallet']包含比特幣地址,當我執行它時它返回錯誤,它是如何工作的?

要獲得餘額,您需要一個帳戶,最好使用 PHP 動態創建。您將使用getnewaddress("echo uniqid()");PHP 作為為每個使用者生成新帳戶的範例。

引用自:https://bitcoin.stackexchange.com/questions/85889