v1

latestOpenAPI 3.1.0MIT2026-07-1350138.4 KB
mee

Get orchestrator addresses

Get orchestrator addresses for the specified owner on requested chains

post/v1/mee/orchestrator

Request body

ownerAddressstring required

EOA wallet address which is used as owner of the orchestrator account

chainsnumber[]

List of unique chain IDs where orchestrator addresses are needed. If omitted, returns all supported chains.

addressVersionsstring[]

Optional: filter address derivation versions. Default: both versions.

Example request

{
  "ownerAddress": "0x0a7C906832544293a6018bA25280c7f7b0Bbf120",
  "chains": [
    1,
    137,
    10,
    8453
  ],
  "addressVersions": [
    "2.1.0",
    "2.2.1"
  ]
}

Response

Response schema containing Nexus deployment information grouped by chains and versions

ownerAddressstring required

Owner address that was queried

upgradedAddressesobject required

Ready-to-use mapping for quote requests.

Example response

{
  "ownerAddress": "0x0a7C906832544293a6018bA25280c7f7b0Bbf120",
  "deployments": [
    {
      "chainId": 8453,
      "chainName": "Base",
      "address": "0x4b19129EA58431A06D01054f69AcAe5de50633b6",
      "isDeployed": true
    }
  ]
}