DOCS
$INTERN never asks you to trust a claim you can't check yourself. Every address below is a real, verified contract on Robinhood Chain — click through to Blockscout and read the source before you trust it with anything.
NETWORK
CONTRACTS
PAIR's protocol contracts already exist on-chain — they're protocol-wide, not specific to $INTERN, so they're real today even before $INTERN itself launches. Only $INTERN's own token address and its staking contract wait on launch.
TOKENOMICS
Full breakdown, including the live fee-split visual, on the tokenomics page.
INTEGRATION
Everything below reads straight off the contracts with viem — no API, no indexer required for basic reads.
A STAKER'S POSITION
import { createPublicClient, http, parseAbi } from "viem";
const client = createPublicClient({
chain: {
id: 4663,
name: "Robinhood Chain",
nativeCurrency: { name: "Ether", symbol: "ETH", decimals: 18 },
rpcUrls: { default: { http: ["https://rpc.mainnet.chain.robinhood.com"] } },
},
transport: http(),
});
const stakingAbi = parseAbi([
"function balanceOf(address account) view returns (uint256)",
"function earned(address account) view returns (uint256)",
"function totalStaked() view returns (uint256)",
]);
const [staked, earned, totalStaked] = await Promise.all([
client.readContract({ address: STAKING_ADDRESS, abi: stakingAbi, functionName: "balanceOf", args: [wallet] }),
client.readContract({ address: STAKING_ADDRESS, abi: stakingAbi, functionName: "earned", args: [wallet] }),
client.readContract({ address: STAKING_ADDRESS, abi: stakingAbi, functionName: "totalStaked" }),
]);CURRENT $INTERN SUPPLY (BURN-ADJUSTED)
const supplyAbi = parseAbi(["function totalSupply() view returns (uint256)"]);
const currentSupply = await client.readContract({
address: INTERN_TOKEN_ADDRESS,
abi: supplyAbi,
functionName: "totalSupply",
});
// Standard ERC20 totalSupply() already reflects every burn to the dead
// address as a real transfer -- no separate "burned" tracker needed.
const burned = 1_000_000_000n * 10n ** 18n - currentSupply;VERIFY IT YOURSELF
$INTERN is a fixed-supply utility token on Robinhood Chain. This page is informational only and is not investment, financial, or legal advice. Staking involves smart contract risk — InternStakingRewards has been reviewed internally but has not had a professional third-party audit. Always verify contract addresses independently before interacting with them.