15 lines
477 B
Solidity
15 lines
477 B
Solidity
// SPDX-License-Identifier: MIT
|
|
pragma solidity >=0.6.2 <0.9.0;
|
|
|
|
import {CommonBase} from "./Common.sol";
|
|
// forgefmt: disable-next-line
|
|
import {console, console2, StdCheatsSafe, stdJson, stdMath, StdStorage, stdStorageSafe, StdUtils, VmSafe} from "./Components.sol";
|
|
|
|
abstract contract ScriptBase is CommonBase {
|
|
VmSafe internal constant vmSafe = VmSafe(VM_ADDRESS);
|
|
}
|
|
|
|
abstract contract Script is ScriptBase, StdCheatsSafe, StdUtils {
|
|
bool public IS_SCRIPT = true;
|
|
}
|