Prepare ERC-8226 RAMS agent freeze
Prepare ERC-8226 RAMS agent freeze. Freeze an agent. The transaction must be signed by an ENFORCER_ROLE holder.
Answeringour last check, 2026-09-24
1 of 1checks answered this week
1311 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/freeze-agent
| Category | Code and developer |
|---|---|
| Provider host | api.sandbox.brickken.com |
| Networks | eip155:84532 |
| Payment schemes | exact |
| Self-reported calls, 30 days | 1 from 1 payers (the provider's figure, not ours) |
Our checks, last 30 days
| Day | Result | HTTP | Asked | Time |
|---|---|---|---|---|
| 2026-09-24 | valid payment request | 402 | $0.005 | 1311 ms |
Example input (from the provider)
{
"body": {
"agent": "0xaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa",
"chainId": "84532",
"executionMode": "client-signed",
"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 wallet to freeze.",
"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"
},
"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"
],
"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"
},
"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",
"signerAddress",
"agent"
],
"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"
}