> For the complete documentation index, see [llms.txt](https://guide.axentro.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://guide.axentro.io/using-the-cli/what-are-hras/using-the-domain.md).

# Using the domain

So now you have a domain - you can do a few things:

* receive coins/token to the domain
* query the wallet amounts via the domain
* sell the domain for profit

Let's try to receive some coins to our wallet via the domain

## Sending coins to the domain

You will need another wallet to be able to send coins to your wallet with the domain. If you don't have another one - go and follow the instructions to [create and populate a wallet](/using-the-cli/creating-a-wallet.md) with some coins and [sending coins](/using-the-cli/sending-coins.md).

So firstly lets see how many unconfirmed coins our wallet with the domain has:

```
> ./axe wallet amount --domain=mydomain.ax -n http://testnet.axentro.io

 showing amount of each token for VDA4NTAxMzI1NmExZmY0ZTVkMGRjMGU4MGE0MWZlZThmYjNlZGYwYTAzMjYzYTI4.
 confirmation: 1

  + -------------------- - -------------------- +
  |                token |               amount |
  | -------------------- | -------------------- |
  |                 AXNT |          59.29161346 |
  + -------------------- - -------------------- +
```

and now lets send some coins to the wallet with the domain:

```bash
./axe transaction create -w testnet-wallet-2.json -n http://testnet.axentro.io -m 2 -f 1 --domain=fullmetal.ax
```

So now once the transaction has been processed we should see the amount of coins in `mydomain.ax` increase by 2.

```
> ./axe wallet amount --domain=mydomain.ax -n http://testnet.axentro.io

 showing amount of each token for VDA4NTAxMzI1NmExZmY0ZTVkMGRjMGU4MGE0MWZlZThmYjNlZGYwYTAzMjYzYTI4.

  + -------------------- - -------------------- +
  |                token |               amount |
  | -------------------- | -------------------- |
  |                 AXNT |          61.29161346 |
  + -------------------- - -------------------- +
```
