# The Solidity Language

æternity has limited support for the Solidity language bytecode and ABI. There\
are a number of test cases and some scaffolding code. However, it is not mature\
enough to be part of consensus and thus the Solidity ABI is not allowed on\
chain.

For a full description of Solidity see [The Solidity Specification](https://solidity.readthedocs.io).

## The Solidity\_01 ABI

Note that the Solidity\_01 ABI specifies that the create contract initial call\
returns the actual bytecode to be stored in the contract state tree to be used\
for future calls.

See [The Solidity Specification:ABI](https://solidity.readthedocs.io/en/develop/abi-spec.html)

### Storing the contract state

Contracts store the VM storage map containing 256 bit binaries for both keys\
and values in the MPT. Undefined keys are treated as having the value 0 and\
keys bound to the value zero are stored as the empty binary, thus purging them\
from the tree.


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.aeternity.com/developer-documentation/protocol/contracts/solidity.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
