Skip to content

Commit

Permalink
Add Sepolia to Run a node guide (#180)
Browse files Browse the repository at this point in the history
  • Loading branch information
taycaldwell authored Dec 6, 2023
1 parent 5c16baa commit e6a2c64
Showing 1 changed file with 16 additions and 2 deletions.
18 changes: 16 additions & 2 deletions apps/base-docs/docs/building-with-base/guides/run-a-base-node.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,16 @@ By the end of this guide you should be able to:
:::caution

Running a node is time consuming, resource expensive, and potentially costly. If you don't already know why you want to run your own node, you probably don't need to.
<br></br>

If you're just getting started and need an RPC URL, you can use our free endpoint at `https://mainnet.base.org` (or if you're setting up a node on testnet, `https://goerli.base.org`). **Note:** Our RPCs are rate-limited, they are not suitable for production apps.
If you're just getting started and need an RPC URL, you can use our free endpoints:
<br></br>

- **Mainnet**: `https://mainnet.base.org`
- **Testnet (Sepolia)**: `https://sepolia.base.org`
- **Testnet (Goerli)**: `https://goerli.base.org`.

**Note:** Our RPCs are rate-limited, they are not suitable for production apps.

If you're looking to harden your app and avoid rate-limiting for your users, please check out one of our [partners].

Expand Down Expand Up @@ -94,7 +102,13 @@ If you're a prospective or current Base Node operator and would like to restore
wget https://base-mainnet-archive-snapshots.s3.us-east-1.amazonaws.com/$(curl https://base-mainnet-archive-snapshots.s3.us-east-1.amazonaws.com/latest)
```

**Testnet**
**Testnet (Sepolia)**

```
wget https://base-snapshots-sepolia-archive.s3.amazonaws.com/$(curl https://base-snapshots-sepolia-archive.s3.amazonaws.com/latest)
```

**Testnet (Goerli)**

```
wget https://base-goerli-archive-snapshots.s3.us-east-1.amazonaws.com/$(curl https://base-goerli-archive-snapshots.s3.us-east-1.amazonaws.com/latest)
Expand Down

0 comments on commit e6a2c64

Please sign in to comment.