> For the complete documentation index, see [llms.txt](https://docs.liquidapps.io/liquidapps-documentation/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.liquidapps.io/liquidapps-documentation/introduction/dapp-network-resources/liquidapps-dapp-client/air-hodl.md).

# Air-Hodl

### [dappairhodl1](https://bloks.io/account/dappairhodl1)

#### [get\_dapphdl\_accounts](https://github.com/liquidapps-io/zeus-sdk/blob/master/boxes/groups/dapp-network/client-lib-base/client/examples/get_dapphdl_accounts.ts) - get an account’s DAPPHDL stats

```
/*
    
    airhodl.get_dapphdl_accounts
    * account name

*/

const response = await (await getClient()).airhodl.get_dapphdl_accounts('natdeveloper');
for (const row of response.rows) {
    console.log(row);
    // {
    //     balance: '0.0033 DAPPHDL',
    //     allocation: '0.0199 DAPPHDL',
    //     staked: '0.0000 DAPPHDL',
    //     claimed: 1
    // }
}
```
