Skip to content

Commit eb2df2e

Browse files
authored
Add files via upload
1 parent fa56a33 commit eb2df2e

File tree

3 files changed

+35
-5
lines changed

3 files changed

+35
-5
lines changed

src/API.php

+27-3
Original file line numberDiff line numberDiff line change
@@ -181,9 +181,7 @@ public function getTransactionsRelated(string $address = null,bool $confirmed =
181181
$data['only_to'] = $to;
182182
$data['only_from'] = $from;
183183
$data['search_internal'] = $searchinternal;
184-
if($limit >= 1 and $limit <= 200):
185-
$data['limit'] = $limit;
186-
endif;
184+
$data['limit'] = max(min($limit,200),20);
187185
$data['order_by'] = $order;
188186
if(is_null($mintimestamp) === false):
189187
$data['min_timestamp'] = date('Y-m-d\TH:i:s.v\Z',$mintimestamp);
@@ -197,6 +195,7 @@ public function getTransactionsRelated(string $address = null,bool $confirmed =
197195
if(isset($transactions->success) and $transactions->success === true):
198196
$transactions->iterator = new Transactions($this->sender,array($transactions));
199197
endif;
198+
$this->sender = clone $this->sender;
200199
return $transactions;
201200
}
202201
public function getTransactionsFromAddress(string $address = null,int $limit = 20) : object {
@@ -210,6 +209,7 @@ public function getTransactionsNext(string $url) : object {
210209
if(isset($transactions->success) and $transactions->success === true):
211210
$transactions->iterator = new Transactions($this->sender,array($transactions));
212211
endif;
212+
$this->sender = clone $this->sender;
213213
return $transactions;
214214
}
215215
public function createAccount(string $newaddress,string $address = null) : object {
@@ -257,6 +257,30 @@ public function getBalance(string $address = null,bool $sun = false) : float {
257257
$balance = isset($account->balance) ? $account->balance : 0;
258258
return ($sun ? $balance : $balance / 1e6);
259259
}
260+
public function getAccurateBalance(string $address = null,bool $sun = false) : float {
261+
$account = $this->getAccount($address);
262+
$owner = isset($account->address) ? $account->address : $this->address2hex(is_null($address) ? $this->wallet : $address);
263+
$balance = isset($account->balance) ? $account->balance : 0;
264+
$unconfirmed = $this->getTransactionsRelated(address : $address,confirmed : false,limit : 200);
265+
foreach($unconfirmed->iterator as $transactions):
266+
foreach($transactions->data as $transaction):
267+
$contract = current($transaction->raw_data->contract)->parameter->value;
268+
$amount = $contract->amount;
269+
$from = $contract->owner_address;
270+
$ret = current($transaction->ret);
271+
$status = $ret->contractRet;
272+
$fee = $ret->fee;
273+
if($status === 'SUCCESS'):
274+
if($from === $owner):
275+
$balance -= $amount + $fee;
276+
else:
277+
$balance += $amount;
278+
endif;
279+
endif;
280+
endforeach;
281+
endforeach;
282+
return ($sun ? $balance : $balance / 1e6);
283+
}
260284
public function getAccountName(string $address = null,bool $hex = false) : mixed {
261285
$account = $this->getAccount($address);
262286
$accountname = isset($account->account_name) ? $account->account_name : null;

src/Requests.php

+5-1
Original file line numberDiff line numberDiff line change
@@ -30,11 +30,15 @@ public function request(string $method,string $path,array $datas = array(),array
3030
curl_setopt($this->curl,CURLOPT_HTTPHEADER,$headers);
3131
$result = curl_exec($this->curl);
3232
$error = curl_error($this->curl);
33-
return $error ? $error : json_decode($result);
33+
return is_bool($result) ? $error : json_decode($result);
3434
}
3535
public function __destruct(){
3636
curl_close($this->curl);
3737
}
38+
public function __clone() : void {
39+
$this->curl = curl_init();
40+
curl_setopt($this->curl,CURLOPT_RETURNTRANSFER,true);
41+
}
3842
}
3943

4044
?>

src/Transactions.php

+3-1
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,11 @@
77
use Iterator;
88

99
final class Transactions implements Iterator {
10+
private array $transactions;
1011
private int $position;
1112

12-
public function __construct(protected Requests $sender,private array $transactions){
13+
public function __construct(protected Requests $sender,array $transactions){
14+
$this->transactions = array_filter($transactions,fn(object $transaction) : bool => isset($transaction->success) and $transaction->success === true);
1315
$this->position = 0;
1416
}
1517
public function current() : mixed {

0 commit comments

Comments
 (0)