initial commit

This commit is contained in:
thesn10
2026-05-16 18:00:24 +02:00
commit da80420f01
20 changed files with 18180 additions and 0 deletions

12
migrations/deploy.ts Normal file
View File

@@ -0,0 +1,12 @@
// Migrations are an early feature. Currently, they're nothing more than this
// single deploy script that's invoked from the CLI, injecting a provider
// configured from the workspace's Anchor.toml.
import * as anchor from "@anchor-lang/core";
module.exports = async function (provider: anchor.AnchorProvider) {
// Configure client to use the provider.
anchor.setProvider(provider);
// Add your deploy script here.
};