Try: verify a public deployment yourself

One useful thing. No account. No wallet. No architecture tour. About 5 minutes — run in this page or with curl.

What you will accomplish

Confirm the network and that code exists at a claimed contract address — the core of “is this real?”

Code present ≠ economy open. That distinction is the product.

Run in browser (recommended)

Calls public 0G RPC from your browser. Default address is QPF OINIO Token (demo only).

RPC: https://evmrpc.0g.ai · expect chain 0x4115 (16661)

Open status JSON

Or use curl

Show curl steps

Step 1 — Network

curl -s -X POST https://evmrpc.0g.ai \
  -H 'content-type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"eth_chainId","params":[]}'

# expect result "0x4115" (decimal 16661)

Step 2 — Code at address

curl -s -X POST https://evmrpc.0g.ai \
  -H 'content-type: application/json' \
  -d '{"jsonrpc":"2.0","id":1,"method":"eth_getCode","params":["0x75995EC0fdf881189850aeD864cB3f43c0DFCb58","latest"]}'

# result longer than "0x" → code present (verified presence)
# "0x" only → empty (not deployed or wrong chain)

Step 3 — Honesty layer

Open verification-status-v1.json and note economic fields: mint/liquidity NOT_AUTHORIZED / LOCKED.

Optional portal UI

#verify-now on the public portal — same facts without inventing activation.

If that helped

You just did the core of a QPF-style check. For a full evidence package on your project (report + labels + optional public summary):

Request a certificate More problem guides