3

私はBitcoindデーモンのrpcインターフェースをテスト/学習しており、これまでphpライブラリをうまく使用していました。私は新しい生のトランザクションを作成しようとしています。インターネットで多くの例を入手しましたが、関数のパラメーターがどこから来るのかわかりません。

例 :

$bitcoin = new Bitcoin('myuser','mypwd','127.0.0.1','8332');

 $bitcoin->createrawtransaction(
     array(
        array(
            "txid"=>"aed23bb3ec7e93d69450d7e5ea49d52fcfbef9d380108f2be8fe14ef705fcea5", /where this string comes from or how i have to generate it??
            "vout"=>2 //what is this vout, in this case what means the number 2??
        ),
    ),
    array(
        "1GTDT3hYk4x4wzaa9k38pRsHy9SPJ7qPzT"=>0.006,//destination wallet address and required amount
    ));
  1. 「txid」の由来、または生成方法
  2. vout 値がどこから来ている必要があります。
4

1 に答える 1