t-isol 0.0.2 → 0.0.3

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.
@@ -30,8 +30,8 @@ abstract contract ERC20xTransferWithAuthorize is ERC20, TransferAuthorize, Reent
30
30
  address from,
31
31
  address to,
32
32
  uint256 value,
33
- uint256 validAfter,
34
- uint256 validBefore,
33
+ uint256 timeMFG,
34
+ uint256 timeEXP,
35
35
  bytes32 nonce,
36
36
  bytes calldata auth
37
37
  ) external override nonReentrant {
@@ -39,8 +39,8 @@ abstract contract ERC20xTransferWithAuthorize is ERC20, TransferAuthorize, Reent
39
39
  from,
40
40
  to,
41
41
  value,
42
- validAfter,
43
- validBefore,
42
+ timeMFG,
43
+ timeEXP,
44
44
  nonce,
45
45
  auth
46
46
  );
@@ -55,8 +55,8 @@ abstract contract ERC20xTransferWithAuthorize is ERC20, TransferAuthorize, Reent
55
55
  address from,
56
56
  address to,
57
57
  uint256 value,
58
- uint256 validAfter,
59
- uint256 validBefore,
58
+ uint256 timeMFG,
59
+ uint256 timeEXP,
60
60
  bytes32 nonce,
61
61
  bytes calldata auth
62
62
  ) external override nonReentrant {
@@ -64,8 +64,8 @@ abstract contract ERC20xTransferWithAuthorize is ERC20, TransferAuthorize, Reent
64
64
  from,
65
65
  to,
66
66
  value,
67
- validAfter,
68
- validBefore,
67
+ timeMFG,
68
+ timeEXP,
69
69
  nonce,
70
70
  auth
71
71
  );
@@ -81,8 +81,8 @@ abstract contract ERC20xTransferWithAuthorize is ERC20, TransferAuthorize, Reent
81
81
  address from,
82
82
  // address to,
83
83
  uint256 value,
84
- uint256 validAfter,
85
- uint256 validBefore,
84
+ uint256 timeMFG,
85
+ uint256 timeEXP,
86
86
  bytes32 nonce,
87
87
  bytes calldata auth
88
88
  ) external override nonReentrant {
@@ -90,8 +90,8 @@ abstract contract ERC20xTransferWithAuthorize is ERC20, TransferAuthorize, Reent
90
90
  from,
91
91
  // to,
92
92
  value,
93
- validAfter,
94
- validBefore,
93
+ timeMFG,
94
+ timeEXP,
95
95
  nonce,
96
96
  auth
97
97
  );
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "t-isol",
3
- "version": "0.0.2",
3
+ "version": "0.0.3",
4
4
  "module": "index.ts",
5
5
  "type": "module",
6
6
  "devDependencies": {