Skip to content
Merged
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
8 changes: 4 additions & 4 deletions docs/base-chain/quickstart/connecting-to-base.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -77,16 +77,16 @@ Base is an EVM-compatible Layer 2 network. Use the details below to connect your
<Tab title="Vibenet">
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).

| | |
| :--- | :--- |
| **Network Name** | Base Vibenet |
| **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) |

</Tab>
</Tabs>
Expand Down Expand Up @@ -129,7 +129,7 @@ The public Base endpoints are **HTTP only**. WebSocket RPC connections (`eth_sub
<div style={{ display: 'flex', flexDirection: 'row', flexWrap: 'wrap', gap: '8px', marginTop: '12px' }}>
<AddToMetaMask chainId="8453" chainName="Base Mainnet" rpcUrl="https://mainnet.base.org" blockExplorer="https://basescan.org" />
<AddToMetaMask chainId="84532" chainName="Base Sepolia" rpcUrl="https://sepolia.base.org" blockExplorer="https://sepolia.basescan.org" />
<AddToMetaMask chainId="84538453" chainName="Base Vibenet" rpcUrl="https://rpc.vibes.base.org" blockExplorer="https://explorer.vibes.base.org" />
<AddToMetaMask chainId="84538453" chainName="Base Vibenet" rpcUrl="https://rpc.vibes.base.org" blockExplorer="https://chain.base.org/vibenet/explorer" />
</div>

To add a network manually, use the details from the [Network details](#network-details) section above.
Expand Down
4 changes: 2 additions & 2 deletions docs/base-chain/specs/upgrades/cobalt/eip-8130.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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.

<Warning>
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).
</Warning>

## Build with EIP-8130
Expand Down Expand Up @@ -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 }),
Expand Down
4 changes: 2 additions & 2 deletions docs/get-started/launch-b20-token.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -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/"
Expand Down
Loading