Update README.md

This commit is contained in:
dr. mia von steinkirch, phd 2023-02-17 10:55:38 -08:00 committed by GitHub
parent bc9a1d3252
commit 0a489b973d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,7 +1,12 @@
## ABI encoding
<br>
### tl; dr
<br>
* the solidity built-in function `abi.encode` encodes solidity types into raw bytes, that can be interpreted directly by the EVM.
@ -19,12 +24,16 @@ contract StringEncoding {
<br>
* *other ABI Encodings
* other ABI Encodings
* address payable -> address
* contract -> address
* enum -> uint8
* struct -> tuple of elementry types
<br>
---
### resources
### resources
<br>