◆ Verify it yourself

Don't trust this page. Check it.

Network: Arc Testnet (chain 5042002). Addresses are printed in full because same-named fakes exist. Each platform contract's runtime code hash was recorded at deploy; the site re-hashes the live code before it lets you launch or trade, and this table shows that check.

Pinned contracts · live check

Nothing pinned on this network yet (contracts not deployed).

Reproduce a hash yourself: cast keccak $(cast code <address> --rpc-url <rpc>). RPC: https://rpc.testnet.arc.io.

Other addresses

$RADIAN token0x0B764B1e50E4D17A897Cdd9494CaC3355579fDcD
a normal launch token; its curve is the buyback venue
$RADIAN curve0x8925494f3cfB34cD0df2b4Bf83328928Fe22F126
per-launch contract, so no single hash to pin — verify it through the factory registry
EURC (quote asset)0x89B50855Aa3bE2F677cD6303Cec089B5F319D72a
Circle's euro stablecoin
NVDAx (quote asset)0xDebcC47bf6e1DEFE1eC76290441836E4981dA882
clearly labeled testnet stand-in, not a real security
TSLAx (quote asset)0xb538054166A5f9aa98b945d32A7d1F122c1c3c87
clearly labeled testnet stand-in, not a real security
AAPLx (quote asset)0x88Ad67D823791C2DD5dDd96CF88e573A1F5Bb785
clearly labeled testnet stand-in, not a real security
GOOGLx (quote asset)0x195a4d07E2Bd492F70063e6c7017E336e28a8F68
clearly labeled testnet stand-in, not a real security
MSFTx (quote asset)0xD7DeD9057a4EC0a329d2c70784C8723f7df56e7F
clearly labeled testnet stand-in, not a real security
AMZNx (quote asset)0x865e62E6327C572C7fb8d3427f67b03b9A4558fb
clearly labeled testnet stand-in, not a real security
METAx (quote asset)0xfFBA38678178dC0B7a0EaCeceAF36795BB750977
clearly labeled testnet stand-in, not a real security
SPYx (quote asset)0x072F8FA84c12e56fE20d3F0BFbB903a96B099973
clearly labeled testnet stand-in, not a real security

Any token's curve is authoritative only if the factory says so: call getLaunchedToken(token) on the factory and compare the curve field with what this site shows.

Reproduce the bytecode from source

The trading engine is a byte-for-byte port of Pons V2 (Robinhood Chain, chain 4663, factory 0x7eD598…EC7e, verified on Sourcify). Sources keep the original PonsV2* names and MIT headers so you can diff them against the upstream. Builds are reproducible: submodules are pinned to exact commits and metadata is stripped (bytecode_hash = "none", cbor_metadata = false), so a fresh clone produces identical bytecode.

git clone --recurse-submodules https://github.com/adrianhihi/radian && cd radian
forge build
# runtime code of a contract as compiled:
jq -r .deployedBytecode.object out/PonsV2LaunchFactory.sol/PonsV2LaunchFactory.json | cut -c1-80
# compare against what the chain runs (constructor immutables are embedded, so compare
# after deploy with the pinned hash above, or diff the code sections yourself):
cast code 0x90022cC2107De9c070F889E3A67009FcA270E4E2 --rpc-url https://rpc.testnet.arc.io | cut -c1-80

Numbers that must not be combined