Account

December 22, 2017 ยท View on GitHub

Get the balance of an account.

$client->api('Account')->balance(string $address);

Get the public key of an account.

$client->api('Account')->publickey(string $address);

Get the delegates of an account.

$client->api('Account')->delegates(string $address);

Get the delegate fee of an account.

$client->api('Account')->delegatesFee(string $address);

Add a new delegate to an account.

$client->api('Account')->createDelegates(string $secret, string $publicKey, string $secondSecret);

Returns account information of an address.

$client->api('Account')->account(string $address);

Get a list of accounts.

$client->api('Account')->accounts();

Get a list of top accounts.

$client->api('Account')->top();

Get the count of accounts.

$client->api('Account')->count();