> For the complete documentation index, see [llms.txt](https://ivankhrenkov.gitbook.io/bware_labs_russian/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://ivankhrenkov.gitbook.io/bware_labs_russian/the-basics/binance-smart-chain-api/rpc/metod-eth_accounts.md).

# Метод eth\_accounts

Возвращает список учетных записей, принадлежащих клиенту.

## **Параметры**

нет

### **Возврат**

`Array of DATA`, 20 байт - адреса, принадлежащие клиенту.

### **Пример**

```
// Request

curl -H "Content-Type: application/json" -d '{"id":1, "jsonrpc":"2.0", "method": "eth_accounts","params": []}' https://bsc-api.bwarelabs.com/<your-endpoint-id>

// Response

{
    "jsonrpc": "2.0",
    "id": 1,
    "result": ["0x407d73d8a49eeb85d32cf465507dd71d507100c1"]
}
```
