> For the complete documentation index, see [llms.txt](https://smartscenarios.pirichain.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://smartscenarios.pirichain.com/psce-functions/getbalancelist.md).

# getBalanceList

{% code overflow="wrap" lineNumbers="true" %}

```javascript
const result = await Transaction.getBalanceList(<Receipt Address:Base58>);
```

{% endcode %}

To get latest wallet balance info, we can use above methods.

**Sample:**&#x20;

```javascript
const result = await Transaction.getBalanceList('PRTMPp6wo6zGAcStmhmBGQErnomzhFCoaTfLuXKTvo2');
```

**Response Example:**

```json
[
    {
    "error":0,
    "name":"PIRI",
    "symbol":"PIRI",
    "logo":"/images/piri.png",
    "assetID":-1,
    "address":"PRTMR5sqPyVKHjeHMZkAqKx7AjJGmwdhUkx8aj7PdCn",
    "frozen":[],
    "balance":"0.00000000"
    }
]
```
