Skip to main content
Sigvex

Overview Router

Redirect-only page — /overview forwards to the runtime-specific overview page based on the runtime query parameter.

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

  1. Direct URL — /overview?runtime=evm&network=<chain>&address=<addr>.
  2. 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 evm and svm resolve to runtime-specific overview pages. move and wasm fall back to /smart-contracts until 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.