Getting Started

Connect to Obsidian

Network Details

Property
Value

Chain ID

421 (0x1a5)

RPC URL

https://rpc.obsidian.network

Block Explorer

https://explorer.obsidian.network

Add to Wallet

MetaMask:

  1. Settings → Networks → Add Network

  2. Enter details above

  3. Save

Programmatic:

await window.ethereum.request({
  method: "wallet_addEthereumChain",
  params: [
    {
      chainId: "0x1a5",
      chainName: "Obsidian",
      rpcUrls: ["https://rpc.obsidian.network"],
      nativeCurrency: { name: "OBS", symbol: "OBS", decimals: 18 },
    },
  ],
});

Send Your First Message

Using ethers.js

Using viem

Retrieve Messages

Next Steps

Last updated