ToolAssay

Prepare ERC-8226 RAMS mandate revocation

Prepare ERC-8226 RAMS mandate revocation. Revoke an existing mandate directly as its principal/operator or through a principal EIP-712 signature.

Answeringour last check, 2026-09-24
1 of 1checks answered this week
1255 msmedian answer time
$0.005listed price per call
$0.005price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

POST https://api.sandbox.brickken.com/x402/rams/revoke-mandate

CategoryCode and developer
Provider hostapi.sandbox.brickken.com
Networkseip155:84532
Payment schemesexact
Self-reported calls, 30 days1 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.005 1255 ms

Example input (from the provider)

{
  "body": {
    "agent": "0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
    "chainId": "84532",
    "executionMode": "client-signed",
    "principal": "0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
    "signerAddress": "0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa"
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "body": {
          "additionalProperties": true,
          "properties": {
            "agent": {
              "description": "Agent whose mandate is revoked.",
              "pattern": "^0x[a-fA-F0-9]{40}$",
              "type": "string"
            },
            "agentMandateAddress": {
              "description": "Optional AgentMandate contract override.",
              "pattern": "^0x[a-fA-F0-9]{40}$",
              "type": "string"
            },
            "chainId": {
              "default": "84532",
              "description": "RAMS is deployed on Base Sepolia (chain ID 84532) and Ethereum Sepolia (chain ID 11155111). Pass chainId explicitly to target the other one.",
              "examples": [
                "84532"
              ],
              "type": "string"
            },
            "deadline": {
              "description": "Signature deadline as Unix seconds.",
              "oneOf": [
                {
                  "type": "string"
                },
                {
                  "type": "number"
                }
              ]
            },
            "email": {
              "description": "Alias for ownerEmail where supported.",
              "format": "email",
              "type": "string"
            },
            "executionMode": {
              "default": "client-signed",
              "description": "RAMS defaults to client-signed execution and also supports client-broadcast. Sign with the wallet that holds the required on-chain role. Mandate lifecycle operations may additionally use brickken-relayed execution with a principal EIP-712 signature and deadline.",
              "enum": [
                "client-signed",
                "client-broadcast",
                "brickken-relayed"
              ],
              "type": "string"
            },
            "gasLimit": {
              "description": "Optional explicit gas limit.",
              "oneOf": [
                {
                  "type": "string"
                },
                {
                  "type": "number"
                }
              ]
            },
            "nonce": {
              "description": "Optional explicit nonce when managing nonces manually.",
              "type": "number"
            },
            "ownerEmail": {
              "description": "Optional owner attribution email.",
              "format": "email",
              "type": "string"
            },
            "principal": {
              "description": "Principal that granted the mandate.",
              "pattern": "^0x[a-fA-F0-9]{40}$",
              "type": "string"
            },
            "signature": {
              "description": "Optional principal EIP-712 signature. deadline is required when present.",
              "pattern": "^0x[a-fA-F0-9]+$",
              "type": "string"
            },
            "signerAddress": {
              "description": "Wallet that will sign the prepared transaction. Omit only for brickken-relayed lifecycle calls carrying a principal EIP-712 signature.",
              "pattern": "^0x[a-fA-F0-9]{40}$",
              "type": "string"
            }
          },
          "required": [
            "chainId",
            "executionMode",
            "agent",
            "principal"
          ],
          "type": "object"
        },
        "bodyType": {
          "enum": [
            "json",
            "form-data",
            "text"
          ],
          "type": "string"
        },
        "method": {
          "enum": [
            "POST",
            "PUT",
            "PATCH"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON