# 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 |
  + -------------------- - -------------------- +
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://guide.axentro.io/using-the-cli/what-are-hras/using-the-domain.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
