Skip to content
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
2 changes: 1 addition & 1 deletion docs/base-chain/api-reference/rpc-overview.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Base exposes a single, fully EVM-compatible JSON-RPC API across two performance

## Networks

For network details, RPC endpoints, and wallet setup, see [Connecting to Base](/base-chain/quickstart/connecting-to-base).
For network details, RPC endpoints, and wallet setup, see [Connect to Base](/get-started/connect-to-base).

<Note>
The public Base endpoints are **HTTP only**. WebSocket RPC connections (`eth_subscribe`, `newHeads`, `logs`) are not available on public Base endpoints — choose a WebSocket-capable provider from the [Base Services Hub](/get-started/base-services-hub).
Expand Down
4 changes: 2 additions & 2 deletions docs/build-on-base/test-on-vibenet.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ If the embed doesn't load, open [chain.base.org/vibenet](https://chain.base.org/
| **Faucet** | [chain.base.org/vibenet/faucet](https://chain.base.org/vibenet/faucet) |
| **Block explorer** | [chain.base.org/vibenet/explorer](https://chain.base.org/vibenet/explorer) |

To add Vibenet to your wallet, see [Connecting to Base](/base-chain/quickstart/connecting-to-base).
To add Vibenet to your wallet, see [Connect to Base](/get-started/connect-to-base).

## Get Testnet ETH

Expand All @@ -64,7 +64,7 @@ curl -X POST https://api.vibes.base.org/api/vibenet/faucet/drip \
## Next Steps

<CardGroup cols={2}>
<Card title="Connect to Base" icon="plug" href="/base-chain/quickstart/connecting-to-base">
<Card title="Connect to Base" icon="plug" href="/get-started/connect-to-base">
Add Vibenet to your wallet and development environment.
</Card>
<Card title="Launch a B20 Token" icon="rocket" href="/build-on-base/issue-rwa/create-an-asset-token">
Expand Down
2 changes: 1 addition & 1 deletion docs/get-started/base-chain.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ Base is an EVM-compatible chain with its own native primitives, transaction pipe
<Card title="Base Protocol Overview" icon="link" href="/specifications/overview">
Find the practical entry points for integrating an app, wallet, contract, bridge, or infrastructure service.
</Card>
<Card title="Connect to Base" icon="plug" href="/base-chain/quickstart/connecting-to-base">
<Card title="Connect to Base" icon="plug" href="/get-started/connect-to-base">
Configure Base Mainnet, Base Sepolia, or Vibenet in your wallet, app, or development environment.
</Card>
<Card title="Get Testnet Funds" icon="faucet-drip" href="/base-chain/network-information/network-faucets">
Expand Down
16 changes: 9 additions & 7 deletions docs/get-started/connect-to-base.mdx
Original file line number Diff line number Diff line change
@@ -1,19 +1,21 @@
---
title: "Connect to Base"
keywords: ["connect to Base", "Base RPC endpoint", "Base chain ID 8453", "add Base to wallet"]
description: "Network details for Base Mainnet and Base Sepolia: RPC endpoints, chain IDs, and block explorers."
description: "Network details for Base Mainnet, Base Sepolia, and Vibenet: RPC endpoints, chain IDs, and block explorers."
---

Base is a standard EVM chain, so any Ethereum tool, wallet, or library works unchanged. Just point it at the network details below.

## Network Details

| | Base Mainnet | Base Sepolia (testnet) |
|---|---|---|
| RPC endpoint | `https://mainnet.base.org` | `https://sepolia.base.org` |
| Chain ID | `8453` | `84532` |
| Currency | ETH | ETH |
| Block explorer | [basescan.org](https://basescan.org) | [sepolia.basescan.org](https://sepolia.basescan.org) |
| | Base Mainnet | Base Sepolia (testnet) | Base Vibenet (devnet) |
|---|---|---|---|
| RPC endpoint | `https://mainnet.base.org` | `https://sepolia.base.org` | `https://rpc.vibes.base.org` |
| Chain ID | `8453` | `84532` | `84538453` |
| Currency | ETH | ETH | ETH |
| Block explorer | [basescan.org](https://basescan.org) | [sepolia.basescan.org](https://sepolia.basescan.org) | [chain.base.org/vibenet/explorer](https://chain.base.org/vibenet/explorer) |

To add a network to a wallet, use the RPC endpoint, chain ID, and currency above as a custom network. Vibenet is Base's experimental devnet for features that have not reached Sepolia or Mainnet yet; see [Test on Vibenet](/build-on-base/test-on-vibenet) for the faucet and what is currently live there.

## Next Steps

Expand Down
2 changes: 1 addition & 1 deletion docs/specifications/native-account-abstraction.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ This is the technical reference for EIP-8130 on Base. For what native account ab
[EIP-8130](https://eip.tools/eip/8130) builds account abstraction into the protocol. An account registers who can act for it, and how its signatures are checked, in an onchain system contract. The chain validates each transaction against that configuration, so smart accounts work without bundlers, relays, or a separate mempool.

<Warning>
EIP-8130 is experimental and currently runs only on the [vibenet devnet](https://chain.base.org/vibenet). You can learn more in the guide to [connecting to vibenet](/base-chain/quickstart/connecting-to-base#vibenet).
EIP-8130 is experimental and currently runs only on the [vibenet devnet](https://chain.base.org/vibenet). You can learn more in the guide to [testing on Vibenet](/build-on-base/test-on-vibenet).
</Warning>

## Network Details
Expand Down
2 changes: 1 addition & 1 deletion docs/specifications/reference/smart-contracts.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ This returns the initial value of the `Counter` contract's `number` variable, `0
<Card title="B20 Token Standard" icon="coins" href="/build-on-base/issue-rwa/create-an-asset-token">
Launch Base's native token standard, built in at the precompile level.
</Card>
<Card title="Connect to Base" icon="plug" href="/base-chain/quickstart/connecting-to-base">
<Card title="Connect to Base" icon="plug" href="/get-started/connect-to-base">
Network details, RPC endpoints, and wallet configuration.
</Card>
</CardGroup>
Expand Down
Loading