This commit is contained in:
2026-03-07 14:15:48 +03:00
commit 7655b106a7
19 changed files with 12710 additions and 0 deletions

7
jest.setup.ts Normal file
View File

@@ -0,0 +1,7 @@
import { buildAllTact } from '@ton/blueprint';
import * as dotenv from 'dotenv';
export default async function () {
dotenv.config(); // Load environment variables from .env
await buildAllTact();
}