From 708f49e40edeec184fdb398aea5697fb519b20c2 Mon Sep 17 00:00:00 2001 From: 0xJurassicPunk <90075915+0xJurassicPunk@users.noreply.github.com> Date: Wed, 1 Feb 2023 18:24:20 +0900 Subject: [PATCH] docs: README update --- README.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index f2d56d6..ffc9512 100644 --- a/README.md +++ b/README.md @@ -12,7 +12,8 @@ It also contains generic contract interfaces (for EIP/ERC) that can be used. | Name | Description | Type | Latest version | | ------------------------------------- | ----------------------------------------------------------------------------------------------------------------------------- | -------- | -------------- | | OwnableTwoSteps | Contract for managing ownership of a smart contract. The transfer of ownership is done in a 2-step process. | Contract | 2.5.0 | -| SignatureChecker | Contract for verifying the validity of a signature for EOA (64-byte, 65-byte signatures) and EIP-1271. | Contract | 2.4.4 | +| SignatureCheckerCalldata | Contract for verifying the validity of a (calldata) signature for EOA (64-byte, 65-byte signatures) and EIP-1271. | Contract | 3.0.0 | +| SignatureCheckerMemory | Contract for verifying the validity of a (memory) signature for EOA (64-byte, 65-byte signatures) and EIP-1271. | Contract | 3.0.0 | | ReentrancyGuard | Contract with a modifier to prevent reentrancy calls. | Contract | 2.4.4 | | PackedReentrancyGuard | Contract with a modifier to prevent reentrancy calls. Adapted from ReentrancyGuard. | Contract | 2.5.1 | | LowLevelETHTransfer | Low-level call function to transfer ETH | Contract | 2.4.4 |