Skip to content
Open
Show file tree
Hide file tree
Changes from 1 commit
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 foundry.toml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ rainlang = "0.1.5"
rain-interpreter-interface = "0.1.0"
# rainlanguage/rain.raindex.interface was renamed to
# rainlanguage/raindex.interface; Soldeer registry name follows.
raindex-interface = "0.1.1"
raindex-interface = "0.1.3"
rain-metadata = "0.1.0"
rain-intorastring = "0.1.0"
rain-sol-codegen = "0.1.0"
Expand Down
2 changes: 1 addition & 1 deletion remappings.txt
Original file line number Diff line number Diff line change
Expand Up @@ -13,5 +13,5 @@ rain-sol-codegen-0.1.0/=dependencies/rain-sol-codegen-0.1.0/
rain-solmem-0.1.3/=dependencies/rain-solmem-0.1.3/
rain-string-0.2.0/=dependencies/rain-string-0.2.0/
rain-tofu-erc20-decimals-0.1.1/=dependencies/rain-tofu-erc20-decimals-0.1.1/
raindex-interface-0.1.1/=dependencies/raindex-interface-0.1.1/
raindex-interface-0.1.3/=dependencies/raindex-interface-0.1.3/
rainlang-0.1.5/=dependencies/rainlang-0.1.5/
8 changes: 4 additions & 4 deletions soldeer.lock
Original file line number Diff line number Diff line change
Expand Up @@ -105,10 +105,10 @@ integrity = "9e1fccf893dd0d90aeb445c78f9eee3904bc50287ff1da30b954508f18412cd2"

[[dependencies]]
name = "raindex-interface"
version = "0.1.1"
url = "https://soldeer-revisions.s3.amazonaws.com/raindex-interface/0_1_1_21-05-2026_18:36:45_raindex.zip"
checksum = "d744aec8e9dc1bcce58de546d1a419f7eb87610e1541ce5459a140fd45626c99"
integrity = "df40e42221d1ecd4e6e6ae6a3511b00fc182e1a46f99401f564d94f299d63730"
version = "0.1.3"
url = "https://soldeer-revisions.s3.amazonaws.com/raindex-interface/0_1_3_03-07-2026_11:20:58_raindex.zip"
checksum = "5c4149dc0898b5db4036f5cac04614b98f204c062c694477fecc0f870a96907c"
integrity = "5f69dc4e1234d15f27d74be29e287c8619c08cb354de9d8a3d30f42df13a0269"

[[dependencies]]
name = "rainlang"
Expand Down
2 changes: 1 addition & 1 deletion src/abstract/RaindexV6ArbCommon.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// SPDX-FileCopyrightText: Copyright (c) 2020 Rain Open Source Software Ltd
pragma solidity ^0.8.19;

import {TaskV2} from "raindex-interface-0.1.1/src/interface/IRaindexV6.sol";
import {TaskV2} from "raindex-interface-0.1.3/src/interface/IRaindexV6.sol";

/// @param task The task to run as post for each arb.
struct RaindexV6ArbConfig {
Expand Down
8 changes: 4 additions & 4 deletions src/abstract/RaindexV6ArbOrderTaker.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,13 +5,13 @@ pragma solidity ^0.8.19;
import {ERC165, IERC165} from "@openzeppelin-contracts-5.6.1/utils/introspection/ERC165.sol";
import {ReentrancyGuard} from "@openzeppelin-contracts-5.6.1/utils/ReentrancyGuard.sol";
import {IERC20, SafeERC20} from "@openzeppelin-contracts-5.6.1/token/ERC20/utils/SafeERC20.sol";
import {IRaindexV6} from "raindex-interface-0.1.1/src/interface/IRaindexV6.sol";
import {IRaindexV6ArbOrderTaker, TaskV2} from "raindex-interface-0.1.1/src/interface/IRaindexV6ArbOrderTaker.sol";
import {TakeOrdersConfigV5, Float} from "raindex-interface-0.1.1/src/interface/IRaindexV6.sol";
import {IRaindexV6} from "raindex-interface-0.1.3/src/interface/IRaindexV6.sol";
import {IRaindexV6ArbOrderTaker, TaskV2} from "raindex-interface-0.1.3/src/interface/IRaindexV6ArbOrderTaker.sol";
import {TakeOrdersConfigV5, Float} from "raindex-interface-0.1.3/src/interface/IRaindexV6.sol";
import {RaindexV6ArbCommon} from "./RaindexV6ArbCommon.sol";
import {LibRaindexArb} from "../lib/LibRaindexArb.sol";
import {LibRaindexDeploy} from "../lib/deploy/LibRaindexDeploy.sol";
import {IRaindexV6OrderTaker} from "raindex-interface-0.1.1/src/interface/IRaindexV6OrderTaker.sol";
import {IRaindexV6OrderTaker} from "raindex-interface-0.1.3/src/interface/IRaindexV6OrderTaker.sol";
import {LibTOFUTokenDecimals} from "rain-tofu-erc20-decimals-0.1.1/src/lib/LibTOFUTokenDecimals.sol";

/// Thrown when `arb5` is called with a `raindex` that is not the trusted
Expand Down
2 changes: 1 addition & 1 deletion src/abstract/RaindexV6ArbTaskGated.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
pragma solidity ^0.8.19;

import {RaindexV6ArbCommon, RaindexV6ArbConfig, WrongTask} from "./RaindexV6ArbCommon.sol";
import {TaskV2} from "raindex-interface-0.1.1/src/interface/IRaindexV6.sol";
import {TaskV2} from "raindex-interface-0.1.3/src/interface/IRaindexV6.sol";

/// @title RaindexV6ArbTaskGated
/// @notice Mixin that adds task-hash gating to arb contracts. Stores a task
Expand Down
6 changes: 3 additions & 3 deletions src/abstract/RaindexV6FlashBorrower.sol
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,9 @@ import {ERC165, IERC165} from "@openzeppelin-contracts-5.6.1/utils/introspection
import {SafeERC20} from "@openzeppelin-contracts-5.6.1/token/ERC20/utils/SafeERC20.sol";
import {IERC20} from "@openzeppelin-contracts-5.6.1/token/ERC20/IERC20.sol";
import {ReentrancyGuard} from "@openzeppelin-contracts-5.6.1/utils/ReentrancyGuard.sol";
import {ON_FLASH_LOAN_CALLBACK_SUCCESS} from "raindex-interface-0.1.1/src/interface/ierc3156/IERC3156FlashBorrower.sol";
import {IRaindexV6, TakeOrdersConfigV5, TaskV2} from "raindex-interface-0.1.1/src/interface/IRaindexV6.sol";
import {IERC3156FlashBorrower} from "raindex-interface-0.1.1/src/interface/ierc3156/IERC3156FlashBorrower.sol";
import {ON_FLASH_LOAN_CALLBACK_SUCCESS} from "raindex-interface-0.1.3/src/interface/ierc3156/IERC3156FlashBorrower.sol";
import {IRaindexV6, TakeOrdersConfigV5, TaskV2} from "raindex-interface-0.1.3/src/interface/IRaindexV6.sol";
import {IERC3156FlashBorrower} from "raindex-interface-0.1.3/src/interface/ierc3156/IERC3156FlashBorrower.sol";
import {RaindexV6ArbCommon} from "./RaindexV6ArbCommon.sol";
import {LibRaindexArb} from "../lib/LibRaindexArb.sol";
import {LibRaindexDeploy} from "../lib/deploy/LibRaindexDeploy.sol";
Expand Down
4 changes: 2 additions & 2 deletions src/abstract/RaindexV6FlashLender.sol
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,8 @@ import {SafeERC20} from "@openzeppelin-contracts-5.6.1/token/ERC20/utils/SafeERC
import {
IERC3156FlashBorrower,
ON_FLASH_LOAN_CALLBACK_SUCCESS
} from "raindex-interface-0.1.1/src/interface/ierc3156/IERC3156FlashBorrower.sol";
import {IERC3156FlashLender} from "raindex-interface-0.1.1/src/interface/ierc3156/IERC3156FlashLender.sol";
} from "raindex-interface-0.1.3/src/interface/ierc3156/IERC3156FlashBorrower.sol";
import {IERC3156FlashLender} from "raindex-interface-0.1.3/src/interface/ierc3156/IERC3156FlashLender.sol";

/// Thrown when the `onFlashLoan` callback returns anything other than
/// ON_FLASH_LOAN_CALLBACK_SUCCESS.
Expand Down
7 changes: 2 additions & 5 deletions src/concrete/raindex/RaindexV6.sol
Original file line number Diff line number Diff line change
Expand Up @@ -46,8 +46,8 @@ import {
QuoteV2,
Float,
IOV2
} from "raindex-interface-0.1.1/src/interface/IRaindexV6.sol";
import {IRaindexV6OrderTaker} from "raindex-interface-0.1.1/src/interface/IRaindexV6OrderTaker.sol";
} from "raindex-interface-0.1.3/src/interface/IRaindexV6.sol";
import {IRaindexV6OrderTaker} from "raindex-interface-0.1.3/src/interface/IRaindexV6OrderTaker.sol";
import {LibOrder} from "../../lib/LibOrder.sol";
import {
CALLING_CONTEXT_COLUMNS,
Expand Down Expand Up @@ -77,9 +77,6 @@ error NotOrderOwner(address owner);
/// Thrown when the input and output tokens don't match, in either direction.
error TokenMismatch();

/// Thrown when the input token is the output token.
error TokenSelfTrade();

/// Thrown when the minimum input is not met.
/// @param minimumIO The minimum io required.
/// @param actualIO The io that was achieved.
Expand Down
2 changes: 1 addition & 1 deletion src/lib/LibOrder.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// SPDX-FileCopyrightText: Copyright (c) 2020 Rain Open Source Software Ltd
pragma solidity ^0.8.19;

import {OrderV4} from "raindex-interface-0.1.1/src/interface/IRaindexV6.sol";
import {OrderV4} from "raindex-interface-0.1.3/src/interface/IRaindexV6.sol";

/// @title LibOrder
/// @notice Consistent handling of `OrderV4` for where it matters w.r.t.
Expand Down
2 changes: 1 addition & 1 deletion src/lib/LibRaindex.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// SPDX-FileCopyrightText: Copyright (c) 2020 Rain Open Source Software Ltd
pragma solidity ^0.8.19;

import {TaskV2} from "raindex-interface-0.1.1/src/interface/IRaindexV6.sol";
import {TaskV2} from "raindex-interface-0.1.3/src/interface/IRaindexV6.sol";
import {
SourceIndexV2,
StateNamespace,
Expand Down
2 changes: 1 addition & 1 deletion src/lib/LibRaindexArb.sol
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
// SPDX-FileCopyrightText: Copyright (c) 2020 Rain Open Source Software Ltd
pragma solidity ^0.8.19;

import {TaskV2} from "raindex-interface-0.1.1/src/interface/IRaindexV6.sol";
import {TaskV2} from "raindex-interface-0.1.3/src/interface/IRaindexV6.sol";
import {IERC20} from "@openzeppelin-contracts-5.6.1/token/ERC20/IERC20.sol";
import {LibRaindex} from "./LibRaindex.sol";
import {Address} from "@openzeppelin-contracts-5.6.1/utils/Address.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/abstract/RaindexV6ArbOrderTaker.badRaindex.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ import {
IInterpreterStoreV3,
TaskV2,
SignedContextV1
} from "raindex-interface-0.1.1/src/interface/IRaindexV6.sol";
} from "raindex-interface-0.1.3/src/interface/IRaindexV6.sol";
import {LibDecimalFloat} from "rain-math-float-0.1.1/src/lib/LibDecimalFloat.sol";
import {LibInterpreterDeploy} from "rainlang-0.1.5/src/lib/deploy/LibInterpreterDeploy.sol";

Expand Down
2 changes: 1 addition & 1 deletion test/abstract/RaindexV6ArbOrderTaker.beforeArbOrder.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import {
TaskV2,
EvaluableV4,
SignedContextV1
} from "raindex-interface-0.1.1/src/interface/IRaindexV6.sol";
} from "raindex-interface-0.1.3/src/interface/IRaindexV6.sol";
import {IInterpreterV4} from "rain-interpreter-interface-0.1.0/src/interface/IInterpreterV4.sol";
import {IInterpreterStoreV3} from "rain-interpreter-interface-0.1.0/src/interface/IInterpreterStoreV3.sol";
import {LibDecimalFloat} from "rain-math-float-0.1.1/src/lib/LibDecimalFloat.sol";
Expand Down
4 changes: 2 additions & 2 deletions test/abstract/RaindexV6ArbOrderTaker.context.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
pragma solidity =0.8.25;

import {ChildRaindexV6ArbOrderTaker} from "../util/concrete/ChildRaindexV6ArbOrderTaker.sol";
import {TaskV2, SignedContextV1, EvaluableV4} from "raindex-interface-0.1.1/src/interface/IRaindexV6.sol";
import {TaskV2, SignedContextV1, EvaluableV4} from "raindex-interface-0.1.3/src/interface/IRaindexV6.sol";
import {RaindexV6ExternalRealTest} from "../util/abstract/RaindexV6ExternalRealTest.sol";
import {
TakeOrdersConfigV5,
Expand All @@ -12,7 +12,7 @@ import {
OrderConfigV4,
OrderV4,
IInterpreterV4
} from "raindex-interface-0.1.1/src/interface/IRaindexV6.sol";
} from "raindex-interface-0.1.3/src/interface/IRaindexV6.sol";
import {IERC20} from "@openzeppelin-contracts-5.6.1/token/ERC20/IERC20.sol";
import {IERC20Metadata} from "@openzeppelin-contracts-5.6.1/token/ERC20/extensions/IERC20Metadata.sol";
import {StateNamespace, LibNamespace} from "../../src/concrete/raindex/RaindexV6.sol";
Expand Down
4 changes: 2 additions & 2 deletions test/abstract/RaindexV6ArbOrderTaker.finalizeDecimals.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
pragma solidity =0.8.25;

import {ChildRaindexV6ArbOrderTaker} from "../util/concrete/ChildRaindexV6ArbOrderTaker.sol";
import {TaskV2, SignedContextV1, EvaluableV4} from "raindex-interface-0.1.1/src/interface/IRaindexV6.sol";
import {TaskV2, SignedContextV1, EvaluableV4} from "raindex-interface-0.1.3/src/interface/IRaindexV6.sol";
import {RaindexV6ExternalRealTest} from "../util/abstract/RaindexV6ExternalRealTest.sol";
import {
TakeOrdersConfigV5,
Expand All @@ -12,7 +12,7 @@ import {
OrderConfigV4,
OrderV4,
IInterpreterV4
} from "raindex-interface-0.1.1/src/interface/IRaindexV6.sol";
} from "raindex-interface-0.1.3/src/interface/IRaindexV6.sol";
import {IERC20} from "@openzeppelin-contracts-5.6.1/token/ERC20/IERC20.sol";
import {IERC20Metadata} from "@openzeppelin-contracts-5.6.1/token/ERC20/extensions/IERC20Metadata.sol";
import {LibDecimalFloat} from "rain-math-float-0.1.1/src/lib/LibDecimalFloat.sol";
Expand Down
4 changes: 2 additions & 2 deletions test/abstract/RaindexV6ArbOrderTaker.finalizeTaskArg.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
pragma solidity =0.8.25;

import {ChildRaindexV6ArbOrderTaker} from "../util/concrete/ChildRaindexV6ArbOrderTaker.sol";
import {TaskV2, SignedContextV1, EvaluableV4} from "raindex-interface-0.1.1/src/interface/IRaindexV6.sol";
import {TaskV2, SignedContextV1, EvaluableV4} from "raindex-interface-0.1.3/src/interface/IRaindexV6.sol";
import {RaindexV6ExternalRealTest} from "../util/abstract/RaindexV6ExternalRealTest.sol";
import {
TakeOrdersConfigV5,
Expand All @@ -12,7 +12,7 @@ import {
OrderConfigV4,
OrderV4,
IInterpreterV4
} from "raindex-interface-0.1.1/src/interface/IRaindexV6.sol";
} from "raindex-interface-0.1.3/src/interface/IRaindexV6.sol";
import {IERC20} from "@openzeppelin-contracts-5.6.1/token/ERC20/IERC20.sol";
import {IERC20Metadata} from "@openzeppelin-contracts-5.6.1/token/ERC20/extensions/IERC20Metadata.sol";
import {LibDecimalFloat} from "rain-math-float-0.1.1/src/lib/LibDecimalFloat.sol";
Expand Down
4 changes: 2 additions & 2 deletions test/abstract/RaindexV6ArbOrderTaker.ierc165.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ pragma solidity =0.8.25;

import {Test} from "forge-std-1.16.1/src/Test.sol";
import {IERC165} from "@openzeppelin-contracts-5.6.1/utils/introspection/IERC165.sol";
import {IRaindexV6ArbOrderTaker} from "raindex-interface-0.1.1/src/interface/IRaindexV6ArbOrderTaker.sol";
import {IRaindexV6OrderTaker} from "raindex-interface-0.1.1/src/interface/IRaindexV6OrderTaker.sol";
import {IRaindexV6ArbOrderTaker} from "raindex-interface-0.1.3/src/interface/IRaindexV6ArbOrderTaker.sol";
import {IRaindexV6OrderTaker} from "raindex-interface-0.1.3/src/interface/IRaindexV6OrderTaker.sol";
import {ChildRaindexV6ArbOrderTaker} from "../util/concrete/ChildRaindexV6ArbOrderTaker.sol";

contract RaindexV6ArbOrderTakerIERC165Test is Test {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import {
EvaluableV4,
SignedContextV1,
TaskV2
} from "raindex-interface-0.1.1/src/interface/IRaindexV6.sol";
} from "raindex-interface-0.1.3/src/interface/IRaindexV6.sol";
import {IInterpreterV4} from "rain-interpreter-interface-0.1.0/src/interface/IInterpreterV4.sol";
import {IInterpreterStoreV3} from "rain-interpreter-interface-0.1.0/src/interface/IInterpreterStoreV3.sol";
import {LibDecimalFloat} from "rain-math-float-0.1.1/src/lib/LibDecimalFloat.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/abstract/RaindexV6ArbOrderTaker.noOrders.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {
IInterpreterStoreV3,
TaskV2,
SignedContextV1
} from "raindex-interface-0.1.1/src/interface/IRaindexV6.sol";
} from "raindex-interface-0.1.3/src/interface/IRaindexV6.sol";
import {LibDecimalFloat} from "rain-math-float-0.1.1/src/lib/LibDecimalFloat.sol";
import {LibInterpreterDeploy} from "rainlang-0.1.5/src/lib/deploy/LibInterpreterDeploy.sol";

Expand Down
2 changes: 1 addition & 1 deletion test/abstract/RaindexV6ArbOrderTaker.onTakeOrders2.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ import {
SignedContextV1,
TaskV2,
Float
} from "raindex-interface-0.1.1/src/interface/IRaindexV6.sol";
} from "raindex-interface-0.1.3/src/interface/IRaindexV6.sol";
import {IInterpreterV4} from "rain-interpreter-interface-0.1.0/src/interface/IInterpreterV4.sol";
import {IInterpreterStoreV3} from "rain-interpreter-interface-0.1.0/src/interface/IInterpreterStoreV3.sol";
import {LibDecimalFloat} from "rain-math-float-0.1.1/src/lib/LibDecimalFloat.sol";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ import {Test} from "forge-std-1.16.1/src/Test.sol";

import {ChildRaindexV6ArbOrderTaker} from "test/util/concrete/ChildRaindexV6ArbOrderTaker.sol";
import {GenericPoolRaindexV6ArbOrderTaker} from "../../src/concrete/arb/GenericPoolRaindexV6ArbOrderTaker.sol";
import {Float} from "raindex-interface-0.1.1/src/interface/IRaindexV6.sol";
import {Float} from "raindex-interface-0.1.3/src/interface/IRaindexV6.sol";
import {LibRainDeploy} from "rain-deploy-0.1.2/src/lib/LibRainDeploy.sol";
import {LibTOFUTokenDecimals} from "rain-tofu-erc20-decimals-0.1.1/src/lib/LibTOFUTokenDecimals.sol";
import {MockToken} from "test/util/concrete/MockToken.sol";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pragma solidity =0.8.25;
import {Test} from "forge-std-1.16.1/src/Test.sol";

import {GenericPoolRaindexV6ArbOrderTaker} from "../../src/concrete/arb/GenericPoolRaindexV6ArbOrderTaker.sol";
import {Float} from "raindex-interface-0.1.1/src/interface/IRaindexV6.sol";
import {Float} from "raindex-interface-0.1.3/src/interface/IRaindexV6.sol";
import {LibRainDeploy} from "rain-deploy-0.1.2/src/lib/LibRainDeploy.sol";
import {LibTOFUTokenDecimals} from "rain-tofu-erc20-decimals-0.1.1/src/lib/LibTOFUTokenDecimals.sol";
import {MockToken} from "test/util/concrete/MockToken.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/abstract/RaindexV6ArbOrderTaker.reentrancy.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ import {
EvaluableV4,
SignedContextV1,
TaskV2
} from "raindex-interface-0.1.1/src/interface/IRaindexV6.sol";
} from "raindex-interface-0.1.3/src/interface/IRaindexV6.sol";
import {IInterpreterV4} from "rain-interpreter-interface-0.1.0/src/interface/IInterpreterV4.sol";
import {IInterpreterStoreV3} from "rain-interpreter-interface-0.1.0/src/interface/IInterpreterStoreV3.sol";
import {LibDecimalFloat} from "rain-math-float-0.1.1/src/lib/LibDecimalFloat.sol";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pragma solidity =0.8.25;
import {Test} from "forge-std-1.16.1/src/Test.sol";
import {ChildRaindexV6ArbTaskGated} from "test/util/concrete/ChildRaindexV6ArbTaskGated.sol";
import {RaindexV6ArbConfig} from "../../src/abstract/RaindexV6ArbCommon.sol";
import {TaskV2, EvaluableV4, SignedContextV1} from "raindex-interface-0.1.1/src/interface/IRaindexV6.sol";
import {TaskV2, EvaluableV4, SignedContextV1} from "raindex-interface-0.1.3/src/interface/IRaindexV6.sol";
import {IInterpreterV4} from "rain-interpreter-interface-0.1.0/src/interface/IInterpreterV4.sol";
import {IInterpreterStoreV3} from "rain-interpreter-interface-0.1.0/src/interface/IInterpreterStoreV3.sol";
import {LibInterpreterDeploy} from "rainlang-0.1.5/src/lib/deploy/LibInterpreterDeploy.sol";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pragma solidity =0.8.25;
import {Test} from "forge-std-1.16.1/src/Test.sol";
import {ChildRaindexV6ArbTaskGated} from "test/util/concrete/ChildRaindexV6ArbTaskGated.sol";
import {RaindexV6ArbConfig} from "../../src/abstract/RaindexV6ArbCommon.sol";
import {TaskV2, EvaluableV4, SignedContextV1} from "raindex-interface-0.1.1/src/interface/IRaindexV6.sol";
import {TaskV2, EvaluableV4, SignedContextV1} from "raindex-interface-0.1.3/src/interface/IRaindexV6.sol";
import {IInterpreterV4} from "rain-interpreter-interface-0.1.0/src/interface/IInterpreterV4.sol";
import {IInterpreterStoreV3} from "rain-interpreter-interface-0.1.0/src/interface/IInterpreterStoreV3.sol";
import {LibInterpreterDeploy} from "rainlang-0.1.5/src/lib/deploy/LibInterpreterDeploy.sol";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pragma solidity =0.8.25;
import {Test} from "forge-std-1.16.1/src/Test.sol";
import {ChildRaindexV6ArbTaskGated} from "test/util/concrete/ChildRaindexV6ArbTaskGated.sol";
import {RaindexV6ArbConfig, WrongTask} from "../../src/abstract/RaindexV6ArbCommon.sol";
import {TaskV2, EvaluableV4, SignedContextV1} from "raindex-interface-0.1.1/src/interface/IRaindexV6.sol";
import {TaskV2, EvaluableV4, SignedContextV1} from "raindex-interface-0.1.3/src/interface/IRaindexV6.sol";
import {IInterpreterV4} from "rain-interpreter-interface-0.1.0/src/interface/IInterpreterV4.sol";
import {IInterpreterStoreV3} from "rain-interpreter-interface-0.1.0/src/interface/IInterpreterStoreV3.sol";
import {LibInterpreterDeploy} from "rainlang-0.1.5/src/lib/deploy/LibInterpreterDeploy.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/abstract/RaindexV6ArbTaskGated.construct.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pragma solidity =0.8.25;
import {Test} from "forge-std-1.16.1/src/Test.sol";
import {ChildRaindexV6ArbTaskGated} from "test/util/concrete/ChildRaindexV6ArbTaskGated.sol";
import {RaindexV6ArbConfig, RaindexV6ArbCommon} from "../../src/abstract/RaindexV6ArbCommon.sol";
import {TaskV2, EvaluableV4, SignedContextV1} from "raindex-interface-0.1.1/src/interface/IRaindexV6.sol";
import {TaskV2, EvaluableV4, SignedContextV1} from "raindex-interface-0.1.3/src/interface/IRaindexV6.sol";
import {IInterpreterV4} from "rain-interpreter-interface-0.1.0/src/interface/IInterpreterV4.sol";
import {IInterpreterStoreV3} from "rain-interpreter-interface-0.1.0/src/interface/IInterpreterStoreV3.sol";
import {LibInterpreterDeploy} from "rainlang-0.1.5/src/lib/deploy/LibInterpreterDeploy.sol";
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pragma solidity =0.8.25;
import {Test} from "forge-std-1.16.1/src/Test.sol";
import {ChildRaindexV6ArbTaskGated} from "test/util/concrete/ChildRaindexV6ArbTaskGated.sol";
import {RaindexV6ArbConfig} from "../../src/abstract/RaindexV6ArbCommon.sol";
import {TaskV2, EvaluableV4, SignedContextV1} from "raindex-interface-0.1.1/src/interface/IRaindexV6.sol";
import {TaskV2, EvaluableV4, SignedContextV1} from "raindex-interface-0.1.3/src/interface/IRaindexV6.sol";
import {IInterpreterV4} from "rain-interpreter-interface-0.1.0/src/interface/IInterpreterV4.sol";
import {IInterpreterStoreV3} from "rain-interpreter-interface-0.1.0/src/interface/IInterpreterStoreV3.sol";
import {LibInterpreterDeploy} from "rainlang-0.1.5/src/lib/deploy/LibInterpreterDeploy.sol";
Expand Down
2 changes: 1 addition & 1 deletion test/abstract/RaindexV6ArbTaskGated.iTaskHashNonzero.t.sol
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ pragma solidity =0.8.25;
import {Test} from "forge-std-1.16.1/src/Test.sol";
import {ChildRaindexV6ArbTaskGated} from "test/util/concrete/ChildRaindexV6ArbTaskGated.sol";
import {RaindexV6ArbConfig} from "../../src/abstract/RaindexV6ArbCommon.sol";
import {TaskV2, EvaluableV4, SignedContextV1} from "raindex-interface-0.1.1/src/interface/IRaindexV6.sol";
import {TaskV2, EvaluableV4, SignedContextV1} from "raindex-interface-0.1.3/src/interface/IRaindexV6.sol";
import {IInterpreterV4} from "rain-interpreter-interface-0.1.0/src/interface/IInterpreterV4.sol";
import {IInterpreterStoreV3} from "rain-interpreter-interface-0.1.0/src/interface/IInterpreterStoreV3.sol";
import {LibInterpreterDeploy} from "rainlang-0.1.5/src/lib/deploy/LibInterpreterDeploy.sol";
Expand Down
Loading
Loading