DCN Transformation Service (0.2.0)

Download OpenAPI specification:Download

Transformation registry endpoints.

transformation

Transformation creation and inspection.

Check transformation existence

path Parameters
name
required
string

Transformation name.

Responses

CORS preflight

path Parameters
name
required
string

Transformation name.

Responses

Get transformation by name

path Parameters
name
required
string

Transformation name.

Responses

Response samples

Content type
application/json
{
  • "address": "string",
  • "owner": "string",
  • "name": "string",
  • "sol_src": "string"
}

CORS preflight

Responses

Publish transformation

Authorizations:
BearerAuth
Request Body schema: application/json
name
required
string

Name of the transformation

sol_src
required
string

Solidity source code

Responses

Request samples

Content type
application/json
{
  • "name": "string",
  • "sol_src": "string"
}

Response samples

Content type
application/json
{
  • "name": "string",
  • "owner": "string",
  • "address": "string"
}