# Check Balances

Once [Truebit on Ethereum has started](https://docs.truebit.io/v1docs/getting-started/start-truebit-on-ethereum):

**1. See all the accounts.**&#x20;

```bash
accounts -r
```

<mark style="color:purple;">**OUTPUT**</mark>

```bash
0: 0x2F25f5DF360305977Fef8F6730883a787785B802
1: 0x353510EF7b01b4BAAd9616ae23d344c5945c6771
2: 0x1Da28542742614B3CA2941F9DFcD23FFc3CB0071
```

In this example, account 0 represents the Solver, account 1 represents the Verifier, and account 2 represents the Task Giver.

**2. Check balance of account 0.**

```bash
balance -a 0
```

<mark style="color:purple;">**OUTPUT**</mark>

{% code overflow="wrap" %}

```bash
info: At block 6841799, address 0x2F25f5DF360305977Fef8F6730883a787785B802 has the following balances: account: 0.676828037982983413 ETH,
47124.663847753967123863 TRU,
deposit (unbonded): 1703.6 TRU.
```

{% endcode %}

**3. Stake some TRU to solve, verify, and task execution.**

{% tabs %}
{% tab title="Solver (Account 0)" %}

```
token deposit -v 500 -a 0
```

{% endtab %}

{% tab title="Verifier (Account 1)" %}

```
token deposit -v 500 -a 1
```

{% endtab %}

{% tab title="Task Giver (Account 2)" %}

```
token deposit -v 500 -a 2
```

{% endtab %}
{% endtabs %}

<mark style="color:purple;">**OUTPUT**</mark>

{% code overflow="wrap" %}

```bash
info: Deposited 500 TRU from account 0x2F25f5DF360305977Fef8F6730883a787785B802 into IncentiveLayer 0x76c73774bc137f3229c422a8e054a022d9066b22.
```

{% endcode %}

**4. Gas for the deposit.**

\
`0.00242 ETH`<br>

**5. Check balance account 1.**

```bash
balance - a 1
```

<mark style="color:purple;">**OUTPUT**</mark>

```bash
info: At block 6788783, address 0x353510EF7b01b4BAAd9616ae23d344c5945c6771 has the following balances: account:
0.104730456658735534 ETH,
500 TRU,
deposit (unbonded): 500 TRU.
```
