无法使用 blockcypher 创建比特币交易 api

Unable to create bitcoin transaction using blockcypher api

我有一个使用 blockcypher 创建的比特币地址,我想从中转移一些比特币(已经存款)到另一个地址。

我正在使用 blockcypher php 客户端使用示例代码 https://www.blockcypher.com/dev/bitcoin/?php#creating-transactions and https://github.com/blockcypher/php-client/blob/master/sample/transaction-api/CreateTransaction.php 创建交易,我收到错误

Class 'Mdanter\Ecc\Math\Gmp' not found in C:\xampp\htdocs\cck\vendor\bitwasp\bitcoin\src\Math\Math.php on line 8

我检查了供应商的文件,Mdanter\Ecc\Math\Gmp 中有 Gmp 文件或 class,所以我编辑了 math.php 文件并编辑了第 6 行以使用 \Mdanter\Ecc\Math\Gmp数学作为 Gmp;现在得到类似 https://github.com/blockcypher/php-client/issues/21

中的错误

我的代码如下

require_once __DIR__.'/vendor/autoload.php';

use BlockCypher\Auth\SimpleTokenCredential;
use BlockCypher\Rest\ApiContext;
use BlockCypher\Api\TX as DD;
use BlockCypher\Client\TXClient;

// ... other classes

$apiContext = ApiContext::create(
 'main', 'btc', 'v1',
new SimpleTokenCredential('4e3a287e603f48c994d978dab061084a'),
array('log.LogEnabled' => true, 'log.FileName' => 'BlockCypher.log',      'log.LogLevel' => 'DEBUG') );


$tx = new DD();

// Tx inputs
$input = new \BlockCypher\Api\TXInput();
$input->addAddress("1DZR2kUCa5HTyVZLY8TWFf2ZfjhWgsgNtf");
$tx->addInput($input);
// Tx outputs
$output = new \BlockCypher\Api\TXOutput();
$output->addAddress("1Mye4sZmd9rzjY6yUw19etZhzeVU2q1kcj");
$output->setValue(1000); // Satoshis
$tx->addOutput($output);
// Tx amount



$txClient = new TXClient($apiContext);

$txSkeleton = $txClient->create($tx);

$privateKeys =     array("3ed07ff3e458fabb8b99b723002f4817eebd5fc11f9c76fdd9c200090c04fd1c");

$txSkeleton = $txClient->sign($txSkeleton, $privateKeys);

$txSkeleton = $txClient->send($txSkeleton);

该问题是由 php 客户端依赖项之一的错误依赖项配置引起的。它是固定的。更多信息:

https://github.com/blockcypher/php-client/issues/21

您只需将 php-客户端更新到最新版本即可。