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
531 B
JavaScript
18 lines
531 B
JavaScript
const { ethers } = require('hardhat');
|
|
const { loadFixture } = require('@nomicfoundation/hardhat-network-helpers');
|
|
|
|
const { shouldBehaveLikeRegularContext } = require('./Context.behavior');
|
|
|
|
async function fixture() {
|
|
const [sender] = await ethers.getSigners();
|
|
const context = await ethers.deployContract('ContextMock', []);
|
|
return { sender, context };
|
|
}
|
|
|
|
describe('Context', function () {
|
|
beforeEach(async function () {
|
|
Object.assign(this, await loadFixture(fixture));
|
|
});
|
|
|
|
shouldBehaveLikeRegularContext();
|
|
});
|