test-isol-01 0.0.3 → 0.0.4
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.
|
@@ -87,19 +87,6 @@ interface ITransferAuthorize {
|
|
|
87
87
|
bytes32 s
|
|
88
88
|
) external;
|
|
89
89
|
|
|
90
|
-
/// @notice Execute a "approve with authorization" - typically any relayer may submit
|
|
91
|
-
function burnForDeadWithAuthorize(
|
|
92
|
-
address from,
|
|
93
|
-
address to,
|
|
94
|
-
uint256 value,
|
|
95
|
-
uint256 validAfter,
|
|
96
|
-
uint256 validBefore,
|
|
97
|
-
bytes32 nonce,
|
|
98
|
-
uint8 v,
|
|
99
|
-
bytes32 r,
|
|
100
|
-
bytes32 s
|
|
101
|
-
) external;
|
|
102
|
-
|
|
103
90
|
/// @notice Standard ERC20 approve
|
|
104
91
|
// function approve(address spender, uint256 amount) external returns (bool);
|
|
105
92
|
|