Ejemplo n.º 1
0
 /**
  * get the balance for the wallet
  *
  * @return int[]            [confirmed, unconfirmed]
  */
 public function getBalance()
 {
     $balanceInfo = $this->sdk->getWalletBalance($this->identifier);
     return [$balanceInfo['confirmed'], $balanceInfo['unconfirmed']];
 }