Initial commit from template

This commit is contained in:
StackClass
2026-01-08 09:20:05 +00:00
commit 15672855b0
18 changed files with 2816 additions and 0 deletions

11
.stackclass/compile.sh Normal file
View File

@@ -0,0 +1,11 @@
#!/bin/sh
#
# This script is used to compile your program on StackClass
#
# This runs before .stackclass/run.sh
#
# Learn more: https://docs.stackclass.dev/challenges/program-interface
set -e # Exit on failure
anchor build

11
.stackclass/run.sh Normal file
View File

@@ -0,0 +1,11 @@
#!/bin/sh
#
# This script is used to run your program on StackClass
#
# This runs after .stackclass/compile.sh
#
# Learn more: https://docs.stackclass.dev/challenges/program-interface
set -e # Exit on failure
# exec target/release/stackclass-solana-swap-program "$@"