Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update bootstrap nodes & readme with reference to seed download data #1730

Open
wants to merge 5 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,13 @@ Minimal recommended hardware requirements for nodes are:

If the node is also used as API server for Pact or mining, rosetta, chainweb-data: 4 CPU cores and 8GB of RAM.


### Node Data Snapshot (Bootstrap) Data

Some third-party community members and projects offer downloadable node data snapshots (bootstrap data) free of charge. Kadena's official snapshot data archive is a paid service available through Amazon S3. This data is a copy of the blockchain available to kickstart a node. Kadena is not able to attest to the integrity of any of these projects; however, you may use them if you choose.

- https://chainweb-data.kda.kaddex.xyz/ (Blockchain snapshot updated every four (4) hours and retained for at least forty (40) hours.

### Docker (all batteries included)

A docker image is available from
Expand Down Expand Up @@ -191,8 +198,6 @@ request that adds your node to [P2P.BootstrapNodes module](src/P2P/BootstrapNode

### Current Mainnet Bootstrap Nodes

All bootstrap nodes are running on port 443.

- us-e1.chainweb.com
- us-e2.chainweb.com
- us-e3.chainweb.com
Expand All @@ -205,6 +210,13 @@ All bootstrap nodes are running on port 443.
- fr1.chainweb.com
- fr2.chainweb.com
- fr3.chainweb.com
- 1.sea.us.node.kda.kaddex.xyz:8443
- 1.dal.us.node.kda.kaddex.xyz:8443
- 1.hel.fi.node.kda.kaddex.xyz:8443
- 2.hel.fi.node.kda.kaddex.xyz:8443
- 1.fsn.de.node.kda.kaddex.xyz:8443
- 2.fsn.de.node.kda.kaddex.xyz:8443
- 1.syd.au.node.kda.kaddex.xyz:8443

## Configuring, running, and monitoring the health of a Chainweb Node

Expand Down
7 changes: 7 additions & 0 deletions src/P2P/BootstrapNodes.hs
Original file line number Diff line number Diff line change
Expand Up @@ -42,6 +42,13 @@ mainnetBootstrapHosts = map unsafeHostAddressFromText
, "jp1.chainweb.com:443"
, "jp2.chainweb.com:443"
, "jp3.chainweb.com:443"
, "1.sea.us.node.kda.kaddex.xyz:8443"
, "1.dal.us.node.kda.kaddex.xyz:8443"
, "1.hel.fi.node.kda.kaddex.xyz:8443"
, "2.hel.fi.node.kda.kaddex.xyz:8443"
, "1.fsn.de.node.kda.kaddex.xyz:8443"
, "2.fsn.de.node.kda.kaddex.xyz:8443"
, "1.syd.au.node.kda.kaddex.xyz:8443"
]

-- -------------------------------------------------------------------------- --
Expand Down