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


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## 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, and the optional `goal` query parameter:

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

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

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.
