What it is
A server-side redirect page. It inspects the runtime query
parameter and issues a 301 to the matching runtime-specific
overview page.
Why it exists
External links, older bookmarks, and integrations sometimes target a
generic /overview path. Rather than maintaining a third overview
page, /overview forwards the request — preserving network,
address, and any other query parameters — so each runtime keeps a
single canonical overview URL.
Who uses it
- External integrator — may link to
/overview?runtime=<r>from outside the portal.
How to open it
- Direct URL —
/overview?runtime=evm&network=<chain>&address=<addr>. - As the target of an inbound link from another system.
Using the page
The page does not render UI. It redirects based on runtime:
runtime value |
Redirects to |
|---|---|
evm (or missing) |
/evm-contract |
svm |
/solana-program |
move / wasm |
/smart-contracts?runtime=<r> |
The network and address parameters, plus any other query keys,
are forwarded.
Inputs and outputs
| Input | Source | Required |
|---|---|---|
runtime |
Query string | no (defaults to evm) |
network |
Query string | no |
address |
Query string | no |
| Output | Format | Destination |
|---|---|---|
301 redirect |
HTTP | Runtime-specific overview page |
Controls reference
None.
Limits
- Only
evmandsvmresolve to runtime-specific overview pages.moveandwasmfall back to/smart-contractsuntil native overviews exist. - The page performs a redirect and never renders content directly.
Troubleshooting
| Symptom or error | Cause | Action |
|---|---|---|
| Redirect target shows “Missing address or network” | Query string did not include network or address |
Add both parameters to the original URL. |
Related pages
- EVM Contract Overview — default target
for
runtime=evm. - Solana Program Overview — target
for
runtime=svm. - Smart Contracts — fallback target for other runtimes.