2023-06-10 00:17:41 +01:00
---
2023-06-18 09:34:09 +01:00
title: Static Peers
2023-11-23 12:01:32 +01:00
hide_table_of_contents: true
2023-06-10 00:17:41 +01:00
---
2023-11-23 12:01:32 +01:00
Waku applications have the flexibility to embed bootstrap node addresses directly into their codebase. Developers can either use static peers operated by Status or [run a node ](/#run-a-waku-node ).
2023-06-10 00:17:41 +01:00
2023-06-14 04:34:58 +01:00
#### Pros
2023-06-10 00:17:41 +01:00
- Low latency.
- Low resource requirements.
2023-06-14 04:34:58 +01:00
#### Cons
2023-06-10 00:17:41 +01:00
- Vulnerable to censorship: Node IPs can be blocked or restricted.
- Limited scalability: The number of nodes is fixed and cannot easily be expanded.
2023-06-10 01:29:29 +01:00
- Maintenance challenges: Updating the node list requires modifying the code, which can be cumbersome and involves releasing and deploying.
## Overview
```mdx-code-block
2023-06-16 09:40:22 +01:00
import StaticPeers from "@site/diagrams/_static -peers.md";
2023-06-10 01:29:29 +01:00
2023-06-16 09:40:22 +01:00
< StaticPeers / >
2023-06-10 01:29:29 +01:00
```