@1inch/solidity-utils 2.2.2 → 2.2.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.
|
@@ -3,14 +3,15 @@
|
|
|
3
3
|
pragma solidity ^0.8.0;
|
|
4
4
|
|
|
5
5
|
import "@openzeppelin/contracts/token/ERC20/extensions/draft-ERC20Permit.sol";
|
|
6
|
+
import "./TokenMock.sol";
|
|
6
7
|
|
|
7
|
-
contract ERC20PermitMock is ERC20Permit {
|
|
8
|
+
contract ERC20PermitMock is ERC20Permit, TokenMock {
|
|
8
9
|
constructor(
|
|
9
10
|
string memory name,
|
|
10
11
|
string memory symbol,
|
|
11
12
|
address initialAccount,
|
|
12
13
|
uint256 initialBalance
|
|
13
|
-
) payable
|
|
14
|
+
) payable TokenMock(name, symbol) ERC20Permit(name) {
|
|
14
15
|
_mint(initialAccount, initialBalance);
|
|
15
16
|
}
|
|
16
17
|
}
|
package/dist/src/profileEVM.d.ts
CHANGED
package/dist/src/utils.d.ts
CHANGED