build: pin demo toolchains

This commit is contained in:
golem
2026-08-17 16:01:42 -06:00
parent 14980e6083
commit db377c2bb3
26 changed files with 6062 additions and 0 deletions
+1
View File
@@ -0,0 +1 @@
export {};
+13
View File
@@ -0,0 +1,13 @@
import { describe, expect, it } from "vitest";
import { toolchainLabels } from "../config/toolchain";
describe("toolchain labels", () => {
it("exposes the versions shown by the operations console", () => {
expect(toolchainLabels).toEqual({
foundry: "Foundry 1.7.1",
solidity: "Solidity 0.8.35",
openZeppelin: "OpenZeppelin 5.6.1",
proxy: "UUPS"
});
});
});