# Running kinto nodes

Kinto uses a forked Arbitrum orbit stack, in order to run a node please follow these instructions.

Prerequisites: All node requirements, CPU, memory, disk size and ports can be found in the arbitrum docs here: <https://docs.arbitrum.io/run-arbitrum-node/run-full-node>

1. Visit this notion guide: <https://constellationlabs.notion.site/Kinto-Mainnet-Replica-Node-e6bb16e332364bc0ae952868853a25c8>
2. Download and uncompress "nitro-replica-kinto-mainnet.zip"&#x20;
3. Fill all the required data in docker-compose.yaml (should be prefilled with the exception of a beacon network endpoint)

```yaml

version: '3.4'

volumes:
  l2_data:

services:
  l2:
    image: public.ecr.aws/i6b2w2n6/nitro-node:kinto-mainnet-9.0.0
    ports:
      - "9545:8545"
      - "9546:8546"
    volumes:
      - "${PWD}/nodeConfig.json:/config/nodeConfig.json"
      - l2_data:/home/user/.arbitrum
    entrypoint:
      - "/usr/local/bin/nitro"
      - --conf.file=/config/nodeConfig.json
      - --execution.forwarding-target=wss://kinto-mainnet.calderachain.xyz/ws
      - --node.feed.input.url=wss://kinto-mainnet.calderachain.xyz/feed
      - --parent-chain.connection.url=https://eth.merkle.io
      - --parent-chain.blob-client.beacon-url= #INSERT ETHEREUM BEACON API URL HERE

```

* Make sure you have the latest node image in the l2/image field:

<table><thead><tr><th width="102">Version</th><th width="130">Release date</th><th>Link</th></tr></thead><tbody><tr><td>9.0.0</td><td>10/30/24</td><td>public.ecr.aws/i6b2w2n6/nitro-node:kinto-mainnet-9.0.0</td></tr></tbody></table>

* In order to keep yourself update for future image upgrades please join our developers channel in our discord: [<mark style="color:purple;">discord.com/invite/kinto</mark>](https://t.co/E89v7JQThy)

4. Finally once all fields are complete start running the node with:

```
docker-compose up -d
```


---

# 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://docs.kinto.xyz/kinto-the-modular-exchange/building-on-kinto/running-kinto-nodes.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.
