> For the complete documentation index, see [llms.txt](https://seeletech.gitbook.io/wiki/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://seeletech.gitbook.io/wiki/developer/go-seele/privatenet.md).

# Private Net

## Steps to build your own seele-network

Refer to [Getting Started With Seele](https://github.com/seeleteam/seele-md/tree/9f51d80c5b5fa71177bc79ceaf0174aa77088887/Dev/Getting-Started-With-Seele.html) to start a single node

* If you need to start one or multiple nodes to form a network，modify the list in the staticNodes field found in the file nodes1.json under `go-seele\cmd\node\config`. The format for the staticNodes address is of the form “ip:port”. To add one or more addresses, use ”staticNodes”:\[“ip:port”,…]，where ip address is the ip of the servers in the cluster. Do not add your own machine address as it will be invalid. The addresses must be the nodes within the cluster. Refer to pic1 and pic2.

  \`\`\`

  "p2p": {

  &#x20; "privateKey":"0xf65e40c6809643b25ce4df33153da2f3338876f181f83d2281c6ac4a987b1479",

  &#x20; "staticNodes": \[],

  &#x20; "address": "0.0.0.0:8057",

  &#x20; "networkID": 1

  }

"p2p": { "privateKey":"0xf65e40c6809643b25ce4df33153da2f3338876f181f83d2281c6ac4a987b1479", "staticNodes": \["ip:8057","ip1:8057"], "address": "0.0.0.0:8057", "networkID": 1 }

* For the configuration of other fields in nodes1.json, refer to **How to customize your node configurations** at [Getting Started With Seele](https://github.com/seeleteam/seele-md/tree/9f51d80c5b5fa71177bc79ceaf0174aa77088887/Dev/Getting-Started-With-Seele.html).
* When modifications are complete, the nodes will form a cluster when started.


---

# 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://seeletech.gitbook.io/wiki/developer/go-seele/privatenet.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.
