mirror of
https://github.com/LBRYFoundation/pool.git
synced 2025-08-23 09:27:25 +00:00
77 lines
1.6 KiB
PHP
77 lines
1.6 KiB
PHP
<?php
|
|
|
|
function yobit_api_query($method)
|
|
{
|
|
$uri = "https://yobit.net/api/3/$method";
|
|
|
|
$ch = curl_init($uri);
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
|
|
|
$execResult = curl_exec($ch);
|
|
$obj = json_decode($execResult);
|
|
|
|
return $obj;
|
|
}
|
|
|
|
//////////////////////////////////////////////////////////////////////////////////////////////////////////////
|
|
|
|
// function getnoonce()
|
|
// {
|
|
// $filename = 'yobit_nonce.dat';
|
|
// $n = 100;
|
|
|
|
// if(file_exists($filename))
|
|
// $n = intval(trim(file_get_contents($filename))) + 1;
|
|
|
|
// file_put_contents($filename, $n);
|
|
// return $n;
|
|
// }
|
|
|
|
function yobit_api_query2($method, $req = array())
|
|
{
|
|
$api_key = '';
|
|
$api_secret = '';
|
|
|
|
$req['method'] = $method;
|
|
$req['nonce'] = time();
|
|
|
|
$post_data = http_build_query($req, '', '&');
|
|
$sign = hash_hmac("sha512", $post_data, $api_secret);
|
|
|
|
$headers = array(
|
|
'Sign: '.$sign,
|
|
'Key: '.$api_key,
|
|
);
|
|
|
|
$ch = null;
|
|
$ch = curl_init();
|
|
|
|
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
|
|
curl_setopt($ch, CURLOPT_USERAGENT, 'Mozilla/4.0 (compatible; SMART_API PHP client; '.php_uname('s').'; PHP/'.phpversion().')');
|
|
curl_setopt($ch, CURLOPT_URL, 'https://yobit.net/tapi/');
|
|
curl_setopt($ch, CURLOPT_POSTFIELDS, $post_data);
|
|
curl_setopt($ch, CURLOPT_HTTPHEADER, $headers);
|
|
curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false);
|
|
curl_setopt($ch, CURLOPT_ENCODING , 'gzip');
|
|
|
|
$res = curl_exec($ch);
|
|
if($res === false)
|
|
{
|
|
$e = curl_error($ch);
|
|
debuglog($e);
|
|
curl_close($ch);
|
|
return null;
|
|
}
|
|
|
|
curl_close($ch);
|
|
|
|
$result = json_decode($res, true);
|
|
if(!$result) debuglog($res);
|
|
|
|
return $result;
|
|
}
|
|
|
|
|
|
|
|
|
|
|