Skip to content

Commit

Permalink
test: import config from fhevm
Browse files Browse the repository at this point in the history
  • Loading branch information
PacificYield committed Nov 29, 2024
1 parent 0e60f43 commit 557c7da
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 9 deletions.
10 changes: 4 additions & 6 deletions contracts/test/token/ERC20/TestEncryptedERC20Wrapped.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,9 @@
pragma solidity ^0.8.24;

import { EncryptedERC20Wrapped } from "../../../token/ERC20/EncryptedERC20Wrapped.sol";
import { DefaultFHEVMConfig } from "../../DefaultFHEVMConfig.sol";
import { DefaultGatewayConfig } from "../../DefaultGatewayConfig.sol";
import { MockZamaFHEVMConfig } from "fhevm/config/ZamaFHEVMConfig.sol";
import { MockZamaGatewayConfig } from "fhevm/config/ZamaGatewayConfig.sol";

contract TestEncryptedERC20Wrapped is DefaultFHEVMConfig, DefaultGatewayConfig, EncryptedERC20Wrapped {
constructor(address erc20_) EncryptedERC20Wrapped(erc20_) {
//
}
contract TestEncryptedERC20Wrapped is MockZamaFHEVMConfig, MockZamaGatewayConfig, EncryptedERC20Wrapped {
constructor(address erc20_) EncryptedERC20Wrapped(erc20_) {}
}
6 changes: 3 additions & 3 deletions contracts/test/token/ERC20/TestEncryptedWETH.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@
pragma solidity ^0.8.24;

import { EncryptedWETH } from "../../../token/ERC20/EncryptedWETH.sol";
import { DefaultFHEVMConfig } from "../../DefaultFHEVMConfig.sol";
import { DefaultGatewayConfig } from "../../DefaultGatewayConfig.sol";
import { MockZamaFHEVMConfig } from "fhevm/config/ZamaFHEVMConfig.sol";
import { MockZamaGatewayConfig } from "fhevm/config/ZamaGatewayConfig.sol";

/* solhint-disable no-empty-blocks*/
contract TestEncryptedWETH is DefaultFHEVMConfig, DefaultGatewayConfig, EncryptedWETH {}
contract TestEncryptedWETH is MockZamaFHEVMConfig, MockZamaGatewayConfig, EncryptedWETH {}

0 comments on commit 557c7da

Please sign in to comment.