test-isol-01 0.0.11 → 0.0.13
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.
|
@@ -16,22 +16,14 @@ import { ERC20xTransferWithAuthorize } from "./ERC20xTransferWithAuthorize.sol";
|
|
|
16
16
|
*/
|
|
17
17
|
abstract contract WrapERC20xTransferWithAuthorize is ERC20, ERC20Wrapper, ERC20xTransferWithAuthorize {
|
|
18
18
|
|
|
19
|
-
/**
|
|
20
|
-
* @notice Construct a wrapped ERC20 with authorization support
|
|
21
|
-
* @param _underlyingToken Address of the ERC20 token to wrap. Users deposit this token to receive the wrapped token.
|
|
22
|
-
* @param _name Name of the wrapped token (ERC20 metadata and EIP-712 domain name)
|
|
23
|
-
* @param _symbol Symbol of the wrapped token (ERC20 metadata)
|
|
24
|
-
* @param _version Version string for EIP-712 domain (e.g. "1")
|
|
25
|
-
*/
|
|
26
19
|
constructor(
|
|
27
|
-
address _underlyingToken
|
|
28
|
-
string memory _name,
|
|
29
|
-
string memory _symbol,
|
|
30
|
-
string memory _version
|
|
20
|
+
address _underlyingToken
|
|
21
|
+
// string memory _name,
|
|
22
|
+
// string memory _symbol,
|
|
23
|
+
// string memory _version
|
|
31
24
|
)
|
|
32
|
-
ERC20(_name, _symbol)
|
|
33
25
|
ERC20Wrapper(IERC20(_underlyingToken))
|
|
34
|
-
ERC20xTransferWithAuthorize(
|
|
26
|
+
ERC20xTransferWithAuthorize()
|
|
35
27
|
{}
|
|
36
28
|
|
|
37
29
|
/**
|