test-isol-01 0.0.1 → 0.0.2

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.
@@ -48,7 +48,7 @@ interface ITransferAuthorize {
48
48
 
49
49
  // ++
50
50
  /// @notice Execute a "approve with authorization" - typically any relayer may submit
51
- function approveWithSignature(
51
+ function approveWithAuthorize(
52
52
  address from,
53
53
  address to,
54
54
  uint256 value,
@@ -27,7 +27,7 @@ abstract contract ERC20TransferWithAuthorize is ERC20, TransferAuthorize, Reentr
27
27
  uint8 v,
28
28
  bytes32 r,
29
29
  bytes32 s
30
- ) external nonReentrant {
30
+ ) external override nonReentrant {
31
31
  // Only the recipient should be able to call this helper
32
32
  require(msg.sender == to, "ERC20TransferAuthorize: caller must sender");
33
33
 
@@ -64,7 +64,7 @@ abstract contract ERC20TransferWithAuthorize is ERC20, TransferAuthorize, Reentr
64
64
  uint8 v,
65
65
  bytes32 r,
66
66
  bytes32 s
67
- ) external nonReentrant {
67
+ ) external override nonReentrant {
68
68
  // Recover signer and validate
69
69
  address signer = _verify(
70
70
  TRANSFER_TYPEHASH,
@@ -98,7 +98,7 @@ abstract contract ERC20TransferWithAuthorize is ERC20, TransferAuthorize, Reentr
98
98
  uint8 v,
99
99
  bytes32 r,
100
100
  bytes32 s
101
- ) external nonReentrant {
101
+ ) external override nonReentrant {
102
102
  // Recover signer and validate
103
103
  address signer = _verify(
104
104
  APPROVE_TYPEHASH,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "test-isol-01",
3
- "version": "0.0.1",
3
+ "version": "0.0.2",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "devDependencies": {