发起交易
发起交易(Transfer::send)
try {
$res = $client->api('transfer')->send('BTC', '<from address>', '<to address>', '<amount>', '<uniqueId>');
} catch(\Exception $ex) {
http_response_status(500);
print_r($ex);
} catch(\ServiceException $ex) {
}处理调用结果(Model::SendTransferResult)
Last updated
Was this helpful?