Full build: Vite/React acid-terminal frontend (BEARER design system, Panchang/Sentient/Fragment Mono, neon layer, palette audit script), HoodquidityVaults Foundry contracts (single+dual deposits via Chainlink-style feeds, hybrid exit, 10% platform fee, boost, Genesis LP), Reown AppKit wallet connect with Robinhood Chain testnet (46630), live data from Dexscreener and onchain reads, partner portal, design-sync setup for claude.ai/design. Deploy: static via Forgejo Actions platform, BUILD_DIR=apps/web/dist (.env). Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
32 lines
1 KiB
Solidity
32 lines
1 KiB
Solidity
// SPDX-License-Identifier: MIT OR Apache-2.0
|
|
pragma solidity >=0.8.13 <0.9.0;
|
|
|
|
// 💬 ABOUT
|
|
// Forge Std's default Test.
|
|
|
|
// 🧩 MODULES
|
|
import {console} from "./console.sol";
|
|
import {console2} from "./console2.sol";
|
|
import {safeconsole} from "./safeconsole.sol";
|
|
import {StdAssertions} from "./StdAssertions.sol";
|
|
import {StdChains} from "./StdChains.sol";
|
|
import {StdCheats} from "./StdCheats.sol";
|
|
import {StdConstants} from "./StdConstants.sol";
|
|
import {stdError} from "./StdError.sol";
|
|
import {StdInvariant} from "./StdInvariant.sol";
|
|
import {stdJson} from "./StdJson.sol";
|
|
import {stdMath} from "./StdMath.sol";
|
|
import {StdStorage, stdStorage} from "./StdStorage.sol";
|
|
import {StdStyle} from "./StdStyle.sol";
|
|
import {stdToml} from "./StdToml.sol";
|
|
import {StdUtils} from "./StdUtils.sol";
|
|
import {Vm} from "./Vm.sol";
|
|
|
|
// 📦 BOILERPLATE
|
|
import {TestBase} from "./Base.sol";
|
|
|
|
// ⭐️ TEST
|
|
abstract contract Test is TestBase, StdAssertions, StdChains, StdCheats, StdInvariant, StdUtils {
|
|
// Note: IS_TEST() must return true.
|
|
bool public IS_TEST = true;
|
|
}
|