Initial commit

This commit is contained in:
stackclass
2025-09-13 11:17:10 +00:00
commit 8c1bfc7921
17 changed files with 2181 additions and 0 deletions

14
migrations/deploy.ts Normal file
View File

@@ -0,0 +1,14 @@
// Migrations are managed by Anchor
// This file can be used for custom deployment scripts
import * as anchor from "@coral-xyz/anchor";
async function main() {
console.log("Running deployment script...");
// Custom deployment logic can be added here
}
main().catch((error) => {
console.error(error);
process.exitCode = 1;
});