Contract Lookup

Get verified contract at an address on all chains

Returns all verified deployments at an address on all Sourcify chains (including deprecated ones).

Success returns an array of VerifiedContractMinimal objects under results field.

If not verified on any chain, the results array will be empty.

get/v2/contract/all-chains/{address}

Path parameters

addressstring required
Example:0xe4b10A2a727D0f4863CEBca743a8dAb84cf65b2d

Contract's 20 byte address in hex string with the 0x prefix. Case insensitive.

Response

Returns all verified deployments at an address on all Sourcify chains

Example response

{
  "results": [
    {
      "chainId": "42429",
      "address": "0xDFEBAd708F803af22e81044aD228Ff77C83C935c",
      "verifiedAt": "2024-07-24T12:00:00Z",
      "matchId": "3266227"
    }
  ]
}

Changes