VaultDeployer is IVaultDeployer

This commit is contained in:
7400
2023-11-05 18:29:52 -08:00
parent 912efab60d
commit e4dd6c38aa

View File

@@ -1,11 +1,11 @@
// SPDX-License-Identifier: UNLICENSED // SPDX-License-Identifier: UNLICENSED
//pragma solidity =0.7.6; //pragma solidity =0.7.6;
pragma solidity >=0.8.0; pragma solidity >=0.8.0;
import "./Vault.sol";
pragma abicoder v2; pragma abicoder v2;
contract VaultDeployer { import "./Vault.sol";
import "./interface/IVaultDeployer.sol";
contract VaultDeployer is IVaultDeployer {
struct Parameters { struct Parameters {
address owner; address owner;