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>
18 lines
674 B
Solidity
18 lines
674 B
Solidity
// SPDX-License-Identifier: MIT OR Apache-2.0
|
|
pragma solidity >=0.8.13 <0.9.0;
|
|
|
|
import {Test} from "../src/Test.sol";
|
|
import {Vm, VmSafe} from "../src/Vm.sol";
|
|
|
|
// These tests ensure that functions are never accidentally removed from a Vm interface, or
|
|
// inadvertently moved between Vm and VmSafe. These tests must be updated each time a function is
|
|
// added to or removed from Vm or VmSafe.
|
|
contract VmTest is Test {
|
|
function test_VmInterfaceId() public pure {
|
|
assertEq(type(Vm).interfaceId, bytes4(0x23dda1ff), "Vm");
|
|
}
|
|
|
|
function test_VmSafeInterfaceId() public pure {
|
|
assertEq(type(VmSafe).interfaceId, bytes4(0xc784e709), "VmSafe");
|
|
}
|
|
}
|