Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/libs/conditions/API3OracleCondition.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity 0.8.20;

import "./BaseCondition.sol";
import "./baseCondition.sol";

/// @dev Conforms to API3's dAPI and Airnode specs; see docs.api3.org, https://docs.api3.org/guides/dapis/read-a-dapi/;
/// @author MetaLeX Labs, Inc.
Expand Down
2 changes: 1 addition & 1 deletion src/libs/conditions/balanceCondition.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity 0.8.20;

import "./BaseCondition.sol";
import "./baseCondition.sol";
import "forge-std/interfaces/IERC20.sol";

/// @title BalanceCondition - A condition that checks the balance of a target address
Expand Down
2 changes: 1 addition & 1 deletion src/libs/conditions/chainlinkOracleCondition.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity 0.8.20;

import "./BaseCondition.sol";
import "./baseCondition.sol";

// Chainlink AggregatorV3Interface
interface AggregatorV3Interface {
Expand Down
2 changes: 1 addition & 1 deletion src/libs/conditions/deadManSwitchCondition.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity 0.8.20;

import "./BaseCondition.sol";
import "./baseCondition.sol";

/// @title DeadManSwitchCondition - A condition that checks if a specified delay time has passed and the Gnosis Safe nonce is unchanged
/// @author MetaLeX Labs, Inc.
Expand Down
2 changes: 1 addition & 1 deletion src/libs/conditions/multiUseSignCondition.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity 0.8.20;

import "./BaseCondition.sol";
import "./baseCondition.sol";
import "../../interfaces/ISafe.sol";

/// @title MultiUseSignatureCondition - A condition that checks if a certain number of signers have signed with different contract/method/data inputs
Expand Down
2 changes: 1 addition & 1 deletion src/libs/conditions/signatureCondition.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity 0.8.20;

import "./BaseCondition.sol";
import "./baseCondition.sol";

/// @title SignatureCondition - A condition that checks if a certain number of signers have signed
/// @author MetaLeX Labs, Inc.
Expand Down
2 changes: 1 addition & 1 deletion src/libs/conditions/timeCondition.sol
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
// SPDX-License-Identifier: AGPL-3.0-only
pragma solidity 0.8.20;

import "./BaseCondition.sol";
import "./baseCondition.sol";

/// @title TimeCondition - A condition that checks if the current time is before or after a target time
/// @author MetaLeX Labs, Inc.
Expand Down