Skip to content

Commit 0654ce8

Browse files
committed
restore old file
1 parent 3f3f57a commit 0654ce8

File tree

2 files changed

+15
-15
lines changed

2 files changed

+15
-15
lines changed
Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
// SPDX-License-Identifier: MIT
2+
pragma solidity ^0.8.24;
3+
4+
import {SepoliaConfig} from "@fhevm/solidity/config/ZamaConfig.sol";
5+
import {IERC20} from "@openzeppelin/contracts/interfaces/IERC20.sol";
6+
import {ConfidentialFungibleTokenERC20Wrapper, ConfidentialFungibleToken} from "../../token/extensions/ConfidentialFungibleTokenERC20Wrapper.sol";
7+
8+
contract ConfidentialFungibleTokenERC20WrapperMock is ConfidentialFungibleTokenERC20Wrapper, SepoliaConfig {
9+
constructor(
10+
IERC20 token,
11+
string memory name,
12+
string memory symbol,
13+
string memory uri
14+
) ConfidentialFungibleTokenERC20Wrapper(token) ConfidentialFungibleToken(name, symbol, uri) {}
15+
}

contracts/mocks/token/ERC7984ERC20WrapperMock.sol

Lines changed: 0 additions & 15 deletions
This file was deleted.

0 commit comments

Comments
 (0)