diff --git a/docs/base-chain/api-reference/rpc-overview.mdx b/docs/base-chain/api-reference/rpc-overview.mdx index de9db6ea1..d537a77bd 100644 --- a/docs/base-chain/api-reference/rpc-overview.mdx +++ b/docs/base-chain/api-reference/rpc-overview.mdx @@ -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). 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). diff --git a/docs/build-on-base/test-on-vibenet.mdx b/docs/build-on-base/test-on-vibenet.mdx index 66c042cc6..f653218c8 100644 --- a/docs/build-on-base/test-on-vibenet.mdx +++ b/docs/build-on-base/test-on-vibenet.mdx @@ -39,7 +39,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 @@ -100,7 +100,7 @@ This public WebSocket is Vibenet only. Base does not provide a free public WebSo ## Next Steps - + Add Vibenet to your wallet and development environment. diff --git a/docs/get-started/base-chain.mdx b/docs/get-started/base-chain.mdx index 2dfaec5ca..77250c454 100644 --- a/docs/get-started/base-chain.mdx +++ b/docs/get-started/base-chain.mdx @@ -12,7 +12,7 @@ Base is an EVM-compatible chain with its own native primitives, transaction pipe Find the practical entry points for integrating an app, wallet, contract, bridge, or infrastructure service. - + Configure Base Mainnet, Base Sepolia, or Vibenet in your wallet, app, or development environment. diff --git a/docs/get-started/connect-to-base.mdx b/docs/get-started/connect-to-base.mdx index c34f6f7d8..823e72fdf 100644 --- a/docs/get-started/connect-to-base.mdx +++ b/docs/get-started/connect-to-base.mdx @@ -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 diff --git a/docs/specifications/native-account-abstraction.mdx b/docs/specifications/native-account-abstraction.mdx index 49cee8349..b9c66c5f4 100644 --- a/docs/specifications/native-account-abstraction.mdx +++ b/docs/specifications/native-account-abstraction.mdx @@ -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. -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). ## Network Details diff --git a/docs/specifications/reference/smart-contracts.mdx b/docs/specifications/reference/smart-contracts.mdx index d8f9fe3ab..ecf749021 100644 --- a/docs/specifications/reference/smart-contracts.mdx +++ b/docs/specifications/reference/smart-contracts.mdx @@ -118,7 +118,7 @@ This returns the initial value of the `Counter` contract's `number` variable, `0 Launch Base's native token standard, built in at the precompile level. - + Network details, RPC endpoints, and wallet configuration.