HIP-4 documentation
Testnet · Exploratory documentation — not official Hyperliquid documentation.
HIP-4 Contest Contract
Third-party EVM (testnet)V10x4fd772e5708da2a7f097f51b3127e515a72744bd
V20x6d86b21e853758f5719408633e6bcb2cfd50cf07
Balance
94.37 HYPE
Active deposited balance
Platform fee
0.9% / implicit
V1: 90 bps view · V2: from pools
Active contests
4
IDs: 595, 596, 604, 608
Ownership
0xe21c…0d135
Renounce disabled
Mainnet
Not deployed
Testnet only
Versions
2
V1 reverse-engineered · V2 source + bytecode
Static files (public)
This React migration keeps downloadable assets in public/hip4/. Chapter content now lives in src/components/hip4/chapters/.
Minimal eth_call (JS)
fetch pattern
const res = await fetch("https://rpc.hyperliquid-testnet.xyz/evm", {
method: "POST",
headers: { "Content-Type": "application/json" },
body: JSON.stringify({
jsonrpc: "2.0",
id: 1,
method: "eth_call",
params: [{ to: CONTRACT, data: SELECTOR + encodedArgs }, "latest"],
}),
});
const json = await res.json();