> For the complete documentation index, see [llms.txt](https://docs.validator247.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.validator247.com/testnet/alignedlayer.md).

# AlignedLayer

**Info**

> [https://twitter.com/alignedlayer\
> https://discord.gg/alignedlayer](<https://twitter.com/alignedlayer&#xA;https://discord.gg/alignedlayer>)

**Public Endpoints**

> <https://Alignedlayer-testnet-rpc.validator247.com>
>
> <https://Alignedlayer-testnet-api.validator247.com>

**Explorer**

> &#x20;[https://explorer.validator247.com/Aligned-Layer-Testnet/staking](https://explorer.validator247.com/Aligned-Layer-Testnet/staking/alignedvaloper1wq8qczlydt3kttcpc6mru77y6mx603mk6e50a4)

## Manual Installation

Make sure you have the latest Go build and system components installed

Install Node

```
cd $HOME
rm -rf $HOME/aligned_layer_tendermint && git clone --depth 1 --branch v0.0.2 https://github.com/yetanotherco/aligned_layer_tendermint && cd
$HOME/aligned_layer_tendermint/cmd/alignedlayerd && go build 
chmod +x alignedlayerd
sudo mv alignedlayerd /usr/local/bin/
cd $HOME
alignedlayerd version
```

Initialize Node:

```
alignedlayerd init NodeName --chain-id alignedlayer
```

Download Genesis & Download addrbook

```
wget https://raw.githubusercontent.com/Validator247/Aligned-Layer-Guide_Node/main/addrbook.json
wget https://raw.githubusercontent.com/Validator247/Aligned-Layer-Guide_Node/main/genesis.json
```

Seed & Peer

```
PEERS=a1a98d9caf27c3363fab07a8e57ee0927d8c7eec@128.140.3.188:26656,1beca410dba8907a61552554b242b4200788201c@91.107.239.79:26656,f9000461b5f535f0c13a543898cc7ac1cd10f945@88.99.174.203:26656,ca2f644f3f47521ff8245f7a5183e9bbb762c09d@116.203.81.174:26656
STAKETAB_PEER=dc2011a64fc5f888a3e575f84ecb680194307b56@148.251.235.130:20656
sed -i -e 's|^persistent_peers *=.*|persistent_peers = "'$STAKETAB_PEER','$PEERS'"|' $HOME/.alignedlayer/config/config.toml
sed -i -e 's|^seeds *=.*|seeds = "'$SEEDS'"|' $HOME/.alignedlayer/config/config.toml  
```

Mini Gas

```
sed -i -e "s|^minimum-gas-prices *=.*|minimum-gas-prices = \"0.0001stake\"|" $HOME/.alignedlayer/config/app.toml
```

Create Service

```
sudo tee /etc/systemd/system/alignedlayerd.service > /dev/null <<EOF
[Unit]
Description=alignedlayerd
After=network-online.target
[Service]
User=root
ExecStart=$(which alignedlayerd) start
Restart=always
RestartSec=3
LimitNOFILE=65535
[Install]
WantedBy=multi-user.target
EOF

cd $HOME
curl -L https://snap.nodex.one/alignedlayer-testnet/alignedlayer-latest.tar.lz4 | tar -Ilz4 -xf - -C $HOME/.alignedlayer

cd $HOME
sudo systemctl daemon-reload
sudo systemctl enable alignedlayerd
```

Launch Node

```
sudo systemctl restart alignedlayerd
sudo journalctl -u alignedlayerd -f -o cat
```

Here you wait after synchronization is complete, Proceed to create wallet - faucet - Create validator.

Good luck !
