We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
For example, /compile accepts a Contract that defined as:
/compile
Contract
"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" },
The text was updated successfully, but these errors were encountered:
No branches or pull requests
For example,
/compile
accepts aContract
that defined as:can we inline options to have
Contract
looking like below?The text was updated successfully, but these errors were encountered: