PHP Coinbase API를 사용해서 비트코인(BTC) 전송
'send', 'to' => 'RECIPIENT_ADDRESS', 'amount' => '0.1', // 보낼 비트코인의 양 'currency' => 'BTC');$data_string = json_encode($data);$ch = curl_init($coinbase_url);curl_setopt($ch, CURLOPT_CUSTOMREQUEST, "POST");curl_setopt($ch, CURLOPT_POSTFIELDS, $data_string);curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);curl_setopt($ch, CURLOPT_HTTPHEADER, array( 'Content-Type: application/json', 'CB..
2023. 7. 6.