php bitcoin wallet
2.1.0
ビットコインのwallet.datファイルを読み取るためのシンプルなPHPライブラリ。
composer require andkom/php-bitcoin-wallet
<?php
use AndKom Bitcoin Wallet Wallet ;
// create wallet instance
$ wallet = new Wallet ();
$ wallet -> read ( " /path/to/wallet.dat " );
// check if wallet is encrypted
if ( $ wallet -> isEncrypted ()) {
// print wallet master key
echo $ wallet -> getMasterKey ()-> getEncryptedKey () . "n" ;
// decrypt wallet
$ wallet -> decrypt ( " password " );
}
// print stored keys
foreach ( $ wallet -> getKeys () as $ key ) {
echo $ key -> getPrivateKey ()-> toWif () . " => " . $ key -> getPublicKey ()-> getAddress ()-> getAddress () . "n" ;
}