Skip to main content
POST
/
register-managed
Register a server-managed account
curl --request POST \
  --url https://v1.orchestrator.rhinestone.dev/deposit-processor/register-managed \
  --header 'Content-Type: application/json' \
  --header 'x-api-key: <x-api-key>' \
  --data '
{
  "account": {
    "salt": "0x1234abcd",
    "target": {
      "chain": "eip155:8453",
      "token": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913",
      "outputTokenRules": [
        {
          "match": {
            "symbol": "USDC"
          },
          "outputToken": "0x833589fCD6eDb6E08f4c7C32D4f71b54bdA02913"
        },
        {
          "match": {
            "chain": "eip155:10",
            "symbol": "ETH"
          },
          "outputToken": "0x0000000000000000000000000000000000000000"
        }
      ],
      "rejectUnmapped": true,
      "postBridgeActions": [
        {
          "type": "orderbook-swap",
          "contract": "0xb6807116b3b1b321a390594e31ecd6e0076f6278",
          "outputToken": "0x0000000000000000000000000000000000000001"
        }
      ]
    }
  }
}
'
{
  "evmDepositAddress": "<string>",
  "solanaDepositAddress": "<string>"
}

Headers

x-api-key
string
required

API key for authentication

Example:

"your-api-key"

x-api-version
string

API version identifier (e.g. "2026-04.amazon"). Optional today, will become required in a future release.

Pattern: ^\d{4}-\d{2}\.[a-z0-9]+$
Example:

"2026-04.amazon"

Body

application/json
account
object
required

Response

Managed account registered successfully

evmDepositAddress
string
required
solanaDepositAddress
string