Skip to content

Commit c7f4957

Browse files
dirvineclaude
andcommitted
docs: add testnet bootstrap endpoints to README
Add real testnet bootstrap node addresses: - saorsa-bootstrap-1 (NYC): 165.22.4.178:12000 - saorsa-bootstrap-2 (SFO): 164.92.111.156:12000 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
1 parent 6041f09 commit c7f4957

File tree

1 file changed

+15
-6
lines changed

1 file changed

+15
-6
lines changed

README.md

Lines changed: 15 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -795,15 +795,24 @@ cargo build --release
795795
./target/release/saorsa-node
796796
```
797797

798-
### Join Existing Network
798+
### Join Testnet
799799

800800
```bash
801-
# Connect to bootstrap peers
801+
# Connect to testnet bootstrap nodes
802+
./target/release/saorsa-node --testnet
803+
804+
# Or specify bootstrap peers manually
802805
./target/release/saorsa-node \
803-
--bootstrap "/ip4/1.2.3.4/udp/12000/quic-v1" \
804-
--bootstrap "/ip6/2001:db8::1/udp/12000/quic-v1"
806+
--bootstrap "/ip4/165.22.4.178/udp/12000/quic-v1" \
807+
--bootstrap "/ip4/164.92.111.156/udp/12000/quic-v1"
805808
```
806809

810+
**Testnet Bootstrap Nodes:**
811+
| Node | Location | Address |
812+
|------|----------|---------|
813+
| saorsa-bootstrap-1 | NYC (DigitalOcean) | `165.22.4.178:12000` |
814+
| saorsa-bootstrap-2 | SFO (DigitalOcean) | `164.92.111.156:12000` |
815+
807816
### Full Configuration
808817

809818
```bash
@@ -896,8 +905,8 @@ port = 0 # Auto-select
896905
[network]
897906
ip_version = "dual"
898907
bootstrap = [
899-
"/ip4/1.2.3.4/udp/12000/quic-v1",
900-
"/ip6/2001:db8::1/udp/12000/quic-v1"
908+
"/ip4/165.22.4.178/udp/12000/quic-v1",
909+
"/ip4/164.92.111.156/udp/12000/quic-v1"
901910
]
902911

903912
[upgrade]

0 commit comments

Comments
 (0)