README.adoc 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. = Utilities
  2. [.readme-notice]
  3. NOTE: This document is better viewed at https://docs.openzeppelin.com/contracts/api/utils
  4. Miscellaneous contracts and libraries containing utility functions you can use to improve security, work with new data types, or safely use low-level primitives.
  5. The {Address}, {Arrays}, {Base64} and {Strings} libraries provide more operations related to these native data types, while {SafeCast} adds ways to safely convert between the different signed and unsigned numeric types.
  6. {Multicall} provides a function to batch together multiple calls in a single external call.
  7. For new data types:
  8. * {Counters}: a simple way to get a counter that can only be incremented, decremented or reset. Very useful for ID generation, counting contract activity, among others.
  9. * {EnumerableMap}: like Solidity's https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`] type, but with key-value _enumeration_: this will let you know how many entries a mapping has, and iterate over them (which is not possible with `mapping`).
  10. * {EnumerableSet}: like {EnumerableMap}, but for https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets]. Can be used to store privileged accounts, issued IDs, etc.
  11. [NOTE]
  12. ====
  13. Because Solidity does not support generic types, {EnumerableMap} and {EnumerableSet} are specialized to a limited number of key-value types.
  14. As of v3.0, {EnumerableMap} supports `uint256 -> address` (`UintToAddressMap`), and {EnumerableSet} supports `address` and `uint256` (`AddressSet` and `UintSet`).
  15. ====
  16. Finally, {Create2} contains all necessary utilities to safely use the https://blog.openzeppelin.com/getting-the-most-out-of-create2/[`CREATE2` EVM opcode], without having to deal with low-level assembly.
  17. == Math
  18. {{Math}}
  19. {{SignedMath}}
  20. {{SafeCast}}
  21. {{SafeMath}}
  22. {{SignedSafeMath}}
  23. == Cryptography
  24. {{ECDSA}}
  25. {{SignatureChecker}}
  26. {{MerkleProof}}
  27. {{EIP712}}
  28. == Escrow
  29. {{ConditionalEscrow}}
  30. {{Escrow}}
  31. {{RefundEscrow}}
  32. == Introspection
  33. This set of interfaces and contracts deal with https://en.wikipedia.org/wiki/Type_introspection[type introspection] of contracts, that is, examining which functions can be called on them. This is usually referred to as a contract's _interface_.
  34. Ethereum contracts have no native concept of an interface, so applications must usually simply trust they are not making an incorrect call. For trusted setups this is a non-issue, but often unknown and untrusted third-party addresses need to be interacted with. There may even not be any direct calls to them! (e.g. `ERC20` tokens may be sent to a contract that lacks a way to transfer them out of it, locking them forever). In these cases, a contract _declaring_ its interface can be very helpful in preventing errors.
  35. There are two main ways to approach this.
  36. * Locally, where a contract implements `IERC165` and declares an interface, and a second one queries it directly via `ERC165Checker`.
  37. * Globally, where a global and unique registry (`IERC1820Registry`) is used to register implementers of a certain interface (`IERC1820Implementer`). It is then the registry that is queried, which allows for more complex setups, like contracts implementing interfaces for externally-owned accounts.
  38. Note that, in all cases, accounts simply _declare_ their interfaces, but they are not required to actually implement them. This mechanism can therefore be used to both prevent errors and allow for complex interactions (see `ERC777`), but it must not be relied on for security.
  39. {{IERC165}}
  40. {{ERC165}}
  41. {{ERC165Storage}}
  42. {{ERC165Checker}}
  43. {{IERC1820Registry}}
  44. {{IERC1820Implementer}}
  45. {{ERC1820Implementer}}
  46. == Data Structures
  47. {{BitMaps}}
  48. {{EnumerableMap}}
  49. {{EnumerableSet}}
  50. {{Checkpoints}}
  51. == Libraries
  52. {{Create2}}
  53. {{Address}}
  54. {{Arrays}}
  55. {{Base64}}
  56. {{Counters}}
  57. {{Strings}}
  58. {{StorageSlot}}
  59. {{Multicall}}