Initial commit from template

This commit is contained in:
StackClass
2026-01-08 09:19:59 +00:00
commit f5485c229f
17 changed files with 1841 additions and 0 deletions

25
your_program.sh Normal file
View File

@@ -0,0 +1,25 @@
#!/bin/sh
#
# Use this script to run your program LOCALLY.
#
# Note: Changing this script WILL NOT affect how StackClass runs your program.
#
# Learn more: https://docs.stackclass.dev/challenges/program-interface
set -e # Exit early if any commands fail
# Copied from .stackclass/compile.sh
#
# - Edit this to change how your program compiles locally
# - Edit .stackclass/compile.sh to change how your program compiles remotely
(
cd "$(dirname "$0")" # Ensure compile steps are run within the repository directory
anchor build
)
# Copied from .stackclass/run.sh
#
# - Edit this to change how your program runs locally
# - Edit .stackclass/run.sh to change how your program runs remotely
# cd "$(dirname "$0"
# exec target/release/stackclass-solana-swap-program "$@"