> For the complete documentation index, see [llms.txt](https://titanlabs.gitbook.io/titan-chain/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://titanlabs.gitbook.io/titan-chain/validator/about-titan-chain/validators/become-a-testnet-validator.md).

# Become a Testnet Validator

## Prepare your account

* Create an account by [Keplr](https://chrome.google.com/webstore/detail/keplr/dmkamcknogkgcdfhhbddcghachkejeap)
* Go to [Explorer website](https://testnet.tkxscan.io) click `Sign in` button and use Keplr method. It then help add titan testnet network into Keplr
* Get the test token from faucet <https://titan-testnet-faucet.titanlab.io/>. Copy and paste your wallet address that you previously created to receive testnet TKX tokens. (**NOTE: because min self delegate is 2048 TKX, to order to have enough TKX required for validator please contact us to receive a large amount of test TKX**)

You now possess a test account with tkx token on Titan testnet, and it is ready for staking.

## Create your validator

After creating a wallet with Keplr, you will now have a mnemonic (12 words/24 words) and a passphrase. We will proceed to import it into the node you created at step [Integrate on Testnet](/titan-chain/validator/about-titan-chain/developers/integrate-on-testnet.md).

Access to your node and import your wallet

```sh
titand keys add my_wallet --recover
```

Enter your 12-word mnemonic and passphrase. The output will appear as follows:

```sh
- address: titan198knyvkecazg4snsa5gt08ygg46fv7ma2g33v2
  name: my_wallet
  pubkey: '{"@type":"/ethermint.crypto.v1.ethsecp256k1.PubKey","key":"AkwSg37hZTtEODSYiMR5GGx/KCMHZymmguLKgOWeFCdc"}'
  type: local
```

Make sure that the address matches the one displayed in Keplr.

### Now it is time to create the validator

```
titand tx staking create-validator \
  --amount=2048tkx \
  --pubkey=$(titand tendermint show-validator) \
  --moniker="choose a moniker" \
  --chain-id=titan_18889-1 \
  --commission-rate="0.10" \
  --commission-max-rate="0.20" \
  --commission-max-change-rate="0.01" \
  --gas="auto" \
  --gas-adjustment=1.5 \
  --gas-prices="101000000000atkx" \
  --min-self-delegation="2048000000000000000000" \
  --from=my_wallet
```

You will be asked for the passphrase again and confirm the transaction.

```
gas estimate: 263922
auth_info:
  fee:
    amount:
    - amount: "263922000000000"
      denom: atkx
    gas_limit: "263922"
    granter: ""
    payer: ""
  signer_infos: []
  tip: null
body:
  extension_options: []
  memo: ""
  messages:
  - '@type': /cosmos.staking.v1beta1.MsgCreateValidator
    commission:
      max_change_rate: "0.010000000000000000"
      max_rate: "0.200000000000000000"
      rate: "0.100000000000000000"
    delegator_address: titan1graakezx2rllgd53yzn2z30cukxrga2h7397sz
    description:
      details: ""
      identity: ""
      moniker: Beast
      security_contact: ""
      website: ""
    min_self_delegation: "2048000000000000000000"
    pubkey:
      '@type': /cosmos.crypto.ed25519.PubKey
      key: bug7PM4m8iefXf/g4JVdklDJmDvzsmchCvEgkfMlCrs=
    validator_address: titanvaloper1graakezx2rllgd53yzn2z30cukxrga2hq9qmgn
    value:
      amount: "2048000000000000000000"
      denom: atkx
  non_critical_extension_options: []
  timeout_height: "0"
signatures: []
confirm transaction before signing and broadcasting [y/N]: y
code: 0
codespace: ""
data: ""
events: []
gas_used: "0"
gas_wanted: "0"
height: "0"
info: ""
logs: []
raw_log: '[]'
timestamp: ""
tx: null
txhash: F348DF6D236C310A8D65234F73D51F3D84DE41DE511C417807A06407FB04A892
```

Check the status of your transaction and your new validator at [explorer](https://testnet.tkxscan.io).


---

# 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://titanlabs.gitbook.io/titan-chain/validator/about-titan-chain/validators/become-a-testnet-validator.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.
