Initial commit

This commit is contained in:
Test User
2025-11-20 15:35:25 -08:00
commit bfbe3ee8b7
59 changed files with 7187 additions and 0 deletions

22
scripts/simulate.ts Normal file
View File

@@ -0,0 +1,22 @@
import { StressTester } from "../simulation/src/stress-test";
import * as dotenv from "dotenv";
dotenv.config();
/**
* Simulation Script
* Runs comprehensive simulations
*/
async function main() {
const rpcUrl = process.env.RPC_URL || "";
console.log("🧪 Running simulations...");
const tester = new StressTester(rpcUrl);
await tester.runStressTests();
console.log("✅ Simulations complete!");
}
main().catch(console.error);