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:
Settings → Networks → Add Network
Enter details above
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
RPC Reference — All available methods
Code Examples — Copy-paste snippets
Use Cases — Inspiration for your app
Last updated