mirror of
https://github.com/kevachat/kevacoin-php.git
synced 2025-02-02 01:44:36 +00:00
implement getAccountAddress method
This commit is contained in:
parent
852d92cd4f
commit
f74e3c6f98
@ -627,6 +627,33 @@ class Client
|
||||
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
|
||||
{
|
||||
$this->_id++;
|
||||
|
Loading…
x
Reference in New Issue
Block a user