| Field | Value |
|---|---|
| Name | decode |
| Title | Decode CAD3 |
| Description | Decode CAD3 multi-cell bytes back into a CVX literal, mirroring /api/v1/data/decode. |
Input Schema
{
"type": "object",
"required": ["cad3"],
"properties": {
"cad3": {
"type": "string",
"description": "Hex string of the CAD3 bytes"
}
}
}Output Schema
{
"type": "object",
"properties": {
"cvx": {
"type": "string",
"description": "CVM literal reconstructed from the CAD3 data"
}
}
}