Skip to main content
GET
/
deployed
Check Safe deployment
curl --request GET \
  --url https://relayer.forka.st/deployed
{
  "deployed": true
}
Verify whether a specific Safe proxy already exists on-chain. This guardrail prevents redundant deployment attempts and lets builders skip SAFE-CREATE when the Safe is live.
Call https://relayer.forka.st/deployed with the usual L2 headers plus the Safe address you want to inspect.

Query parameters

NameTypeRequiredDescription
addressstringYesSafe proxy address calculated by your builder.

Notes

  • The relayer performs an on-chain lookup; true confirms that bytecode already exists at the address.
  • If you request an address outside your tenancy, the response still reflects the on-chain state—it is not restricted by ownership.
  • Use this endpoint before calling POST /submit with SAFE-CREATE to avoid nonce conflicts.

Query Parameters

address
string
required

Safe proxy address to inspect.

Response

Deployment status returned.

deployed
boolean
required

True when bytecode already exists at the Safe address.