diff --git a/docs/base-chain/quickstart/connecting-to-base.mdx b/docs/base-chain/quickstart/connecting-to-base.mdx
index 35dfa19f6..596ba3ba0 100644
--- a/docs/base-chain/quickstart/connecting-to-base.mdx
+++ b/docs/base-chain/quickstart/connecting-to-base.mdx
@@ -77,7 +77,7 @@ Base is an EVM-compatible Layer 2 network. Use the details below to connect your
Vibenet is Base's experimental preview network where new chain-level features are available before they roll out to Sepolia or Mainnet. It currently hosts [B20 tokens](/get-started/launch-b20-token) — an ERC-20 superset with built-in roles, supply caps, pausing, policy gating, and `permit` implemented as a native precompile.
- Use Vibenet to build against cutting-edge Base features. It is not intended for production or user-facing applications. Learn more at [vibes.base.org](https://vibes.base.org).
+ Use Vibenet to build against cutting-edge Base features. It is not intended for production or user-facing applications. Learn more at [chain.base.org/vibenet](https://chain.base.org/vibenet).
| | |
| :--- | :--- |
@@ -85,8 +85,8 @@ Base is an EVM-compatible Layer 2 network. Use the details below to connect your
| **RPC Endpoint** | [rpc.vibes.base.org](https://rpc.vibes.base.org) |
| **Chain ID** | 84538453 |
| **Currency Symbol** | ETH |
- | **Faucet** | [faucet.vibes.base.org](https://faucet.vibes.base.org) |
- | **Block Explorer** | [explorer.vibes.base.org](https://explorer.vibes.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) |
@@ -129,7 +129,7 @@ The public Base endpoints are **HTTP only**. WebSocket RPC connections (`eth_sub
To add a network manually, use the details from the [Network details](#network-details) section above.
diff --git a/docs/base-chain/specs/upgrades/cobalt/eip-8130.mdx b/docs/base-chain/specs/upgrades/cobalt/eip-8130.mdx
index b3256c820..329e138d4 100644
--- a/docs/base-chain/specs/upgrades/cobalt/eip-8130.mdx
+++ b/docs/base-chain/specs/upgrades/cobalt/eip-8130.mdx
@@ -6,7 +6,7 @@ description: "Build with native account abstraction on Base. EIP-8130 smart acco
[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.
-EIP-8130 is experimental and currently runs only on the [vibenet devnet](https://vibes.base.org/build). You can learn more about connecting to vibenet [here](/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 about connecting to vibenet [here](/base-chain/quickstart/connecting-to-base#vibenet).
## Build with EIP-8130
@@ -46,7 +46,7 @@ const signer = privateKeyToAccount(generatePrivateKey());
const account = newSmartAccount8130({ signer });
// Fund it from the vibenet faucet
-await fetch("https://vibes.base.org/api/vibenet/faucet/drip", {
+await fetch("https://api.vibes.base.org/api/vibenet/faucet/drip", {
method: "POST",
headers: { "content-type": "application/json" },
body: JSON.stringify({ address: account.address }),
diff --git a/docs/get-started/launch-b20-token.mdx b/docs/get-started/launch-b20-token.mdx
index e1880ae81..2dc6adbce 100644
--- a/docs/get-started/launch-b20-token.mdx
+++ b/docs/get-started/launch-b20-token.mdx
@@ -128,8 +128,8 @@ Pick a network with the B20 precompiles active, then create a `.env` **inside yo
|---|---|
| RPC URL | `https://rpc.vibes.base.org/` |
| Chain ID | `84538453` |
- | Faucet | [faucet.vibes.base.org](https://faucet.vibes.base.org/) |
- | Explorer | [explorer.vibes.base.org](https://explorer.vibes.base.org/) |
+ | Faucet | [chain.base.org/vibenet/faucet](https://chain.base.org/vibenet/faucet) |
+ | Explorer | [chain.base.org/vibenet/explorer](https://chain.base.org/vibenet/explorer) |
```bash .env theme={null}
export RPC_URL="https://rpc.vibes.base.org/"