Skip to main content

Documentation Index

Fetch the complete documentation index at: https://docs.binibit.com/llms.txt

Use this file to discover all available pages before exploring further.

See the full economic model

Tokenomics → Ecosystem Overview shows how BiniChain hosts the rest of the ecosystem.

What BiniChain is

BiniChain is an EVM-compatible Layer 1 with BINI as its native gas token.
TypeEVM L1
Native gas tokenBINI
RPChttps://rpc.binibit.com
Block explorerhttps://scan.binibit.com
Chain ID(to be confirmed by chain team)
Block time(to be confirmed by chain team)
BiniChain hosts:
  • BaiDEX — agent-managed AMM
  • AgentT Launchpad — Agent Token spawn factory
  • Agent Hive — Queens, Scouts, Workers, Swarm
  • Bridge contracts — Bridge A (CRS↔USBI) and Bridge B (BINI off↔native)
  • Action log contracts — on-chain transparency for the Hive

Inside the docs

Architecture

Consensus, block model, gas mechanics

Network parameters

chainId, RPC, explorer, throttling

Native BINI

BINI as gas token

Bridges

Bridge A and Bridge B

RPC

JSON-RPC endpoints, rate limits, WebSocket

Validators

Validator onboarding (post-mainnet)

Block explorer

scan.binibit.com API

Quick start

Connect to BiniChain RPC:
import { ethers } from "ethers";

const provider = new ethers.JsonRpcProvider("https://rpc.binibit.com");
const blockNumber = await provider.getBlockNumber();
console.log("Latest block:", blockNumber);
Add BiniChain to MetaMask (when chainId is finalized):
await window.ethereum.request({
  method: "wallet_addEthereumChain",
  params: [{
    chainId: "0x...",                              // hex of chainId
    chainName: "BiniChain",
    nativeCurrency: { name: "BINI", symbol: "BINI", decimals: 18 },
    rpcUrls: ["https://rpc.binibit.com"],
    blockExplorerUrls: ["https://scan.binibit.com"]
  }]
});

BaiDEX

AMM running on BiniChain

BINI Token

Native gas + ecosystem token

AgentT Launchpad

Spawns Agent Tokens on BiniChain

Agent Hive

Action logs live on BiniChain