test-isol-01 0.0.19 → 0.0.20

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -8,7 +8,7 @@ import "../adapter/TransferAuthorize.sol";
8
8
  import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
9
9
 
10
10
  /**
11
- * @title ERC20WrappedWithAuthorize
11
+ * @title WrapERC20TransferAuthorize
12
12
  * @notice ERC20 wrapper that allows wrapping any existing ERC20 token
13
13
  * and adds EIP-712 off-chain authorization functions.
14
14
  * @dev Inherits ERC20, ERC20Wrapper, and ERC20TransferWithAuthorize:
@@ -16,7 +16,7 @@ import "@openzeppelin/contracts/utils/ReentrancyGuard.sol";
16
16
  * - ERC20Wrapper: depositFor/withdrawTo underlying tokens
17
17
  * - ERC20TransferWithAuthorize: transferWithAuthorize and receiveWithAuthorize
18
18
  */
19
- abstract contract ERC20WrappedWithAuthorize is ERC20, ERC20Wrapper, TransferAuthorize, ReentrancyGuard {
19
+ abstract contract WrapERC20TransferAuthorize is ERC20, ERC20Wrapper, TransferAuthorize, ReentrancyGuard {
20
20
 
21
21
  /**
22
22
  * @notice Construct a wrapped ERC20 with authorization support
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "test-isol-01",
3
- "version": "0.0.19",
3
+ "version": "0.0.20",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "devDependencies": {