我使用https://github.com/coinbase/coinbase-php和 laravel 将 Eth 从我的钱包发送到其他服务的钱包。
我使用这种方法:$client->createAccountTransaction($account, $transaction);
这样:
$transaction = Transaction::send([
'to' => new EthrereumAddress($destination_address),
'amount' => new Money($amount, $currency),
'description' => $description,
//'fee' => '0.0001' // only required for transactions under BTC0.0001
]);
$this->client->createAccountTransaction($account, $transaction);
但是当我尝试这样做时,我得到了这个错误:
Coinbase API 只接受账户、电子邮件或比特币地址的交易
有人可以告诉我如何发送 eth 或有什么问题吗?