Skip to content

Commit 04d5dbd

Browse files
committed
up
1 parent bdd3b96 commit 04d5dbd

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

contracts/mocks/token/ERC7984ERC20WrapperMock.sol

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3,13 +3,13 @@ pragma solidity ^0.8.24;
33

44
import {SepoliaConfig} from "@fhevm/solidity/config/ZamaConfig.sol";
55
import {IERC20} from "@openzeppelin/contracts/interfaces/IERC20.sol";
6-
import {ConfidentialFungibleTokenERC20Wrapper, ConfidentialFungibleToken} from "../../token/extensions/ConfidentialFungibleTokenERC20Wrapper.sol";
6+
import {ERC7984ERC20Wrapper, ERC7984} from "../../token/ERC7984/extensions/ERC7984ERC20Wrapper.sol";
77

8-
contract ConfidentialFungibleTokenERC20WrapperMock is ConfidentialFungibleTokenERC20Wrapper, SepoliaConfig {
8+
contract ERC7984ERC20WrapperMock is ERC7984ERC20Wrapper, SepoliaConfig {
99
constructor(
1010
IERC20 token,
1111
string memory name,
1212
string memory symbol,
1313
string memory uri
14-
) ConfidentialFungibleTokenERC20Wrapper(token) ConfidentialFungibleToken(name, symbol, uri) {}
14+
) ERC7984ERC20Wrapper(token) ERC7984(name, symbol, uri) {}
1515
}

0 commit comments

Comments
 (0)