-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
refactor: remove Encrypted for Confidential
- Loading branch information
1 parent
99a48b2
commit 830c4b6
Showing
11 changed files
with
223 additions
and
163 deletions.
There are no files selected for viewing
10 changes: 10 additions & 0 deletions
10
contracts/test/token/ERC20/TestConfidentialERC20Wrapped.sol
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
// SPDX-License-Identifier: BSD-3-Clause-Clear | ||
pragma solidity ^0.8.24; | ||
|
||
import { ConfidentialERC20Wrapped } from "../../../token/ERC20/ConfidentialERC20Wrapped.sol"; | ||
import { MockZamaFHEVMConfig } from "fhevm/config/ZamaFHEVMConfig.sol"; | ||
import { MockZamaGatewayConfig } from "fhevm/config/ZamaGatewayConfig.sol"; | ||
|
||
contract TestConfidentialERC20Wrapped is MockZamaFHEVMConfig, MockZamaGatewayConfig, ConfidentialERC20Wrapped { | ||
constructor(address erc20_) ConfidentialERC20Wrapped(erc20_) {} | ||
} |
4 changes: 2 additions & 2 deletions
4
...ts/test/token/ERC20/TestEncryptedWETH.sol → ...test/token/ERC20/TestConfidentialWETH.sol
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,9 @@ | ||
// SPDX-License-Identifier: BSD-3-Clause-Clear | ||
pragma solidity ^0.8.24; | ||
|
||
import { EncryptedWETH } from "../../../token/ERC20/EncryptedWETH.sol"; | ||
import { ConfidentialWETH } from "../../../token/ERC20/ConfidentialWETH.sol"; | ||
import { MockZamaFHEVMConfig } from "fhevm/config/ZamaFHEVMConfig.sol"; | ||
import { MockZamaGatewayConfig } from "fhevm/config/ZamaGatewayConfig.sol"; | ||
|
||
/* solhint-disable no-empty-blocks*/ | ||
contract TestEncryptedWETH is MockZamaFHEVMConfig, MockZamaGatewayConfig, EncryptedWETH {} | ||
contract TestConfidentialWETH is MockZamaFHEVMConfig, MockZamaGatewayConfig, ConfidentialWETH {} |
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
16 changes: 8 additions & 8 deletions
16
...ialERC20/EncryptedERC20Wrapped.fixture.ts → ...ERC20/ConfidentialERC20Wrapped.fixture.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.