# eth\_accounts

Retrieves the active account in the wallet for Ethereum's provider.

**Parameters**

None

**Return Type**

`Address[]` - User's active account.

{% hint style="info" %}
**Important**

The account returned will always be the active account in Stargazer. The response will have at most one address.
{% endhint %}

**Example**

```typescript
await provider.request({ method: "eth_accounts", params: [] });
// ["0x407d73d8a49eeb85d32cf465507dd71d507100c1"]
```
