diff --git a/docs/abi-spec.rst b/docs/abi-spec.rst index 92af8f0c7..8a5e2f5c5 100644 --- a/docs/abi-spec.rst +++ b/docs/abi-spec.rst @@ -81,6 +81,24 @@ It is possible to form tuples of tuples, arrays of tuples and so on. It is also .. note:: Solidity supports all the types presented above with the same names with the exception of tuples. The ABI tuple type is utilised for encoding Solidity ``structs``. +Mapping Solidity to ABI types +----------------------------- +The following table shows on the left column Solidity types that are not part of the ABI, +and on the right column the ABI type that they map to. + ++-------------------------------+-----------------------------------------------------------------------------+ +| Solidity | ABI | ++===============================+=============================================================================+ +|:ref:`address payable
`|``address`` | ++-------------------------------+-----------------------------------------------------------------------------+ +|:ref:`contract