Download OpenAPI specification:Download
Transformation registry endpoints. Supports fetching the latest transformation by name, fetching a specific version by deployed address, and registering a transformation from Solidity source.
Operations related to transformation contracts: creation, inspection, and source management.
Get a specific transformation version by address
| name required | string Name of the transformation |
| version required | string (Address) ^0x[a-fA-F0-9]{40}$ Version of the transformation |
{- "address": "string",
- "local_address": "string",
- "owner": "string",
- "name": "string",
- "sol_src": "string"
}Register a transformation by name and its Solidity source
| name required | string Name of the transformation |
| sol_src required | string Solidity source code |
{- "name": "string",
- "sol_src": "string"
}{- "name": "string"
}