Browse Source

implement getAccountAddress method

main
ghost 9 months ago
parent
commit
f74e3c6f98
  1. 27
      src/Client.php

27
src/Client.php

@ -627,6 +627,33 @@ class Client
return null; return null;
} }
public function getAccountAddress(string $account): ?string
{
$this->_id++;
$this->_prepare(
'',
'POST',
[
'method' => 'getaccountaddress',
'params' =>
[
$account
],
'id' => $this->_id
]
);
$response = $this->_execute();
if (isset($response['result']) && is_string($response['result']))
{
return $response['result'];
}
return null;
}
public function listAccounts(): ?array public function listAccounts(): ?array
{ {
$this->_id++; $this->_id++;

Loading…
Cancel
Save