Initial commit from template

This commit is contained in:
StackClass
2025-09-06 09:02:48 +00:00
commit b78b0b5e3c
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;
});