Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Inline options object in requests #90

Open
davidyuk opened this issue Apr 1, 2022 · 0 comments
Open

Inline options object in requests #90

davidyuk opened this issue Apr 1, 2022 · 0 comments

Comments

@davidyuk
Copy link
Member

davidyuk commented Apr 1, 2022

For example, /compile accepts a Contract that defined as:

    "Contract": {
      "properties": {
        "code": {
          "type": "string"
        },
        "options": {
          "$ref": "#/definitions/CompileOpts"
        }
      },
      "required": [
        "code",
        "options"
      ],
      "type": "object"
    },
    "CompileOpts": {
      "properties": {
        "backend": {
          "description": "Compiler backend; fate | aevm",
          "enum": [
            "fate",
            "aevm"
          ],
          "type": "string"
        },
        "file_system": {
          "description": "An explicit file system, mapping file names to file content",
          "properties": {
            
          },
          "type": "object"
        },
        "src_file": {
          "description": "Name of contract source file - only used in error messages",
          "type": "string"
        }
      },
      "type": "object"
    },

can we inline options to have Contract looking like below?

    "Contract": {
      "properties": {
        "code": {
          "type": "string"
        },
        "backend": {
          "description": "Compiler backend; fate | aevm",
          "enum": [
            "fate",
            "aevm"
          ],
          "type": "string"
        },
        "file_system": {
          "description": "An explicit file system, mapping file names to file content",
          "properties": {},
          "type": "object"
        },
        "src_file": {
          "description": "Name of contract source file - only used in error messages",
          "type": "string"
        }
      },
      "required": [
        "code"
      ],
      "type": "object"
    },
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant